:root {
  /* Surface */
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-deep: #060606;

  /* Ink */
  --ivory: #f5f1ea;
  --ivory-dim: #d9d2c4;
  --rule: #2a2522;

  /* Accent */
  --tangerine: #e85a2b;
  --tangerine-soft: #f07a4e;

  /* Trade */
  --trade-ink: #1a1612;
  --trade-sub: #4a4139;

  /* Structural accent */
  --peacock: #0a6e7e;
  --rule-soft-cream: rgba(26, 22, 18, 0.08);

  /* Type */
  --display: 'Fraunces', 'Cormorant Garamond', serif;
  --meta: 'Inter Tight', system-ui, sans-serif;

  /* Animation knobs */
  --parallax: 1;
  --photo-density: 1;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--meta);
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

/* Typography helpers */
.display {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 350;
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.eyebrow {
  font-family: var(--meta);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
}
.tangerine {
  color: var(--tangerine);
}
em.italic {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 320;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--tangerine);
  outline-offset: 3px;
}

/* Grain overlay helper used by hero + cards + mottos */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: calc(0.12 * var(--photo-density));
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Shared photo base — color by default */
.photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

/* Hero is the only B&W photo in the build */
.hero-kinetic .photo {
  filter: grayscale(1) contrast(calc(1 + var(--photo-density) * 0.15))
    brightness(calc(0.85 + var(--photo-density) * 0.05));
}

/* Reveal on enter (Task 15 wires the observer) */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger] > * {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* ——— Navigation ——— */
nav.top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  color: var(--ivory);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(232, 90, 43, 0.22);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    padding 0.3s ease;
}
nav.top.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: rgba(232, 90, 43, 0.4);
  padding: 10px 40px;
}
nav.top .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
nav.top .brand .logo-img {
  height: 32px;
  width: auto;
  transition: height 0.3s ease;
}
nav.top.scrolled .brand .logo-img {
  height: 26px;
}
nav.top ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
nav.top ul a {
  position: relative;
  padding: 6px 0;
  color: var(--ivory);
  opacity: 0.82;
  transition:
    opacity 0.2s,
    color 0.2s;
}
nav.top ul a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--tangerine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
nav.top ul a:hover {
  opacity: 1;
  color: var(--tangerine);
}
nav.top ul a.tangerine {
  color: var(--tangerine);
  opacity: 1;
}
nav.top ul a:hover::after {
  transform: scaleX(1);
}

/* — Destinations submenu (desktop hover) — */
nav.top ul li.has-sub {
  position: relative;
}
nav.top ul li.has-sub > a::before {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 18px;
}
nav.top ul .submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 200px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(232, 90, 43, 0.22);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0.25s;
}
nav.top ul li.has-sub:hover > .submenu,
nav.top ul li.has-sub:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0s;
}
nav.top ul .submenu li {
  margin: 0;
}
nav.top ul .submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  opacity: 0.82;
}
nav.top ul .submenu a::after {
  display: none;
}
nav.top ul .submenu a:hover {
  opacity: 1;
  color: var(--tangerine);
  background: rgba(232, 90, 43, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  color: var(--ivory);
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.3s ease,
    top 0.3s ease,
    opacity 0.2s ease;
}
.menu-toggle span:nth-child(1) {
  top: 13px;
}
.menu-toggle span:nth-child(2) {
  top: 21px;
}
.menu-toggle span:nth-child(3) {
  top: 29px;
}
nav.top.menu-open .menu-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
nav.top.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
nav.top.menu-open .menu-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* ——— Footer ——— */
footer {
  background: var(--bg-deep);
  padding: 100px 8vw 40px;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
footer .f-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 1;
}
footer .brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 420px;
}
footer .brand-lockup .logo-img {
  height: auto;
  width: 280px;
}
footer .brand-lockup p {
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.7;
  margin: 0;
}
footer h5 {
  margin: 0 0 20px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer ul a {
  font-size: 15px;
  color: var(--ivory);
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--tangerine);
}
footer .f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 11px;
  color: var(--ivory-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.footer-peacock {
  position: absolute;
  right: -60px;
  top: 20px;
  color: var(--ivory-dim);
  opacity: 0.25;
  pointer-events: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}
.hero .scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 32px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero .scroll-hint .line {
  width: 1px;
  height: 28px;
  background: var(--tangerine);
  animation: scrollHint 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollHint {
  0% {
    transform: scaleY(0);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0) translateY(28px);
  }
}

.hero-kinetic .photo {
  animation: kenburnsSlow 40s ease-out infinite alternate;
}
.hero-kinetic .photo::after {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.9));
}
@keyframes kenburnsSlow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.22);
  }
}

.hero-kinetic .words {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  gap: 8px;
  z-index: 2;
  /* Fade-out driven by scroll-fx.js (Task 15) */
  opacity: var(--hero-exit, 1);
  transform: translateY(calc((1 - var(--hero-exit, 1)) * -60px));
}
.hero-kinetic .word {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 20, 'wght' 280;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  animation: wordIn 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-kinetic .w1 {
  animation-delay: 0.2s;
}
.hero-kinetic .w2 {
  animation-delay: 0.7s;
  padding-left: 6vw;
}
.hero-kinetic .w3 {
  animation-delay: 1.15s;
  padding-left: 14vw;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 280;
}
.hero-kinetic .w4 {
  animation-delay: 1.55s;
  padding-left: 2vw;
}
.hero-kinetic .w5 {
  animation-delay: 1.95s;
  padding-left: 18vw;
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 280;
}
.hero-kinetic .w5 em {
  color: inherit;
  font-style: inherit;
}
@keyframes wordIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ——— Brand Intro ——— */
.brand-intro {
  position: relative;
  padding: 140px clamp(40px, 11.8vw, 170px) 75px;
  overflow: hidden;
  background: var(--tangerine);
}
.brand-intro .intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.brand-intro .lede {
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 320;
  text-wrap: pretty;
  color: #ffffff;
}
.brand-intro .lede .accent {
  color: #ffffff;
  font-style: italic;
}
.brand-intro .sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  font-family: var(--meta);
  font-weight: 300;
  max-width: 100%;
}
.brand-intro .ctas {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.brand-intro .pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #0a0a0a;
  color: var(--ivory);
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.brand-intro .pill-cta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tangerine);
}
.brand-intro-peacocks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}
.brand-intro-peacocks .peacock {
  position: absolute;
  bottom: 0;
  display: block;
  background: #ffffff;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
.brand-intro-peacocks .peacock.left {
  left: -17px;
  bottom: -35px;
  width: 210px;
  height: 315px;
  mask-image: url('/assets/logos/peacock-left.png');
  -webkit-mask-image: url('/assets/logos/peacock-left.png');
}
.brand-intro-peacocks .peacock.right {
  right: -40px;
  bottom: -35px;
  width: 140px;
  height: 238px;
  mask-image: url('/assets/logos/peacock-right.png');
  -webkit-mask-image: url('/assets/logos/peacock-right.png');
}

/* ——— Manifesto Triptych — three image cards, hover-to-expand ——— */
.triptych-section {
  position: relative;
}
.triptych {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 640px;
}
/* Pager: hidden on desktop, shown on mobile/touch carousel */
.triptych-pager {
  display: none;
}
.triptych-pager-dot {
  appearance: none;
  border: 0;
  padding: 0;
  background: rgba(245, 240, 232, 0.28);
  width: 28px;
  height: 2px;
  border-radius: 1px;
  cursor: pointer;
  transition: background 240ms ease-out, width 240ms ease-out;
}
.triptych-pager-dot[aria-current='true'] {
  background: var(--tangerine);
  width: 44px;
}
.triptych-pager-dot:focus-visible {
  outline: 2px solid var(--tangerine);
  outline-offset: 4px;
}
.triptych-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
  padding: 72px 40px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ivory);
  transition:
    flex-grow 360ms cubic-bezier(0.4, 0, 0.2, 1),
    padding 360ms cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.triptych-card:focus-visible {
  outline: 2px solid var(--tangerine);
  outline-offset: -6px;
}
/* Background photo sits beneath gradient overlays and content. */
.triptych-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Two stacked gradient overlays cross-fade between inactive and active states. */
.triptych-card::before,
.triptych-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 360ms cubic-bezier(0.4, 0, 0.2, 1);
}
.triptych-card::before {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.80) 100%
  );
  opacity: 1;
}
.triptych-card::after {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.40) 0%,
    rgba(10, 10, 10, 0.95) 100%
  );
  opacity: 0;
}

/* Top row: eyebrow + affordance */
.triptych-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.triptych-top .eyebrow {
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--tangerine);
}
.triptych-top .affordance {
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: opacity 240ms ease-out;
}
/* .triptych-top .affordance::before {
  content: '+ READ';
} */

/* Body: word + reveal (rule + copy) anchored at bottom-left */
.triptych-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}
.triptych-body .word {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--tangerine);
  transition: font-size 360ms cubic-bezier(0.4, 0, 0.2, 1);
}
/* Optical balancing: "Immersive." is wider, so default size shrinks 96 → 76. */
.triptych-card.triptych-02 .word {
  font-size: clamp(56px, 5.5vw, 76px);
}

.triptych-body .reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 360ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 320ms ease-out 80ms;
}
.triptych-body .reveal .rule {
  width: 80px;
  height: 1px;
  background: var(--tangerine);
  margin-top: 28px;
}
.triptych-body .reveal .copy {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ivory);
  margin: 22px 0 0;
  max-width: 680px;
  text-wrap: pretty;
}

/* —— Active state (hover or keyboard focus) —— */
/* Cross-fade gradient overlay */
.triptych-card:hover::before,
.triptych-card:focus-within::before {
  opacity: 0;
}
.triptych-card:hover::after,
.triptych-card:focus-within::after {
  opacity: 1;
}
/* Grow active card; siblings stay 1 */
.triptych:hover .triptych-card,
.triptych:focus-within .triptych-card {
  flex: 1 1 0;
}
.triptych .triptych-card:hover,
.triptych .triptych-card:focus-within {
  flex: 3 1 0;
  padding: 72px 60px 44px 60px;
}
/* Display word grows on active card */
.triptych-card:hover .word,
.triptych-card:focus-within .word,
.triptych-card.triptych-02:hover .word,
.triptych-card.triptych-02:focus-within .word {
  font-size: clamp(96px, 11vw, 144px);
}
/* Reveal rule + copy */
.triptych-card:hover .reveal,
.triptych-card:focus-within .reveal {
  max-height: 360px;
  opacity: 1;
}
/* Hide affordance on inactive siblings; swap text on active card */
.triptych:hover .triptych-card .affordance,
.triptych:focus-within .triptych-card .affordance {
  opacity: 0;
}
.triptych .triptych-card:hover .affordance,
.triptych .triptych-card:focus-within .affordance {
  opacity: 1;
}
.triptych .triptych-card:hover .affordance::before,
/* .triptych .triptych-card:focus-within .affordance::before {
  content: '× CLOSE';
} */

/* When inactive (a sibling is active), shrink the display word */
.triptych:hover .triptych-card:not(:hover) .word,
.triptych:focus-within .triptych-card:not(:focus-within):not(:hover) .word {
  font-size: clamp(40px, 4.5vw, 56px);
}

/* —— Reduce-motion: no transitions; focus-only takeover, hover does nothing —— */
@media (prefers-reduced-motion: reduce) {
  .triptych-card,
  .triptych-card::before,
  .triptych-card::after,
  .triptych-body .word,
  .triptych-body .reveal,
  .triptych-top .affordance {
    transition: none !important;
  }
  /* Hover does not change layout under reduce-motion */
  .triptych:hover .triptych-card,
  .triptych .triptych-card:hover {
    flex: 1 1 0;
    padding: 72px 40px 44px 40px;
  }
  .triptych-card:hover::before { opacity: 1; }
  .triptych-card:hover::after { opacity: 0; }
  .triptych-card:hover .word { font-size: clamp(64px, 7vw, 96px); }
  .triptych-card.triptych-02:hover .word { font-size: clamp(56px, 5.5vw, 76px); }
  .triptych-card:hover .reveal { max-height: 0; opacity: 0; }
  .triptych:hover .triptych-card .affordance,
  .triptych .triptych-card:hover .affordance { opacity: 1; }
  .triptych .triptych-card:hover .affordance::before { content: '+ READ'; }

  /* Focus performs full takeover via :has() */
  .triptych:has(.triptych-card:focus-within) .triptych-card {
    flex: 0 0 0;
    padding-left: 0;
    padding-right: 0;
  }
  .triptych:has(.triptych-card:focus-within) .triptych-card:focus-within {
    flex: 1 1 100%;
    padding: 72px 60px 44px 60px;
  }
}

/* —— Tablet ≤ 1100px: keep horizontal, slightly shorter —— */
@media (max-width: 1100px) {
  .triptych {
    height: 560px;
  }
  .triptych-card {
    padding: 64px 32px 36px 32px;
  }
  .triptych .triptych-card:hover,
  .triptych .triptych-card:focus-within {
    padding: 64px 44px 36px 44px;
  }
}

/* —— Mobile / touch: horizontal snap-carousel, one chapter per viewport —— */
@media (max-width: 767px), (hover: none) and (pointer: coarse) {
  .triptych-section {
    padding-bottom: 56px;
  }
  .triptych {
    flex-direction: row;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .triptych::-webkit-scrollbar { display: none; }
  .triptych-card,
  .triptych:hover .triptych-card,
  .triptych .triptych-card:hover,
  .triptych .triptych-card:focus-within {
    flex: 0 0 100vw;
    min-height: 78vh;
    padding: 48px 28px 36px 28px;
    cursor: default;
    transition: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  /* Lock the word size on tap/focus so the card doesn't appear to "zoom" */
  .triptych-card:hover .word,
  .triptych-card:focus-within .word,
  .triptych:hover .triptych-card:not(:hover) .word,
  .triptych:focus-within .triptych-card:not(:focus-within):not(:hover) .word {
    font-size: clamp(64px, 12vw, 96px);
  }
  .triptych-card.triptych-02:hover .word,
  .triptych-card.triptych-02:focus-within .word {
    font-size: clamp(64px, 12vw, 96px);
  }
  /* Always-active gradient on every card */
  .triptych-card::before { opacity: 0; }
  .triptych-card::after { opacity: 1; }
  /* Body always visible */
  .triptych-card .reveal {
    max-height: none;
    opacity: 1;
    overflow: visible;
  }
  .triptych-card .word,
  .triptych-card.triptych-02 .word {
    font-size: clamp(64px, 12vw, 96px);
  }
  /* Drop the affordance on touch — not meaningful */
  .triptych-card .affordance { display: none; }
  /* Pager visible only on touch/mobile */
  .triptych-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 24px 0 8px;
  }
  .triptych-body .reveal .copy {
    font-size: 18px;
    line-height: 1.5;
  }
}


/* ——— Defined by Detail ——— */
.detail-section {
  position: relative;
  padding: 130px 115px 120px;
  background: var(--ivory);
}

.detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule-soft-cream);
}
.detail-header .eyebrow {
  margin-bottom: 16px;
}
.detail-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
  white-space: nowrap;
}
.detail-header h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.detail-header .right p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--trade-sub);
  max-width: 44ch;
  margin: 0 0 0 auto;
}

/* Stacked variant: lead copy sits below the title rather than in a right column. */
.detail-header.head-stacked {
  grid-template-columns: 1fr;
  align-items: start;
}
.detail-header.head-stacked h2 {
  white-space: normal;
}
.detail-header .head-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--trade-sub);
  margin: 28px 0 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
}

.commitment {
  padding: 30px 48px 40px 0;
  border-bottom: 1px solid var(--rule-soft-cream);
}
.commitment:nth-child(2n) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid var(--rule-soft-cream);
}
.commitment:nth-last-child(-n + 2) {
  border-bottom: none;
}
.commitment .num {
  display: block;
  font-family: var(--meta);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--tangerine);
  font-weight: 500;
  margin-bottom: 18px;
}
.commitment h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 330;
  color: var(--trade-ink);
  text-wrap: balance;
}
.commitment h3 em {
  font-style: italic;
  color: var(--tangerine);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 330;
}
.commitment p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--trade-sub);
  max-width: 100%;
}

/* ——— Theme-page detail sections: align inset with the rest of the page ——— */
.theme-detail .detail-section {
  padding-left: clamp(40px, 11.8vw, 170px);
  padding-right: clamp(40px, 11.8vw, 170px);
}

/* This page is predominantly ivory; give the page itself an ivory base so the
   dark document background doesn't flash before the sections paint / reveal. */
.theme-detail.sections-tight {
  background: var(--ivory);
}

/* ——— Tighter inter-section rhythm: zero the top, trim the bottom so the gap
   between sections is a single, smaller value. Colour-change bands keep a
   little top breathing room. ——— */
.theme-detail.sections-tight > section {
  padding-top: 0;
  padding-bottom: 64px;
}
.theme-detail.sections-tight > .dest-intro,
.theme-detail.sections-tight > .prose-dark,
.theme-detail.sections-tight > .carousel-section,
.theme-detail.sections-tight > .dest-close {
  padding-top: 64px;
}
/* Standalone titled prose blocks (Why India, Group sizes) are feature beats
   that follow a dark band; give them more breathing room above the title. */
.theme-detail.sections-tight > .prose-ivory {
  padding-top: 72px;
}
/* A detail grid placed directly after the opening intro (e.g. the partners
   page) would otherwise inherit padding-top:0 and crowd its title against the
   intro. Give it the same breathing room as a titled prose beat. */
.theme-detail.sections-tight > .dest-intro + .detail-section {
  padding-top: 72px;
}
/* Carousels use light (ivory) head text, so any carousel that sits on the
   otherwise-ivory page base needs a dark band behind it to stay legible. */
.theme-detail.sections-tight > #unique-venues,
.theme-detail.sections-tight > #network {
  background: var(--bg);
}

/* ——— Balanced 3-up variant (e.g. "What we do"). Resets are keyed to the
   column within each row (nth-child(3n…)) so the grid stays clean when it wraps
   onto multiple rows; row-gap gives wrapped rows vertical breathing room. For a
   single row of three this is identical to first/last-child. ——— */
.detail-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 56px;
}
.detail-grid.cols-3 .commitment {
  padding: 4px 44px 0;
  border-bottom: 0;
  border-left: 1px solid var(--rule-soft-cream);
}
.detail-grid.cols-3 .commitment:nth-child(3n + 1) {
  border-left: 0;
  padding-left: 0;
}
.detail-grid.cols-3 .commitment:nth-child(3n) {
  padding-right: 0;
}

/* ——— Image-led card variant: an image sits above each title; the dividing
   rules are dropped in favour of a clean gap between cards. ——— */
.detail-grid.has-images {
  gap: clamp(28px, 3vw, 56px);
}
.detail-grid.has-images.cols-3 .commitment,
.detail-grid.has-images .commitment {
  padding: 0;
  border: 0;
}
.commitment-media {
  margin: 0 0 26px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: color-mix(in oklab, var(--trade-ink) 8%, transparent);
}
.commitment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.commitment:hover .commitment-media img {
  transform: scale(1.04);
}
.commitment-media.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--trade-ink) 6%, transparent);
  border: 1px dashed var(--rule-soft-cream);
}
.commitment-media.is-placeholder span {
  font-family: var(--meta);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--trade-ink) 35%, transparent);
}
@media (max-width: 720px) {
  .detail-grid.has-images.cols-3 {
    grid-template-columns: 1fr;
  }
}

/* ——— Process rail: fixed-height, click-driven step component ——— */
.process-rail .pr-body {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 72px;
  margin-top: 0;
  padding-top: 64px;
  min-height: 380px;
}
.pr-rail {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pr-step {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-left: 2px solid var(--rule-soft-cream);
  padding: 15px 0 15px 26px;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.pr-step .pr-num {
  font-family: var(--meta);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--trade-sub);
  transition: color 0.25s ease;
}
.pr-step .pr-step-title {
  font-family: var(--display);
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--trade-sub);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 330;
  transition: color 0.25s ease;
}
.pr-step:hover .pr-step-title {
  color: var(--trade-ink);
}
.pr-step.is-active {
  border-left-color: var(--tangerine);
}
.pr-step.is-active .pr-num {
  color: var(--tangerine);
}
.pr-step.is-active .pr-step-title {
  color: var(--trade-ink);
  font-style: italic;
}
.pr-step:focus-visible {
  outline: 2px solid var(--tangerine);
  outline-offset: 3px;
}

.pr-panels {
  position: relative;
  min-height: 320px;
}
.pr-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
}
.pr-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.pr-panel-num {
  font-family: var(--meta);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--tangerine);
}
.pr-panel h3 {
  margin: 16px 0 20px;
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--trade-ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 320;
}
.pr-panel p {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
  color: var(--trade-sub);
  max-width: 46ch;
}

@media (prefers-reduced-motion: reduce) {
  .pr-panel {
    transition: opacity 0.001s, visibility 0s;
    transform: none;
  }
}

/* Scroll-pinned track: scrolling advances the active step on desktop. */
.process-rail .pr-track {
  position: relative;
}
@media (min-width: 861px) {
  .process-rail .pr-track {
    height: calc(var(--pr-steps, 6) * 56vh);
  }
  .process-rail .pr-sticky {
    position: sticky;
    top: 96px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .process-rail .pr-track {
    height: auto;
  }
  .process-rail .pr-sticky {
    position: static;
  }
}

@media (max-width: 860px) {
  .process-rail .pr-body {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    padding-top: 40px;
  }
  .pr-rail {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .pr-step {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    border-left: 0;
    border-bottom: 2px solid var(--rule-soft-cream);
    padding: 10px 18px 12px 0;
  }
  .pr-step.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--tangerine);
  }
  .pr-panels {
    min-height: 240px;
  }
}

/* ——— Titled prose section (Why India, Group sizes, Why Truly India) ——— */
.prose-section {
  padding: 120px clamp(40px, 11.8vw, 170px);
}
.prose-ivory {
  background: var(--ivory);
  color: var(--trade-ink);
}
.prose-dark {
  background: var(--bg);
  color: var(--ivory);
}
.prose-head {
  margin-bottom: 44px;
}
.prose-head .eyebrow {
  margin-bottom: 16px;
}
.prose-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
}
.prose-ivory .prose-head h2 {
  color: var(--trade-ink);
}
.prose-dark .prose-head h2 {
  color: var(--ivory);
}
.prose-head h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.prose-inner .lede {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.34;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 320;
}
.prose-ivory .lede {
  color: var(--trade-ink);
}
.prose-dark .lede {
  color: var(--ivory);
}
.prose-inner .sub {
  margin: 32px 0 0;
  font-family: var(--meta);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
}
.prose-ivory .sub {
  color: var(--trade-sub);
}
.prose-dark .sub {
  color: var(--ivory-dim);
}

/* ——— Full-width bulleted list (Signature experiences) ——— */
.fwlist-section {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 120px clamp(40px, 11.8vw, 170px);
}
.fwlist-head {
  margin-bottom: 48px;
}
.fwlist-head .eyebrow {
  margin-bottom: 16px;
}
.fwlist-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
}
.fwlist-head h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.fwlist {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: clamp(48px, 8vw, 120px);
}
.fwlist li {
  break-inside: avoid;
  position: relative;
  padding: 18px 0 18px 30px;
  border-top: 1px solid var(--rule-soft-cream);
  font-family: var(--display);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 40, 'SOFT' 30, 'wght' 400;
  color: var(--trade-ink);
}
.fwlist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 16px;
  height: 1px;
  background: var(--tangerine);
}
@media (max-width: 760px) {
  .fwlist {
    columns: 1;
  }
}

/* ——— Signature experiences — flower cards, horizontal masonry (beyond-the-boardrooms) ——— */
.sigcards-section {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 120px 0 120px clamp(40px, 11.8vw, 170px);
}
.sigcards-head {
  margin-bottom: 48px;
  padding-right: clamp(40px, 11.8vw, 170px);
}
.sigcards-head .eyebrow {
  margin-bottom: 16px;
}
.sigcards-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
}
.sigcards-head h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
/* Horizontal scroll viewport; columns extend to the right past the band edge. */
.sigcards-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 18px;
  cursor: grab;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in oklab, var(--peacock) 45%, transparent) transparent;
}
.sigcards-scroll.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.sigcards-scroll::-webkit-scrollbar {
  height: 6px;
}
.sigcards-scroll::-webkit-scrollbar-thumb {
  background: color-mix(in oklab, var(--peacock) 40%, transparent);
  border-radius: 999px;
}
.sigcards-masonry {
  display: flex;
  gap: clamp(18px, 1.8vw, 28px);
  width: max-content;
  /* trailing space so the last column isn't flush to the viewport edge */
  padding-right: clamp(40px, 11.8vw, 170px);
}
.sigcards-col {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.8vw, 28px);
  width: clamp(260px, 23vw, 330px);
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.sigcard {
  height: 300px;
  perspective: 1200px;
}
.sigcard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sigcard-face {
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(in oklab, var(--peacock) 18%, transparent);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(26, 22, 18, 0.04), 0 8px 24px rgba(26, 22, 18, 0.05);
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.sigcard-front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 26px 30px;
  background: #fffdf9;
  text-align: center;
}
.sigcard .flower {
  display: block;
  margin: 0 auto 16px;
}
.sigcard p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 40, 'SOFT' 30, 'wght' 400;
  color: var(--trade-ink);
}
/* Back face: carries the item's image, or a placeholder box if none is set. */
.sigcard-back {
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--trade-ink) 6%, transparent);
  transform: rotateY(180deg);
}
.sigcard-back.has-image {
  background: var(--trade-ink);
}
.sigcard-back.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sigcard-back span {
  font-family: var(--meta);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--trade-ink) 35%, transparent);
}
@media (hover: hover) {
  .sigcard:hover .sigcard-inner {
    transform: rotateY(180deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sigcard-inner {
    transition: none;
  }
}
.sigcards-hint {
  margin: 18px 0 0;
  padding-right: clamp(40px, 11.8vw, 170px);
  font-family: var(--meta);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--trade-ink) 55%, transparent);
}
@media (max-width: 720px) {
  .sigcards-section {
    padding: 72px 0 88px 24px;
  }
  .sigcards-head {
    padding-right: 24px;
  }
  .sigcards-masonry {
    padding-right: 24px;
  }
  .sigcards-hint {
    padding-right: 24px;
  }
}

/* ——— Carousel sections ——— */
.carousel-section {
  padding: 60px 0 60px;
}
.carousel-section .carousel-head {
  padding: 0 115px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}
.carousel-section .carousel-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--ivory);
}
.carousel-section .carousel-head h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.carousel-section .head-left .eyebrow {
  margin-bottom: 16px;
}
.carousel-section .head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding-bottom: 20px;
}
.carousel-section .head-right .link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid var(--tangerine);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.carousel-section .head-right .link:hover {
  color: var(--tangerine);
}

.carousel {
  display: flex;
  gap: 24px;
  padding: 60px 115px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 115px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}

/* ——— Card ——— */
.card {
  flex: 0 0 clamp(300px, 28vw, 440px);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  user-select: none;
}
.card .photo {
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.carousel-section .card:hover .photo {
  transform: scale(1.06);
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.card .info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card .info .kind {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tangerine);
  font-weight: 500;
}
.card .info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 340;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.card .info h3 em {
  font-style: italic;
  color: var(--tangerine);
}
.card .info .where {
  font-size: 12px;
  color: var(--ivory-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ——— Trade ——— */
.trade {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 130px 115px;
  position: relative;
}
.trade .trade-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.trade .eyebrow {
  color: var(--tangerine);
  margin-bottom: 36px;
}
.trade h2 {
  margin: 0 0 40px;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  text-wrap: balance;
  color: var(--trade-ink);
}
.trade h2 em {
  font-style: italic;
  color: var(--tangerine);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.trade .lede {
  font-family: var(--display);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.45;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 330;
  margin: 0 0 40px;
  color: #2b241e;
  max-width: 52ch;
}
.trade .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.trade .pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #0a0a0a;
  color: var(--ivory);
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.trade .pill-cta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tangerine);
}
.trade .pill-cta.ghost {
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
}

.trade .trade-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
.trade .trade-bullets li {
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  padding-top: 20px;
}
.trade .trade-bullets li .n {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--tangerine);
  font-weight: 500;
}
.trade .trade-bullets li h4 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: 22px;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 380;
  line-height: 1.15;
}
.trade .trade-bullets li p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--trade-sub);
}

/* ——— Partners ——— */
.partners {
  background: #f5f5f5;
  padding: 70px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.partners .eyebrow {
  text-align: center;
}
/* Full-bleed marquee: 50% resolves against the padded content box, so this
   cancels the section's horizontal padding exactly. */
.partners .partner-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 100px,
    #000 calc(100% - 100px),
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 100px,
    #000 calc(100% - 100px),
    transparent
  );
}
.partners .partner-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: max-content;
  animation: partner-marquee var(--marquee-duration, 72s) linear infinite;
}
/* margin-right rather than flex gap: each item then occupies exactly
   width + margin, so translating the track by -50% lands on a perfect loop
   point. A trailing gap would leave the seam half a gap out. */
.partners .partner-track li {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 56px;
  margin-right: 56px;
}
/* Logos vary from 4:1 landscape to portrait, so box them and contain. */
.partners .partner-track li img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(1);
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}
.partners .partner-track li img:hover {
  opacity: 1;
  filter: grayscale(0);
}
.partners .partner-marquee:hover .partner-track,
.partners .partner-marquee:focus-within .partner-track {
  animation-play-state: paused;
}
@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 720px) {
  .partners .partner-track li {
    width: 120px;
    height: 44px;
    margin-right: 36px;
  }
  .partners .partner-marquee {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      #000 40px,
      #000 calc(100% - 40px),
      transparent
    );
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 40px,
      #000 calc(100% - 40px),
      transparent
    );
  }
}

/* No motion: fall back to a static centred wrap so every logo stays reachable
   rather than freezing the track mid-scroll. */
@media (prefers-reduced-motion: reduce) {
  .partners .partner-marquee {
    width: 100%;
    margin-left: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .partners .partner-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
    animation-name: none !important;
  }
  .partners .partner-track li {
    margin-right: 0;
  }
  .partners .partner-track li[aria-hidden='true'] {
    display: none;
  }
}

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero-kinetic .words {
    opacity: 1 !important;
    transform: none !important;
  }
  .dest-hero .dest-hero-text {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ——— Tablet ≤ 1100px ——— */
@media (max-width: 1100px) {
  nav.top {
    padding: 14px 28px;
  }
  nav.top.scrolled {
    padding: 10px 28px;
  }
  nav.top ul {
    gap: 24px;
    font-size: 11px;
  }

  .brand-intro {
    padding: 120px 6vw 90px;
  }
  .detail-section {
    padding: 130px 6vw 120px;
  }
  .detail-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .detail-header .right p {
    margin: 0;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .commitment:nth-child(2n) {
    padding-left: 0;
    border-left: none;
  }
  .commitment {
    border-bottom: 1px solid var(--rule-soft-cream);
  }
  /* Text 3-up grids stack to a single column here too; the desktop
     nth-child(3n…) resets are higher specificity than the generic
     .detail-grid rule above, so neutralise them explicitly and fall back to
     stacked rows with bottom dividers. Scoped to :not(.has-images) so the
     image-led card variant keeps its own borderless, padding-free treatment. */
  .detail-grid.cols-3:not(.has-images) {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .detail-grid.cols-3:not(.has-images) .commitment,
  .detail-grid.cols-3:not(.has-images) .commitment:nth-child(3n + 1),
  .detail-grid.cols-3:not(.has-images) .commitment:nth-child(3n) {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--rule-soft-cream);
  }
  .detail-grid.cols-3:not(.has-images) .commitment:last-child {
    border-bottom: 0;
  }

  .carousel-section .carousel-head {
    padding: 0 6vw 48px;
  }
  .carousel {
    padding: 60px 6vw 20px;
  }

  .trade {
    padding: 120px 6vw;
  }
  .trade .trade-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .trade .trade-bullets {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    padding: 80px 6vw 40px;
  }
  footer .f-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }
  footer .brand-lockup {
    grid-column: 1 / -1;
  }
}

/* ——— Mobile ≤ 720px ——— */
@media (max-width: 720px) {
  :root {
    --parallax: 0;
  }

  nav.top {
    padding: 12px 20px;
  }
  nav.top.scrolled {
    padding: 10px 20px;
  }
  nav.top .brand .logo-img {
    height: 24px;
  }
  nav.top.scrolled .brand .logo-img {
    height: 24px;
  }
  nav.top ul {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    padding: 88px 28px 40px;
    background: #0a0a0a;
    min-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0s linear 0.3s;
  }
  nav.top.menu-open ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.3s ease,
      visibility 0s linear 0s;
  }
  nav.top ul li {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }
  nav.top.menu-open ul li {
    opacity: 1;
    transform: translateY(0);
  }
  nav.top.menu-open ul li:nth-child(1) {
    transition-delay: 0.08s;
  }
  nav.top.menu-open ul li:nth-child(2) {
    transition-delay: 0.14s;
  }
  nav.top.menu-open ul li:nth-child(3) {
    transition-delay: 0.20s;
  }
  nav.top.menu-open ul li:nth-child(4) {
    transition-delay: 0.26s;
  }
  nav.top.menu-open ul li:nth-child(5) {
    transition-delay: 0.32s;
  }
  nav.top ul a {
    font-size: 22px;
    letter-spacing: 0.12em;
    font-family: var(--display);
    text-transform: none;
    font-variation-settings: 'opsz' 72, 'wght' 400;
  }
  nav.top ul .submenu {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    min-height: 0;
    padding: 14px 0 4px 18px;
    margin: 6px 0 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-left: 1px solid rgba(232, 90, 43, 0.28);
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    pointer-events: none;
    overflow: visible;
    transition: none;
  }
  /* Only show the submenu when the parent hamburger menu is open.
     Without this scope the submenu inherits visibility:visible and
     pointer-events:auto, leaving the country links clickable through
     the page even when the menu is "closed" — taps landed on whichever
     country sat at the y-position of the page content underneath. */
  nav.top.menu-open ul .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  nav.top ul .submenu a {
    padding: 0;
    font-size: 15px;
    letter-spacing: 0.08em;
    font-family: var(--display);
    text-transform: none;
    font-variation-settings: 'opsz' 72, 'wght' 400;
    white-space: normal;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .hero {
    min-height: 560px;
  }
  .hero .scroll-hint {
    right: 20px;
    bottom: 22px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }
  .hero-kinetic .words {
    padding: 0 6vw;
    gap: 4px;
  }
  .hero-kinetic .word {
    font-size: clamp(38px, 12vw, 74px);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .hero-kinetic .w2,
  .hero-kinetic .w3,
  .hero-kinetic .w4,
  .hero-kinetic .w5 {
    padding-left: 0;
  }

  .brand-intro {
    padding: 80px 6vw 60px;
  }
  .brand-intro .lede {
    font-size: clamp(20px, 5.6vw, 26px);
    line-height: 1.3;
  }
  .brand-intro .sub {
    font-size: 15px;
  }
  .brand-intro-peacocks .peacock.left {
    display: none;
  }
  .brand-intro-peacocks .peacock.right {
    width: 90px;
    height: 153px;
    right: -13px;
    bottom: -27px;
  }

  .detail-section {
    padding: 80px 6vw 80px;
  }
  .detail-header h2 {
    font-size: clamp(44px, 12vw, 64px);
    white-space: normal;
  }
  .commitment {
    padding: 28px 0;
  }
  .commitment h3 {
    font-size: clamp(26px, 7vw, 34px);
  }
  .commitment p {
    font-size: 14px;
  }

  .carousel-section {
    padding: 80px 0 60px;
  }
  .carousel-section .carousel-head {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 6vw 32px;
  }
  .carousel-section .carousel-head h2 {
    font-size: clamp(44px, 6vw, 84px);
  }
  .carousel-section .head-right {
    align-items: flex-start;
  }
  .card {
    flex: 0 0 78vw;
  }
  .card .info {
    padding: 20px;
  }

  .trade {
    padding: 80px 6vw;
  }
  .trade h2 {
    font-size: clamp(40px, 11vw, 60px);
    margin-bottom: 28px;
  }
  .trade .lede {
    font-size: 17px;
    margin-bottom: 28px;
  }
  .trade .pill-cta {
    padding: 14px 22px;
    font-size: 11px;
  }
  .trade .trade-bullets {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer {
    padding: 60px 6vw 28px;
  }
  footer .f-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  footer .brand-lockup .logo-img {
    width: 140px;
  }
  footer .f-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ——— Stub pages ——— */
.stub {
  min-height: 70vh;
  padding: 200px 8vw 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
}
.stub .eyebrow {
  margin-bottom: 16px;
}
.stub h1 {
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--ivory);
}
.stub h1 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.stub p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ivory-dim);
  max-width: 56ch;
  margin: 0;
}

/* ——— Content pages (Privacy / Terms) ——— */

/* Shared dark title block */
.content-title {
  position: relative;
  background: var(--bg);
  padding: 200px 115px 80px;
  overflow: hidden;
}
.content-title .peacock-deco {
  position: absolute;
  right: -24px;
  bottom: -45px;
  width: 142px;
  height: 242px;
  background: var(--ivory);
  opacity: 0.18;
  pointer-events: none;
  mask: url('/assets/logos/peacock-right.png') no-repeat center / contain;
  -webkit-mask: url('/assets/logos/peacock-right.png') no-repeat center / contain;
}
.content-title .eyebrow {
  margin: 0 0 28px;
}
.content-title h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--ivory);
  text-wrap: balance;
}
.content-title h1 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
}
.content-title .lede {
  margin: 28px 0 0;
  font-family: var(--meta);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--ivory-dim);
  max-width: 56ch;
}
.content-title .meta {
  margin: 40px 0 0;
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.content-title .rule {
  position: absolute;
  left: 115px;
  right: 115px;
  bottom: 0;
  height: 1px;
  background: var(--rule);
  border: 0;
}

/* Ivory reading body — sticky TOC + numbered sections */
.legal-body {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 100px 115px 120px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 32px;
}

.legal-toc {
  grid-column: 1 / span 4;
  position: sticky;
  top: 120px;
  align-self: start;
}
.legal-toc .toc-eyebrow {
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--trade-sub);
  margin: 0 0 20px;
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.legal-toc li {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: baseline;
}
.legal-toc li .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--tangerine);
  font-variation-settings: 'opsz' 72, 'SOFT' 80, 'wght' 340;
  line-height: 1.3;
}
.legal-toc li a {
  font-family: var(--meta);
  font-size: 13px;
  line-height: 1.4;
  color: var(--trade-ink);
  font-weight: 400;
  transition: color 0.2s ease;
}
.legal-toc li a:hover {
  color: var(--tangerine);
}
.legal-toc li::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 4px;
  width: 1px;
  height: 16px;
  background: var(--tangerine);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.legal-toc li.is-active::before {
  opacity: 1;
}
.legal-toc li.is-active a {
  color: var(--tangerine);
}

/* Mobile-only sticky <select> — hidden by default */
.legal-toc-select {
  display: none;
}

/* Sections column */
.legal-sections {
  grid-column: 5 / -1;
  max-width: 809px;
}
.legal-sections > section {
  scroll-margin-top: 120px;
  margin-bottom: 64px;
}
.legal-sections > section:last-child {
  margin-bottom: 0;
}

/* Overview block (no numeral) */
.legal-overview .overview-eyebrow {
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--trade-sub);
  margin: 0 0 24px;
}

/* Numbered section */
.legal-section .numeral {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--tangerine);
}
.legal-section .numeral::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(26, 22, 18, 0.18);
}
.legal-section h2 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
  text-wrap: balance;
}
.legal-section h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
}

/* Body prose (shared by overview + sections) */
.legal-section .body,
.legal-overview .body {
  font-family: var(--meta);
  font-size: 16px;
  line-height: 1.7;
  color: var(--trade-ink);
  font-weight: 300;
  margin-top: 28px;
}
.legal-section .body p,
.legal-overview .body p {
  margin: 0;
}
.legal-section .body p + p,
.legal-overview .body p + p,
.legal-section .body ol + p,
.legal-overview .body ol + p,
.legal-section .body p + ol,
.legal-overview .body p + ol {
  margin-top: 1em;
}
.legal-section .body ol,
.legal-overview .body ol {
  padding-left: 24px;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-section .body ol li::marker,
.legal-overview .body ol li::marker {
  color: var(--trade-sub);
  font-variant-numeric: tabular-nums;
}

/* Section divider */
.legal-section .divider,
.legal-overview .divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--rule-soft-cream);
  margin: 56px 0 0;
  border: 0;
}
.legal-section.is-last .divider {
  display: none;
}

/* Close band */
.content-close {
  background: var(--bg);
  padding: 80px 115px 100px;
  color: var(--ivory);
}
.content-close .inner {
  max-width: 720px;
}
.content-close .eyebrow {
  margin: 0 0 24px;
}
.content-close .line {
  margin: 0;
  font-family: var(--meta);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ivory);
  text-wrap: pretty;
}
.content-close .line a {
  color: var(--tangerine);
}
.content-close .line a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.content-close .cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding-bottom: 4px;
  font-family: var(--meta);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color 0.2s ease;
}
.content-close .cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--tangerine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.content-close .cta:hover {
  color: var(--tangerine);
}
.content-close .cta:hover::after {
  transform: scaleX(1);
}
.content-close .cta .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.content-close .cta:hover .arrow {
  transform: translateX(4px);
}

/* FAQ Q&A items inside legal-section body */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-soft-cream);
}
.faq-item:first-child {
  padding-top: 0;
}
.faq-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.faq-item .question {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 400;
  color: var(--trade-ink);
  text-wrap: balance;
}
.faq-item .question em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 400;
}
.faq-item .answer {
  margin: 14px 0 0;
  font-family: var(--meta);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--trade-ink);
}

/* Our Story — ivory prose band (no TOC, simple stacked paragraphs) */
.story-body {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 120px 115px;
}
.story-body .story-inner {
  max-width: 1210px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.story-body p {
  margin: 0;
  font-family: var(--meta);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--trade-ink);
  max-width: 1210px;
}

/* Footer legal links */
footer .f-bottom .legal-links a {
  transition: color 0.2s ease;
}
footer .f-bottom .legal-links a:hover {
  color: var(--tangerine);
}

/* —— Content pages — Tablet ≤ 1100px —— */
@media (max-width: 1100px) {
  .content-title {
    padding: 160px 6vw 60px;
  }
  .content-title .rule {
    left: 6vw;
    right: 6vw;
  }
  .content-title .peacock-deco {
    right: -16px;
    bottom: 24px;
    width: 110px;
    height: 188px;
  }
  .legal-body {
    padding: 80px 6vw 100px;
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .legal-toc {
    display: none;
  }
  .legal-toc-select {
    display: block;
    position: sticky;
    top: 60px;
    z-index: 5;
    background: var(--ivory);
    margin: -80px -6vw 32px;
    padding: 14px 6vw;
    border-bottom: 1px solid var(--rule-soft-cream);
  }
  .legal-toc-select select {
    width: 100%;
    font-family: var(--meta);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--trade-ink);
    background-color: var(--ivory);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%231a1612' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    border: 1px solid var(--rule-soft-cream);
    padding: 14px 40px 14px 16px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }
  .legal-sections {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .legal-sections > section {
    scroll-margin-top: 96px;
    margin-bottom: 56px;
  }
  .content-close {
    padding: 70px 6vw 90px;
  }
  .story-body {
    padding: 80px 6vw 100px;
  }
}

/* —— Content pages — Mobile ≤ 720px —— */
@media (max-width: 720px) {
  .content-title {
    padding: 120px 24px 40px;
  }
  .content-title .rule {
    left: 24px;
    right: 24px;
  }
  .content-title h1 {
    font-size: clamp(48px, 12vw, 64px);
  }
  .content-title .peacock-deco {
    right: -10px;
    bottom: -14px;
    width: 56px;
    height: 95px;
    opacity: 0.12;
  }
  .content-title .lede {
    margin-top: 24px;
    font-size: 16px;
  }
  .content-title .meta {
    margin-top: 32px;
  }
  .legal-body {
    padding: 60px 24px 80px;
  }
  .legal-toc-select {
    margin: -60px -24px 28px;
    padding: 14px 24px;
    top: 56px;
  }
  .legal-sections > section {
    margin-bottom: 48px;
  }
  .legal-section h2 {
    font-size: clamp(26px, 7vw, 32px);
  }
  .legal-section .divider,
  .legal-overview .divider {
    margin-top: 40px;
  }
  .content-close {
    padding: 60px 24px 80px;
  }
  .content-close .line {
    font-size: 17px;
  }
  .content-close .cta {
    margin-top: 32px;
  }
  .story-body {
    padding: 60px 24px 80px;
  }
  .story-body p {
    font-size: 16px;
  }
  .faq-item {
    padding: 20px 0;
  }
  .faq-item .question {
    font-size: 18px;
  }
  footer .f-bottom .legal-links {
    display: block;
  }
}

/* —— Contact (Get in touch v2) ——————————————————————————————————— */

.contact-page {
  background: var(--bg);
}

/* Find us — ivory two-up offices */
.find-us {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 100px 115px;
}
.find-us .offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1210px;
  margin: 0 auto;
}
.find-us .office {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.find-us .city {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 90px);
  line-height: 1.05;
  font-style: italic;
  color: var(--tangerine);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
}
.find-us .pairs {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.find-us .pair {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
}
.find-us .pair + .pair {
  margin-top: 16px;
}
.find-us .pair .eyebrow {
  margin: 0;
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--trade-sub);
}
.find-us .pair .value {
  margin: 0;
  font-family: var(--meta);
  font-size: 16px;
  line-height: 1.5;
  color: var(--trade-ink);
}
.find-us .pair .value a {
  color: var(--trade-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.find-us .pair .value a:hover {
  color: var(--tangerine);
}
.find-us .pair .value.tbd {
  font-style: italic;
  color: var(--trade-sub);
}
.find-us .map-link {
  align-self: start;
  font-family: var(--meta);
  font-size: 14px;
  font-weight: 400;
  color: var(--tangerine);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}
.find-us .map-link[aria-disabled='true'] {
  opacity: 0.45;
  pointer-events: none;
}
.find-us .map-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}
.find-us .map-link:hover span {
  transform: translateX(4px);
}

/* Atmospheric peacock band */
.atmos {
  height: 360px;
  background-image: url('https://images.unsplash.com/photo-1641633593415-378819228d97?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=2000');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Form band — ivory, full-width form, large display heading */
.form-band {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 120px 115px 160px;
}
.form-panel {
  max-width: 1210px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.form-heading {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
}
.form-heading em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-soft-cream);
}
.contact-form .field .label {
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--trade-sub);
}
.contact-form .field .req {
  color: var(--tangerine);
  margin-left: 2px;
}
.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  border: 0;
  background: transparent;
  font-family: var(--meta);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--trade-ink);
  padding: 0;
  outline: none;
  width: 100%;
  resize: none;
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder {
  color: var(--trade-sub);
  opacity: 0.7;
}
.contact-form .field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--trade-sub) 50%),
    linear-gradient(135deg, var(--trade-sub) 50%, transparent 50%);
  background-position: calc(100% - 12px) 12px, calc(100% - 6px) 12px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 24px;
  color: var(--trade-sub);
}
.contact-form .field select:has(option:checked:not([disabled])) {
  color: var(--trade-ink);
}
.contact-form .field textarea {
  min-height: 108px;
}
.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus {
  outline: none;
}
.contact-form .field:focus-within {
  border-bottom-color: var(--tangerine);
}
.contact-form .submit-row {
  display: flex;
  justify-content: flex-end;
}
.submit-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--tangerine);
  color: var(--ivory);
  font-family: var(--meta);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.submit-pill span {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.2s ease;
}
.submit-pill:hover {
  background: var(--tangerine-soft);
}
.submit-pill:hover span {
  transform: translateX(4px);
}

/* Contact — Tablet ≤ 1100px */
@media (max-width: 1100px) {
  .find-us {
    padding: 80px 6vw;
  }
  .find-us .offices {
    gap: 48px;
  }
  .form-band {
    padding: 100px 6vw 140px;
  }
  .form-panel {
    gap: 40px;
  }
}

/* Contact — Mobile ≤ 720px */
@media (max-width: 720px) {
  .find-us {
    padding: 60px 24px;
  }
  .find-us .offices {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .find-us .office {
    gap: 24px;
  }
  .atmos {
    height: 220px;
  }
  .form-band {
    padding: 60px 24px 100px;
  }
  .form-panel {
    gap: 32px;
  }
  .contact-form {
    gap: 28px;
  }
  .contact-form .row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-form .field input,
  .contact-form .field select,
  .contact-form .field textarea {
    font-size: 16px;
  }
  .submit-pill {
    padding: 14px 26px;
  }
}

/* ——— Destination hero ——— */
.dest-hero {
  height: 85vh;
  min-height: 620px;
}
/* Theme detail page wants a shorter banner — the shared DestinationHero
   keeps its 85vh default on /destinations/<slug>; only /themes/<slug>
   (which wraps <main class="theme-detail">) caps the hero at 420px. */
.theme-detail .dest-hero {
  height: 520px;
  min-height: 0;
}
.dest-hero .photo {
  /* Colour, NOT greyscaled — destination hero differs from home hero here */
  animation: kenburnsSlow 40s ease-out infinite alternate;
}
.dest-hero .photo::after {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.18) 0%,
    rgba(10, 10, 10, 0.08) 35%,
    rgba(10, 10, 10, 0.82) 100%
  );
}
.dest-hero .dest-hero-text {
  position: absolute;
  left: clamp(24px, 8vw, 115px);
  right: clamp(24px, 8vw, 115px);
  bottom: clamp(48px, 9vh, 96px);
  z-index: 2;
  opacity: 0;
  transform: translateY(24px);
  animation: destHeroIn 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s forwards;
}
@keyframes destHeroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dest-hero .eyebrow {
  margin: 0 0 22px;
  color: var(--ivory-dim);
}
.dest-hero h1 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--ivory);
}
.dest-hero .tagline {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 350;
  color: var(--ivory);
  max-width: 32ch;
}
.dest-hero .tagline em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 320;
}

@media (max-width: 1100px) {
  .dest-hero .dest-hero-text {
    left: 6vw;
    right: 6vw;
  }
}
@media (max-width: 720px) {
  .dest-hero {
    height: 65vh;
    min-height: 400px;
  }
  .dest-hero h1 {
    font-size: clamp(44px, 12vw, 72px);
  }
  .dest-hero .tagline {
    font-size: clamp(18px, 4.6vw, 22px);
  }
  .dest-hero .dest-hero-text {
    left: 24px;
    right: 24px;
    bottom: 80px;
  }
}

/* ——— Destination intro ——— */
.dest-intro {
  position: relative;
  background: var(--bg);
  padding: 140px clamp(40px, 11.8vw, 170px) 120px;
  overflow: hidden;
}
.dest-intro .intro-inner {
  position: relative;
  z-index: 1;
}
.dest-intro .lede {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.34;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 320;
  color: var(--ivory);
}
.dest-intro .lede em.italic {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 320;
}
.dest-intro .sub {
  margin: 40px 0 0;
  font-family: var(--meta);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--ivory-dim);
}
.dest-intro .peacock-deco {
  position: absolute;
  right: -30px;
  bottom: -55px;
  width: 168px;
  height: 280px;
  background: var(--ivory);
  opacity: 0.1;
  pointer-events: none;
  mask: url('/assets/logos/peacock-right.png') no-repeat center / contain;
  -webkit-mask: url('/assets/logos/peacock-right.png') no-repeat center / contain;
}

@media (max-width: 1100px) {
  .dest-intro {
    padding: 120px 6vw 96px;
  }
  .dest-intro .peacock-deco {
    right: -16px;
    bottom: 24px;
    width: 110px;
    height: 188px;
  }
}
@media (max-width: 720px) {
  .dest-intro {
    padding: 90px 24px 80px;
  }
  .dest-intro .lede {
    font-size: clamp(20px, 5.5vw, 26px);
  }
  .dest-intro .sub {
    font-size: 15px;
  }
  .dest-intro .peacock-deco {
    right: -10px;
    bottom: -14px;
    width: 56px;
    height: 95px;
    opacity: 0.12;
  }
}

/* ——— Best Time to Visit (ivory editorial schedule) ——— */
.best-time {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 120px clamp(40px, 11.8vw, 170px) 140px;
}
.best-time-head {
  margin: 0 0 64px;
}
.best-time-head .eyebrow {
  color: var(--tangerine);
  margin: 0 0 18px;
}
.best-time-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
}
.best-time-head h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300;
}
.best-time-rows {
  display: flex;
  flex-direction: column;
}
.best-time-row {
  display: grid;
  grid-template-columns: 4fr 3fr 5fr;
  column-gap: 32px;
  align-items: start;
  padding: 36px 0 36px;
  border-top: 1px solid var(--rule-soft-cream);
}
.best-time-row:last-child {
  border-bottom: 1px solid var(--rule-soft-cream);
}
.best-time-row .region {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 400;
  color: var(--trade-ink);
}
.best-time-row .window {
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tangerine);
  padding-top: 6px;
}
.best-time-row .notes {
  margin: 0;
  font-family: var(--meta);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--trade-ink);
}

@media (max-width: 1100px) {
  .best-time {
    padding: 96px 6vw 110px;
  }
  .best-time-row {
    grid-template-columns: 5fr 7fr;
    column-gap: 24px;
    row-gap: 12px;
  }
  .best-time-row .region {
    grid-column: 1 / -1;
  }
  .best-time-row .window {
    grid-column: 1 / 2;
  }
  .best-time-row .notes {
    grid-column: 2 / -1;
  }
}
@media (max-width: 720px) {
  .best-time {
    padding: 72px 24px 88px;
  }
  .best-time-head {
    margin-bottom: 40px;
  }
  .best-time-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 28px 0;
  }
  .best-time-row .window,
  .best-time-row .notes {
    grid-column: 1 / -1;
  }
  .best-time-row .notes {
    font-size: 14.5px;
  }
}

/* ——— Where We Take You (theme detail, image grid) ——— */
.where-we-take-you {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 120px clamp(40px, 11.8vw, 170px) 140px;
}
/* Stacked place-group carousels (e.g. Luxury Trains + Iconic Trains) read as one
   ivory band, so drop the seam: the upper section keeps only the lower section's
   top padding as the gap. Higher specificity than the responsive shorthands below. */
.where-we-take-you:has(+ .where-we-take-you) {
  padding-bottom: 0;
}
.wwty-head {
  margin: 0 0 72px;
}
.wwty-head .eyebrow {
  color: var(--tangerine);
  margin: 0 0 18px;
}
.wwty-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
}
.wwty-head h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300;
}
.wwty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 56px;
}
.wwty-grid[data-overflow] {
  display: flex;
  grid-template-columns: none;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-inline: calc(-1 * clamp(40px, 11.8vw, 170px));
  padding-inline-start: clamp(40px, 11.8vw, 170px);
  padding-inline-end: clamp(24px, 4vw, 56px);
  scroll-padding-left: clamp(40px, 11.8vw, 170px);
  padding-bottom: 8px;
}
.wwty-grid[data-overflow]::-webkit-scrollbar {
  display: none;
}
.wwty-grid[data-overflow] .wwty-tile {
  flex: 0 0 clamp(260px, 23vw, 340px);
  scroll-snap-align: start;
}
.wwty-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.wwty-frame {
  position: relative;
  aspect-ratio: 4 / 2;
  overflow: hidden;
  background: color-mix(in oklab, var(--trade-ink) 8%, transparent);
}
.wwty-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.wwty-tile:hover .wwty-frame img {
  transform: scale(1.04);
}
.wwty-caption {
  padding: 20px 0 0;
}
.wwty-caption .place {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 400;
  color: var(--trade-ink);
}
.wwty-caption .region {
  margin-top: 6px;
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trade-sub);
}
.wwty-caption .desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--trade-sub);
  max-width: 42ch;
}
.wwty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0 0 4px;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--meta);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trade-ink);
  text-decoration: none;
  position: relative;
}
.wwty-cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--trade-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.wwty-cta:hover::after,
.wwty-cta:focus-visible::after {
  transform: scaleX(1);
}
.wwty-cta .arrow {
  transition: transform 0.3s ease;
}
.wwty-cta:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .where-we-take-you {
    padding: 96px 6vw 110px;
  }
  .wwty-head {
    margin-bottom: 56px;
  }
  .wwty-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 48px;
  }
}
@media (max-width: 720px) {
  .where-we-take-you {
    padding: 72px 24px 88px;
  }
  .wwty-head {
    margin-bottom: 40px;
  }
  .wwty-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
  .wwty-grid[data-overflow] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-inline: 0;
    padding-inline: 0;
    overflow-x: visible;
    overflow-y: visible;
  }
  .wwty-grid[data-overflow] .wwty-tile {
    flex: initial;
  }
  .wwty-frame {
    aspect-ratio: 1 / 1;
  }
  .wwty-caption {
    padding-top: 16px;
  }
}

/* ——— Themes index — card overrides (4/2 aspect, no where line) ——— */
/* Scoped under .themes-index so the shared Card component stays generic.
   Both the All-themes TileGrid and (if reintroduced) the Featured Carousel
   live inside <main class="themes-index"> and pick these up automatically. */
.themes-index .card {
  aspect-ratio: 4 / 2;
}
.themes-index .card .info .where {
  display: none;
}

/* ——— Destination close (tangerine CTA band) ——— */
.dest-close {
  background: var(--tangerine);
  color: var(--ivory);
  padding: 88px clamp(40px, 11.8vw, 115px) 120px;
  text-align: center;
  overflow: hidden;
}
.dest-close-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.dest-close .eyebrow {
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--trade-ink);
  margin: 0;
}
.dest-close .title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--ivory);
  max-width: 28ch;
  text-wrap: balance;
}
.dest-close .title em {
  color: var(--trade-ink);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300;
}
.dest-close-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
}
.dest-close .cta {
  font-family: var(--meta);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trade-ink);
  position: relative;
  padding-bottom: 4px;
}
.dest-close .cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--trade-ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.dest-close .cta:hover::after,
.dest-close .cta:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 1100px) {
  .dest-close {
    padding: 72px 6vw 96px;
  }
}
@media (max-width: 720px) {
  .dest-close {
    padding: 56px 24px 72px;
  }
  .dest-close .title {
    font-size: clamp(22px, 5.5vw, 28px);
  }
}

/* === Experiences / Stays landing — tile grid (ivory band) === */
.tile-grid {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 40px 115px 120px;
}
.tile-grid .tg-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px 32px;
  padding-bottom: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--rule-soft-cream);
}
.tile-grid .tg-filter-label {
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trade-ink);
}
.tile-grid .tg-pills {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 24px), transparent);
          mask-image: linear-gradient(to right, black calc(100% - 24px), transparent);
}
.tile-grid .tg-pills::-webkit-scrollbar {
  display: none;
}
.tile-grid .tg-pill {
  flex: 0 0 auto;
}
.tile-grid .tg-pill {
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--trade-ink);
  background: transparent;
  border: 1px solid var(--trade-ink);
  padding: 8px 16px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.tile-grid .tg-pill:hover {
  border-color: var(--tangerine);
  color: var(--tangerine);
}
.tile-grid .tg-pill[aria-pressed='true'] {
  background: var(--trade-ink);
  color: var(--ivory);
  border-color: var(--trade-ink);
}
.tile-grid .tg-pill[aria-pressed='true']:hover {
  background: var(--tangerine);
  color: var(--ivory);
  border-color: var(--tangerine);
}
.tile-grid .tg-reset {
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tangerine);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--tangerine);
  padding: 0 0 4px;
  cursor: pointer;
  margin-left: 8px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.tile-grid .tg-reset:hover {
  color: var(--trade-ink);
  border-color: var(--trade-ink);
}
.tile-grid .tg-count {
  margin-left: auto;
  font-family: var(--meta);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trade-ink);
  opacity: 0.7;
}
.tile-grid .tg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tile-grid .card-tile {
  display: block;
}
.themes-index .tile-grid .card-tile {
  box-shadow:
    0 18px 40px -14px rgba(0, 0, 0, 0.65),
    0 6px 16px -8px rgba(0, 0, 0, 0.5);
  transition: box-shadow 320ms ease, transform 320ms ease;
}
.tile-grid a.card-tile {
  cursor: pointer;
}
.themes-index .tile-grid a.card-tile:hover {
  box-shadow:
    0 28px 58px -14px rgba(0, 0, 0, 0.8),
    0 10px 22px -6px rgba(232, 90, 43, 0.22);
  transform: translateY(-3px);
}
.tile-grid .card-tile .card {
  flex: initial;
  width: 100%;
}
.tile-grid .card-tile[hidden] {
  display: none;
}
.tile-grid .tg-empty {
  font-family: var(--meta);
  font-size: 14px;
  font-style: italic;
  color: var(--trade-ink);
  opacity: 0.6;
  text-align: center;
  padding: 80px 0;
  margin: 0;
}

/* ── Tile grid — Tablet ≤ 1100px ── */
@media (max-width: 1100px) {
  .tile-grid {
    padding: 40px 6vw 80px;
  }
  .tile-grid .tg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Tile grid — Small tablet ≤ 720px ── */
@media (max-width: 720px) {
  .tile-grid .tg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tile-grid .tg-filter {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 16px;
  }
  .tile-grid .tg-pills {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .tile-grid .tg-count {
    margin-left: 0;
  }
}

/* ── Tile grid — Phone ≤ 480px ── */
@media (max-width: 480px) {
  .tile-grid .tg-grid {
    grid-template-columns: 1fr;
  }
}

/* About — chapter break (used between narrative chapters and atop the team band) */
.chapter-break {
  margin: 120px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 1210px;
}
.chapter-break .chapter-rule {
  width: 100%;
  height: 1px;
  border: 0;
  background: var(--rule-soft-cream);
  margin: 0;
}
.chapter-heading {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--trade-ink);
  text-wrap: balance;
}
.chapter-heading em {
  font-style: italic;
  color: var(--trade-ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'wght' 300;
}
.chapter-break.dark .chapter-rule { background: var(--rule); }
.chapter-break.dark .chapter-heading,
.chapter-break.dark .chapter-heading em { color: var(--ivory); }

/* About — dark team band (founder diptychs) */
.team-band {
  background: var(--bg);
  color: var(--ivory);
  padding: 100px 115px 120px;
}
.team-inner {
  max-width: 1210px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.team-band .chapter-break {
  margin: 0;
}

.founder {
  display: grid;
  grid-template-columns: 3fr 8fr;
  gap: 56px;
  align-items: start;
}
.founder--photo-right {
  grid-template-columns: 8fr 3fr;
}
.founder-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 25%;
  display: block;
  background: var(--bg-2);
}
.founder-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.founder-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--tangerine);
}

/* About — founder typography */
.founder-name {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.founder-name em {
  font-style: italic;
  color: var(--ivory);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}

.founder-bio {
  margin: 0;
  font-family: var(--meta);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ivory);
}

.founder-favs {
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.founder-favs > div { display: flex; flex-direction: column; }
.founder-favs dt {
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.founder-favs dd {
  margin: 6px 0 0;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'wght' 320;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ivory);
}

/* About — tablet responsive */
@media (max-width: 1100px) {
  .team-band {
    padding: 80px 6vw 100px;
  }
  .team-inner {
    gap: 72px;
  }
  .founder,
  .founder--photo-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* On collapse, always show photo first, then bio — alternation is desktop-only */
  .founder--photo-right .founder-photo {
    order: -1;
  }
  .founder-photo {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

/* About — mobile responsive */
@media (max-width: 720px) {
  .chapter-break {
    margin: 80px 0 32px;
    gap: 20px;
  }
  .chapter-heading {
    font-size: clamp(28px, 7vw, 36px);
  }

  .team-band {
    padding: 60px 24px 80px;
  }
  .team-inner {
    gap: 56px;
  }
  .founder {
    gap: 24px;
  }
  .founder-name {
    font-size: clamp(36px, 9vw, 48px);
  }
  .founder-favs {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .founder-favs dd {
    font-size: 21px;
  }
}

/* ────────────── Species Grid (Into the Wild) ────────────── */
.species-section {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 0 0 140px;
}
.species-head {
  padding: 0 clamp(40px, 11.8vw, 170px);
  margin: 0 0 56px;
}
.species-head .eyebrow {
  color: var(--tangerine);
  margin: 0 0 18px;
}
.species-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
}
.species-head h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300;
}
/* Auto-scrolling "cinema strip" — items are duplicated in the component, the
   track translates -50% → 0 for a seamless left-to-right loop. Pauses on hover,
   and falls back to a manual scroll when reduced-motion is requested. */
.species-strip {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.species-track {
  display: flex;
  width: max-content;
  animation: species-marquee 80s linear infinite;
  will-change: transform;
}
.species-strip:hover .species-track {
  animation-play-state: paused;
}
.species-track .species-tile {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 320px);
}
@keyframes species-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .species-track {
    animation: none;
  }
  .species-strip {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .species-strip::-webkit-scrollbar {
    display: none;
  }
}
.species-tile {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: color-mix(in oklab, var(--trade-ink) 8%, transparent);
}
.species-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.species-tile:hover img {
  transform: scale(1.05);
}
.species-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(16px, 1.8vw, 28px);
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 360;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}
@media (max-width: 600px) {
  .species-section {
    padding: 0 0 80px;
  }
  .species-head {
    margin: 0 0 36px;
  }
  .species-track .species-tile {
    width: 60vw;
  }
  .species-caption {
    font-size: 16px;
    padding: 14px;
  }
}

/* ── Collector's geography — captioned craft grid (4-up, ivory band) ── */
/* Reuses .species-section / .species-head / .species-tile / .species-caption;
   only the column count differs from the wildlife species grid. */
/* This grid leads the ivory band (no preceding section), so it needs a top pad
   matching the "Where We Take You" places band (.species-section has top:0). */
.craft-section {
  padding-top: 120px;
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 1000px) {
  .craft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .craft-grid {
    grid-template-columns: none;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 60vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .craft-grid::-webkit-scrollbar {
    display: none;
  }
}
/* Top pad tracks .where-we-take-you's responsive steps (120 → 96 → 72);
   placed after the .species-section mobile reset so it wins at small widths. */
@media (max-width: 1100px) {
  .craft-section {
    padding-top: 96px;
  }
}
@media (max-width: 720px) {
  .craft-section {
    padding-top: 72px;
  }
}

/* === Sacred sites — religion-filtered "places" (theme detail, ivory band) === */
/* Section reuses .where-we-take-you for the ivory band, head and tile styling;
   .sacred-sites only adds the "Select Religion" filter bar between head and grid. */
.sacred-sites .wwty-head {
  margin-bottom: 40px;
}
.sacred-sites .sacred-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-soft-cream);
}
.sacred-sites .sf-label {
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trade-ink);
}
.sacred-sites .sf-pills {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 24px), transparent);
          mask-image: linear-gradient(to right, black calc(100% - 24px), transparent);
}
.sacred-sites .sf-pills::-webkit-scrollbar {
  display: none;
}
.sacred-sites .sf-pill {
  flex: 0 0 auto;
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--trade-ink);
  background: transparent;
  border: 1px solid var(--trade-ink);
  padding: 8px 16px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.sacred-sites .sf-pill:hover {
  border-color: var(--tangerine);
  color: var(--tangerine);
}
.sacred-sites .sf-pill[aria-pressed='true'] {
  background: var(--trade-ink);
  color: var(--ivory);
  border-color: var(--trade-ink);
}
.sacred-sites .sf-pill[aria-pressed='true']:hover {
  background: var(--tangerine);
  color: var(--ivory);
  border-color: var(--tangerine);
}
.sacred-sites .sf-count {
  font-family: var(--meta);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trade-ink);
  opacity: 0.7;
}
/* .wwty-tile sets display:flex, which outranks the UA [hidden]{display:none};
   re-assert it so the faith filter can actually hide tiles. */
.sacred-sites .wwty-tile[hidden] {
  display: none;
}
.sacred-sites .sf-empty {
  margin-top: 8px;
  font-family: var(--meta);
  letter-spacing: 0.04em;
  color: var(--trade-ink);
  opacity: 0.7;
}

/* ——— Festival grid (region pills + month dropdown), reuses .sacred-sites ——— */
.festival-grid .fg-filter {
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.festival-grid .fg-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}
.festival-grid .fg-reset {
  flex: 0 0 auto;
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--trade-ink);
  background: transparent;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  position: relative;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.festival-grid .fg-reset:hover {
  color: var(--tangerine);
  opacity: 1;
}
.festival-grid .fg-month {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.festival-grid .fg-select {
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--trade-ink);
  background: transparent;
  border: 1px solid var(--trade-ink);
  padding: 8px 36px 8px 16px;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          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='%23231f1c' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s, color 0.2s;
}
.festival-grid .fg-select:hover {
  border-color: var(--tangerine);
  color: var(--tangerine);
}
.festival-grid .wwty-caption .fg-month-label {
  margin-top: 8px;
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tangerine);
}
/* Numbered pagination under the festival grid */
.festival-grid .fg-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.festival-grid .fg-page {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--meta);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--trade-ink);
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--trade-ink) 25%, transparent);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.festival-grid .fg-page:hover:not(:disabled):not(.is-current) {
  border-color: var(--tangerine);
  color: var(--tangerine);
}
.festival-grid .fg-page.is-current {
  background: var(--trade-ink);
  border-color: var(--trade-ink);
  color: var(--ivory);
  cursor: default;
}
.festival-grid .fg-page:disabled {
  opacity: 0.35;
  cursor: default;
}
.festival-grid .fg-ellipsis {
  min-width: 24px;
  text-align: center;
  font-family: var(--meta);
  font-size: 13px;
  color: var(--trade-sub);
}
/* Phone: stack each filter row (label above control), like the tile-grid filter. */
@media (max-width: 720px) {
  .festival-grid .fg-filter {
    gap: 16px;
  }
  .festival-grid .fg-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .festival-grid .sf-pills {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .festival-grid .fg-reset {
    align-self: flex-start;
    padding: 0;
  }
  .festival-grid .fg-month {
    width: 100%;
  }
  .festival-grid .fg-select {
    width: 100%;
  }
}

/* ——— Theme lists (Programme themes / Who we design for) — ivory band ——— */
.theme-lists {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 120px clamp(40px, 11.8vw, 170px) 140px;
}
.tlists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(48px, 8vw, 120px);
  row-gap: 72px;
  align-items: start;
}
.tlists-col {
  margin: 0;
}
.tlists-head {
  margin: 0 0 36px;
}
.tlists-head .eyebrow {
  color: var(--tangerine);
  margin: 0 0 18px;
}
.tlists-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
}
.tlists-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tlists-items li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-top: 1px solid color-mix(in oklab, var(--trade-ink) 14%, transparent);
  font-family: var(--display);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 40, 'SOFT' 30, 'wght' 400;
  color: var(--trade-ink);
}
.tlists-items li:last-child {
  border-bottom: 1px solid color-mix(in oklab, var(--trade-ink) 14%, transparent);
}
.tlists-items li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 27px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tangerine);
}

@media (max-width: 1100px) {
  .theme-lists {
    padding: 96px 6vw 110px;
  }
  .tlists-grid {
    row-gap: 56px;
  }
}
@media (max-width: 720px) {
  .theme-lists {
    padding: 72px 24px 88px;
  }
  .tlists-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .tlists-head {
    margin-bottom: 28px;
  }
}

/* ——— India's Golden Triangle — geometric SVG triangle on the ivory band ——— */
.golden-triangle {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 96px clamp(40px, 11.8vw, 170px) 110px;
}
/* When the triangle is immediately followed by the Extensions carousel (also an
   ivory band), drop the seam so the two read as one continuous band. */
.golden-triangle:has(+ .where-we-take-you) {
  padding-bottom: 0;
}
.gt-head {
  margin: 0 0 48px;
}
.gt-head .eyebrow {
  color: var(--tangerine);
  margin: 0 0 18px;
}
.gt-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
}
.gt-head h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300;
}
.gt-figure {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  height: clamp(400px, 42vw, 460px);
}
.gt-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.gt-lines path {
  fill: none;
  stroke: var(--tangerine);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 2 7;
  stroke-linecap: round;
  opacity: 0.6;
}
.tri-node {
  position: absolute;
  margin: 0;
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tri-disc {
  width: clamp(78px, 8vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: color-mix(in oklab, var(--trade-ink) 8%, transparent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border: 4px solid var(--ivory);
}
.tri-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tri-cap {
  margin-top: 14px;
}
.tri-city {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 400;
  color: var(--trade-ink);
}
.tri-desc {
  margin: 8px 0 0;
  font-family: var(--meta);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--trade-sub);
}
/* disc centre sits on the triangle vertices (apex 14% / base 62%) */
.tri-node--apex {
  left: 50%;
  top: 14%;
  transform: translate(-50%, calc(-1 * clamp(39px, 4vw, 48px)));
}
.tri-node--left {
  left: 13%;
  top: 60%;
  transform: translate(-50%, calc(-1 * clamp(39px, 4vw, 48px)));
}
.tri-node--right {
  left: 87%;
  top: 60%;
  transform: translate(-50%, calc(-1 * clamp(39px, 4vw, 48px)));
}

@media (max-width: 1100px) {
  .golden-triangle {
    padding: 88px 6vw 104px;
  }
  .gt-figure {
    max-width: 600px;
    height: clamp(400px, 64vw, 460px);
  }
  .tri-node {
    width: 188px;
  }
}

/* Mobile: the triangle collapses to a compact itinerary list — small discs
   down a single connector line, city + description to the right. */
@media (max-width: 720px) {
  .golden-triangle {
    padding: 64px 24px 4px;
  }
  .gt-head {
    margin-bottom: 32px;
  }
  .gt-figure {
    height: auto;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .gt-lines {
    display: none;
  }
  /* reset the absolute desktop placement */
  .tri-node--apex,
  .tri-node--left,
  .tri-node--right {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    transform: none;
  }
  .tri-node {
    width: 100%;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 18px;
  }
  .tri-disc {
    width: 62px;
    flex: 0 0 62px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  }
  .tri-cap {
    margin-top: 0;
  }
  .tri-desc {
    margin-top: 4px;
  }
  /* vertical connector running through the disc centres */
  .gt-figure::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 31px;
    bottom: 31px;
    width: 1px;
    background: color-mix(in oklab, var(--tangerine) 45%, transparent);
  }
}

/* ============================================================
   Contact form chrome — shared by the /contact form band and the
   sticky corner popup. Moved out of contact.astro so both
   ContactForm instances pick it up.
   ============================================================ */

.contact-block {
  display: flex;
  flex-direction: column;
}
/* `.contact-form { display: flex }` is author CSS, so it outranks the UA's
   `[hidden] { display: none }`. Without this the form stays on screen after a
   successful send and the success card just stacks on top of it. */
.contact-form[hidden] {
  display: none;
}

/* Honeypot — off-screen, never shown to a human */
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.recaptcha-row {
  margin: 24px 0 4px;
}

/* ——— Inline success card (replaces the form on success) ——— */
.form-success-card {
  padding: 40px 8px 16px;
  text-align: center;
  animation: success-in 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.success-eyebrow {
  margin: 0 0 16px;
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tangerine);
}
.success-title {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  /* Sits on the ivory form band / ivory popup, so it takes the dark ink. */
  color: var(--trade-ink);
}
.success-title em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
}
.success-body {
  margin: 0 0 28px;
  font-family: var(--meta);
  font-size: 15px;
  line-height: 1.6;
  color: var(--trade-sub);
}
.send-another {
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trade-sub);
  background: transparent;
  border: 1px solid var(--rule-soft-cream);
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: color 180ms ease-out, border-color 180ms ease-out;
}
.send-another:hover {
  color: var(--tangerine);
  border-color: var(--tangerine);
}
@keyframes success-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Inline error line under the form ——— */
.form-error {
  margin: 8px 0 0;
  font-family: var(--meta);
  font-size: 13px;
  color: var(--tangerine);
}

/* ——— Submit button spinner state ——— */
.submit-pill {
  position: relative;
}
.submit-pill .spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(245, 241, 234, 0.3);
  border-top-color: var(--ivory);
  display: none;
  animation: spin 700ms linear infinite;
}
.submit-pill.is-loading {
  cursor: progress;
  opacity: 0.85;
}
.submit-pill.is-loading .spinner {
  display: inline-block;
}
.submit-pill.is-loading .submit-arrow {
  display: none;
}
.submit-pill[disabled] {
  pointer-events: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ——— Floating toast (one per page, rendered by Base) ——— */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  z-index: 9999;
  max-width: min(520px, calc(100vw - 32px));
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--bg-deep);
  color: var(--ivory);
  border: 1px solid var(--rule);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  font-family: var(--meta);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  transition:
    opacity 300ms ease-out,
    transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast[data-tone='success'] {
  border-color: rgba(232, 90, 43, 0.45);
}
.toast[data-tone='error'] {
  border-color: rgba(232, 90, 43, 0.85);
}

/* ============================================================
   Meet Us bookmark + panel
   A tab pinned to the right edge of every page, opening a panel that
   lists where the team is going next. Content comes from the meetUs
   CMS collection; the whole widget is omitted when that is empty.
   Layering: tab 90 (under the nav's 100), scrim 9985, panel 9990.
   ============================================================ */

.meetus-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 11px;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: var(--tangerine);
  color: var(--ivory);
  cursor: pointer;
  box-shadow: -6px 8px 26px rgba(0, 0, 0, 0.38);
  transition:
    background 200ms ease,
    transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 200ms ease;
}
.meetus-tab .mt-label {
  /* Reads top-to-bottom down the right edge, like a bookmark tab. */
  writing-mode: vertical-rl;
  font-family: var(--meta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.meetus-tab:hover {
  background: var(--tangerine-soft);
  transform: translateY(-50%) translateX(-4px);
}
.meetus-tab:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 3px;
}
/* Stay above the scrim while open; yield to the mobile nav overlay. */
.meetus-widget.is-open .meetus-tab {
  z-index: 9991;
}
#site-nav.menu-open ~ .meetus-widget .meetus-tab {
  opacity: 0;
  pointer-events: none;
}

.meetus-scrim {
  position: fixed;
  inset: 0;
  z-index: 9985;
  background: rgba(6, 6, 6, 0.55);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 260ms ease,
    visibility 0s linear 260ms;
}
.meetus-widget.is-open .meetus-scrim {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s;
}

.meetus-panel {
  position: fixed;
  right: 56px;
  top: 50%;
  z-index: 9990;
  width: min(560px, calc(100vw - 96px));
  max-height: min(80vh, 700px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 26px 28px 28px;
  border-radius: 20px;
  background: var(--ivory);
  color: var(--trade-ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  /* translateY(-50%) is the vertical centring and must survive both states. */
  transform: translateY(-50%) translateX(14px) scale(0.98);
  transform-origin: 100% 50%;
  transition:
    opacity 240ms ease,
    transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0s linear 280ms;
}
.meetus-widget.is-open .meetus-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  transition-delay: 0s, 0s, 0s;
}
.meetus-panel:focus {
  outline: none;
}

.meetus-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.meetus-title {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--trade-ink);
}
.meetus-title em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
}

/* Shared close affordance for edge panels. */
.panel-close {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--rule-soft-cream);
  border-radius: 50%;
  background: transparent;
  color: var(--trade-sub);
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}
.panel-close:hover {
  color: var(--tangerine);
  border-color: var(--tangerine);
}

.meetus-scroll {
  overflow-x: auto;
}
.meetus-table {
  width: 100%;
  border-collapse: collapse;
}
.meetus-table th {
  text-align: left;
  padding: 0 20px 12px 0;
  border-bottom: 1px solid var(--rule-soft-cream);
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trade-sub);
  white-space: nowrap;
}
.meetus-table th:last-child,
.meetus-table td:last-child {
  padding-right: 0;
}
.meetus-table td {
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid var(--rule-soft-cream);
  font-family: var(--meta);
  font-size: 15px;
  line-height: 1.45;
  color: var(--trade-ink);
  vertical-align: top;
}
.meetus-table tbody tr:last-child td {
  border-bottom: 0;
  padding-bottom: 0;
}
.meetus-table .mu-date {
  white-space: nowrap;
  font-weight: 500;
  color: var(--tangerine);
}
.meetus-table .mu-type {
  color: var(--trade-sub);
}

@media (max-width: 720px) {
  .meetus-tab {
    padding: 16px 9px;
  }
  .meetus-tab .mt-label {
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .meetus-panel {
    inset: 0;
    top: 0;
    width: auto;
    max-height: none;
    border-radius: 0;
    padding: max(22px, env(safe-area-inset-top)) 20px calc(24px + env(safe-area-inset-bottom));
    /* inset:0 replaces the centring, so drop translateY(-50%) here. */
    transform: translateY(16px);
    transform-origin: 50% 100%;
  }
  .meetus-widget.is-open .meetus-panel {
    transform: none;
  }
  .meetus-widget.is-open .meetus-tab {
    opacity: 0;
    pointer-events: none;
  }
  .meetus-table th,
  .meetus-table td {
    padding-right: 14px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .meetus-tab,
  .meetus-panel,
  .meetus-scrim {
    transition-duration: 1ms !important;
  }
  .form-success-card {
    animation: none;
  }
}
