/* ============================================================================
   ST ANDREWS FRESHERS GUIDE — STYLES
   You can tweak colours below. The rest controls layout — edit with care.
   ============================================================================ */

:root {
  --navy:        #0a2240;   /* St Andrews deep blue */
  --navy-soft:   #14305a;
  --blue:        #1f5dab;
  --blue-bright: #2e7bd6;
  --sand:        #f4efe6;   /* warm paper background */
  --sand-deep:   #e7ddc9;
  --stone:       #6b7280;
  --ink:         #1c2433;
  --cream:       #fbf8f2;
  --gold:        #c8a44d;
  --white:       #ffffff;
  --radius:      16px;
  --shadow:      0 12px 40px rgba(10, 34, 64, 0.10);
  --shadow-sm:   0 4px 16px rgba(10, 34, 64, 0.08);
  --serif:       "Fraunces", "Georgia", "Times New Roman", serif;
  --sans:        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.2; color: var(--navy); font-weight: 600; font-optical-sizing: auto; }

a { color: var(--blue); }

/* Visible keyboard focus for links, buttons and inputs. Only shows for
   keyboard users (:focus-visible), so it never appears on mouse clicks. */
:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
  border-radius: 4px;
}
/* On dark/navy backgrounds and the hero photo, blue-on-navy is hard to see —
   use gold there for contrast. */
.bg-navy :focus-visible,
.hero :focus-visible { outline-color: var(--gold); }

/* Respect users who've asked for less motion: drop the scroll animation and
   the reveal-on-scroll fade-ups, and make sure nothing stays hidden. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section__head { max-width: 720px; margin-bottom: 44px; }
.section__head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section__head p { font-size: 18px; color: var(--stone); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}

/* ---- NAV --------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--sand-deep);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__brand { display: flex; align-items: center; text-decoration: none; }
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark__city { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--navy); letter-spacing: -0.01em; }
.wordmark__sub {
  font-family: var(--sans); font-weight: 600; font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: #9a7a2e; margin-top: 4px;
}

/* burger button */
.burger {
  width: 46px; height: 46px; border-radius: 12px; cursor: pointer;
  background: var(--white); border: 1px solid var(--sand-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background .15s, border-color .15s;
}
.burger:hover { border-color: var(--blue); }
.burger span {
  display: block; width: 22px; height: 2.4px; background: var(--navy); border-radius: 2px;
  transform-origin: center; transition: transform .25s ease, opacity .2s ease;
}
.burger--open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* dropdown menu panel */
.nav__scrim { position: fixed; inset: 64px 0 0; background: rgba(10,34,64,0.25); z-index: 40; }
.menu {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 45;
  background: var(--cream); border-bottom: 1px solid var(--sand-deep);
  box-shadow: var(--shadow); overflow: hidden;
  max-height: 0; opacity: 0; transition: max-height .3s ease, opacity .2s ease;
}
.menu--open { max-height: calc(100vh - 64px); opacity: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.menu .wrap { padding-top: 16px; padding-bottom: 22px; }
.menu__home {
  display: block; font-family: var(--serif); font-weight: 700; color: var(--navy);
  text-decoration: none; padding: 10px 12px; border-bottom: 1px solid var(--sand-deep); margin-bottom: 6px;
}
/* One block per section: a heading that links to the section hub, then its
   pages laid out two-up (one-up on phones). */
.menu__section { margin-top: 10px; }
.menu__section-title {
  display: block; text-decoration: none;
  font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--blue);
  padding: 8px 12px 6px;
}
.menu__section-title:hover { color: var(--blue-bright); text-decoration: underline; }
.menu__links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.menu__standalone { margin-top: 14px; border-top: 1px solid var(--sand-deep); padding-top: 12px; }
@media (max-width: 640px) { .menu__links { grid-template-columns: 1fr; } }
.menu__link {
  display: flex; gap: 14px; align-items: center; padding: 12px; border-radius: 12px;
  text-decoration: none; transition: background .14s;
}
.menu__link:hover { background: var(--sand); }
.menu__ic {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: var(--navy); color: var(--gold); display: grid; place-items: center;
}
.menu__label { display: block; color: var(--navy); font-family: var(--serif); font-weight: 700; font-size: 16px; }
.menu__blurb { display: block; color: var(--stone); font-size: 13px; line-height: 1.4; margin-top: 2px; }

/* ---- HERO -------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: var(--navy);
  /* Layers top→bottom: darkening overlay · blue accent glow · YOUR PHOTO ·
     navy fallback gradient. Drop a wide landscape shot at images/hero.jpg
     (e.g. West Sands) and it appears behind the text automatically. */
  background-image:
    linear-gradient(105deg, rgba(9,28,56,0.74) 0%, rgba(9,28,56,0.46) 48%, rgba(9,28,56,0.12) 100%),
    linear-gradient(to top, rgba(9,28,56,0.55) 0%, rgba(9,28,56,0) 42%),
    url("images/hero.jpg"),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 60%, #0f2a4d 100%);
  background-size: cover, cover, cover, cover;
  background-position: center, center, center 14%, center;
  background-repeat: no-repeat;
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(600px 300px at 20% 100%, #000, transparent);
  pointer-events: none;
}
/* Lift the copy up into the brighter sky band, and keep the .wrap's 24px
   side padding (a shorthand `padding: x 0 y` here would zero it out, which
   made the text run flush to the screen edges on phones). */
.hero__inner { position: relative; padding-top: 56px; padding-bottom: 88px; max-width: 760px; }
.hero h1 { color: var(--white); font-size: clamp(38px, 6vw, 64px); letter-spacing: -0.01em; text-shadow: 0 2px 28px rgba(6,18,38,0.55), 0 1px 4px rgba(6,18,38,0.45); }
.hero__tagline { font-size: clamp(18px, 2.4vw, 23px); color: #e4ecf7; margin: 22px 0 14px; text-shadow: 0 1px 16px rgba(6,18,38,0.6); }
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none; transition: transform .12s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--gold); color: var(--navy); box-shadow: 0 8px 24px rgba(200,164,77,0.35); }
.btn--primary:hover { background: #d8b65f; }
.btn--ghost { background: rgba(255,255,255,0.08); color: var(--cream); border: 1px solid rgba(255,255,255,0.25); }
.btn--ghost:hover { background: rgba(255,255,255,0.16); }

.hero__stats { display: flex; gap: 38px; margin-top: 54px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--serif); font-size: 34px; color: var(--gold); }
.hero__stat .lbl { font-size: 14px; color: #aebfd6; }

/* ---- SECTION BACKGROUNDS ---------------------------------------------- */
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .section__head p { color: #aebfd6; }
.bg-navy .eyebrow { color: var(--gold); }

/* ---- CARDS ------------------------------------------------------------- */
.cards { display: grid; gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .cards--2, .cards--3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--sand-deep);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 21px; margin-bottom: 6px; }
.card .vibe { font-size: 14px; color: var(--blue); font-weight: 600; margin-bottom: 12px; }
.card .tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--navy);
  background: var(--sand-deep); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.card p { font-size: 15px; color: #3a4456; }

.note {
  margin-top: 26px; padding: 16px 20px; border-left: 4px solid var(--gold);
  background: rgba(200,164,77,0.10); border-radius: 8px; font-size: 15px; color: #45413a;
}

/* ---- CHOOSE HELP LIST -------------------------------------------------- */
.help { margin-top: 30px; background: var(--navy); color: var(--cream); border-radius: var(--radius); padding: 30px 32px; }
.help h3 { color: var(--white); margin-bottom: 16px; }
.help ul { list-style: none; display: grid; gap: 12px; }
.help li { padding-left: 28px; position: relative; font-size: 15px; color: #d7e1f0; }
.help li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---- PACKING CHECKLIST ------------------------------------------------- */
.packing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 820px) { .packing-grid { grid-template-columns: 1fr; } }
.packlist h3 { font-size: 18px; margin-bottom: 14px; }
.check {
  display: flex; align-items: flex-start; gap: 11px; padding: 9px 0;
  cursor: pointer; font-size: 15px; color: #344; user-select: none;
  border-bottom: 1px solid var(--sand-deep);
}
.check:last-child { border-bottom: none; }
.check input { display: none; }
.check .box {
  width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--blue);
  flex-shrink: 0; margin-top: 2px; display: grid; place-items: center;
  transition: background .12s, border-color .12s;
}
.check .box::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 800; opacity: 0; transition: opacity .12s; }
.check input:checked + .box { background: var(--blue); }
.check input:checked + .box::after { opacity: 1; }
.check input:checked ~ .label { color: var(--stone); text-decoration: line-through; }
.pack-progress { margin-top: 12px; font-size: 14px; color: var(--stone); }

/* ---- TRADITIONS (accordion) ------------------------------------------- */
.trad { display: grid; gap: 16px; }
.trad__item {
  background: var(--white); border: 1px solid var(--sand-deep); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.trad__btn {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.trad__btn h3 { font-size: 21px; }
.trad__when { font-size: 13px; color: var(--blue); font-weight: 600; margin-top: 4px; display: block; }
.trad__chev { font-size: 22px; color: var(--blue); transition: transform .2s; flex-shrink: 0; }
.trad__item.open .trad__chev { transform: rotate(45deg); }
.trad__body { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.trad__item.open .trad__body { padding: 0 26px 26px; max-height: 800px; }
.trad__body p { font-size: 16px; color: #3a4456; margin-bottom: 14px; }
.trad__tip {
  background: rgba(31,93,171,0.08); border-radius: 10px; padding: 14px 18px;
  font-size: 15px; color: var(--navy);
}
.trad__tip strong { color: var(--blue); }

/* ---- FEELINGS ---------------------------------------------------------- */
.feel__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.feel__tab {
  padding: 11px 20px; border-radius: 999px; cursor: pointer; font-size: 15px; font-weight: 600;
  background: rgba(255,255,255,0.08); color: #cdd9ec; border: 1px solid rgba(255,255,255,0.18);
  transition: all .15s;
}
.feel__tab:hover { background: rgba(255,255,255,0.16); }
.feel__tab.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.feel__panel {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 36px;
}
.feel__panel h3 { color: var(--white); font-size: 26px; margin-bottom: 16px; }
.feel__panel > p { font-size: 17px; color: #cdd9ec; margin-bottom: 24px; }
.feel__try { display: grid; gap: 12px; }
.feel__try .t {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.06); padding: 13px 18px; border-radius: 10px;
  font-size: 15px; color: #e3eaf6;
}
.feel__try .t::before { content: "✓"; color: var(--gold); font-weight: 800; }

/* ---- VISION ------------------------------------------------------------ */
.vision-card .status {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 999px; margin-top: 14px;
}
.status--prog { background: rgba(46,123,214,0.15); color: var(--blue); }
.status--plan { background: var(--sand-deep); color: var(--stone); }

/* ---- TIP JAR CARD (About page) ----------------------------------------- */
.tipcard { background: var(--white); border: 1px solid var(--sand-deep); border-radius: var(--radius);
  padding: 40px; text-align: center; box-shadow: var(--shadow); max-width: 620px; margin: 0 auto; }
.tipcard h3 { font-size: 26px; margin-bottom: 10px; }
.tipcard p { color: var(--stone); margin-bottom: 22px; }
@media (max-width: 540px) { .signup__form { flex-direction: column; } }

/* ---- DISCLAIMER + FOOTER ---------------------------------------------- */
.disclaimer {
  margin-top: 30px; font-size: 14px; color: var(--stone); font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px;
}
.footer { background: var(--navy); color: #aebfd6; padding: 50px 0; text-align: center; }
.footer .brand { font-family: var(--serif); color: var(--white); font-size: 18px; margin-bottom: 10px; }
.footer p { font-size: 14px; margin: 6px 0; }
.footer .built { color: var(--gold); margin-top: 16px; font-style: italic; }
.footer__about { margin-top: 18px; }
.footer__about a { color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 1px; }
.footer__about a:hover { border-bottom-color: var(--gold); }

/* ---- HOME PHOTO BAND (uses images/hero2.jpg) --------------------------- */
.photoband {
  position: relative;
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(9,28,56,0.78) 0%, rgba(9,28,56,0.5) 55%, rgba(9,28,56,0.3) 100%),
    url("images/hero2.jpg"),
    linear-gradient(160deg, var(--navy), #0f2a4d);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  color: var(--cream);
}
.photoband__inner { padding: 92px 24px; }
.photoband h2 {
  color: #fff; font-size: clamp(26px, 4vw, 40px); max-width: 640px; line-height: 1.18;
  text-shadow: 0 2px 22px rgba(6,18,38,0.5);
}
.photoband p {
  color: #e4ecf7; font-size: 18px; max-width: 560px; margin-top: 14px;
  text-shadow: 0 1px 14px rgba(6,18,38,0.55);
}

/* ---- WELLBEING --------------------------------------------------------- */
.urgentgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .urgentgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .urgentgrid { grid-template-columns: 1fr; } }
.urgent {
  background: var(--white); border: 1px solid var(--sand-deep); border-left: 4px solid var(--blue);
  border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.urgent--red { border-left-color: #c0392b; }
.urgent h3 { font-size: 19px; margin-bottom: 8px; }
.urgent p { font-size: 14px; color: #3a4456; flex: 1; }
.urgent__contacts { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.urgent__cta {
  display: inline-block; background: var(--navy); color: var(--gold); text-decoration: none;
  font-weight: 600; font-size: 15px; padding: 9px 16px; border-radius: 999px; transition: background .15s;
}
.urgent__cta:hover { background: var(--navy-soft); }
.urgent--red .urgent__cta { background: #c0392b; color: #fff; }
.urgent__cta--static { background: var(--sand-deep); color: var(--navy); cursor: default; }
.urgent__sub { font-size: 13px; color: var(--blue); text-decoration: none; }
.urgent__sub:hover { text-decoration: underline; }

.feelings-link {
  display: block; margin: 22px 0 8px; padding: 16px 22px; border-radius: 12px;
  background: rgba(31,93,171,0.08); color: var(--navy); text-decoration: none;
  font-weight: 600; font-size: 16px; transition: background .15s;
}
.feelings-link:hover { background: rgba(31,93,171,0.14); }

.support__contacts { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.support__link { font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none; }
.support__link:hover { text-decoration: underline; }

.wb-closing {
  margin-top: 34px; background: var(--navy); color: #e4ecf7; border-radius: var(--radius);
  padding: 30px 34px; font-size: 18px; line-height: 1.6; text-align: center;
  border-left: 4px solid var(--gold);
}

/* ---- REVEAL ANIMATION -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================================
   MULTI-PAGE ADDITIONS
   ============================================================================ */

.wrap--narrow { max-width: 820px; }
.nav__brand { text-decoration: none; }
.page__title { font-size: clamp(30px, 5vw, 46px); margin-bottom: 16px; }

/* ---- ABOUT (home) ------------------------------------------------------ */
.about { max-width: 760px; }
.about h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 16px; }
.about p { font-size: 18px; color: #3a4456; }

/* ---- ABOUT US (page) --------------------------------------------------- */
.about__para { font-size: 18px; color: #3a4456; line-height: 1.7; margin-bottom: 18px; }
.about__sub { font-family: var(--serif); font-size: 22px; color: var(--navy); margin: 30px 0 10px; }

/* ---- HOME NAV GRID ----------------------------------------------------- */
.navgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .navgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .navgrid { grid-template-columns: 1fr; } }
.navtile {
  display: block; text-decoration: none; background: var(--white);
  border: 1px solid var(--sand-deep); border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s;
}
.navtile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.navtile__icon {
  display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 12px;
  background: var(--navy); color: var(--gold); margin-bottom: 16px;
}
.navtile h3 { font-size: 19px; margin-bottom: 8px; }
.navtile p { font-size: 14px; color: var(--stone); line-height: 1.55; }
.navtile__go { display: inline-block; margin-top: 14px; color: var(--blue); font-weight: 600; font-size: 14px; }

/* ---- BREADCRUMB -------------------------------------------------------- */
.crumb { font-size: 14px; color: var(--stone); margin-bottom: 22px; }
.crumb a { color: var(--blue); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }
.crumb__sep { margin: 0 8px; opacity: 0.5; }

/* ---- CLICKABLE CARD ---------------------------------------------------- */
.card--link { display: block; text-decoration: none; transition: transform .15s, box-shadow .15s, border-color .15s; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.card__go { display: inline-block; margin-top: 14px; color: var(--blue); font-weight: 600; font-size: 14px; }
.card__bestfor { margin-top: 12px; font-size: 14px; color: var(--navy); }

/* ---- GETTING HERE: OPTIONS --------------------------------------------- */
.options { display: grid; gap: 20px; }
.option {
  background: var(--white); border: 1px solid var(--sand-deep); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.option--hi { border-color: var(--gold); box-shadow: 0 10px 30px rgba(200,164,77,0.18); }
.option__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; }
.option__top h3 { font-size: 23px; }
.option__tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--blue); background: rgba(31,93,171,0.10); padding: 4px 11px; border-radius: 999px; margin-bottom: 8px;
}
.option--hi .option__tag { color: var(--navy); background: rgba(200,164,77,0.22); }
.option__meta { text-align: right; }
.option__time { font-size: 14px; color: var(--stone); margin-bottom: 4px; }
.option__price { font-size: 15px; font-weight: 600; color: var(--navy); max-width: 280px; }
.option p { font-size: 15px; color: #3a4456; margin-bottom: 18px; }
.option__pc { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 16px; }
@media (max-width: 600px) { .option__pc { grid-template-columns: 1fr; } .option__meta { text-align: left; } }
.pros, .cons { list-style: none; display: grid; gap: 7px; }
.pros li, .cons li { font-size: 14px; padding-left: 24px; position: relative; color: #3a4456; }
.pros li::before { content: "✓"; position: absolute; left: 0; color: #2e9e6a; font-weight: 800; }
.cons li::before { content: "✕"; position: absolute; left: 0; color: #c0612e; font-weight: 800; }
.option__link { font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none; }
.option__link:hover { text-decoration: underline; }

/* ---- YOUNG SCOT CALLOUT ------------------------------------------------ */
.youngscot {
  margin-top: 28px; background: var(--navy); color: var(--cream);
  border-radius: var(--radius); padding: 34px 36px;
}
.youngscot h3 { color: var(--white); font-size: 24px; margin-bottom: 12px; }
.youngscot > p { color: #cdd9ec; font-size: 16px; margin-bottom: 18px; }
.ys__steps { margin: 0 0 24px 20px; display: grid; gap: 9px; }
.ys__steps li { color: #d7e1f0; font-size: 15px; padding-left: 6px; }
.ys__links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ys__more { color: var(--gold); font-size: 14px; font-weight: 600; text-decoration: none; }
.ys__more:hover { text-decoration: underline; }

/* ---- HALL DETAIL ------------------------------------------------------- */
.hall__nick { color: var(--blue); font-weight: 600; font-size: 16px; margin-bottom: 18px; }
.hall__lead { font-size: 18px; color: #3a4456; line-height: 1.7; margin-bottom: 30px; }
.factgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
@media (max-width: 640px) { .factgrid { grid-template-columns: 1fr; } }
.fact { background: var(--white); border: 1px solid var(--sand-deep); border-radius: 12px; padding: 18px 20px; }
.fact__label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.fact__value { font-size: 15px; color: #3a4456; }
.bestfor { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 30px; }
@media (max-width: 640px) { .bestfor { grid-template-columns: 1fr; } }
.bestfor__item { border-radius: 12px; padding: 20px 22px; }
.bestfor__item h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }
.bestfor__item p { font-size: 15px; }
.bestfor__item--good { background: rgba(46,158,106,0.10); }
.bestfor__item--good h4 { color: #2e9e6a; }
.bestfor__item--watch { background: rgba(192,97,46,0.10); }
.bestfor__item--watch h4 { color: #c0612e; }
.hall__nav { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--sand-deep); padding-top: 22px; }
.hall__nav a { color: var(--blue); text-decoration: none; font-weight: 600; font-size: 15px; }
.hall__nav a:hover { text-decoration: underline; }

/* ---- FEELINGS help note + breadcrumb on dark --------------------------- */
.bg-navy .crumb { color: #8ca0bd; }
.bg-navy .crumb a { color: var(--gold); }
.bg-navy .page__title { color: var(--white); }
.feel__help {
  margin-top: 26px; font-size: 15px; color: #cdd9ec; font-style: italic;
  border-left: 4px solid var(--gold); padding: 14px 20px; background: rgba(255,255,255,0.05); border-radius: 8px;
}

/* ---- DISCLAIMER light variant ------------------------------------------ */
.disclaimer--light { border-color: var(--sand-deep); color: var(--stone); }

/* ---- COUNTDOWN --------------------------------------------------------- */
.countdown {
  margin: 30px 0 6px; display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: rgba(8,22,44,0.42); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px; padding: 16px 22px; backdrop-filter: blur(2px);
}
.countdown__units { display: flex; gap: 14px; }
.cd { text-align: center; min-width: 52px; }
.cd__num { font-family: var(--serif); font-size: 34px; color: var(--gold); line-height: 1; }
.cd__lbl { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #aebfd6; margin-top: 6px; }
.countdown__cap { font-size: 14px; color: #cdd9ec; max-width: 110px; line-height: 1.3; }
.countdown--done {
  margin: 30px 0 6px; display: inline-block; background: rgba(200,164,77,0.18);
  border: 1px solid var(--gold); color: var(--cream); border-radius: 14px;
  padding: 16px 22px; font-size: 17px; font-weight: 600;
}
@media (max-width: 460px) { .cd__num { font-size: 27px; } .cd { min-width: 42px; } }

/* ---- ADMIN PAGE -------------------------------------------------------- */
.adminlist { display: grid; gap: 20px; }
.admincard {
  background: var(--white); border: 1px solid var(--sand-deep); border-radius: var(--radius);
  padding: 28px 30px; box-shadow: var(--shadow-sm);
}
.admincard__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.admincard__head h3 { font-size: 23px; }
.admincard__head .tag { margin-bottom: 0; }
.admincard__body { font-size: 16px; color: #3a4456; margin-bottom: 18px; }
.subopts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
@media (max-width: 700px) { .subopts { grid-template-columns: 1fr; } }
.subopt { background: var(--sand); border: 1px solid var(--sand-deep); border-radius: 12px; padding: 18px 20px; }
.subopt__tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--blue); background: rgba(31,93,171,0.10); padding: 3px 10px; border-radius: 999px; margin-bottom: 10px;
}
.subopt h4 { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 7px; line-height: 1.25; }
.subopt p { font-size: 14px; color: #3a4456; }
.tips { list-style: none; display: grid; gap: 10px; margin-bottom: 6px; }
.tips li { position: relative; padding-left: 26px; font-size: 15px; color: #3a4456; }
.tips li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.admincard__link { display: inline-block; margin-top: 16px; color: var(--blue); font-weight: 600; font-size: 15px; text-decoration: none; }
.admincard__link:hover { text-decoration: underline; }

/* ---- FRESHERS: dates, placeholder banner, timeline --------------------- */
.freshers__dates { font-size: 16px; color: var(--blue); font-weight: 600; margin-bottom: 18px; }
.placeholder-banner {
  background: rgba(200,164,77,0.12); border: 1px dashed var(--gold); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 8px;
}
.placeholder-banner__tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: #8a6d22; background: rgba(200,164,77,0.3); padding: 4px 11px; border-radius: 999px; margin-bottom: 10px;
}
.placeholder-banner p { font-size: 15px; color: #5a4f33; }

.timeline { position: relative; margin-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--sand-deep); }
.tl { position: relative; padding: 0 0 22px 34px; }
.tl:last-child { padding-bottom: 0; }
.tl__dot { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid var(--cream); }
.tl__day { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--stone); }
.tl__label { font-family: var(--serif); font-size: 19px; color: var(--navy); margin: 2px 0 5px; }
.tl__body p { font-size: 15px; color: #3a4456; }

/* ---- BUDGET: monthly snapshot + price grid ----------------------------- */
.budget { background: var(--white); border: 1px solid var(--sand-deep); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.budget__row { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 16px 24px; border-bottom: 1px solid var(--sand-deep); }
.budget__row:last-child { border-bottom: none; }
.budget__label { font-size: 16px; font-weight: 600; color: var(--navy); display: flex; flex-direction: column; }
.budget__detail { font-size: 13px; font-weight: 400; color: var(--stone); margin-top: 3px; }
.budget__amount { font-family: var(--serif); font-size: 20px; color: var(--blue); white-space: nowrap; }

.pricegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .pricegrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pricegrid { grid-template-columns: 1fr; } }
.pricecard { background: var(--white); border: 1px solid var(--sand-deep); border-radius: 12px; padding: 20px; text-align: center; box-shadow: var(--shadow-sm); }
.pricecard__cost { font-family: var(--serif); font-size: 28px; color: var(--navy); }
.pricecard__item { font-size: 15px; font-weight: 600; color: var(--blue); margin: 4px 0 8px; }
.pricecard__detail { font-size: 13px; color: var(--stone); line-height: 1.45; }

.tips--cols { grid-template-columns: 1fr 1fr; gap: 12px 28px; }
@media (max-width: 700px) { .tips--cols { grid-template-columns: 1fr; } }

/* ---- STUDY SPOTS: categories + image cards ----------------------------- */
.cathead { margin: 40px 0 20px; }
.cathead__title { font-size: clamp(24px, 3.5vw, 32px); }
.cathead__blurb { color: var(--stone); font-size: 16px; margin-top: 6px; max-width: 620px; }

.spots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 820px) { .spots { grid-template-columns: 1fr; } }
.spot {
  background: var(--white); border: 1px solid var(--sand-deep); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.spot__img, .spot__ph { width: 100%; height: 200px; object-fit: cover; display: block; }
.spot__ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: #fff; text-align: center; padding: 16px;
}
.spot__ph--library { background: linear-gradient(150deg, var(--navy), var(--blue)); }
.spot__ph--cafe { background: linear-gradient(150deg, #6b4a2b, var(--gold)); }
.spot__ph-ic { font-size: 34px; }
.spot__ph-name { font-family: var(--serif); font-size: 20px; font-weight: 700; }
.spot__ph-hint { font-size: 11px; opacity: 0.7; font-family: var(--sans); letter-spacing: 0.02em; }
.spot__body { padding: 22px 24px; }
.spot__body h3 { font-size: 20px; margin-bottom: 8px; }
.spot__body p { font-size: 15px; color: #3a4456; }
