/* ===== Serendria — Design tokens & base ===== */

:root {
  /* Palette (dark default) */
  --ink: #0B0B0B;
  --ink-2: #131211;
  --ink-3: #1c1a17;
  --ivory: #F5F3EF;
  --ivory-soft: #ECE8E0;
  --muted: rgba(245, 243, 239, 0.62);
  --muted-2: rgba(245, 243, 239, 0.38);
  --hairline: rgba(245, 243, 239, 0.14);
  --hairline-strong: rgba(245, 243, 239, 0.28);
  --prose: rgba(245, 243, 239, 0.86);

  --gold: #C6A96B;
  --gold-2: #B89455;
  --sand: #C9B89A;
  --forest: #3F4D3B;

  /* Type */
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --max: 1440px;
  --nav-h: 92px;

  color-scheme: dark;
}

/* Light theme override */
[data-theme="light"] {
  --ink: #F5F3EF;
  --ink-2: #ECE8E0;
  --ink-3: #DFD9CE;
  --ivory: #14110D;
  --ivory-soft: #2A251E;
  --muted: rgba(20, 17, 13, 0.62);
  --muted-2: rgba(20, 17, 13, 0.38);
  --hairline: rgba(20, 17, 13, 0.12);
  --hairline-strong: rgba(20, 17, 13, 0.26);
  --prose: rgba(20, 17, 13, 0.84);
  color-scheme: light;
}

/* Type pairing overrides */
[data-type="cormorant"] { --display: 'Cormorant Garamond', Georgia, serif; }
[data-type="italiana"] { --display: 'Italiana', Georgia, serif; }
[data-type="playfair"] { --display: 'Playfair Display', Georgia, serif; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html, body {
  overflow-x: hidden;   /* fallback for older Safari */
  overflow-x: clip;     /* stricter — clips fixed/absolute descendants too */
  max-width: 100%;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* ===== Typography utilities ===== */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--muted { color: var(--muted); }

.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.04;
  font-style: normal;
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 300; letter-spacing: -0.01em; margin: 0; }

p { margin: 0; }

.lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ivory);
  text-wrap: pretty;
}

.body-lg { font-size: 17px; line-height: 1.6; color: var(--muted); }
.body { font-size: 15px; line-height: 1.6; color: var(--muted); }
.small { font-size: 12.5px; letter-spacing: 0.01em; color: var(--muted); }
.cap {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ===== Layout ===== */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: clamp(72px, 9vw, 140px) 0; }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }

.divider {
  height: 1px;
  background: var(--hairline);
  width: 100%;
}

/* ===== Navbar ===== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav--solid {
  background: rgba(11, 11, 11, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--hairline);
}

[data-theme="light"] .nav--solid {
  background: rgba(245, 243, 239, 0.82);
}

.nav__brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav__brand-mark {
  width: 30px; height: 30px;
  color: var(--gold);
  display: inline-block;
  flex: none;
  transition: transform 0.45s ease;
}
.nav__brand:hover .nav__brand-mark { transform: translateY(-1px); }
.nav__brand-word {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.025em;
  font-feature-settings: "liga" 1, "calt" 1;
}

.nav__links {
  display: flex;
  gap: 36px;
  justify-content: center;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 2px;
  position: relative;
  cursor: pointer;
  background: none;
  border: 0;
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--ivory); }
.nav__link--active { color: var(--ivory); }
.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 1px;
  background: var(--gold);
}

.nav__cta {
  display: flex; justify-content: flex-end; align-items: center; gap: 16px;
}

.nav__menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: transparent;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--ink);
}

.btn--ghost {
  border-color: var(--hairline);
}

.btn--lg {
  padding: 20px 36px;
  font-size: 12px;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Underline link */
.ulink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hairline-strong);
  transition: border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.ulink:hover { border-color: var(--gold); color: var(--gold); }
.ulink--gold { color: var(--gold); border-color: var(--gold); }

/* ===== Hero ===== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: var(--ivory);
}

.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(.2,.6,.2,1);
  filter: brightness(0.85) contrast(1.02);
}
.hero--loaded .hero__media img { transform: scale(1); }

.hero__veil {
  position: absolute; inset: 0;
  /* Long ramp into ink. The ::after cap on .hero finishes the job and
     hides any GPU compositing fringe from the image's filter layer. */
  background:
    linear-gradient(180deg,
      rgba(11,11,11,0.55) 0%,
      rgba(11,11,11,0.12) 28%,
      rgba(11,11,11,0.20) 55%,
      rgba(11,11,11,0.65) 78%,
      var(--ink)         92%,
      var(--ink)         100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 8vw, 110px);
  color: #F5F3EF;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #F5F3EF;
  opacity: 0.85;
}
.hero__eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 28px 0 36px;
  max-width: 16ch;
  text-wrap: balance;
  color: #F5F3EF;
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 300; }

.hero__sub {
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245,243,239,0.78);
  margin-bottom: 44px;
}

.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.7);
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(245,243,239,0.6), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.6; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 1; }
}

.hero__meta {
  position: absolute;
  top: calc(var(--nav-h) + 24px);
  left: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.6);
}
.hero__meta span { display: inline-flex; gap: 18px; }
.hero__meta i { font-style: normal; color: var(--gold); }

/* Hero variants */
.hero--still .hero__media img { transform: scale(1); animation: none; }
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.hero--split .hero__media { position: relative; inset: auto; }
.hero--split .hero__veil { display: none; }
.hero--split .hero__content { padding: 0 clamp(40px, 6vw, 96px); justify-content: center; }
.hero--split .hero__title { font-size: clamp(40px, 5vw, 84px); }

/* ===== Intro section ===== */

.intro {
  text-align: center;
  /* Tighter top so the section reads as a continuation of the hero's
     fade-to-ink, not a separate slab of black after a gap. */
  padding: clamp(40px, 6vw, 96px) 0 clamp(96px, 14vw, 200px);
  position: relative;
  z-index: 1;
}
/* Solid ink overlap that straddles the hero/intro boundary, masking
   any GPU compositing fringe at the hero's bottom edge. Lives on .intro
   (not .hero) so it isn't clipped by the hero's overflow:hidden. */
.intro::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -40px;
  height: 60px;
  background: var(--ink);
  pointer-events: none;
  z-index: 0;
}
.intro__rule {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 32px;
}
.intro__quote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
}
.intro__quote em { font-style: italic; color: var(--gold); font-weight: 300; }
.intro__sig {
  margin-top: 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Section heading ===== */

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.sec-head__left { display: flex; flex-direction: column; gap: 20px; }
.sec-head__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.sec-head__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.sec-head__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.sec-head__right { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 46ch; justify-self: end; }

@media (max-width: 880px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
  .sec-head__right { justify-self: start; }
}

/* ===== Experience cards ===== */

.experiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.experiences--two-up { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.experiences--mosaic {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.experiences--mosaic .xcard:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.experiences--mosaic .xcard:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.experiences--mosaic .xcard:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.experiences--mosaic .xcard:nth-child(4) { grid-column: span 4; grid-row: span 1; }

.xcard {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-2);
  aspect-ratio: 3 / 4;
}
.experiences--mosaic .xcard { aspect-ratio: auto; height: 100%; }

.xcard__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.6,.2,1), filter 0.5s ease;
  filter: brightness(0.78);
}
.xcard:hover .xcard__img { transform: scale(1.06); filter: brightness(0.92); }

.xcard__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.0) 35%, rgba(11,11,11,0.85) 100%);
}

.xcard__body {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  color: #F5F3EF;
  display: flex; flex-direction: column; gap: 8px;
}
.xcard__num {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
}
.xcard__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.xcard__sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.65);
}
.xcard__cta {
  margin-top: 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.xcard:hover .xcard__cta { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .experiences { grid-template-columns: repeat(2, 1fr); }
  .experiences--mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
  .experiences--mosaic .xcard:nth-child(n) { grid-column: auto; grid-row: auto; }
}
@media (max-width: 640px) {
  .experiences, .experiences--mosaic { grid-template-columns: 1fr; }
}

/* ===== Signature itineraries ===== */

.itinerary {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 1px solid var(--hairline);
}
.itinerary:last-of-type { border-bottom: 1px solid var(--hairline); }

.itinerary--reverse .itinerary__media { order: 2; }

.itinerary__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.itinerary__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.itinerary:hover .itinerary__media img { transform: scale(1.04); }

.itinerary__tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 8px 14px;
  background: rgba(11,11,11,0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,243,239,0.18);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F5F3EF;
}

.itinerary__body { padding-right: 20px; }
.itinerary__no {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
}
.itinerary__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.itinerary__title em { font-style: italic; color: var(--gold); font-weight: 300; }

.itinerary__lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 44ch;
}

.itinerary__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.itinerary__meta-row { display: flex; flex-direction: column; gap: 6px; }
.itinerary__meta-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.itinerary__meta-val {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  color: var(--ivory);
}
.itinerary__highlights {
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.8;
  letter-spacing: 0.03em;
}

@media (max-width: 880px) {
  .itinerary { grid-template-columns: 1fr; gap: 40px; }
  .itinerary--reverse .itinerary__media { order: 0; }
  .itinerary__meta { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ===== Why choose us ===== */

.why {
  background: var(--ink-2);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
[data-theme="light"] .why { background: var(--ink-2); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}
.why__item {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why__item:last-child { border-right: 0; }
.why__item:nth-child(n+2) { padding-left: 28px; }

.why__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.why__icon svg { width: 28px; height: 28px; }

.why__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
}
.why__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.why__copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__item { border-right: 0; border-bottom: 1px solid var(--hairline); padding: 28px 20px; }
  .why__item:nth-child(2n) { border-right: 0; }
}

/* ===== Testimonials ===== */

.testimonials {
  padding: clamp(96px, 12vw, 160px) 0;
}
.testimonial {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin-bottom: 36px;
  color: var(--ivory);
  text-wrap: balance;
}
.testimonial__rule { width: 24px; height: 1px; background: var(--gold); margin: 0 auto 18px; }
.testimonial__name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
}
.testimonial__meta {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.testimonial__dots {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 56px;
}
.testimonial__dot {
  width: 24px; height: 1px;
  background: var(--hairline-strong);
  border: 0; cursor: pointer; padding: 0;
  transition: background 0.3s ease;
}
.testimonial__dot--active { background: var(--gold); }

/* ===== Final CTA ===== */

.final-cta {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.final-cta__media {
  position: absolute; inset: 0;
}
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45); }
.final-cta__veil {
  position: absolute; inset: 0;
  /* Solid ink at top and bottom edges so the panel emerges from / sinks
     back into the page background. Adjacent sections (testimonials above,
     footer below) carry sibling seam caps to cover any compositing fringe. */
  background:
    linear-gradient(180deg,
      var(--ink)         0%,
      var(--ink)         5%,
      rgba(11,11,11,0.55) 22%,
      rgba(11,11,11,0.45) 50%,
      rgba(11,11,11,0.70) 78%,
      var(--ink)         95%,
      var(--ink)         100%);
}
/* Seam cap on the section AFTER final-cta (the footer) */
.final-cta + * {
  position: relative;
  z-index: 1;
}
.final-cta + *::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -20px;
  height: 40px;
  background: var(--ink);
  pointer-events: none;
  z-index: 0;
}
.final-cta__content {
  position: relative;
  text-align: center;
  z-index: 2;
  color: #F5F3EF;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
}
.final-cta__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5.8vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 20px 0 24px;
  max-width: 18ch;
  margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.final-cta__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.final-cta__sub {
  color: rgba(245,243,239,0.75);
  max-width: 56ch;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== Footer ===== */

.footer {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}
.footer__brand {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__brand-mark {
  width: 32px; height: 32px;
  color: var(--gold);
  flex: none;
}
.footer__estd {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.9;
}
.footer__tag {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 38ch;
}
.footer__col-title {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link {
  font-size: 14px;
  color: var(--ivory);
  cursor: pointer;
  width: max-content;
  transition: color 0.2s ease;
}
.footer__link:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}

/* ===== Tours page ===== */

.tours-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
}
.tours-hero__media { position: absolute; inset: 0; }
.tours-hero__media picture { display: contents; }
.tours-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.tours-hero__veil {
  position: absolute; inset: 0;
  /* Gentle ramp — image stays mostly clean through the middle, then
     fades over the bottom ~40% so the transition into ink is luxurious,
     not abrupt. Hits solid ink at 90% so the last strip is invisible seam. */
  background:
    linear-gradient(180deg,
      rgba(11,11,11,0.45) 0%,
      rgba(11,11,11,0.15) 25%,
      rgba(11,11,11,0.20) 50%,
      rgba(11,11,11,0.45) 70%,
      rgba(11,11,11,0.80) 85%,
      var(--ink)         92%,
      var(--ink)         100%);
}
/* Seam cap on the section AFTER tours-hero — straddles the boundary
   from outside the hero, so it isn't clipped by overflow:hidden. Applies
   to any section directly after .tours-hero (about page uses .wrap, tours
   page uses .tours-aside-section). */
.tours-hero + section,
.tours-aside-section {
  position: relative;
  z-index: 1;
}
.tours-hero + section::before,
.tours-aside-section::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -20px;
  height: 40px;
  background: var(--ink);
  pointer-events: none;
  z-index: 0;
}

.tours-aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 56px;
}
.tours-aside__ornament {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.tours-aside__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 54ch;
  margin: 0;
  text-wrap: balance;
}
.tours-aside__text em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-size: 1.15em;
  letter-spacing: 0;
}
.tours-aside__link {
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, var(--gold) 45%, transparent);
  transition: text-decoration-color 0.25s ease;
}
.tours-aside__link:hover { text-decoration-color: var(--gold); }

@media (max-width: 640px) {
  .tours-aside { padding: 24px 16px 40px; }
}
.tours-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  color: #F5F3EF;
}
.tours-hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
  max-width: 14ch;
  text-wrap: balance;
}
.tours-hero__title em { font-style: italic; color: var(--gold); font-weight: 300; }

.tours-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.tours-filters__group { display: flex; gap: 4px; flex-wrap: wrap; }
.tours-filter {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tours-filter:hover { color: var(--ivory); }
.tours-filter--active {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.tours-count {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.tours-count i { font-style: italic; font-family: var(--display); font-size: 14px; color: var(--gold); margin-right: 8px; }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 32px;
  padding: 56px 0 120px;
}

.tcard { cursor: pointer; display: flex; flex-direction: column; gap: 16px; }
.tcard__img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 12px;
}
.tcard__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.tcard:hover .tcard__img { transform: scale(1.06); }
.tcard__tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(11,11,11,0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,243,239,0.2);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F5F3EF;
}
.tcard__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
}
.tcard__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.tcard__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 42ch;
}
.tcard__meta {
  display: flex;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.tcard__meta i { font-style: normal; color: var(--ivory); }
.tcard__highlights {
  font-style: italic;
  font-family: var(--display);
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--gold);
  opacity: 0.75;
  font-size: 10.5px;
}

@media (max-width: 1100px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tours-grid { grid-template-columns: 1fr; } }

/* ===== Tour detail ===== */

.detail-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}
.detail-hero__media { position: absolute; inset: 0; }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.detail-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11,11,11,0.30) 0%,
      rgba(11,11,11,0.25) 30%,
      rgba(11,11,11,0.35) 55%,
      rgba(11,11,11,0.55) 72%,
      rgba(11,11,11,0.85) 88%,
      var(--ink)         95%,
      var(--ink)         100%);
}
/* Seam cap on the section after detail-hero */
.detail-hero + section {
  position: relative;
  z-index: 1;
}
.detail-hero + section::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -20px;
  height: 40px;
  background: var(--ink);
  pointer-events: none;
  z-index: 0;
}
.detail-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 72px;
  color: #F5F3EF;
}
.detail-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.6);
  margin-bottom: 24px;
  cursor: pointer;
}
.detail-hero__crumb:hover { color: var(--gold); }
.detail-hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin: 0;
  text-wrap: balance;
}
.detail-hero__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.detail-hero__meta {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,243,239,0.2);
  max-width: 680px;
  flex-wrap: wrap;
}
.detail-hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.detail-hero__meta-lbl {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.55);
}
.detail-hero__meta-val {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 300;
  color: #F5F3EF;
}

/* Overview */
.overview {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(40px, 5vw, 72px) 0 clamp(72px, 9vw, 120px);
}
.overview__label {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
}
.overview__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
  max-width: 12ch;
  text-wrap: balance;
}
.overview__body p {
  font-family: var(--display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.overview__body p:last-child {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
@media (max-width: 880px) { .overview { grid-template-columns: 1fr; } }

/* Itinerary timeline */
.timeline-section { padding: clamp(64px, 8vw, 120px) 0; background: var(--ink-2); }
.timeline-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.day-nav {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.day-nav__title {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.day-nav__btn {
  text-align: left;
  background: none;
  border: 0;
  padding: 10px 16px 10px 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-left: 1px solid var(--hairline);
  font-family: inherit;
  transition: all 0.25s ease;
}
.day-nav__btn:hover { color: var(--ivory); }
.day-nav__btn--active { color: var(--ivory); border-left-color: var(--gold); }
.day-nav__btn i {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  min-width: 28px;
}

.timeline { display: flex; flex-direction: column; }
.timeline__day {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--hairline);
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.timeline__day:first-child { border-top: 0; padding-top: 0; }
.timeline__day-no {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
}
.timeline__day-big {
  font-family: var(--display);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--ivory);
  margin-top: 8px;
}
.timeline__day-loc {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.timeline__day-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  max-width: 26ch;
}
.timeline__day-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 24px;
}
.timeline__day-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 24px;
}
.timeline__day-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.timeline__day-img:hover img { transform: scale(1.04); }
.timeline__day-highlights {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.timeline__chip {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 6px 12px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
}

@media (max-width: 880px) {
  .timeline-layout { grid-template-columns: 1fr; }
  .day-nav { position: static; flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 12px; }
  .day-nav__btn { border-left: 0; border-bottom: 1px solid var(--hairline); white-space: nowrap; }
  .day-nav__btn--active { border-bottom-color: var(--gold); }
  .timeline__day { grid-template-columns: 1fr; gap: 12px; }
}

/* Hotels */
.hotels { padding: clamp(80px, 10vw, 140px) 0; }
.hotels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 32px;
  margin-top: 60px;
}
.hotel {
  display: flex; flex-direction: column; gap: 14px;
}
.hotel__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 8px;
}
.hotel__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.hotel:hover .hotel__img img { transform: scale(1.05); }
.hotel__loc {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hotel__name {
  font-family: var(--display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hotel__nights {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) { .hotels__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hotels__grid { grid-template-columns: 1fr; } }

/* Pricing band */
.pricing-band {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--ink-2);
  text-align: center;
}
.pricing-band__sub {
  margin: 0 auto 36px;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}
.pricing-band__caption {
  max-width: 56ch;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== Contact page ===== */

.contact {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.contact__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.contact__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  max-width: 12ch;
  text-wrap: balance;
}
.contact__title em { font-style: italic; color: var(--gold); font-weight: 300; }

.contact__intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 44ch;
  justify-self: end;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact__media {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.contact__media img { width: 100%; height: 100%; object-fit: cover; }
.contact__media-caption {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__media-caption i { font-style: italic; font-family: var(--display); font-size: 13px; color: var(--gold); margin-right: 8px; }

.form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form__section-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field { position: relative; display: flex; flex-direction: column; }
.field__lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.field__input,
.field__textarea,
.field__select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 8px 0 14px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  outline: none;
  transition: border-color 0.25s ease;
}
.field__input::placeholder,
.field__textarea::placeholder { color: var(--muted-2); }
.field__input:focus,
.field__textarea:focus,
.field__select:focus { border-bottom-color: var(--gold); }

.field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C6A96B' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.field__select option { background: var(--ink); color: var(--ivory); }

.field__textarea {
  min-height: 110px;
  resize: vertical;
  font-family: var(--sans);
}

.field__error {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #E07A5F;
  min-height: 14px;
}

.chip-group {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--ivory);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.chip:hover { border-color: var(--ivory); }
.chip--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.form__submit {
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.form__submit-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 36ch;
}
.form__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.form__agree input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* ===== Date Range Picker ===== */

.drp {
  position: relative;
  width: 100%;
}

.drp__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 8px 0 14px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s ease;
  text-align: left;
}
.drp__trigger--open,
.drp__trigger:focus { border-bottom-color: var(--gold); }
.drp__placeholder { color: var(--muted-2); }
.drp__value { color: var(--ivory); }
.drp__chevron { flex-shrink: 0; transition: transform 0.2s ease; }
.drp__chevron--up { transform: rotate(180deg); }

.drp__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 200;
  width: 308px;
  background: var(--ink-2);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  padding: 24px 20px 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.drp__nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.drp__month-label {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ivory);
}
.drp__nav {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  padding: 2px 6px;
  opacity: 0.7;
  transition: opacity 0.15s;
  line-height: 1;
}
.drp__nav:hover { opacity: 1; }

.drp__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.drp__wd {
  text-align: center;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-bottom: 8px;
}

.drp__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px 0;
}
.drp__cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ivory);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.15s;
  border-radius: 0;
}
.drp__cell--day:hover:not(:disabled):not(.drp__cell--sel) {
  color: var(--gold);
}
.drp__cell--past { color: var(--muted-2); cursor: default; }
.drp__cell--today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
.drp__cell--mid {
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  color: var(--ivory);
  border-radius: 0;
}
.drp__cell--sel {
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
  border-radius: 2px;
  z-index: 1;
}
.drp__cell--sel-start.drp__cell--mid { border-radius: 2px 0 0 2px; }
.drp__cell--sel-end.drp__cell--mid   { border-radius: 0 2px 2px 0; }

.drp__footer {
  margin-top: 14px;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drp__hint {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.drp__clear {
  background: transparent;
  border: none;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s;
  padding: 0;
}
.drp__clear:hover { color: var(--gold); }

@media (max-width: 640px) {
  .drp__panel { width: 100%; left: 0; right: 0; }
}

.contact__success {
  text-align: center;
  padding: 80px 0;
}
.contact__success-rule { width: 32px; height: 1px; background: var(--gold); margin: 0 auto 28px; }
.contact__success-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  max-width: 18ch;
  margin-left: auto; margin-right: auto;
}
.contact__success-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.contact__success-body {
  max-width: 50ch;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 880px) {
  .contact__head { grid-template-columns: 1fr; gap: 24px; }
  .contact__intro { justify-self: start; }
  .contact__layout { grid-template-columns: 1fr; }
  .contact__media { position: static; aspect-ratio: 16 / 10; }
}

/* ===== About teaser (used on Home or About) ===== */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.about-strip__media { aspect-ratio: 4 / 5; }
.about-strip__media img { width: 100%; height: 100%; object-fit: cover; }
.about-strip__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 96px);
  background: var(--ink-2);
}

/* ===== Fade-in on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2,.6,.2,1), transform 0.9s cubic-bezier(.2,.6,.2,1);
}
.reveal--in { opacity: 1; transform: none; }

/* ===== Mobile nav ===== */
.nav--menu-open {
  background: var(--ink);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: var(--hairline);
}
[data-theme="light"] .nav--menu-open { background: var(--ink); }

@media (max-width: 880px) {
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-h));
    height: calc(100dvh - var(--nav-h));
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    padding: 24px var(--gutter) 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__links--open { transform: translateX(0); }
  .nav__link {
    font-size: 16px;
    letter-spacing: 0.22em;
    padding: 22px 0;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid var(--hairline);
  }
  .nav__link--active { color: var(--gold); }
  .nav__link--active::after { display: none; }
  .nav__cta { display: none; }
  .nav__menu-btn { display: inline-flex; align-items: center; gap: 8px; }
}

/* Selection */
::selection { background: var(--gold); color: var(--ink); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: rgba(245,243,239,0.12); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,243,239,0.2); }

/* ===== Mobile fit ===== */

/* Stacked layouts that previously had no mobile collapse */
@media (max-width: 880px) {
  .hero--split { grid-template-columns: 1fr; min-height: auto; }
  .hero--split .hero__media { aspect-ratio: 4 / 5; }
  .hero--split .hero__content { padding: 48px var(--gutter); }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip__media { aspect-ratio: 16 / 10; }
}

/* Hero titles — clamp floors are too large at sub-560px widths, where
   the long max-width forces wraps that overflow the viewport. */
@media (max-width: 560px) {
  .hero__title       { font-size: clamp(36px, 9vw, 52px); max-width: 14ch; margin: 20px 0 28px; }
  .hero--split .hero__title { font-size: clamp(32px, 8.5vw, 46px); }
  .tours-hero__title { font-size: clamp(40px, 11vw, 64px); max-width: 12ch; }
  .detail-hero__title { font-size: clamp(36px, 10vw, 56px); max-width: 13ch; }
  .hero__sub { font-size: 14.5px; margin-bottom: 32px; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { flex: 1 1 auto; }

  /* Hero meta strip — short brand tags up by the nav. Allow wrap so it
     doesn't push the viewport wide on a 360px screen. */
  .hero__meta { gap: 10px; font-size: 9.5px; letter-spacing: 0.18em; flex-wrap: wrap; right: var(--gutter); }
  .hero__meta span { gap: 10px; }

  /* Footer collapses fully on phones — 2-up at 880px is still tight at 360px. */
  .footer__top { grid-template-columns: 1fr; gap: 28px; }

  /* Nav: shrink horizontal gap so brand + menu button + CTA fit. */
  .nav__inner { gap: 12px; padding: 0 16px; }

  /* Tours aside breathes less on phones */
  .tours-aside { padding: 20px 16px 36px; }

  /* Filter pills — let the row scroll if it overflows rather than wrap
     into three+ rows that dominate the page. */
  .tours-filters { gap: 16px; padding: 24px 0; }
  .tours-filters__group {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--gutter));
    padding: 4px var(--gutter);
  }
  .tours-filters__group::-webkit-scrollbar { display: none; }
  .tours-filter { white-space: nowrap; padding: 8px 16px; }

  /* Detail hero meta — wide gap pushes wide on small screens. */
  .detail-hero__meta { gap: 18px; }
}

/* ===== Journal — index page ===== */

.journal-hero { /* alias of .tours-hero — no overrides */ }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 6vw, 96px) clamp(32px, 5vw, 72px);
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 160px);
}

@media (max-width: 800px) {
  .journal-grid { grid-template-columns: 1fr; gap: 64px; }
}

.jcard {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jcard__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
}

.jcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jcard:hover .jcard__img { transform: scale(1.06); }

.jcard__tag {
  position: absolute;
  left: 20px;
  top: 20px;
  background: rgba(11, 11, 11, 0.55);
  color: var(--ivory);
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(8px);
}

.jcard__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.jcard__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  margin: 0;
  color: var(--ivory);
}

.jcard__excerpt {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}

.jcard__meta {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
}

.jcard__meta i { font-style: normal; color: var(--ivory); }

.jcard__region { color: var(--gold); }

.jcard__cta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  margin-top: 6px;
  transition: gap 200ms;
}

/* ===== Journal — article hero ===== */

.article-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}

.article-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.article-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.2) 0%, rgba(11, 11, 11, 0.45) 60%, rgba(11, 11, 11, 0.7) 100%);
}

.article-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
}

.article-hero__crumb {
  background: none;
  border: none;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  opacity: 0.75;
  transition: opacity 200ms, color 200ms;
}

.article-hero__crumb:hover { opacity: 1; color: var(--gold); }

.article-hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.04;
  margin: 0;
  color: var(--ivory);
  letter-spacing: -0.005em;
}

.article-hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.article-hero__rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}

.article-hero__meta-sep { color: var(--gold); }

@media (max-width: 800px) {
  .article-hero { min-height: 80vh; }
}

/* ===== Journal — article body ===== */

.article-body {
  background: var(--ink);
  padding: clamp(60px, 9vw, 120px) 0 clamp(60px, 8vw, 96px);
}

.article-body__inner {
  /* override the wide .wrap to a narrow reading column */
  max-width: 680px !important;
}

.article-body p,
.article-body__lede p,
.article-section p {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.75;
  color: var(--prose);
  margin: 0 0 1.3em 0;
}

.article-body__lede p:first-child::first-letter {
  font-family: var(--display);
  font-weight: 500;
  font-size: 5.4em;
  float: left;
  line-height: 0.88;
  padding-right: 14px;
  padding-top: 6px;
  color: var(--gold);
}

.article-body__lede p:last-child { margin-bottom: 0; }

.article-body__divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(36px, 5vw, 56px) auto;
  max-width: 240px;
}

.article-body__divider-rule {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.article-body__divider-mark {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}

.article-section {
  margin-top: clamp(40px, 5vw, 64px);
}

.article-section__numeral {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 10px;
}

.article-section__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.18;
  margin: 0 0 1em 0;
  color: var(--ivory);
}

.article-section p:first-of-type { margin-top: 0; }

.article-body__inline-link {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: italic;
  padding: 0;
  border: none;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  background: none;
  cursor: pointer;
  line-height: inherit;
  vertical-align: baseline;
}

.article-body__inline-link:hover { opacity: 0.78; }

.article-pullquote {
  margin: clamp(48px, 6vw, 72px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.article-pullquote__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.article-pullquote blockquote {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ivory);
  max-width: 32ch;
}

.article-pullquote figcaption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Journal — related tour callout ===== */

.article-related {
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative;
}

.article-related::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 30%, 380px);
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.article-related__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

@media (max-width: 800px) {
  .article-related__inner { grid-template-columns: 1fr; }
}

.article-related__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--ink-2);
}

.article-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-related__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-related__kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-related__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  margin: 0;
  color: var(--ivory);
}

.article-related__note {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--prose);
  margin: 0;
  max-width: 50ch;
}

.article-related__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.article-related__meta i { font-style: normal; color: var(--ivory); font-size: 13px; letter-spacing: 0.05em; margin-right: 4px; }

.article-related__cta { align-self: flex-start; margin-top: 8px; }

/* ===== Journal — pager and return ===== */

.article-pager {
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
  background: var(--ink-2);
}

.article-pager__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}

@media (max-width: 720px) {
  .article-pager__grid { grid-template-columns: 1fr; }
}

.article-pager__card {
  background: none;
  border: 1px solid var(--hairline);
  padding: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  color: inherit;
  transition: border-color 200ms, background 200ms;
}

.article-pager__card:hover {
  border-color: var(--gold);
  background: var(--ink-3);
}

.article-pager__card--next { text-align: right; }
.article-pager__card--next .article-pager__row { justify-content: flex-end; }

.article-pager__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-pager__row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.article-pager__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}

.article-pager__no {
  display: block;
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.article-pager__title {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--ivory);
}

.article-pager__text-right { text-align: right; }

.article-return {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
}

/* ===== Legal pages (Privacy, Terms, Cookies) ===== */

.legal {
  padding: calc(var(--nav-h) + 80px) 0 120px;
}

.legal__head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.legal__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin: 18px 0 12px;
}

.legal__updated {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.legal__notice {
  max-width: 64ch;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  font-style: italic;
}

.legal__notice a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.legal__prose {
  max-width: 64ch;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--prose);
}

.legal__prose h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--ivory);
  margin: 56px 0 18px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}

.legal__prose h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal__prose h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ivory);
  margin: 32px 0 12px;
}

.legal__prose p {
  margin: 0 0 1.2em;
}

.legal__prose ul {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
}

.legal__prose li {
  margin-bottom: 0.5em;
}

.legal__prose a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-strong);
  transition: border-color 0.2s ease;
}

.legal__prose a:hover {
  border-bottom-color: var(--gold);
}

.legal__prose strong {
  font-weight: 500;
  color: var(--ivory);
}

.legal__prose address {
  font-style: normal;
  margin: 0 0 1.2em;
}

@media (max-width: 640px) {
  .legal { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 80px; }
  .legal__head { margin-bottom: 48px; }
  .legal__title { font-size: clamp(36px, 9vw, 48px); }
}

/* ===== Footer legal link strip ===== */

.footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__legal-link {
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer__legal-link:hover {
  color: var(--gold);
}

.footer__legal-sep {
  opacity: 0.5;
}

/* ===== Inline link inside the contact form submit note ===== */

.form__submit-link {
  color: var(--gold);
  cursor: pointer;
  border-bottom: 1px solid currentColor;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.form__submit-link:hover {
  opacity: 1;
}
