/* ============================================================
   Emerald Reserve Travel — hand-built, no framework
   Direction: 1950s private hotel bar × modern travel platform
   Palette: deep emerald / almost-black green / antique champagne
            gold / warm ivory / walnut / soft stone / oxblood
   ============================================================ */

:root {
  --green-950: #021F1A;  /* almost-black green */
  --green-900: #063D32;  /* deep emerald */
  --green-800: #0A4A3C;
  --green-700: #12604C;
  --gold: #B89B5E;       /* antique champagne */
  --gold-bright: #D6BC85;
  --gold-dark: #8F7442;
  --gold-ink: #7E6236;   /* text-safe gold on ivory (≥4.5:1) */
  --ivory: #F6F1E8;      /* warm ivory */
  --stone: #D8D0C2;      /* soft stone */
  --stone-dark: #C4BAA8;
  --card-light: #FBF7EE;
  --walnut: #3A261C;     /* espresso */
  --walnut-deep: #241811;
  --oxblood: #5A1F24;    /* used sparingly */
  --ink: #211D15;        /* warm espresso-ink */
  --ink-soft: #4A443A;
  --sage: #A7BCB0;
  --line-gold: rgba(184, 155, 94, .34);
  --line-gold-soft: rgba(184, 155, 94, .16);
  --line-ink: rgba(33, 29, 21, .14);
  --serif: "Bodoni Moda", "Bodoni MT", Didot, Georgia, serif;
  --sans: "Jost", "Century Gothic", Futura, -apple-system, sans-serif;
  --ease-out: cubic-bezier(.22, .61, .21, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 450; /* Jost 400 reads thin at small sizes — variable font lets us sit between */
  line-height: 1.65;
  color: var(--ivory);
  background: var(--green-950);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* film-grain overlay — low light, old bar */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: 0;
}

/* Didone legibility: heavier weight + capped optical size so the thin
   strokes hold up at display sizes, especially on the ivory surfaces */
h1, h2 {
  font-weight: 600;
  font-variation-settings: "opsz" 28;
}
h1 { font-size: clamp(2.8rem, 6.6vw, 5.2rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h3 { font-size: 1.55rem; }

p { margin: 0 0 1rem; }
a { color: inherit; }

em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-bright);
}

.wrap {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.wrap.narrow { max-width: 900px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  padding: .8rem 1.4rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------- eyebrow / labels ---------------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "◆";
  font-size: .55rem;
  color: var(--gold);
}

.light .eyebrow { color: var(--gold-ink); }
.light .eyebrow::before { color: var(--gold-ink); }

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease-out), background .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.btn-gold {
  background: var(--gold);
  color: #1E1509;
}
.btn-gold:hover {
  background: var(--gold-bright);
  box-shadow: 0 10px 30px rgba(184, 155, 94, .25);
}

.btn-ghost {
  border-color: var(--line-gold);
  color: var(--ivory);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(184, 155, 94, .08);
}

.light .btn-ghost { color: var(--ink); border-color: rgba(33, 29, 21, .3); }
.light .btn-ghost:hover { border-color: var(--gold-dark); background: rgba(184, 155, 94, .12); }

.btn-sm { padding: .6rem 1.4rem; font-size: .85rem; }
.btn-block { width: 100%; margin-top: auto; }

/* ---------------- nav ---------------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .35s, padding .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  padding: .65rem 0;
  background: rgba(2, 31, 26, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-gold-soft);
}
/* while the mobile drawer is open, drop the filter: a filtered ancestor
   re-anchors the fixed drawer and clips it to the header's box */
.site-nav:has(.nav-links.open) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(2, 31, 26, .98);
}
body.menu-open { overflow: hidden; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--gold);
}
.brand-mark { width: auto; height: 42px; flex: none; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ivory);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a:not(.btn) {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(246, 241, 232, .85);
  text-decoration: none;
  padding: .3rem 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:not(.btn):hover {
  color: var(--gold-bright);
  border-bottom-color: var(--line-gold);
}

/* services dropdown */
.nav-drop { position: relative; }
.nav-drop > button {
  background: none;
  border: 0;
  padding: .3rem 0;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(246, 241, 232, .85);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-drop > button:hover { color: var(--gold-bright); border-bottom-color: var(--line-gold); }
.nav-drop > button:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.drop-menu {
  position: absolute;
  top: calc(100% + .9rem);
  left: -1.2rem;
  /* invisible bridge across the gap so hover survives the mouse travel */
}
.drop-menu::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}
.drop-menu {
  min-width: 240px;
  background: rgba(2, 31, 26, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-gold-soft);
  border-radius: 4px;
  padding: .6rem 0;
  display: none;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .5);
}
.nav-drop:hover .drop-menu,
.nav-drop.open .drop-menu { display: block; }
.drop-menu a {
  display: block;
  padding: .55rem 1.3rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(246, 241, 232, .9);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.drop-menu a:hover {
  color: var(--gold-bright);
  background: rgba(184, 155, 94, .08);
}

/* page hero for subpages */
.page-hero {
  padding: clamp(8rem, 16vh, 10.5rem) 0 clamp(3rem, 6vh, 4.5rem);
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(18, 96, 76, .3), transparent 65%),
    linear-gradient(175deg, var(--green-900) 0%, var(--green-950) 70%);
}
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
.page-hero .section-sub { margin-bottom: 0; max-width: 44rem; }

/* explore links on service cards */
.svc-more {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-ink);
  text-decoration: none;
}
.svc-more:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 1.1rem .6rem;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-toggle.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(8rem, 14vh, 11rem) 0 5rem;
  background:
    radial-gradient(1100px 700px at 78% 30%, rgba(18, 96, 76, .35), transparent 65%),
    radial-gradient(900px 600px at 12% 85%, rgba(58, 38, 28, .5), transparent 70%),
    linear-gradient(175deg, var(--green-900) 0%, var(--green-950) 62%);
  overflow: hidden;
}

.hero-art {
  position: absolute;
  top: 42%;
  right: -10%;
  width: min(760px, 84vw);
  transform: translateY(-50%);
  animation: heroFloat 16s ease-in-out infinite alternate;
  opacity: .9;
}

@keyframes heroFloat {
  from { transform: translateY(calc(-50% - 12px)); }
  to   { transform: translateY(calc(-50% + 12px)); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.hero-copy { max-width: 620px; }

.hero-sub {
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--sage);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-proof {
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(167, 188, 176, .8);
  margin-top: 1.6rem;
}

/* ---------------- hero inquiry module ---------------- */

.module {
  margin-top: 2.6rem;
  background: var(--ivory);
  border-radius: 10px;
  border: 1px solid var(--line-gold);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .55);
  color: var(--ink);
  overflow: hidden;
}

.module-tabs {
  display: flex;
  border-bottom: 1px solid var(--line-ink);
  background: var(--card-light);
}
.module-tablist {
  display: flex;
  flex: 1;
}
.module-tab {
  flex: 1;
  padding: 1rem .6rem .85rem;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.module-tab:hover { color: var(--ink); background: rgba(184, 155, 94, .07); }
.module-tab[aria-selected="true"] {
  color: var(--gold-ink);
  border-bottom-color: var(--gold);
}
.module-tab:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: -3px; }

.module-more {
  display: flex;
  align-items: stretch;
}
.module-more select {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 1rem .9rem .85rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  appearance: none;
}
.module-more select:hover { color: var(--ink); background: rgba(184, 155, 94, .07); }
.module-more select:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: -3px; }
.module-more option { text-transform: none; letter-spacing: normal; }

.module-panel {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  padding: 1.3rem 1.4rem 1.4rem;
}
.module-panel[hidden] { display: none; }

.m-field label {
  display: block;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: .35rem;
}
.m-field input, .m-field select {
  width: 100%;
  padding: .65rem .1rem;
  border: 0;
  border-bottom: 1px solid rgba(33, 29, 21, .55);
  border-radius: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 1rem; /* 16px floor — under that, iOS Safari zooms the page on focus */
  font-weight: 500;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.m-field input:focus, .m-field select:focus {
  outline: none;
  border-bottom-color: var(--gold-dark);
  box-shadow: 0 1px 0 0 var(--gold-dark);
}
.m-field input::placeholder { color: rgba(74, 68, 58, .8); font-weight: 450; }

.module .btn { white-space: nowrap; }

.module-note {
  padding: 0 1.4rem 1rem;
  margin: 0;
  font-weight: 500;
  font-size: .74rem;
  color: var(--ink-soft);
}

/* ---------------- divider ---------------- */

.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--gold);
  font-size: .6rem;
  background: var(--green-950);
  padding: 0 0 .1rem;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 3px;
  border-top: 1px solid var(--line-gold-soft);
  border-bottom: 1px solid rgba(184, 155, 94, .08);
}

/* ---------------- sections ---------------- */

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }

.section.light {
  background: var(--ivory);
  color: var(--ink);
}
.section.light p { color: var(--ink-soft); }
.section.light h2, .section.light h3 { color: var(--ink); }

.section.dark {
  background: linear-gradient(180deg, var(--green-950) 0%, var(--green-900) 100%);
}

.section.dark.deep { background: var(--green-950); }

/* walnut wash — the bar-room sections */
.section.walnut {
  background:
    radial-gradient(1000px 600px at 85% 10%, rgba(58, 38, 28, .55), transparent 70%),
    linear-gradient(180deg, var(--green-950) 0%, #12201A 100%);
}

.section-sub {
  max-width: 40rem;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: 3rem;
}
.light .section-sub { color: var(--ink-soft); }

/* ---------------- service cards (ivory on dark) ---------------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.2rem;
}

.svc-card {
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  padding: 2.2rem 1.9rem;
  transition: border-color .35s, box-shadow .35s;
  box-shadow: 0 20px 45px -30px rgba(0, 0, 0, .5);
}
.svc-card:hover {
  border-color: var(--gold);
  box-shadow: 0 26px 55px -28px rgba(0, 0, 0, .6);
}
.svc-card h3 { color: var(--ink); font-size: 1.45rem; }
.svc-card p { color: var(--ink-soft); font-size: .95rem; }

.svc-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold-ink);
}
.svc-icon svg { width: 24px; height: 24px; }

.perk-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  font-size: .9rem;
}
.perk-list li {
  padding: .55rem 0 .55rem 1.4rem;
  position: relative;
  border-top: 1px solid var(--line-ink);
  color: var(--ink-soft);
}
.dark .price-card .perk-list li { border-top-color: rgba(246, 241, 232, .09); color: var(--sage); }
.perk-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: .68rem;
  font-size: .5rem;
  color: var(--gold-dark);
}
.dark .price-card .perk-list li::before { color: var(--gold); }

/* ---------------- beyond the booking ---------------- */

.beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem 3rem;
  margin-top: 3rem;
}

.beyond-card {
  display: block;
  text-decoration: none;
  border-top: 1px solid var(--line-ink);
  padding-top: 1.6rem;
  position: relative;
  transition: border-color .3s;
}
.beyond-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 44px;
  height: 1px;
  background: var(--gold-dark);
  transition: width .35s var(--ease-out);
}
.beyond-card:hover::before { width: 100%; }
.beyond-card:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 4px;
}
.beyond-card h3 {
  font-size: 1.45rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.beyond-card p {
  font-size: .93rem;
  color: var(--ink-soft);
  margin-bottom: .9rem;
}
.beyond-cta {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.beyond-card:hover .beyond-cta { color: var(--ink); }

.beyond-note {
  margin-top: 3rem;
  font-size: .82rem;
  color: var(--ink-soft);
  max-width: 46rem;
}

/* ---------------- how pricing works ---------------- */

.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 4rem;
}

.structure-card {
  background: var(--card-light);
  border: 1px solid var(--line-ink);
  border-radius: 4px;
  padding: 2rem 1.8rem;
}
.structure-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--gold-ink);
  margin-bottom: .8rem;
}
.structure-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.structure-card p { font-size: .92rem; margin: 0; }

.fee-list-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.fee-list {
  margin: 0 0 3rem;
  max-width: 900px;
}
.fee-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line-ink);
}
.fee-row:last-child { border-bottom: 1px solid var(--line-ink); }
.fee-row dt {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
}
.fee-row dd {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
}

.pricing-cta {
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  background: rgba(184, 155, 94, .07);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.pricing-cta p { margin: 0; max-width: 34rem; font-size: .95rem; }
.pricing-cta .btn { white-space: nowrap; flex: none; }

/* ---------------- difference ---------------- */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin: 3.2rem 0 4.5rem;
}

.diff-item { position: relative; padding-left: 4.4rem; }
.diff-num {
  position: absolute;
  left: 0;
  top: .1rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  opacity: .85;
}
.diff-item h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.diff-item p { color: var(--sage); font-size: .97rem; margin: 0; }

/* ---------------- marquee ---------------- */

.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line-gold-soft);
  border-bottom: 1px solid var(--line-gold-soft);
  padding: 1.4rem 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  padding-right: 2.8rem;
  flex: none;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(246, 241, 232, .7);
  white-space: nowrap;
}
.marquee-track span:nth-child(even) {
  font-size: .5rem;
  color: var(--gold);
}
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  to { transform: translateX(-100%); }
}

.marquee-note {
  margin-top: 1.2rem;
  font-size: .78rem;
  color: rgba(167, 188, 176, .88);
}

/* ---------------- destinations: flip cards ---------------- */

.dest-section { padding-bottom: clamp(4rem, 8vw, 7rem); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.dest-card {
  position: relative;
  aspect-ratio: 3 / 3.6;
  perspective: 1200px;
  cursor: pointer;
  border-radius: 4px;
  transition: transform .35s var(--ease-out);
}
.dest-card:hover { transform: translateY(-6px); }
.dest-card:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 4px;
}

.dest-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform .8s var(--ease-out);
}
.dest-card.flipped .dest-inner { transform: rotateY(180deg); }

.dest-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--green-900);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dest-face::before {
  content: "◆";
  position: absolute;
  top: 1.5rem;
  left: 1.8rem;
  font-size: .55rem;
  color: var(--gold-bright);
  opacity: .9;
}
.dest-face::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(214, 188, 133, .22);
  border-radius: 2px;
  pointer-events: none;
}

.dest-back {
  transform: rotateY(180deg);
  justify-content: center;
  background-image:
    radial-gradient(500px 300px at 85% 0%, rgba(18, 96, 76, .35), transparent 70%),
    linear-gradient(165deg, var(--green-900), var(--green-950));
}

.dest-card h3, .section.light .dest-card h3 {
  font-size: 1.95rem;
  margin: 0 0 .3rem;
  color: #FFFDF7;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .5);
}
.dest-card p, .section.light .dest-card p {
  margin: 0;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(246, 241, 232, .95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
}
.dest-back p { text-shadow: none; }

.dest-go {
  margin-top: 1.2rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-decoration: none;
  width: fit-content;
}
.dest-go:hover { color: #FFFDF7; text-decoration: underline; text-underline-offset: 4px; }

/* photo fronts (credits at /credits.html) */
.dest-card.d1 .dest-front {
  background-image: linear-gradient(180deg, rgba(2, 31, 26, .08) 38%, rgba(2, 31, 26, .9) 100%), url("/assets/img/dest/amalfi.jpg");
  background-position: 42% 32%;
}
.dest-card.d2 .dest-front {
  background-image: linear-gradient(180deg, rgba(2, 31, 26, .08) 38%, rgba(2, 31, 26, .9) 100%), url("/assets/img/dest/kyoto.jpg");
  background-position: center;
}
.dest-card.d3 .dest-front {
  background-image: linear-gradient(180deg, rgba(2, 31, 26, .08) 38%, rgba(2, 31, 26, .9) 100%), url("/assets/img/dest/stbarts.jpg");
  background-position: 38% 35%;
}
.dest-card.d4 .dest-front {
  background-image: linear-gradient(180deg, rgba(2, 31, 26, .08) 38%, rgba(2, 31, 26, .9) 100%), url("/assets/img/dest/capetown.jpg");
  background-position: center 30%;
}
.dest-card.d5 .dest-front {
  background-image: linear-gradient(180deg, rgba(2, 31, 26, .08) 38%, rgba(2, 31, 26, .9) 100%), url("/assets/img/dest-paris.jpg");
  background-position: center 60%;
}
.dest-card.d6 .dest-front {
  background-image: linear-gradient(180deg, rgba(2, 31, 26, .08) 38%, rgba(2, 31, 26, .9) 100%), url("/assets/img/dest/maldives.jpg");
  background-position: 62% center;
}

/* JS-dealt cards: photo as <img> + scrim overlay (CSP-safe, lazy-loaded) */
.dest-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dest-front .dest-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 31, 26, .08) 38%, rgba(2, 31, 26, .9) 100%);
  z-index: 1;
}
.dest-face::before,
.dest-face::after { z-index: 2; }
.dest-card h3,
.dest-card p,
.dest-go { position: relative; z-index: 2; }

.dest-shuffle-row { margin-top: 2.4rem; text-align: center; }

/* dealing animation: old hand fades down-and-out, new one staggers in */
.dest-grid.dealing .dest-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .24s ease, transform .24s ease;
  pointer-events: none;
}
@keyframes dealIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.dest-card.dealt { animation: dealIn .5s var(--ease-out) both; }
.dest-card.dealt:nth-child(2) { animation-delay: .06s; }
.dest-card.dealt:nth-child(3) { animation-delay: .12s; }
.dest-card.dealt:nth-child(4) { animation-delay: .18s; }
.dest-card.dealt:nth-child(5) { animation-delay: .24s; }
.dest-card.dealt:nth-child(6) { animation-delay: .30s; }

/* ---------------- place suggestions (Kayak-style dropdown) ---------------- */

.ac-panel {
  position: absolute;
  z-index: 300; /* above the fixed site nav (100) */
  max-height: 322px;
  overflow-y: auto;
  background: #FCF9F1;
  border: 1px solid rgba(143, 116, 66, .28);
  border-radius: 8px;
  box-shadow: 0 22px 48px -12px rgba(2, 31, 26, .35), 0 3px 10px rgba(2, 31, 26, .10);
  padding: .35rem 0;
}
.ac-panel[hidden] { display: none; }
@keyframes acIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: none; }
}
.ac-panel.ac-open { animation: acIn .16s ease-out; }

.ac-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .58rem .95rem;
  cursor: pointer;
}
.ac-item.active {
  background: rgba(184, 155, 94, .22);
  box-shadow: inset 3px 0 0 var(--gold-dark); /* perceivable keyboard-active marker */
}

.ac-ico {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(184, 155, 94, .13);
  color: var(--gold-dark);
}
.ac-ico svg { width: 15px; height: 15px; }
.ac-ico-private { background: rgba(6, 61, 50, .10); color: var(--green-900); }

.ac-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .08rem;
}
.ac-primary {
  font-family: var(--sans);
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-primary strong { font-weight: 700; color: var(--green-900); }
.ac-sub {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 400;
  color: rgba(74, 68, 58, .78);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-code {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .09em;
  color: var(--gold-ink);
  border: 1px solid rgba(143, 116, 66, .38);
  border-radius: 4px;
  padding: .16rem .42rem;
  background: rgba(184, 155, 94, .09);
}

@media (max-width: 760px) {
  .ac-item { padding: .7rem .95rem; } /* touch-friendly rows */
}

/* ---------------- date picker (matches the suggestion dropdown) ---------------- */

.cal-panel {
  position: absolute;
  z-index: 300;
  background: #FCF9F1;
  border: 1px solid rgba(143, 116, 66, .28);
  border-radius: 8px;
  box-shadow: 0 22px 48px -12px rgba(2, 31, 26, .35), 0 3px 10px rgba(2, 31, 26, .10);
  padding: .9rem;
  font-family: var(--sans);
}
.cal-panel[hidden] { display: none; }
.cal-panel.cal-open { animation: acIn .16s ease-out; }

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .55rem;
}
.cal-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--green-900);
  letter-spacing: .01em;
}
.cal-nav {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(143, 116, 66, .32);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.cal-nav:hover:not(:disabled) { background: rgba(184, 155, 94, .14); border-color: var(--gold-dark); }
.cal-nav:disabled { opacity: .3; cursor: default; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: .2rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(74, 68, 58, .65);
  padding: .25rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  justify-items: stretch;
}
.cal-day {
  width: 100%;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .12s, color .12s;
}
.cal-day:hover:not(:disabled) { background: rgba(184, 155, 94, .18); }
.cal-day:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 1px; }
.cal-day:disabled { color: rgba(74, 68, 58, .28); cursor: default; }
.cal-day.today { box-shadow: inset 0 0 0 1px var(--gold-dark); }
.cal-day.selected {
  background: var(--gold);
  color: #1E1509;
  font-weight: 600;
}
.cal-day.selected:hover { background: var(--gold-bright); }

.cal-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: .5rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(143, 116, 66, .18);
}
.cal-clear {
  border: 0;
  background: none;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-ink);
  cursor: pointer;
  padding: .2rem .4rem;
}
.cal-clear:hover { color: var(--green-900); text-decoration: underline; text-underline-offset: 3px; }

/* ---------------- email signature preview page ---------------- */

.sig-preview {
  margin: 2rem 0 1.6rem;
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid rgba(143, 116, 66, .25);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(2, 31, 26, .12);
}
.sig-copied {
  margin-left: 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--sage);
}

/* ---------------- pricing ---------------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.2rem;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: rgba(246, 241, 232, .03);
  border: 1px solid rgba(246, 241, 232, .12);
  border-radius: 4px;
  padding: 2.4rem 2rem;
  position: relative;
  transition: transform .35s var(--ease-out), border-color .35s;
}
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-gold);
}
.price-card.featured {
  border-color: var(--gold);
  background: rgba(184, 155, 94, .07);
}

.price-card .tag {
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  padding: .25rem .9rem;
  background: var(--gold);
  color: #1E1509;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-card h3 { font-size: 1.4rem; }

.price { margin: .4rem 0 1rem; }
.price .amount {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.1;
}
.price .unit {
  display: block;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: .3rem;
}

.price-blurb { font-size: .95rem; color: var(--sage); }

.price-card .perk-list { margin-bottom: 2rem; }

.price-note {
  margin-top: 2.6rem;
  font-size: .85rem;
  color: rgba(167, 188, 176, .88);
  max-width: 44rem;
}

/* ---------------- process ---------------- */

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  margin-top: 3.4rem;
}

.step {
  border-top: 1px solid var(--line-ink);
  padding-top: 1.8rem;
  position: relative;
}
.step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--gold-dark);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: .8rem;
}
.step h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.step p { font-size: .95rem; margin: 0; }

/* ---------------- compass teaser ---------------- */

.compass-teaser {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
}
.compass-visual {
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  background: rgba(246, 241, 232, .02);
  padding: 2.6rem;
  display: grid;
  place-items: center;
}
.compass-visual svg { width: 70%; max-width: 260px; }

/* ---------------- about ---------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 4rem;
  align-items: center;
}

.about-copy p { color: var(--sage); max-width: 36rem; }

.cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.8rem;
}
.cred-chips span {
  padding: .45rem 1.1rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--gold-bright);
}

.about-visual { display: flex; justify-content: center; }

.portrait-frame {
  width: min(320px, 100%);
  padding: 2.6rem;
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  background: rgba(246, 241, 232, .02);
  text-align: center;
}
.portrait-frame svg { width: 60%; margin: 0 auto 1.6rem; }
.portrait-caption {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: .95rem;
  color: var(--sage);
}

/* ---------------- FAQ ---------------- */

.faq-list {
  max-width: 860px;
  margin-top: 2.6rem;
}
.faq-list details {
  border-top: 1px solid var(--line-ink);
}
.faq-list details:last-child { border-bottom: 1px solid var(--line-ink); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 2.6rem 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: .4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold-ink);
  transition: transform .3s var(--ease-out);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--oxblood); }
.faq-list summary:hover { color: var(--gold-ink); }
.faq-list summary:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 2px; }
.faq-list .faq-body {
  padding: 0 0 1.6rem;
  color: var(--ink-soft);
  max-width: 44rem;
}

/* ---------------- inquiry form (ivory desk card) ---------------- */

.form-card {
  margin-top: 3rem;
  padding: clamp(2rem, 5vw, 3.4rem);
  border: 1px solid var(--line-gold);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .6);
}

/* service segmented control (radios) */
.service-picker { margin-bottom: 2.2rem; }
.picker-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.picker-note {
  margin: 1.1rem 0 .5rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.picker-row.specialty .chip {
  font-size: .78rem;
  padding: .5rem 1.1rem;
}
.fieldset-note {
  margin: .4rem 0 1rem;
  padding: .8rem 1rem;
  font-weight: 500;
  border-left: 2px solid var(--line-gold);
  background: rgba(184, 155, 94, .06);
  font-size: .78rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.service-picker label {
  position: relative;
  cursor: pointer;
}
.service-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.service-picker .chip {
  display: inline-block;
  padding: .6rem 1.3rem;
  border: 1px solid var(--line-ink);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 550;
  color: var(--ink-soft);
  background: var(--card-light);
  transition: border-color .2s, background .2s, color .2s;
}
.service-picker label:hover .chip { border-color: var(--gold-dark); }
.service-picker input:checked + .chip {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--ivory);
}
.service-picker input:focus-visible + .chip {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

fieldset.svc-fields {
  border: 0;
  padding: 0;
  margin: 0 0 .5rem;
}
fieldset.svc-fields legend {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0 0 1rem;
}
fieldset.svc-fields[hidden] { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.form-row.thirds { grid-template-columns: 1fr 1fr 1fr; }

.field { margin-bottom: 1.5rem; }

.field label {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: .45rem;
}
.field .optional {
  text-transform: none;
  letter-spacing: .02em;
  font-weight: 500;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .75rem .2rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(33, 29, 21, .55);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(74, 68, 58, .8); font-weight: 450; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-dark);
  box-shadow: 0 1px 0 0 var(--gold-dark);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238F7442' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .3rem center;
  cursor: pointer;
}
.field select option { background: var(--ivory); color: var(--ink); }

.hp-field {
  position: absolute;
  left: -6000px;
  top: -6000px;
  height: 1px;
  overflow: hidden;
}

/* ---------------- budget slider ---------------- */

.budget-slider input[type="range"],
.field .budget-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(33, 29, 21, .22);
  outline: none;
  cursor: pointer;
  margin: 1.3rem 0 .8rem;
}
.field .budget-slider input[type="range"]:focus {
  box-shadow: none;
  border: 0;
}
.budget-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 1px solid var(--gold-dark);
  border-radius: 3px;
  transform: rotate(45deg);
  cursor: grab;
}
.budget-slider input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: var(--gold);
  border: 1px solid var(--gold-dark);
  border-radius: 3px;
  transform: rotate(45deg);
  cursor: grab;
}
.budget-slider input[type="range"]:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 6px;
}
.budget-readout {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  min-height: 2rem;
}

.form-error {
  color: #8E3A3A;
  font-size: .9rem;
  font-weight: 500;
  border-left: 2px solid var(--oxblood);
  padding-left: .9rem;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
}
.privacy-note {
  margin: 0;
  font-size: .76rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 26rem;
}

.sensitive-note {
  margin: 1.8rem 0 0;
  padding: .9rem 1.1rem;
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  background: rgba(184, 155, 94, .07);
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-soft);
}

.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.4rem;
  color: var(--gold-dark);
}
.form-success h3 { font-size: 2.2rem; color: var(--ink); }
.form-success p { color: var(--ink-soft); max-width: 30rem; margin-inline: auto; }
.form-success .status-line {
  display: inline-block;
  margin-top: 1rem;
  padding: .4rem 1.1rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* ---------------- final CTA ---------------- */

.final-cta {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(800px 400px at 50% 110%, rgba(58, 38, 28, .6), transparent 70%),
    var(--green-950);
  border-top: 1px solid var(--line-gold-soft);
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { color: var(--sage); max-width: 32rem; margin: 0 auto 2.2rem; }

/* ---------------- footer ---------------- */

.site-footer {
  background: #01140F;
  border-top: 1px solid var(--line-gold-soft);
  padding: 4.5rem 0 2.5rem;
  font-size: .9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .brand-mark { width: auto; height: 54px; color: var(--gold); margin-bottom: 1rem; }
.footer-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 .2rem;
}
.footer-tag {
  font-style: italic;
  font-weight: 500;
  font-family: var(--serif);
  color: var(--sage);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.footer-links a {
  color: rgba(246, 241, 232, .75);
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.footer-links a:hover { color: var(--gold-bright); border-bottom-color: var(--line-gold); }

.footer-contact p { margin: 0 0 .4rem; }
.footer-contact a { color: var(--gold-bright); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-contact .sig {
  color: rgba(246, 241, 232, .75);
}

.footer-legal {
  border-top: 1px solid rgba(246, 241, 232, .08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(167, 188, 176, .92);
}
.footer-legal p { margin: 0; max-width: 46rem; }

/* ---------------- sticky mobile CTA ---------------- */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom, 0px));
  background: rgba(2, 31, 26, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-gold-soft);
  transform: translateY(110%);
  transition: transform .35s var(--ease-out);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* ---------------- compass page ---------------- */

.compass-page {
  min-height: 100svh;
  padding: 8.5rem 0 6rem;
}

.compass-card {
  max-width: 760px;
  margin-top: 2.6rem;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--line-gold);
  border-radius: 10px;
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .6);
}

.compass-count {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.compass-progress {
  display: flex;
  gap: .4rem;
  margin-bottom: 2rem;
}
.compass-progress span {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--stone);
  transition: background .3s;
}
.compass-progress span.done { background: var(--gold); }

.compass-q h3 {
  color: var(--ink);
  font-size: 1.75rem;
  margin-bottom: 1.6rem;
}
.compass-opts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.compass-opts button {
  padding: .75rem 1.4rem;
  border: 1px solid var(--line-ink);
  border-radius: 999px;
  background: var(--card-light);
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease-out);
}
.compass-opts button:hover {
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}
.compass-opts button:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 2px; }
.compass-opts button.picked {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--ivory);
}

.compass-back {
  margin-top: 1.8rem;
  background: none;
  border: 0;
  padding: .4rem 0;
  font-size: .85rem;
  color: var(--ink-soft);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.compass-back:hover { color: var(--gold-ink); }

.compass-result .result-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: .8rem;
}
.compass-result h3 {
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  color: var(--ink);
}
.compass-result .result-desc { color: var(--ink-soft); max-width: 36rem; }
.result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.4rem 0 2rem;
}
.result-chips span {
  padding: .35rem .9rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  font-size: .78rem;
  color: var(--gold-ink);
  background: rgba(184, 155, 94, .07);
}
.compass-send { border-top: 1px solid var(--line-ink); padding-top: 1.8rem; }

/* ---------------- reveal animations ----------------
   Hidden state is gated on the .js class (set by an inline
   script in <head>) so content stays visible without JS. */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s ease, transform .85s var(--ease-out);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}

.stagger > .reveal:nth-child(2) { transition-delay: .12s; }
.stagger > .reveal:nth-child(3) { transition-delay: .24s; }
.stagger > .reveal:nth-child(4) { transition-delay: .36s; }
.stagger > .reveal:nth-child(5) { transition-delay: .48s; }
.stagger > .reveal:nth-child(6) { transition-delay: .6s; }

/* ---------------- responsive ---------------- */

@media (max-width: 960px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; }
  .beyond-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .structure-grid { grid-template-columns: 1fr; max-width: 560px; }
  .fee-row { grid-template-columns: 1fr; gap: .3rem; }
  .pricing-cta { flex-direction: column; align-items: flex-start; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .about-grid, .compass-teaser { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-art { right: -45%; opacity: .4; }
  .module-panel { grid-template-columns: 1fr 1fr; }
  .module-panel .btn { grid-column: 1 / -1; }
}

/* Drawer breakpoint matches the 960px layout breakpoint — the
   desktop nav row needs ~830px and clips on tablets otherwise. */
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 2rem;
    background: #04140F; /* solid: no see-through, no filter glitches */
    border-left: 1px solid var(--line-gold-soft);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .4s var(--ease-out), visibility 0s .4s;
    z-index: 90;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }
  .nav-links a:not(.btn) { font-size: 1.05rem; }
  .nav-toggle { display: flex; position: relative; z-index: 95; }

  /* flatten the services dropdown inside the drawer */
  .nav-links { overflow-y: auto; justify-content: flex-start; padding-top: 5rem; }
  .nav-drop > button { display: none; }
  .drop-menu {
    display: block;
    position: static;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }
  .drop-menu a {
    padding: 0 0 1.4rem;
    font-size: 1.05rem;
  }
  .drop-menu a:hover { background: none; }
}

@media (max-width: 760px) {
  .hero { padding-top: 7rem; }
  .svc-grid, .price-grid, .step-grid, .beyond-grid, .dest-grid { grid-template-columns: 1fr; }
  .price-grid { max-width: 480px; }
  .module-tabs { flex-wrap: wrap; }
  .module-tablist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    flex: none;
  }
  .module-more { width: 100%; border-top: 1px solid var(--line-ink); }
  .module-more select { width: 100%; text-align: center; }
  .module-panel { grid-template-columns: 1fr; }
  .form-row, .form-row.thirds { grid-template-columns: 1fr; gap: 0; }
  .form-actions { flex-direction: column-reverse; align-items: stretch; text-align: center; }
  .form-actions .btn { width: 100%; }
  .privacy-note { max-width: none; }
  .footer-legal { flex-direction: column; }
  .sticky-cta { display: block; }
}

/* ---------------- reduced motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-art { animation: none; }
  .marquee-track { animation: none; }
  .marquee { flex-wrap: wrap; }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn, .svc-card, .price-card, .dest-card, .dest-inner, .nav-links, .sticky-cta { transition: none; }
  .dest-card.dealt { animation: none; }
  .dest-grid.dealing .dest-card { opacity: 1; transform: none; transition: none; }
  .ac-panel.ac-open { animation: none; }
  .cal-panel.cal-open { animation: none; }
}

@media print {
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .sticky-cta, .site-nav { display: none !important; }
}
