/* ================================================================
   Coorg wedding -- redesign per design handoff (July 2026)
   Playfair Display (client choice over the kit's Bodoni) + Jost.
   Blossom canvas, dark Peppercorn bands, hairline schedule rows,
   two-ink monogram nav, one spice accent (Marigold; Laterite retired).
   ================================================================ */

/* ---- Fonts: self-hosted variable subsets ---- */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display.woff2') format('woff2');
  font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-italic.woff2') format('woff2');
  font-weight: 400 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  --cherry:       #6B1D28;
  --cherry-hover: #82242F;
  --blossom:      #F5EFE2;
  --paper:        #FFFDF7;
  --peppercorn:   #23291F;
  --marigold:     #DD9C26;
  --marigold-hover: #E8AD42;
  --gold-ink:     #8a5f12;               /* AA marigold for text on light */
  --brass:        #A9873F;
  --alt-light:    #EFE7D5;

  --ink-soft:     rgba(35, 41, 31, 0.72);
  --ink-mid:      rgba(35, 41, 31, 0.85);
  --cream-soft:   rgba(245, 239, 226, 0.88);
  --cream-mid:    rgba(245, 239, 226, 0.92);
  --rule-50:      rgba(169, 135, 63, 0.5);
  --rule-45:      rgba(169, 135, 63, 0.45);
  --rule-35:      rgba(169, 135, 63, 0.35);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-text: 'Jost', 'Futura', 'Century Gothic', sans-serif;

  --pad-x: clamp(1.5rem, 4vw, 3rem);
  --pad-y: clamp(4rem, 9vw, 7rem);
  --pad-y-band: clamp(3.5rem, 7vw, 5.5rem);
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--blossom);
  color: var(--peppercorn);
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--cherry); text-underline-offset: 3px; }
a:hover { color: #8E2735; }
::selection { background: rgba(221, 156, 38, 0.35); }
img { max-width: 100%; }
[id] { scroll-margin-top: 72px; }

/* ---- Kickers & ornament ---- */
.kicker { margin: 0 0 0.8rem; color: var(--gold-ink); font-weight: 500;
          letter-spacing: 0.2em; text-transform: uppercase; font-size: 13px; }
.kicker--gold { color: var(--marigold); }
.ornament { display: flex; align-items: center; justify-content: center; gap: 0.9rem;
            max-width: 240px; margin: 1.2rem auto 0; color: var(--brass); }
.ornament::before, .ornament::after { content: ""; height: 2px; background: currentColor; flex: 1; }
.ornament__mark { width: 7px; height: 7px; background: currentColor; transform: rotate(45deg); flex: none; }

/* ---- Buttons (square corners) ---- */
.btn { display: inline-block; padding: 14px 34px; background: var(--cherry); color: var(--blossom);
       text-decoration: none; border: none; font-family: var(--font-text); font-weight: 500;
       letter-spacing: 0.1em; text-transform: uppercase; font-size: 14px; cursor: pointer;
       transition: background 150ms ease; }
.btn:hover { background: var(--cherry-hover); color: var(--blossom); }
.btn--outline-light { background: transparent; border: 1px solid rgba(245, 239, 226, 0.85);
                      color: var(--blossom); padding: 13px 30px; }
.btn--outline-light:hover { background: rgba(245, 239, 226, 0.14); color: var(--blossom); }
.btn--outline-ink { background: transparent; border: 1px solid var(--peppercorn);
                    color: var(--peppercorn); padding: 13px 30px; }
.btn--outline-ink:hover { background: rgba(35, 41, 31, 0.06); color: var(--peppercorn); }
.btn--block { display: block; width: 100%; text-align: center; padding: 15px 26px; font-size: 16px; }
.btn:disabled { opacity: 0.6; cursor: wait; }

/* ---- Nav: fixed; transparent over hero, solid after scroll (or .nav--solid always) ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 1.5rem; height: var(--nav-h);
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: transparent; box-shadow: none;
  transition: background 250ms ease, box-shadow 250ms ease;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; position: relative; }
.nav__logo img { height: 34px; width: auto; display: block; transition: opacity 250ms ease; }
.nav__logo .logo-ink { opacity: 0; }
.nav__logo .logo-blossom { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 1; }
.nav__links { display: flex; gap: 1.6rem; margin-inline: auto; }
.nav__links a { color: var(--blossom); text-decoration: none; font-weight: 500;
                letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px;
                transition: color 250ms ease; }
.nav__links a:hover { color: var(--marigold); }
.nav__rsvp { background: var(--marigold); color: var(--peppercorn); font-weight: 500;
             text-decoration: none; padding: 10px 24px; letter-spacing: 0.1em;
             text-transform: uppercase; font-size: 13px; margin-left: auto; }
.nav__rsvp:hover { background: var(--marigold-hover); color: var(--peppercorn); }
.nav__links + .nav__rsvp { margin-left: 0; }
.nav--scrolled, .nav--solid {
  background: rgba(245, 239, 226, 0.97);
  box-shadow: 0 8px 24px -16px rgba(35, 41, 31, 0.45);
}
.nav--scrolled .nav__links a, .nav--solid .nav__links a { color: var(--peppercorn); }
.nav--scrolled .nav__links a:hover, .nav--solid .nav__links a:hover { color: var(--marigold); }
.nav--scrolled .logo-ink, .nav--solid .logo-ink { opacity: 1; }
.nav--scrolled .logo-blossom, .nav--solid .logo-blossom { opacity: 0; }
@media (max-width: 640px) {
  .nav__links { display: none; }
}

/* ---- Hero ---- */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center;
        overflow: hidden; padding: 6rem 1.5rem 4rem; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(24,30,22,0.42) 0%, rgba(24,30,22,0.12) 35%, rgba(24,30,22,0.18) 60%, rgba(24,30,22,0.62) 100%); }
.hero__content { position: relative; text-align: center; max-width: 900px; color: var(--blossom);
                 text-shadow: 0 1px 18px rgba(24, 30, 22, 0.45); }
.hero__names { margin: 0 0 1.2rem; font-weight: 500; letter-spacing: 0.34em;
               text-transform: uppercase; font-size: clamp(13px, 1.4vw, 16px); }
.hero .ornament { max-width: 260px; margin: 0 auto 1.6rem; color: var(--marigold); }
.hero .ornament::before, .hero .ornament::after { height: 1px; opacity: 0.85; }
.hero__title { margin: 0; font-family: var(--font-display); font-weight: 500; font-style: italic;
               font-size: clamp(46px, 8vw, 96px); line-height: 1.05; color: var(--paper); }
.hero__date { margin: 1.8rem 0 0.4rem; letter-spacing: 0.22em; text-transform: uppercase;
              font-size: clamp(14px, 1.5vw, 17px); font-weight: 500; }
.hero__venue { margin: 0; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; opacity: 0.92; }
.hero__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }

/* ---- Section heads (light sections) ---- */
.section-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { margin: 0; font-family: var(--font-display); font-weight: 500;
                   font-size: clamp(38px, 5vw, 58px); line-height: 1.1; color: var(--cherry); }
.section-head .lede { max-width: 560px; margin: 1.4rem auto 0; font-size: 1.08em; color: rgba(35,41,31,0.78); }

/* ---- Dark bands ---- */
.band { background: var(--peppercorn); color: var(--blossom);
        padding: var(--pad-y-band) var(--pad-x); scroll-margin-top: 72px; }
.band h2 { margin: 0; font-family: var(--font-display); font-weight: 600;
           font-size: clamp(32px, 3.6vw, 44px); line-height: 1.12; color: var(--paper); }
.band a { color: var(--marigold); }
.band a:hover { color: var(--marigold-hover); }

/* Visa band */
.visa-grid { max-width: 1100px; margin: 0 auto; display: grid;
             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
             gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.visa-grid .intro { margin: 1.4rem 0 0; font-size: 1.06em; color: var(--cream-soft); }

/* ---- Diamond-bullet lists ---- */
.dlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.dlist li { position: relative; padding-left: 1.4rem; }
.dlist li::before { content: ""; position: absolute; left: 0; top: 0.55em;
                    width: 6px; height: 6px; background: var(--marigold); transform: rotate(45deg); }
.dlist--dark li { color: var(--cream-soft); }
.dlist--dark li strong { color: var(--paper); }
.dlist--tight { gap: 0.7rem; }
.dlist--tight li { padding-left: 1.3rem; font-size: 16px; color: var(--ink-mid); }
.dlist--tight li::before { width: 5px; height: 5px; }

/* ---- Sections (light) ---- */
.section { padding: var(--pad-y) var(--pad-x); scroll-margin-top: 72px; }

/* ---- Schedule: two-day columns of hairline rows ---- */
.days { max-width: 1060px; margin: 0 auto; display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(2.5rem, 5vw, 4.5rem); }
.day h3 { margin: 0; padding-bottom: 0.9rem; border-bottom: 1px solid var(--rule-50);
          font-family: var(--font-display); font-weight: 500;
          font-size: clamp(24px, 2.4vw, 29px); color: var(--peppercorn); }
.day h3 em { font-style: italic; color: var(--gold-ink); }
.event { display: block; width: 100%; text-align: left; background: none; border: none;
         border-bottom: 1px solid var(--rule-35); padding: 1.35rem 0.4rem; font: inherit;
         color: var(--peppercorn); cursor: pointer; transition: background 150ms ease; }
.event:hover { background: rgba(107, 29, 40, 0.045); }
.event:focus-visible { outline: 2px solid var(--cherry); outline-offset: 2px; }
.event__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.event__name { font-family: var(--font-display); font-weight: 500;
               font-size: clamp(24px, 2.4vw, 28px); line-height: 1.15; }
.event__time { font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
               font-size: 12px; color: var(--gold-ink); white-space: nowrap; }
.event__teaser { display: block; margin-top: 0.35rem; color: var(--ink-soft); font-size: 16px; }
.event__more { display: block; margin-top: 0.5rem; color: var(--cherry); font-weight: 500; font-size: 14px; }

/* ---- Hotel band (photo wash) ---- */
.band--hotel {
  background-color: var(--peppercorn);
  background-image: url('images/band-dark.jpg');
  background-image: image-set(url('images/band-dark.avif') type('image/avif'),
                              url('images/band-dark.webp') type('image/webp'),
                              url('images/band-dark.jpg') type('image/jpeg'));
  background-position: center; background-size: cover; background-repeat: no-repeat;
  padding: var(--pad-y) var(--pad-x);
}
.band--hotel h2 { font-size: clamp(36px, 4.4vw, 54px); line-height: 1.1; }
.hotel-grid { max-width: 1040px; margin: 0 auto; display: grid;
              grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
              gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.hotel-grid .about { margin: 1.5rem 0 0; color: rgba(245,239,226,0.9); font-size: 1.05em; }
.panel-stop { background: var(--paper); color: var(--peppercorn); border-top: 3px solid var(--cherry);
              padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6); }
.panel-stop h3 { margin: 0 0 0.9rem; font-family: var(--font-display); font-weight: 500;
                 font-size: clamp(24px, 2.4vw, 29px); color: var(--cherry); }
.panel-stop p { margin: 0 0 1rem; }
.panel-stop p:last-child { margin-bottom: 0; }
.panel-stop a { color: var(--cherry); }
.panel-stop a:hover { color: #8E2735; }

/* ---- Getting there ---- */
.gt-measure { max-width: 860px; margin: 0 auto; }
.gt-measure > h3 { margin: 0 0 1rem; font-family: var(--font-display); font-weight: 500;
                   font-size: clamp(26px, 3vw, 34px); color: var(--peppercorn); text-align: center; }
.gt-measure > h3 em { font-style: italic; color: var(--cherry); }
.hubs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem; margin-bottom: 2rem; }
.hub { border-top: 1px solid var(--rule-50); padding-top: 1rem; text-align: center; }
.hub__code { font-family: var(--font-display); font-weight: 500; font-size: 34px;
             color: var(--cherry); line-height: 1; }
.hub__name { font-weight: 500; margin: 0.4rem 0 0.25rem; }
.hub__desc { font-size: 15px; color: var(--ink-soft); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
             gap: 2.2rem 3rem; }
.igroup { border-top: 1px solid var(--rule-50); padding-top: 1.1rem; }
.igroup h3 { margin: 0 0 0.7rem; font-family: var(--font-display); font-weight: 500;
             font-size: 24px; color: var(--cherry); }

/* ---- Travel teaser ---- */
.teaser { background: linear-gradient(rgba(35,41,31,0.02), rgba(35,41,31,0.02)), var(--alt-light);
          padding: clamp(4rem, 9vw, 6.5rem) var(--pad-x); text-align: center; }
.teaser h2 { margin: 0; font-family: var(--font-display); font-weight: 500; font-style: italic;
             font-size: clamp(38px, 5vw, 58px); line-height: 1.1; color: var(--cherry); }
.teaser .lede { max-width: 600px; margin: 1.4rem auto 2.2rem; font-size: 1.08em; color: rgba(35,41,31,0.78); }
.teaser-photos { max-width: 960px; margin: 0 auto 2.4rem; display: grid;
                 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.teaser-photos a { text-decoration: none; color: var(--peppercorn); }
.teaser-photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
                     border: 1px solid var(--brass); box-shadow: 0 14px 30px -20px rgba(35,41,31,0.55); }
.teaser-photos span { display: block; margin-top: 0.6rem; font-weight: 500; letter-spacing: 0.16em;
                      text-transform: uppercase; font-size: 12px; color: var(--gold-ink); }

/* ---- RSVP ---- */
.section--rsvp {
  background-color: var(--blossom);
  background-image: url('images/mist-light.jpg');
  background-image: image-set(url('images/mist-light.avif') type('image/avif'),
                              url('images/mist-light.webp') type('image/webp'),
                              url('images/mist-light.jpg') type('image/jpeg'));
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.section--rsvp .section-head { margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.rsvp__deadline { max-width: 520px; margin: 1.4rem auto 0; font-size: 1.05em; color: rgba(35,41,31,0.82); }

.card--form { max-width: 620px; margin: 0 auto; background: var(--paper);
              border: 1px solid var(--rule-45); padding: clamp(1.6rem, 4vw, 2.6rem);
              box-shadow: 0 30px 60px -34px rgba(35, 41, 31, 0.5); }
.form-grid { display: grid; gap: 1.25rem; }
.field label, .field legend { display: block; font-weight: 500; margin-bottom: 6px; padding: 0; }
.field input, .field select {
  width: 100%; padding: 12px 14px; font: inherit; color: var(--peppercorn);
  background: #fff; border: 1px solid rgba(35, 41, 31, 0.4); border-radius: 2px;
}
.field input:focus-visible, .field select:focus-visible {
  outline: 2px solid var(--cherry); outline-offset: 1px;
}
.field input[type="radio"], .field input[type="checkbox"] { width: auto; margin: 0; accent-color: var(--cherry); }
fieldset.field { border: 0; padding: 0; margin: 0; min-width: 0; }
.radio { display: inline-flex; align-items: center; gap: 0.45rem; margin-right: 1.6rem;
         font-weight: 400; cursor: pointer; }
.checks { display: flex; flex-wrap: wrap; gap: 0.45rem 0.25rem; }
.checks .radio { margin-right: 1.1rem; white-space: nowrap; }
.field__hint { font-weight: 400; font-size: 15px; color: var(--ink-soft); }

.person-block { border-left: 3px solid var(--marigold); padding-left: 1.1rem; display: grid; gap: 0.8rem; }
.person-block__name { margin: 0; font-family: var(--font-display); font-weight: 500;
                      font-size: 21px; color: var(--cherry); }
.person-block .field label { font-size: 15px; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0; pointer-events: none; }

.rsvp-state { display: none; padding: 1.25rem; margin-top: 1rem; }
.rsvp-state--show { display: block; }
.rsvp-error { background: rgba(107, 29, 40, 0.07); border: 1px solid var(--rule-45); }
.rsvp-error .btn { margin: 0.5rem 0; }
.rsvp-closed { font-family: var(--font-display); font-weight: 500; font-style: italic;
               font-size: clamp(26px, 3vw, 32px); line-height: 1.3; color: var(--cherry); }

.rsvp-success { display: none; }
.rsvp-success--show { display: grid; place-items: center; text-align: center;
                      min-height: 56vh; padding: 2rem 1rem; }
.rsvp-success__inner { max-width: 680px; }
.rsvp-success__headline { margin: 0 0 1.2rem; font-family: var(--font-display); font-weight: 500;
                          font-style: italic; font-size: clamp(44px, 8vw, 80px);
                          line-height: 1.03; color: var(--cherry); }
.rsvp-success__sub { margin: 0 0 1.8rem; font-size: 1.12em; color: rgba(35,41,31,0.82); }

.spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid var(--blossom);
           border-top-color: transparent; border-radius: 50%; vertical-align: -4px; margin-right: 8px;
           animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Contact + footer ---- */
.section--contact { text-align: center; padding: clamp(4rem, 8vw, 6rem) var(--pad-x); }
.section--contact .ornament { margin: 0 auto 1.6rem; }
.section--contact h2 { margin: 0; font-family: var(--font-display); font-weight: 500;
                       font-size: clamp(34px, 4vw, 48px); line-height: 1.1; color: var(--cherry); }
.contact-note { max-width: 560px; margin: 1.2rem auto 2rem; font-family: var(--font-display);
                font-weight: 500; font-style: italic; font-size: clamp(20px, 2.2vw, 25px);
                line-height: 1.4; color: var(--cherry); }
.btn-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; align-items: center; }

.footer { background: var(--blossom); color: var(--peppercorn); text-align: center;
          padding: 2.8rem 1.5rem; border-top: 1px solid var(--rule-50); }
.footer img { height: 56px; width: auto; display: block; margin: 0 auto 1rem; }
.footer__line { margin: 0 0 0.5rem; font-family: var(--font-display); font-weight: 500;
                font-style: italic; font-size: 22px; color: var(--cherry); }
.footer__updated { margin: 0; font-size: 13px; letter-spacing: 0.1em; opacity: 0.75; }

/* ---- Ceremony modal ---- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(35, 41, 31, 0.6); }
.modal__panel { position: relative; background: var(--blossom); border: 1px solid var(--brass);
                max-width: 520px; width: 100%; max-height: 85vh; overflow: auto;
                padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.55); }
.modal__close { position: absolute; top: 0.5rem; right: 0.8rem; background: none; border: none;
                font-size: 30px; line-height: 1; color: var(--peppercorn); cursor: pointer; padding: 4px 8px; }
.modal__eyebrow { margin: 0 0 0.4rem; color: var(--gold-ink); font-weight: 500;
                  letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; }
.modal__title { margin: 0 0 1rem; font-family: var(--font-display); font-weight: 500;
                font-size: clamp(26px, 3vw, 32px); color: var(--cherry); }
.modal__body p { margin: 0 0 0.9rem; }
.modal__body p:last-child { margin-bottom: 0; }

/* ---- Travel page ---- */
.page-head { padding: calc(var(--nav-h) + clamp(3.5rem, 7vw, 5.5rem)) var(--pad-x) clamp(3rem, 6vw, 4.5rem);
             text-align: center; }
.page-head .kicker { letter-spacing: 0.22em; margin-bottom: 1rem; }
.page-head h1 { margin: 0; font-family: var(--font-display); font-weight: 500; font-style: italic;
                font-size: clamp(42px, 7vw, 84px); line-height: 1.05; color: var(--cherry); }
.page-head .ornament { max-width: 260px; margin: 1.6rem auto; }
.page-head .lede { max-width: 680px; margin: 0 auto 1.6rem; font-size: 1.08em;
                   color: rgba(35, 41, 31, 0.8); text-wrap: pretty; }
.page-head .back { font-weight: 500; font-size: 15px; }

.route { border-top: 1px solid var(--rule-50); background: var(--blossom);
         padding: var(--pad-y-band) var(--pad-x); }
.route--alt { background: var(--alt-light); }
.route__grid { max-width: 1140px; margin: 0 auto; display: grid;
               grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
               gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.route h2 { margin: 0 0 0.7rem; font-family: var(--font-display); font-weight: 500;
            font-size: clamp(34px, 4.2vw, 52px); line-height: 1.08; color: var(--cherry); }
.route .kicker { margin-bottom: 0.7rem; }
.route__path { margin: 0 0 1rem; font-weight: 500; color: var(--peppercorn); }
.route__para { margin: 0 0 1.4rem; color: rgba(35, 41, 31, 0.8); }
.route__facts { list-style: none; margin: 0 0 1.2rem; padding: 1.1rem 0 0;
                border-top: 1px solid var(--rule-45); display: grid; gap: 0.75rem; }
.route__facts li { position: relative; padding-left: 1.3rem; font-size: 16px; color: var(--ink-mid); }
.route__facts li::before { content: ""; position: absolute; left: 0; top: 0.55em;
                           width: 5px; height: 5px; background: var(--marigold); transform: rotate(45deg); }
.route__fares { font-weight: 500; }
.route__aside { margin: 1.2rem 0 0; font-family: var(--font-display); font-weight: 500;
                font-style: italic; font-size: 19px; color: var(--cherry); }
.route__img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; display: block;
              border: 1px solid var(--brass); box-shadow: 0 24px 50px -28px rgba(35, 41, 31, 0.6); }
.route__note { margin: 0.9rem 0 0; font-size: 15px; font-style: italic;
               color: rgba(35, 41, 31, 0.68); text-wrap: pretty; }

.band--singapore { border-top: 1px solid var(--rule-50); text-align: center; }
.band--singapore .inner { max-width: 820px; margin: 0 auto; }
.band--singapore h2 { margin: 0 0 0.8rem; font-size: clamp(32px, 4vw, 48px); }
.band--singapore .path { margin: 0 0 1.4rem; font-weight: 500; color: var(--cream-mid); }
.band--singapore .body { margin: 0; color: rgba(245, 239, 226, 0.85); text-align: left; text-wrap: pretty; }

.cta-row { border-top: 1px solid var(--rule-50); padding: clamp(3.5rem, 7vw, 5rem) var(--pad-x); text-align: center; }

/* ---- Motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .spinner { animation-duration: 2s; }
  .nav, .nav__logo img, .event { transition: none; }
}
