/* ───────────────────────────────────────────────────────────────────────────
   Ann&Palm — homepage, sections 01–03
   Type:   Cormorant Garamond (display) · Manrope (UI) · JetBrains Mono (meta)
   Color:  Navy #010B40 · Ivory #F4EFE5 · Muted gold #B89968 · Ink #0E1322
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --navy: #010B40;
  --navy-deep: #00081f;
  --ivory: #F4EFE5;
  --ivory-warm: #EFE8D8;
  --ivory-soft: #FAF6EE;
  --sand: #D9C9A8;
  --gold: #B89968;
  --gold-deep: #8C7A4F;
  --ink: #0E1322;
  --ink-soft: #2A2F40;
  --muted: rgba(14, 19, 34, 0.55);
  --hairline: rgba(14, 19, 34, 0.16);
  --hairline-ivory: rgba(244, 239, 229, 0.22);

  --display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", "Roboto Mono", ui-monospace, monospace;

  /* Unified capsule controls (nav, hero, editorial, atelier) */
  --btn-pill-py: 9px;
  --btn-pill-px: 18px;
  --btn-pill-fs: 10px;
  --btn-pill-track: 0.14em;
  --btn-pill-gap: 8px;
  --btn-pill-min-h: 40px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

/* ───────────────────────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 10px 48px 16px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}
.nav.nav-scrolled {
  background: rgba(1, 11, 64, 0.82);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border-bottom-color: rgba(244, 239, 229, 0.12);
}
.nav-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 229, 0.72);
}
.nav-topline a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.nav-topline a:hover {
  color: var(--ivory);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-mark {
  display: flex;
  align-items: center;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}
.nav-logo {
  display: block;
  height: clamp(36px, 3.6vw, 48px);
  width: auto;
  max-width: min(58vw, 320px);
}
.nav-links {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  justify-content: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.78;
  transition: opacity 0.25s;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; }
.nav-links span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* Destinations dropdown */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-caret {
  display: block;
  transition: transform 0.25s ease;
}
.nav-item-dropdown:hover .nav-caret,
.nav-item-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  padding-top: 14px; /* hover bridge between trigger and panel */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 60;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-panel {
  min-width: 200px;
  padding: 8px;
  background: rgba(1, 11, 64, 0.92);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.nav-dropdown-panel a {
  display: block;
  padding: 11px 16px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  opacity: 0.82;
  transition: background 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.nav-dropdown-panel a:hover {
  background: rgba(244, 239, 229, 0.1);
  opacity: 1;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-end;
}
.nav-menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0 -10px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ivory);
  align-items: center;
  justify-content: center;
}
.nav-menu-toggle:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}
.nav-menu-toggle-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 10px;
}
.nav-menu-toggle-bars span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.22s ease, top 0.22s ease, opacity 0.22s ease;
}
.nav-menu-toggle-bars span:first-child { top: 1px; }
.nav-menu-toggle-bars span:last-child { top: 8px; }
.nav-menu-open .nav-menu-toggle-bars span:first-child {
  top: 4.5px;
  transform: rotate(45deg);
}
.nav-menu-open .nav-menu-toggle-bars span:last-child {
  top: 4.5px;
  transform: rotate(-45deg);
}
.nav-drawer {
  position: fixed;
  top: var(--nav-height, 96px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: rgba(1, 11, 64, 0.97);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer-panel {
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px 24px 56px;
}
.nav-drawer-label {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-drawer-sub,
.nav-drawer-pages {
  display: flex;
  flex-direction: column;
}
.nav-drawer-sub {
  gap: 2px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.14);
}
.nav-drawer a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  opacity: 0.82;
}
.nav-drawer a:hover,
.nav-drawer a:focus-visible,
.nav-drawer a[aria-current="page"] {
  opacity: 1;
  color: var(--ivory);
}
.nav-drawer a[aria-current="page"] {
  color: var(--gold);
}
body.nav-locked {
  overflow: hidden;
}
@media (min-width: 901px) {
  .nav-drawer { display: none !important; }
}
.nav-navy { color: var(--ivory); }
.nav-ivory-on-dark { color: var(--ivory); }

/* ───────────────────────────────────────────────────────────────────────────
   HERO STAGE — single layered scene
   ───────────────────────────────────────────────────────────────────────── */

.hero-stage {
  position: relative;
  height: 220vh; /* scroll runway */
  background: var(--navy);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-photo-layer { position: absolute; inset: 0; z-index: 1; background: var(--navy-deep); }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
}
.hero-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 20% 10%, #2c3a55 0%, transparent 55%),
    radial-gradient(90% 70% at 85% 25%, #6b5a45 0%, transparent 50%),
    linear-gradient(180deg, #1a2540 0%, #2d3550 35%, #4a4838 70%, #1e1a14 100%);
}
.hero-photo-layer .cine-grain,
.hero-photo-layer .cine-vignette {
  z-index: 2;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: background 0.05s linear;
}
.hero-overlay-grad {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 18%, transparent 55%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  z-index: 4;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
}

.hero-splash-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  z-index: 5;
  will-change: opacity, transform;
}
.hero-splash-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.7);
}
.hero-splash-meta .dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-splash-scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(244, 239, 229, 0.65);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50%      { transform: translate(-50%, 6px); opacity: 0.9; }
}

/* Hero splash logo (vector) */
.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transform-origin: center;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}
.hero-logo {
  display: block;
  width: min(66vw, 290px);
  height: auto;
  max-height: 18vh;
  clip-path: inset(0 0 22% 0);
}
.wm-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 26px);
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(244, 239, 229, 0.9);
  padding: 16px 24px 0;
  border-top: 1px solid rgba(244, 239, 229, 0.22);
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

/* Capsule CTA — same geometry as atelier (third section) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-pill-gap);
  padding: var(--btn-pill-py) var(--btn-pill-px);
  font-family: var(--sans);
  font-size: var(--btn-pill-fs);
  font-weight: 500;
  letter-spacing: var(--btn-pill-track);
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
  color: inherit;
  box-sizing: border-box;
  line-height: 1.2;
  min-height: var(--btn-pill-min-h);
}
button.btn-pill {
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.btn-pill:hover { transform: translateY(-1px); }
.btn-pill svg {
  flex-shrink: 0;
  width: 11px;
  height: auto;
  display: block;
}

/* HERO COPY */
.hero-copy {
  position: absolute;
  bottom: 110px;
  left: 64px;
  right: 64px;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 5;
  will-change: opacity, transform;
}
.hero-copy-panel {
  padding: clamp(1.25rem, 2.8vw, 1.85rem) clamp(1.5rem, 3.2vw, 2.35rem);
  max-width: 44rem;
  background: rgba(1, 11, 64, 0.58);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-radius: 22px;
  border: 1px solid rgba(244, 239, 229, 0.14);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-copy-panel .hero-eyebrow {
  margin: 0;
}
.hero-copy-panel .hero-cta-row {
  margin-top: 4px;
  display: flex;
  width: 100%;
  max-width: 36rem;
  align-items: stretch;
  gap: 10px;
  flex-wrap: nowrap;
}
.hero-copy-panel .hero-cta-row > .btn-pill {
  flex: 0 0 auto;
  min-width: 0;
  justify-content: center;
  text-align: center;
}
@media (max-width: 520px) {
  .hero-copy-panel .hero-cta-row {
    flex-direction: column;
    max-width: none;
  }
  .hero-copy-panel .hero-cta-row > .btn-pill {
    flex: 0 0 auto;
    width: 100%;
  }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.82);
}
.hero-eyebrow-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
  color: var(--ivory);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.hero-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(244, 239, 229, 0.92);
  margin: 0;
  max-width: 38ch;
}
.hero-cta-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-footer {
  position: absolute;
  bottom: 28px;
  left: 64px;
  right: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.6);
  z-index: 5;
}
.hero-footer-left { display: flex; align-items: center; gap: 14px; }
.hero-footer-rule { width: 32px; height: 1px; background: rgba(244, 239, 229, 0.4); }

/* ───────────────────────────────────────────────────────────────────────────
   CINEMATIC PLACEHOLDER (treated)
   ───────────────────────────────────────────────────────────────────────── */

.cine {
  position: absolute; inset: 0;
  overflow: hidden;
}
.cine-bg {
  position: absolute; inset: 0;
}
.cine-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  will-change: transform;
}
.cine-photo-kb {
  animation: kenburns 22s ease-in-out infinite alternate;
  transform-origin: center 40%;
}
@keyframes kenburns {
  0%   { transform: scale(1.00) translate(0, 0); }
  100% { transform: scale(1.14) translate(-1%, -1%); }
}
.cine-shapes {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.cine-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.14 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.55;
  pointer-events: none;
}
.cine-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 50%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.cine-grad-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 11, 64, 0.0) 0%, rgba(1, 11, 64, 0.05) 40%, rgba(0, 4, 24, 0.7) 100%);
  pointer-events: none;
}
.cine-duotone {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(1, 11, 64, 0.35) 0%, rgba(184, 153, 104, 0.18) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.cine-caption {
  position: absolute;
  top: 28px; right: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.6);
  z-index: 2;
}
.cine-caption-dot {
  width: 6px; height: 6px;
  border: 1px solid rgba(244, 239, 229, 0.55);
  border-radius: 50%;
}

/* ───────────────────────────────────────────────────────────────────────────
   EDITORIAL POSITIONING SECTION
   ───────────────────────────────────────────────────────────────────────── */

.editorial {
  background: var(--ivory);
  padding: 100px 64px 88px;
  position: relative;
}
.editorial::before {
  content: "";
  position: absolute;
  top: 0; left: 64px; right: 64px;
  height: 1px;
  background: var(--hairline);
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 2.1fr 1.2fr;
  gap: 80px;
  max-width: 1480px;
  margin: 0 auto;
}
.editorial-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.editorial-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  position: sticky;
  top: 64px;
}
.editorial-eyebrow .rule {
  width: 36px; height: 1px;
  background: var(--gold);
}
.editorial-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  color: var(--ink);
  text-wrap: balance;
  max-width: 22ch;
}
.editorial-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.editorial-body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 54ch;
  text-wrap: pretty;
}
.editorial-body-secondary {
  font-size: 16px;
  line-height: 1.7;
}
.editorial-destinations {
  width: 100%;
  margin-top: 32px;
}
.editorial-destinations-label {
  display: block;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.editorial-destination-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(14, 19, 34, 0.2);
}
.editorial-destination-link {
  position: relative;
  min-width: 0;
  min-height: 78px;
  padding: 27px 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border-right: 1px solid rgba(14, 19, 34, 0.1);
  transition: color 0.25s ease, background 0.25s ease;
}
.editorial-destination-link:first-child {
  border-left: 1px solid rgba(14, 19, 34, 0.1);
}
.editorial-destination-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.editorial-destination-marker {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(14, 19, 34, 0.12);
  transform: translateX(-50%);
  transition: transform 0.25s ease, background 0.25s ease;
}
.editorial-destination-link:hover,
.editorial-destination-link:focus-visible {
  color: var(--navy);
  background: rgba(184, 153, 104, 0.08);
  outline: none;
}
.editorial-destination-link:hover::after,
.editorial-destination-link:focus-visible::after {
  transform: scaleX(1);
}
.editorial-destination-link:hover .editorial-destination-marker,
.editorial-destination-link:focus-visible .editorial-destination-marker {
  background: var(--navy);
  transform: translateX(-50%) scale(1.12);
}
.editorial-right {
  display: flex;
  flex-direction: column;
}
.editorial-photo {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink-soft);
  box-shadow: 0 20px 50px rgba(14, 19, 34, 0.12);
}
.editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.editorial-photo--buenos-aires img {
  object-position: center 38%;
}

/* ───────────────────────────────────────────────────────────────────────────
   SECTION 3 — ATELIER (dark grid — aligned rhythm with sections 01–02)
   ───────────────────────────────────────────────────────────────────────── */

.atelier {
  --atl-pad-x: 64px;
  background: #060a26;
  color: var(--ivory);
  padding: 72px var(--atl-pad-x) 96px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.atelier-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.55);
  width: 100%;
  padding: 0;
  margin: 0;
}
.atelier-eyebrow-num { color: rgba(244, 239, 229, 0.72); }
.atelier-eyebrow-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
}
.atelier-eyebrow-lbl { letter-spacing: 0.22em; }
.atelier::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(50, 60, 110, 0.35) 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(184, 153, 104, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.atelier::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--atl-pad-x);
  right: var(--atl-pad-x);
  height: 1px;
  background: rgba(244, 239, 229, 0.14);
  pointer-events: none;
  z-index: 2;
}
.atelier > * { position: relative; z-index: 1; }

.atl-eyebrow {
  position: static;
  color: rgba(244, 239, 229, 0.55);
  margin-bottom: 20px;
}
.atl-eyebrow .rule {
  background: var(--gold);
  opacity: 0.85;
}

.atl-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  gap: 48px;
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 0 0 48px;
}
.atl-header-text {
  flex: 0 1 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.atl-cta-wrap {
  flex: 0 0 20%;
  display: flex;
  justify-content: flex-end;
}
.atl-heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ivory);
  text-wrap: balance;
}
.atl-heading em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.atl-heading-brand-amp {
  padding: 0 0.06em;
}
.atl-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.78;
  color: rgba(244, 239, 229, 0.7);
  margin: 0;
  max-width: 62ch;
  text-wrap: pretty;
}
.atl-cta {
  flex-shrink: 0;
  white-space: nowrap;
}
.atl-cta:not(.liquid-glass--ivory-solid) {
  color: var(--ivory);
}

.atl-grid {
  display: grid;
  grid-template-columns: 1.485fr 2.515fr;
  grid-template-rows: minmax(240px, auto) auto;
  gap: 28px;
  flex: 1;
  min-height: 0;
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  align-items: stretch;
}
.atl-voice { order: 1; }
.atl-members,
.atl-landscape-card { order: 2; }
.journal-grid-header { order: 3; }
.journal-card-grid { order: 4; }
.atl-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
  min-height: 0;
}

.atl-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #08102e;
  border: 1px solid rgba(244, 239, 229, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}
.atl-card-bg { position: absolute; inset: 0; z-index: 0; }
.atl-card-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1, 11, 64, 0.45) 0%, rgba(1, 11, 64, 0.78) 70%, rgba(0, 4, 18, 0.92) 100%);
}
.atl-card-tint-deep {
  background: linear-gradient(180deg, rgba(1, 11, 64, 0.55) 0%, rgba(0, 4, 18, 0.85) 100%);
}
.atl-card-inner {
  position: relative;
  z-index: 1;
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.atl-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.72);
}
.atl-section-label svg { color: var(--gold); }
.atl-align-center { justify-content: center; }
.atl-align-left { justify-content: flex-start; }

/* Argentina feature column (replaces timeline / The Studio) */
.atl-argentina {
  grid-row: 1 / 3;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
}
.atl-argentina-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
.atl-argentina-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.atl-argentina-caption {
  position: absolute;
  bottom: 1.35rem;
  left: 1.35rem;
  right: 1.35rem;
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.95);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.35);
}

.atl-voice {
  background: rgba(16, 32, 67, 0.92);
  padding: 22px 26px;
  min-height: 0;
  /* Stretch to the same height as the landscape card in the same grid row. */
  align-self: stretch;
}
.review-carousel {
  margin-top: 16px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
}
.review-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: review-slide 60s linear infinite;
}
.review-carousel:hover .review-track {
  animation-play-state: paused;
}
@keyframes review-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 min(78vw, 300px);
  width: min(78vw, 300px);
  min-height: 0;
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(244, 239, 229, 0.06);
  border: 1px solid rgba(244, 239, 229, 0.12);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.review-stars {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--gold);
}
.review-card blockquote {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  color: rgba(244, 239, 229, 0.72);
  flex: 1;
  /* Keep the carousel compact: long reviews are trimmed with an ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-author {
  display: block;
  margin-top: auto;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 229, 0.55);
}
.atl-quote {
  margin: 22px 0 22px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: rgba(244, 239, 229, 0.93);
  text-wrap: pretty;
  font-weight: 400;
}
.atl-attrib {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(244, 239, 229, 0.55);
  letter-spacing: 0.04em;
}
.atl-attrib strong {
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.atl-stat-inner {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
}
.atl-stat-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  color: var(--ivory);
  letter-spacing: -0.02em;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
  display: inline-flex;
  align-items: baseline;
}
.atl-stat-num span {
  color: var(--gold);
  font-size: 0.55em;
  font-style: italic;
}
.atl-stat-lbl {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 229, 0.78);
  max-width: 22ch;
}

.atl-partners-inner { gap: 26px; }
.atl-members {
  min-height: 320px;
  background: rgba(16, 32, 67, 0.92);
}
.atl-members .cine-grain {
  display: none;
}
.atl-members .cine-bg {
  background: none !important;
}
.atl-members .cine-grad-overlay {
  display: none;
}
.atl-members .atl-card-tint {
  display: none;
}
.atl-landscape-card {
  order: 2;
  min-height: 240px;
  max-height: 360px;
  margin: 0;
  padding: 0;
  background: #08102e;
}
.atl-landscape-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center 56%;
}
.member-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: auto 0;
}
.member-logo {
  min-height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(244, 239, 229, 0.06);
  border: 1px solid rgba(244, 239, 229, 0.12);
  text-align: center;
}
.member-logo img {
  width: 100%;
  max-width: 168px;
  max-height: 68px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}
.atl-marquees {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  flex: 1;
  justify-content: center;
  min-height: 120px;
}
.atl-marquee-mask {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  overflow: hidden;
}
.atl-marquee {
  display: flex;
  gap: 8px;
  width: max-content;
}
.atl-marquee-left { animation: marquee-left 38s linear infinite; }
.atl-marquee-right { animation: marquee-right 42s linear infinite; }
@keyframes marquee-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.atl-marquee-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-pill-min-h);
  padding: var(--btn-pill-py) calc(var(--btn-pill-px) + 2px);
  box-sizing: border-box;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: var(--btn-pill-fs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(244, 239, 229, 0.88);
  white-space: nowrap;
  line-height: 1.2;
}
.atl-partners-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.5);
  text-align: center;
}

/* Travel Journal section header */
.journal-grid-header {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.1);
  align-self: end;
}
.journal-grid-all {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244, 239, 229, 0.6);
  transition: color 0.2s ease;
}
.journal-grid-all:hover {
  color: var(--gold);
}
.journal-grid-title {
  margin: 0;
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ivory);
  line-height: 1.05;
  text-transform: none;
}

.journal-card-grid {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 28px;
  align-items: stretch;
}
.atl-journal {
  height: 100%;
  text-decoration: none;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
}
.journal-media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.journal-media::after {
  display: none;
}
.journal-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 55%;
}
.journal-copy {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 32px;
}
.journal-text {
  display: flex;
  flex-direction: column;
}
.journal-copy h3 {
  margin: 20px 0 14px;
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.journal-copy p {
  margin: 0;
  max-width: 42ch;
  color: rgba(244, 239, 229, 0.68);
  font-size: 15px;
  line-height: 1.65;
}
.journal-copy .journal-contributor {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.journal-more {
  align-self: flex-start;
  flex-shrink: 0;
}
.journal-placeholder {
  background:
    radial-gradient(100% 75% at 100% 0%, rgba(184, 153, 104, 0.12) 0%, transparent 64%),
    #08102e;
}
.journal-placeholder-media {
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    linear-gradient(rgba(244, 239, 229, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 229, 0.055) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(184, 153, 104, 0.16), rgba(1, 11, 64, 0.1) 58%, rgba(1, 11, 64, 0.42));
  background-size: 42px 42px, 42px 42px, auto;
  border-bottom: 1px solid rgba(244, 239, 229, 0.08);
}
.journal-placeholder-media::before,
.journal-placeholder-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 153, 104, 0.38);
  border-radius: 50%;
}
.journal-placeholder-media::after {
  width: 26%;
  border-color: rgba(244, 239, 229, 0.14);
}
.journal-placeholder-number {
  font-family: var(--display);
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(244, 239, 229, 0.9);
}
.journal-placeholder-compass {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #08102e;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(244, 239, 229, 0.42);
  transform: translate(38px, -34px);
}
.journal-coming-soon {
  display: inline-flex;
  min-height: var(--btn-pill-min-h);
  padding: var(--btn-pill-py) var(--btn-pill-px);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 229, 0.2);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: var(--btn-pill-fs);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: var(--btn-pill-track);
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.62);
}
.atl-journal.noise-overlay::after {
  display: none;
}

.atl-reach {
  background: rgba(16, 32, 67, 0.92);
  padding: 28px 30px;
}
.atl-reach-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.atl-reach-arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  text-decoration: none;
  transition: transform 0.3s;
}
.atl-reach-arrow:hover { transform: translate(2px, -2px); }
.atl-reach-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}
.atl-reach-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 239, 229, 0.08);
  gap: 14px;
}
.atl-reach-row:last-child { border-bottom: 0; }
.atl-reach-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.5);
}
.atl-reach-val {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory);
}

.liquid-glass {
  background: rgba(255, 255, 255, 0.02);
  background-blend-mode: luminosity;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass--hero {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
}
.liquid-glass--quiet {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 239, 229, 0.88);
}
.liquid-glass--quiet:hover {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
}
/* Nav + hero panel CTAs: solid light surface, navy type (readable on video) */
.liquid-glass--ivory-solid {
  color: var(--navy);
  background: #fff;
  background-blend-mode: normal;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    inset 0 0 0 1px rgba(1, 11, 64, 0.14),
    0 1px 2px rgba(0, 0, 0, 0.06);
}
.liquid-glass--ivory-solid::before {
  opacity: 0;
}
.liquid-glass--ivory-solid:hover {
  background: var(--ivory-soft);
  color: var(--navy);
  box-shadow:
    inset 0 0 0 1px rgba(1, 11, 64, 0.2),
    0 4px 14px rgba(0, 0, 0, 0.12);
}
/* `button.btn-pill { color: inherit }` beats `.liquid-glass--ivory-solid` alone — force navy on label + icons */
.btn-pill.liquid-glass--ivory-solid,
.btn-pill.liquid-glass--ivory-solid:visited {
  color: var(--navy);
}
.btn-pill.liquid-glass--ivory-solid:hover {
  color: var(--navy);
}
/* Primary action on light backgrounds: navy pill, ivory type */
.liquid-glass--navy-solid {
  color: var(--ivory);
  background: var(--navy);
  background-blend-mode: normal;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    inset 0 0 0 1px rgba(244, 239, 229, 0.08),
    0 1px 2px rgba(1, 11, 64, 0.18);
}
.liquid-glass--navy-solid::before {
  opacity: 0;
}
.liquid-glass--navy-solid:hover {
  background: #0a1440;
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(244, 239, 229, 0.14),
    0 4px 14px rgba(1, 11, 64, 0.28);
}
.btn-pill.liquid-glass--navy-solid,
.btn-pill.liquid-glass--navy-solid:visited,
.btn-pill.liquid-glass--navy-solid:hover {
  color: var(--ivory);
}
.liquid-glass--light {
  color: var(--ink);
  background: rgba(14, 19, 34, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.65);
}
.liquid-glass--light::before {
  background: linear-gradient(180deg, rgba(14,19,34,0.12) 0%, rgba(14,19,34,0.06) 35%, transparent 50%, transparent 60%, rgba(14,19,34,0.06) 80%, rgba(14,19,34,0.14) 100%);
}

.noise-overlay { position: relative; }
.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  border-radius: inherit;
}

@media (max-width: 1024px) and (min-width: 601px) {
  .care-section {
    padding: 56px 40px 64px;
  }
  .atl-header {
    flex-direction: column;
    text-align: left;
    gap: 28px;
  }
}
@media (max-width: 700px) {
  .atelier {
    --atl-pad-x: 20px;
    padding: 56px var(--atl-pad-x) 72px;
    gap: 28px;
    min-height: 0;
  }
  .atl-header {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }
  .atl-cta { align-self: flex-start; }
  .atl-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    grid-auto-flow: row;
  }
  .atl-grid > * {
    grid-row: auto;
    grid-column: 1 / -1;
    min-width: 0;
  }
  .atl-voice {
    padding: 24px 20px;
  }
  .review-carousel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .review-track {
    width: 100%;
    gap: 12px;
    animation: none;
  }
  .review-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: 0;
    scroll-snap-align: start;
  }
  .review-card[aria-hidden="true"] {
    display: none;
  }
  .journal-card-grid,
  .atl-journal {
    grid-template-columns: 1fr;
  }
  .journal-card-grid {
    gap: 18px;
  }
  .journal-media img {
    min-height: 0;
  }
  .member-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .member-logo {
    min-height: 76px;
    padding: 12px;
  }
  .member-logo img {
    max-width: 132px;
    max-height: 56px;
  }
  .atl-stat-num { font-size: 72px; }
  .atl-reach-val { font-size: 16px; }
}

/* ───────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────── */

.trusted-partners-section {
  background: var(--ivory);
  color: var(--ink);
  padding: 52px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.trusted-partners-copy {
  max-width: 1480px;
  margin: 0 auto 32px;
  padding: 0 64px;
  text-align: center;
}
.trusted-partners-copy span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(14, 19, 34, 0.58);
}
.trusted-partners-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: none;
}
.trusted-partners-copy p {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.trusted-logo-band {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.trusted-logo-track {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 8px 14px;
  animation: trusted-slide 50s linear infinite;
}
.trusted-logo-band:hover .trusted-logo-track {
  animation-play-state: paused;
}
@keyframes trusted-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-logo,
.partner-logo-placeholder {
  flex: 0 0 auto;
  width: clamp(140px, 14vw, 190px);
  min-height: 64px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: rgba(14, 19, 34, 0.62);
  text-align: center;
}
.partner-logo::after {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14, 19, 34, 0.38);
}
.partner-logo[data-label="VIK Retreats"]::after {
  transform: translateY(4px);
}
.partner-logo img {
  width: 100%;
  max-width: 240px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}
.partner-logo-placeholder small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184, 153, 104, 0.74);
}
.partner-logo-placeholder strong {
  font-family: var(--display);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 0.98;
  color: rgba(14, 19, 34, 0.54);
}

.instagram-section {
  background: var(--ivory-soft);
  color: var(--ink);
  padding: 44px 64px 88px;
}
.instagram-head {
  max-width: 1480px;
  margin: 0 auto 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 20px;
}
.instagram-head h2 {
  margin: 0;
  flex: 1;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
}
.instagram-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.instagram-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  background: var(--ink-soft);
  border-radius: 2px;
}
.instagram-tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.instagram-tile:hover img {
  transform: scale(1.04);
}

.members-strip-section {
  background: var(--ivory-soft);
  color: var(--ink);
  padding: 40px 64px 34px;
  border-top: 1px solid rgba(14, 19, 34, 0.08);
}
.members-strip-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.members-strip-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}
.members-strip-logos {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: clamp(22px, 5vw, 68px);
}
.members-strip-logo {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.members-strip-logo img {
  width: 100%;
  max-width: 160px;
  max-height: 52px;
  object-fit: contain;
  opacity: 0.95;
  filter: grayscale(1) contrast(1.18);
}
.members-strip-logo:nth-child(2) img {
  max-width: 134px;
}
.members-strip-logo:nth-child(3) img {
  max-width: 178px;
}

.care-section {
  width: 100%;
  background: #060a26;
  color: var(--ivory);
  padding: 80px 64px;
}
.care-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
}
.care-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.care-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: none;
  text-wrap: balance;
  color: var(--ivory);
}
.care-tagline {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.5);
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}
.care-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 32px;
  text-align: left;
  background: rgba(244, 239, 229, 0.04);
  border: 1px solid rgba(244, 239, 229, 0.1);
  border-radius: 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.care-grid article:hover {
  background: rgba(244, 239, 229, 0.07);
  border-color: rgba(184, 153, 104, 0.35);
}
.care-grid h3 {
  margin: 20px 0 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
}
.care-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(244, 239, 229, 0.6);
}
.care-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 153, 104, 0.5);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(184, 153, 104, 0.1);
  flex-shrink: 0;
}
.care-icon i,
.care-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.footer {
  background: #01072a;
  color: var(--ivory);
  padding: 0;
}
.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 48px 64px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1.2fr;
  align-items: start;
  gap: 40px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  display: block;
  height: 44px;
  width: auto;
}
.footer-brand p {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: rgba(244, 239, 229, 0.85);
}
.footer-contact,
.footer-social,
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer h3 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
}
.footer-contact p {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(244, 239, 229, 0.55);
}
.footer a {
  color: rgba(244, 239, 229, 0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer a:hover {
  color: var(--ivory);
}
.footer-contact a {
  margin-top: 4px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 239, 229, 0.3);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-size: 13px;
  transition: border-color 0.2s ease;
}
.social-links a:hover {
  border-color: rgba(244, 239, 229, 0.6);
}
.footer-newsletter label {
  width: 100%;
  display: block;
  margin-top: 8px;
}
.footer-newsletter label span {
  display: block;
  font-size: 11px;
  color: rgba(244, 239, 229, 0.5);
  margin-bottom: 2px;
}
.footer-newsletter input {
  width: 100%;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 229, 0.25);
  background: transparent;
  color: var(--ivory);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}
.footer-newsletter input:focus {
  border-bottom-color: var(--gold);
}
.footer-newsletter button {
  margin-top: 14px;
  border: 1px solid rgba(244, 239, 229, 0.5);
  background: transparent;
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 600;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-newsletter button:hover {
  background: var(--ivory);
  color: var(--navy);
}
.footer-bottom {
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 64px 22px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-legal {
  display: flex;
  gap: 20px;
  font-size: 11px;
}
.footer-legal a {
  font-size: 11px;
  color: rgba(244, 239, 229, 0.4);
}
.footer-fine {
  font-size: 11px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.42);
}

/* ───────────────────────────────────────────────────────────────────────────
   NOTES OVERLAY
   ───────────────────────────────────────────────────────────────────────── */

.notes-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 100;
}
.note-pin {
  position: absolute;
  width: 320px;
  background: rgba(255, 251, 240, 0.96);
  border: 1px solid rgba(184, 153, 104, 0.6);
  border-left: 3px solid var(--gold);
  padding: 14px 16px 16px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(1, 11, 64, 0.25);
  pointer-events: auto;
}
.note-pin-num {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.note-pin-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.note-pin-body {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ───────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile
   ───────────────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  :root {
    --btn-pill-py: 8px;
    --btn-pill-px: 15px;
    --btn-pill-fs: 9px;
    --btn-pill-track: 0.12em;
    --btn-pill-gap: 6px;
  }

  .nav { padding: 12px 22px 18px; }
  .nav-topline {
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
    font-size: 8px;
    line-height: 1.25;
  }
  .nav-links { display: none; }
  .nav-menu-toggle { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-cta { gap: 8px; }

  .hero-stage { height: 180vh; }
  .hero-logo {
    width: min(80vw, 280px);
    max-height: 16vh;
  }
  .wm-tag { font-size: clamp(20px, 6vw, 28px); }
  .hero-splash-center { gap: 36px; }
  .hero-splash-meta { font-size: 9px; letter-spacing: 0.2em; }

  .hero-copy { left: 24px; right: 24px; bottom: 80px; }
  .hero-copy-panel { padding: 1.15rem 1.25rem; border-radius: 18px; gap: 18px; }
  .hero-headline { font-size: clamp(28px, 8vw, 42px); }
  .hero-sub { font-size: 16px; }
  .hero-cta-row { gap: 10px; }
  .btn-pill svg { width: 10px; }
  .hero-footer { left: 24px; right: 24px; bottom: 18px; font-size: 9px; gap: 14px; flex-wrap: wrap; }
  .hero-footer-right { display: none; }
  .cine-caption { right: 24px; top: 18px; font-size: 9px; }

  .editorial { padding: 56px 24px 56px; }
  .editorial::before { left: 24px; right: 24px; }
  .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial-eyebrow { position: static; }
  .editorial-title { font-size: clamp(22px, 6vw, 32px); margin-bottom: 32px; }
  .editorial-body { font-size: 15px; }
  .editorial-destinations { margin-top: 26px; }
  .editorial-destination-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .editorial-destination-link {
    min-height: 70px;
    padding: 25px 10px 12px;
    border-bottom: 1px solid rgba(14, 19, 34, 0.1);
  }
  .editorial-photo { border-radius: 10px; aspect-ratio: 4 / 5; }

  .atelier {
    --atl-pad-x: 24px;
    padding: 72px 24px 88px;
    gap: 32px;
  }
  .atl-header {
    flex-direction: column;
    text-align: left;
    gap: 24px;
  }
  .atl-heading {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 16px;
  }
  .atl-sub {
    font-size: 15px;
  }

  .trusted-partners-section {
    padding: 44px 0 50px;
  }
  .trusted-partners-copy {
    padding: 0 24px;
    margin-bottom: 24px;
  }
  .trusted-partners-copy h2 {
    font-size: clamp(20px, 7vw, 32px);
  }
  .trusted-logo-band {
    padding: 0;
  }
  .trusted-logo-track {
    gap: 18px;
    padding: 6px 10px;
    animation-duration: 38s;
  }
  .partner-logo,
  .partner-logo-placeholder {
    width: clamp(120px, 42vw, 170px);
    min-height: 56px;
    padding: 10px 12px;
  }
  .partner-logo-placeholder strong {
    font-size: 18px;
  }
  .partner-logo img {
    max-width: 180px;
    max-height: 54px;
  }

  .instagram-section {
    padding: 48px 24px 56px;
  }
  .members-strip-section {
    padding: 24px 24px 22px;
  }
  .members-strip-inner {
    gap: 12px;
  }
  .members-strip-logos {
    gap: 18px;
  }
  .members-strip-logo {
    min-height: 42px;
  }
  .members-strip-logo img {
    max-width: 96px;
    max-height: 34px;
  }
  .members-strip-logo:nth-child(2) img {
    max-width: 82px;
  }
  .members-strip-logo:nth-child(3) img {
    max-width: 112px;
  }
  .care-section {
    padding: 56px 24px 64px;
  }
  .instagram-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .instagram-tile {
    flex-basis: auto;
  }
  .care-inner {
    gap: 32px;
  }
  .care-heading h2 {
    font-size: 32px;
    line-height: 1.1;
  }
  .care-grid {
    gap: 12px;
  }
  .care-grid article {
    padding: 22px 22px 24px;
  }
  .atl-landscape-card,
  .atl-landscape-card img {
    min-height: 220px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px 32px;
  }
  .footer-brand {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(244, 239, 229, 0.1);
  }
  .footer-bottom {
    padding: 16px 24px 20px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .care-grid {
    grid-template-columns: 1fr;
  }
}
