/* ==========================================================================
   LHX — Shared stylesheet
   All design tokens + component primitives + page-specific patterns.
   Visual reference: /_reference/lhx-wellness-preview.html (Appendix B in plan)
   ========================================================================== */

/* ---------- Reset ---------- */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

button { font: inherit; cursor: pointer; }

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

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --color-bg:           #f9f9fd;
  --color-bg-gray:      #f3f3f7;
  --color-ink:          #1a1c1f;
  --color-ink-muted:    #46464c;
  --color-ink-soft:     #5c5d6f;
  --color-accent:       #9063CD;            /* Pantone 2665 C */
  --color-accent-dark:  #7a55b0;            /* Hover state */
  --color-accent-soft:  rgba(144, 99, 205, 0.3);
  --color-lavender:     #d6d6eb;
  --color-purple:       #c89dfe;
  --color-purple-soft:  rgba(217, 185, 255, 0.3);
  --color-purple-tint:  rgba(217, 185, 255, 0.25);
  --color-peach:        #ffccc4;
  --color-peach-soft:   rgba(255, 204, 196, 0.2);
  --color-cream:        #f3e9df;
  --color-divider:      #c7c5cc;
  --color-glass:        rgba(249, 249, 253, 0.6);
  --color-glass-light:  rgba(255, 255, 255, 0.4);
  --color-glass-border: rgba(255, 255, 255, 0.5);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Effects */
  --shadow-card:  0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-glass: 0 20px 40px 0 rgba(92, 93, 111, 0.1);
  --shadow-cta:   0 0 10px rgba(144, 99, 205, 0.35);

  /* Layout */
  --container-max: 1440px;
  --header-h:      74.59px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--color-bg);
  color: var(--color-ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-ink);
  color: white;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   HEADER + NAVIGATION
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(249, 249, 253, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.header-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--color-ink);
  letter-spacing: 3.2px;
  display: inline-flex;
  align-items: center;
}

.header-logo-img {
  display: block;
  height: 56px;
  width: auto;
  -webkit-user-select: none;
  user-select: none;
}

.header-nav {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-ink-muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover { color: var(--color-ink); }
.nav-link.active { color: var(--color-accent); border-bottom-color: var(--color-accent); }

.header-button .button { transform: scale(1.05); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, top 0.25s;
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 23px; }
.nav-toggle.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.button {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 7.5px 24px;
  border-radius: 9999px;
  border: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.button:hover { background: var(--color-accent-dark); transform: translateY(-1px); }

.button-large {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 15.5px 32px;
  border-radius: 9999px;
  border: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  filter: drop-shadow(var(--shadow-cta));
  transition: background 0.2s, transform 0.2s;
}
.button-large:hover { background: var(--color-accent-dark); transform: translateY(-2px); }

.button-ghost {
  display: inline-block;
  background: transparent;
  color: var(--color-ink);
  padding: 7.5px 24px;
  border-radius: 9999px;
  border: 1px solid var(--color-ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.button-ghost:hover { background: var(--color-ink); color: white; }

/* ==========================================================================
   HERO — video variant
   ========================================================================== */

.hero-top {
  position: relative;
  height: 917px;
  background: var(--color-lavender);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(249, 249, 253, 0), rgba(249, 249, 253, 0.9));
}

.video-controls {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.video-control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}
.video-control:hover { background: rgba(0, 0, 0, 0.65); }
.video-control svg { width: 18px; height: 18px; }

.hero-main {
  position: relative;
  min-height: 716px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 16px;
}

/* Home-page hero — video as background, title/subline/CTA overlaid on top.
   Fills the viewport so it's the entire "first page view". */
.hero-video-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-lavender);  /* color while video loads */
  padding: calc(var(--header-h) + 32px) 16px 96px;
}

.hero-video-bg .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Soft cream wash so dark text stays readable over any video,
   plus subtle vignette and a stronger fade at the bottom edge
   to blend into the next section. */
.hero-video-bg .hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at center,
      rgba(249, 249, 253, 0.55) 0%,
      rgba(249, 249, 253, 0.30) 55%,
      rgba(249, 249, 253, 0.55) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(249, 249, 253, 0.4) 0%,
      rgba(249, 249, 253, 0)   30%,
      rgba(249, 249, 253, 0)   70%,
      rgba(249, 249, 253, 0.9) 100%
    );
}

.hero-video-bg .hero-content {
  position: relative;
  z-index: 2;
}

.hero-video-bg .video-controls {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-decorative-1 {
  position: absolute;
  left: 17%;
  top: 60%;
  width: 271px;
  height: 271px;
  transform: rotate(-42deg) skewX(6deg);
  background: rgba(114, 74, 164, 0.1);
  filter: blur(20px);
  border-radius: 9999px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-decorative-2 {
  position: absolute;
  right: 30%;
  top: 30%;
  width: 200px;
  height: 200px;
  background: var(--color-peach-soft);
  filter: blur(20px);
  border-radius: 9999px;
  pointer-events: none;
}

.hero-decorative-3 {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 180px;
  height: 180px;
  background: rgba(214, 214, 235, 0.45);
  filter: blur(24px);
  border-radius: 9999px;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 896px;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 84px;
  line-height: 1.1;
  color: var(--color-ink);
  letter-spacing: -1.68px;
}

.hero-title-italic {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  color: var(--color-ink-soft);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-ink);
  margin: 24px 0;
}

.hero-cta-row { margin-top: 16px; }

/* ---------- Hero text-only variant (Explorer, Masters, Experiences) ---------- */

.hero-text-only {
  position: relative;
  padding: calc(var(--header-h) + 96px) 32px 96px;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text-only .hero-title { font-size: 96px; }
.hero-text-only .hero-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: 120px 32px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-gray  { background: var(--color-bg-gray); }
.section-white { background: var(--color-bg); }

/* Sections that paint full-bleed bg need a wrapper trick */
.section-bg-gray  { background: var(--color-bg-gray); }
.section-bg-white { background: var(--color-bg); }
.section-bg-gray .section,
.section-bg-white .section { background: transparent; }

.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: var(--color-ink);
  text-align: center;
  margin-bottom: 16px;
}

.section-heading-italic {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  color: var(--color-ink-soft);
}

.section-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  text-align: center;
  letter-spacing: 0.18px;
  max-width: 672px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

/* ==========================================================================
   PROBLEM GRID (signature pattern)
   ========================================================================== */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  align-items: center;
  position: relative;
}

.problem-decorative {
  position: absolute;
  left: -116px;
  top: 44px;
  width: 384px;
  height: 384px;
  background: rgba(214, 214, 235, 0.4);
  filter: blur(32px);
  border-radius: 100px;
  transform: rotate(12deg);
  pointer-events: none;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: var(--color-ink);
  margin-bottom: 24px;
}

.problem-text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  letter-spacing: 0.18px;
  margin-bottom: 16px;
}

.problem-text p.small {
  font-weight: 400;
  font-size: 16px;
}

.divider {
  background: var(--color-divider);
  height: 1px;
  width: 96px;
  margin: 24px 0;
  border: 0;
}

.problem-card {
  position: relative;
  height: 600px;
}

.problem-grid.reversed { direction: rtl; }
.problem-grid.reversed > * { direction: ltr; }

.card-background {
  position: absolute;
  background: var(--color-purple);
  bottom: 16.67%;
  left: 25%;
  right: 0;
  top: 0;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  overflow: hidden;
}

.card-background.cream  { background: var(--color-cream); }
.card-background.peach  { background: var(--color-peach); }

/* Image placeholder inside the dome — fills the rounded-top shape,
   with a subtle tint overlay so the glassmorphic card on top still pops. */
.arc-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.card-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(144, 99, 205, 0.2), rgba(144, 99, 205, 0.05));
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  pointer-events: none;
}
.card-background.cream::after {
  background: linear-gradient(to bottom, rgba(243, 233, 223, 0.35), rgba(243, 233, 223, 0.1));
}
.card-background.peach::after {
  background: linear-gradient(to bottom, rgba(255, 204, 196, 0.35), rgba(255, 204, 196, 0.1));
}

.glassmorphic-overlay {
  position: absolute;
  top: 55.5%;
  right: 26.52%;
  bottom: 6.67%;
  left: 6.76%;
  padding: 33px;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
}

.card-icon {
  width: 100%;
  height: 30px;
  margin-bottom: 16px;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink-muted);
}

/* ==========================================================================
   FEATURES GRID (signature pattern — 3 glassmorphic cards)
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 33px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--color-glass-light);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.4s, box-shadow 0.4s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass);
}

.feature-icon {
  width: 25px;
  height: 25px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.feature-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink-muted);
  position: relative;
  z-index: 2;
}

.card-blur-purple {
  position: absolute;
  background: var(--color-purple-soft);
  filter: blur(20px);
  right: -39px; top: -39px;
  width: 128px; height: 128px;
  border-radius: 9999px;
}

.card-blur-gray {
  position: absolute;
  background: rgba(214, 214, 235, 0.3);
  filter: blur(20px);
  bottom: -39px; left: -39px;
  width: 128px; height: 128px;
  border-radius: 9999px;
}

.card-blur-peach {
  position: absolute;
  background: var(--color-peach-soft);
  filter: blur(20px);
  bottom: 0; right: 0;
  width: 160px; height: 160px;
  border-radius: 9999px;
}

.card-blur-cream {
  position: absolute;
  background: rgba(243, 233, 223, 0.5);
  filter: blur(20px);
  top: -30px; left: -30px;
  width: 140px; height: 140px;
  border-radius: 9999px;
}

.card-blur-lavender {
  position: absolute;
  background: rgba(214, 214, 235, 0.5);
  filter: blur(20px);
  bottom: -20px; right: -20px;
  width: 150px; height: 150px;
  border-radius: 9999px;
}

/* ==========================================================================
   DESTINATION (signature pattern — small + big images + glass pill + text)
   ========================================================================== */

.destination-with-images {
  position: relative;
  padding: 80px 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: visible;
  /* Flexbox: image and text are flex children, align-items:center vertically
     centers them relative to each other. Image on right, text on left. */
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 64px;
}

.dest-img-small {
  position: absolute;
  top: 100px;
  left: 80px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  background: var(--color-lavender);
  z-index: 3;
  box-shadow: var(--shadow-card);
}

.dest-img-large {
  position: relative;
  width: 480px;
  height: 580px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e6e3eb;
  z-index: 3;
  box-shadow: var(--shadow-card);
}

.glass-pill {
  position: absolute;
  top: 230px;
  /* Peeks past the image's text-facing edge by ~24px, leaving ~40px to the text
     (image 480 + 32 padding − (150 pill width − 24 peek) = 386). */
  right: 386px;
  width: 150px;
  height: 360px;
  border-radius: 9999px;
  background: var(--color-purple-tint);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
  z-index: 4;
}

.glass-pill.peach {
  background: rgba(255, 204, 196, 0.25);
}
.glass-pill.lavender {
  background: rgba(214, 214, 235, 0.4);
}
.glass-pill.cream {
  background: rgba(243, 233, 223, 0.4);
}

.dest-text-center {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 760px;
  z-index: 5;
}
.dest-text-center .section-heading,
.dest-text-side .section-heading {
  text-align: left;
  margin-bottom: 24px;
}
.dest-text-center .section-description,
.dest-text-side .section-description {
  text-align: left;
  margin: 0 0 24px;
  max-width: 100%;
}

/* ---------- Destination with images: mirrored variant (small img right, big img left, pill left)
   Wrapped in min-width so these positional shifts only apply on desktop.
   Below 961px the destination layout flips to a flex column and these rules
   would otherwise still shift items off-screen on mobile. ---------- */

/* Mirrored variant: image on LEFT, text on RIGHT (default flex direction).
   Regular destination uses row-reverse (image right, text left). */
.destination-with-images.mirrored {
  flex-direction: row;
}

/* For the mirrored variant, move the glass pill from the right side
   (where it would land near the text) to the left side, so it visually
   sits between the image (left) and the text (right) — matching the
   peek-from-edge-of-image effect of the regular destination. */
.destination-with-images.mirrored .glass-pill {
  right: auto;
  left: 386px;
}

/* ---------- Inverted destination (big img upper-left, small img lower-right, text right) ---------- */

.destination-inverted {
  position: relative;
  padding: 80px 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: visible;
  /* Flexbox: image on left, text on right, both vertically centered. */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.dest-img-large-left {
  position: relative;
  width: 480px;
  height: 580px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e6e3eb;
  z-index: 3;
  box-shadow: var(--shadow-card);
}

.dest-img-small-right {
  position: absolute;
  bottom: 80px;
  right: 80px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  background: var(--color-lavender);
  z-index: 3;
  box-shadow: var(--shadow-card);
}

.glass-pill-inverted {
  position: absolute;
  top: -60px;
  /* Mirrors .glass-pill: peeks ~24px past image's text-facing edge. */
  left: 386px;
  width: 150px;
  height: 400px;
  border-radius: 9999px;
  background: var(--color-purple-tint);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
  z-index: 4;
}

.dest-text-side {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 760px;
  z-index: 5;
}

/* ==========================================================================
   ARCHITECTURE BRIDGE (full-width image separator)
   ========================================================================== */

.architecture-section {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.architecture-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #c5d6dd 0%, #a8b8c5 50%, #88a0b0 100%);
}

/* ==========================================================================
   TIMELINE STRIP (new pattern — 3 numbered glass cards in a row, connected)
   ========================================================================== */

.timeline-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.timeline-step {
  position: relative;
  padding: 40px 33px 33px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--color-glass-light);
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.timeline-number {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-accent);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.timeline-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.timeline-step .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--color-ink-soft);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.timeline-step p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  position: relative;
  z-index: 2;
  white-space: pre-line;
}

/* Hairline divider between cards on desktop */
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -22px;
  width: 12px;
  height: 1px;
  background: var(--color-divider);
}

/* ==========================================================================
   PULL QUOTE (new pattern — centered Playfair italic on glass)
   ========================================================================== */

.pull-quote-section {
  padding: 96px 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.pull-quote {
  position: relative;
  max-width: 760px;
  padding: 56px 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
  text-align: center;
  overflow: hidden;
}

.pull-quote::before {
  content: '“';
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.4;
  color: var(--color-ink);
  position: relative;
  z-index: 2;
}

.pull-quote .quote-blur {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 9999px;
  background: var(--color-purple-soft);
  filter: blur(40px);
  right: -60px;
  bottom: -60px;
  pointer-events: none;
}

/* ==========================================================================
   BULLET GRID (new pattern — Explorer page 2×3 mini glass cards)
   ========================================================================== */

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.bullet-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--color-glass-light);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bullet-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glass);
}

.bullet-dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(144, 99, 205, 0.18);
}

.bullet-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink-muted);
}

/* ==========================================================================
   PROFILE GRID (new pattern — Masters page portrait cards)
   ========================================================================== */

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.profile-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--color-lavender);
  display: block;
}

.profile-body { padding: 24px 28px 28px; }

.profile-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.profile-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-ink);
  margin-bottom: 12px;
}

.profile-bio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin-bottom: 16px;
}

.profile-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.profile-link:hover { color: var(--color-accent); border-bottom-color: var(--color-accent); }

/* ==========================================================================
   CTA BAND (new pattern — closing section)
   ========================================================================== */

.cta-band {
  padding: 96px 32px;
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-band-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-ink);
  margin-bottom: 24px;
}

.cta-band-heading .italic {
  font-style: italic;
  font-weight: 500;
  color: var(--color-ink-soft);
}

.cta-band-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-blur {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 9999px;
  background: var(--color-purple-soft);
  filter: blur(60px);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.5;
}

/* ==========================================================================
   WORKSHOP LIST (new pattern — Experiences page)
   ========================================================================== */

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.workshop-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  padding: 32px 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.workshop-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glass);
}

.workshop-left {
  border-right: 1px solid var(--color-divider);
  padding-right: 32px;
}

.workshop-date {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.05;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.workshop-date .month {
  font-style: italic;
  color: var(--color-ink-soft);
  font-size: 28px;
  display: block;
  margin-top: 4px;
}

.workshop-meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.workshop-meta .tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(144, 99, 205, 0.1);
  color: var(--color-accent);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 8px;
}

.workshop-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workshop-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: 12px;
}

.workshop-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin-bottom: 16px;
}

.workshop-capacity {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-ink-soft);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.workshop-capacity .full { color: var(--color-accent); }

/* ==========================================================================
   INQUIRY FORM (new pattern — glassmorphic Netlify form)
   ========================================================================== */

.inquiry-form-section {
  max-width: 760px;
  margin: 0 auto;
}

.inquiry-form {
  position: relative;
  padding: 48px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
}

.form-row { margin-bottom: 24px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-row.two-col .form-field { margin-bottom: 0; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-divider);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.85);
}

.form-honeypot { display: none !important; }

.form-submit { margin-top: 8px; text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

/* Footer — full-bleed background, content capped to 1440px reading column.
   All three items sit on the same row, anchored start / center / end. */
.footer {
  background: white;
  border-top: 1px solid var(--color-divider);
  display: grid;
  grid-template-columns:
    minmax(32px, 1fr)
    minmax(0, var(--container-max))
    minmax(32px, 1fr);
  grid-template-rows: auto;
  align-items: center;
  padding: 32px 0;
  width: 100%;
}
.footer > * {
  grid-column: 2;
  grid-row: 1;
}
.footer-logo-img  { justify-self: start; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-self: center;
}
.footer-copyright { justify-self: end; }

@media (max-width: 768px) {
  .footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 16px;
    padding: 28px 24px;
    text-align: center;
  }
  .footer-logo-img    { grid-column: 1; grid-row: 1; justify-self: center; }
  .footer-links       { grid-column: 1; grid-row: 2; justify-self: center; }
  .footer-copyright   { grid-column: 1; grid-row: 3; justify-self: center; }
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--color-ink-soft);
  letter-spacing: 3.2px;
}

.footer-logo-img {
  display: block;
  height: 80px;
  width: auto;
  -webkit-user-select: none;
  user-select: none;
}

.footer-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-ink-muted);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--color-ink); }

.footer-copyright {
  opacity: 0.6;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-ink-muted);
}

/* ==========================================================================
   SKELETON / LOADING STATES (CMS-driven content)
   ========================================================================== */

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(199, 197, 204, 0.2) 0%,
    rgba(199, 197, 204, 0.45) 50%,
    rgba(199, 197, 204, 0.2) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton { animation: none; background: rgba(199, 197, 204, 0.3); }
}

.skeleton-card { pointer-events: none; }

/* Master card: video that swaps in on hover */
.profile-card { cursor: pointer; }
.profile-card .profile-photo,
.profile-card .profile-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-card .profile-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-lavender);
  overflow: hidden;
}
.profile-card .profile-video {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.profile-card.is-playing .profile-video { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .profile-card .profile-video { transition: none; }
}

/* ==========================================================================
   MODAL — master detail (and shared dialog base)
   ========================================================================== */

dialog.master-modal,
dialog.signup-modal,
dialog.past-event-modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  overflow: visible;
  margin: auto;
}
dialog.master-modal::backdrop,
dialog.signup-modal::backdrop,
dialog.past-event-modal::backdrop {
  background: rgba(26, 28, 31, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
  border: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: white; }

.master-modal-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  overflow: hidden;
  max-width: 960px;
  width: min(95vw, 960px);
  max-height: 90vh;
  box-shadow: 0 40px 80px rgba(26, 28, 31, 0.4);
}

.master-modal-media {
  position: relative;
  background: var(--color-lavender);
  min-height: 320px;
}
.master-modal-media img,
.master-modal-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.master-modal-body {
  padding: 40px 40px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.master-modal-body .profile-tag {
  align-self: flex-start;
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-accent);
}
.master-modal-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: var(--color-ink);
}
.master-modal-bio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink-muted);
}
.master-modal-section {
  border-top: 1px solid var(--color-divider);
  padding-top: 16px;
  margin-top: 8px;
}
.master-modal-section h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-ink-soft);
  margin-bottom: 8px;
}
.master-modal-section[hidden] { display: none !important; }
.master-modal-section div {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-ink-muted);
  white-space: pre-line;
}

@media (max-width: 768px) {
  .master-modal-inner {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .master-modal-media { aspect-ratio: 4 / 3; min-height: 0; }
  .master-modal-body { padding: 24px 24px 32px; }
  .master-modal-name { font-size: 28px; }
}

/* ==========================================================================
   MODAL — signup form (experiences page)
   ========================================================================== */

.signup-modal-inner,
.past-event-modal-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 22px;
  padding: 40px 40px 36px;
  max-width: 560px;
  width: min(95vw, 560px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(26, 28, 31, 0.4);
}
.past-event-modal-inner { max-width: 880px; width: min(95vw, 880px); }

.signup-modal-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  color: var(--color-ink);
  margin-bottom: 4px;
}
.signup-modal-head h2 .italic {
  font-style: italic;
  color: var(--color-ink-soft);
}
.signup-modal-head .event-meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink-muted);
  margin-bottom: 24px;
}

.signup-modal form { display: flex; flex-direction: column; gap: 16px; }
.signup-modal form .form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
}

.signup-modal .success-state {
  text-align: center;
  padding: 24px 16px 8px;
}
.signup-modal .success-state h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  color: var(--color-ink);
  margin-bottom: 8px;
}
.signup-modal .success-state p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink-muted);
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .signup-modal-inner,
  .past-event-modal-inner { padding: 24px 22px; border-radius: 16px; }
  .signup-modal-head h2 { font-size: 24px; }
}

/* ==========================================================================
   PAST EVENTS GALLERY
   ========================================================================== */
.past-events-section { margin-top: 56px; }
.past-events-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-ink-soft);
  margin-bottom: 16px;
  text-align: center;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.past-event-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--color-lavender);
  aspect-ratio: 4 / 3;
  transition: transform 0.3s, box-shadow 0.3s;
}
.past-event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glass);
}
.past-event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.past-event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 28, 31, 0.8) 0%, rgba(26, 28, 31, 0) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: white;
}
.past-event-card-overlay h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.past-event-card-overlay p {
  font-family: var(--font-body);
  font-size: 13px;
  opacity: 0.85;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  background: var(--color-lavender);
}

@media (max-width: 768px) {
  .past-events-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .past-events-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */

.anim         { opacity: 0; transform: translateY(40px); }
.anim-left    { opacity: 0; transform: translateX(-40px); }
.anim-right   { opacity: 0; transform: translateX(40px); }
.anim-fade    { opacity: 0; }
.anim, .anim-left, .anim-right {
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.anim-fade {
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}
.anim.in-view, .anim-left.in-view, .anim-right.in-view { opacity: 1; transform: translate(0, 0); }
.anim-fade.in-view { opacity: 1; }

.anim-delay-1 { transition-delay: 0.12s; }
.anim-delay-2 { transition-delay: 0.24s; }
.anim-delay-3 { transition-delay: 0.36s; }
.anim-delay-4 { transition-delay: 0.48s; }
.anim-delay-5 { transition-delay: 0.60s; }
.anim-delay-6 { transition-delay: 0.72s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .anim, .anim-left, .anim-right, .anim-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .header-nav { gap: 22px; }
  .nav-link { font-size: 11px; letter-spacing: 1.4px; }
  /* Image shrinks at this breakpoint, text container stays flex */
  .dest-img-large, .dest-img-large-left { width: 380px; height: 480px; }
  /* Same 24px peek formula with the narrower 380px image: 32 + 380 + 24 − 150 = 286. */
  .glass-pill { right: 286px; }
  .destination-with-images.mirrored .glass-pill { right: auto; left: 286px; }
  .glass-pill-inverted { left: 286px; }
  .hero-title { font-size: 72px; }
  .hero-text-only .hero-title { font-size: 80px; }
  .header-logo-img { height: 48px; }
}

/* ---------- Tablet (≤ 1024px): tighter nav, smaller hero, profile-grid → 2 cols ---------- */
@media (max-width: 1024px) {
  .hero-title { font-size: 64px; line-height: 1.1; }
  .hero-text-only .hero-title { font-size: 72px; }
  .hero-subtitle { font-size: 26px; }
  .section-heading { font-size: 42px; }
  .section { padding: 100px 28px; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .bullet-grid   { grid-template-columns: repeat(2, 1fr); }
  .destination-with-images, .destination-inverted { gap: 40px; padding: 60px 28px; }
  .pull-quote { padding: 48px 48px; }
  .pull-quote blockquote { font-size: 30px; }
  .workshop-card { padding: 28px 32px; }
  .workshop-date { font-size: 42px; }
  .workshop-date .month { font-size: 24px; }
  .cta-band-heading { font-size: 36px; }
  .footer-logo-img { height: 64px; }
}

@media (max-width: 960px) {
  /* Nav: collapse to hamburger */
  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    transform: none;
    flex-direction: column;
    gap: 0;
    background: rgba(249, 249, 253, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 32px;
    border-bottom: 1px solid var(--color-divider);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .header-nav.open { max-height: 400px; padding: 16px 32px; }
  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-divider);
    font-size: 14px;
  }
  .nav-link:last-child { border-bottom: 0; }
  .nav-link.active { border-bottom-color: var(--color-divider); }

  .header-button { display: none; }
  .nav-toggle { display: block; }
  .header-logo-img { height: 40px; }

  .section { padding: 72px 24px; }
  .hero-top { height: 70vh; min-height: 480px; }
  .hero-main { padding: 60px 16px; min-height: 480px; }
  .hero-video-bg { padding: calc(var(--header-h) + 48px) 16px 80px; }
  .hero-title { font-size: 56px; }
  .hero-text-only .hero-title { font-size: 60px; }
  .hero-subtitle { font-size: 22px; }

  .section-heading { font-size: 36px; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .problem-card { height: 520px; }
  /* Stretch the overlay so the body text fits on small viewports */
  .glassmorphic-overlay {
    top: 48%;
    bottom: 3%;
    left: 5%;
    right: 22%;
    padding: 24px;
  }
  .card-title { font-size: 26px; line-height: 1.25; }

  .features-grid,
  .timeline-strip {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .timeline-step:not(:last-child)::after { display: none; }

  .bullet-grid { grid-template-columns: 1fr 1fr; }

  .profile-grid { grid-template-columns: 1fr 1fr; }

  .workshop-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 28px;
  }
  .workshop-left {
    border-right: 0;
    border-bottom: 1px solid var(--color-divider);
    padding-right: 0;
    padding-bottom: 16px;
  }

  /* Destination patterns: stack vertically on mobile (flex-direction column overrides
     the desktop row/row-reverse). */
  .destination-with-images,
  .destination-with-images.mirrored,
  .destination-inverted {
    flex-direction: column;
    padding: 60px 24px;
    gap: 24px;
  }
  .dest-img-large, .dest-img-large-left {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .glass-pill, .glass-pill-inverted { display: none; }
  .dest-text-center, .dest-text-side {
    max-width: 100%;
    text-align: left;
  }

  .pull-quote { padding: 40px 32px; }
  .pull-quote blockquote { font-size: 24px; }

  .inquiry-form { padding: 32px 24px; }
  .form-row.two-col { grid-template-columns: 1fr; }

  .architecture-image { height: 320px; }
}

@media (max-width: 560px) {
  .header { padding: 0 20px; }
  .header-logo { font-size: 24px; letter-spacing: 2px; }
  .header-logo-img { height: 36px; }
  .footer-logo-img { height: 56px; }
  .footer { padding: 28px 20px; gap: 16px; }
  .hero-title { font-size: 40px; line-height: 1.1; letter-spacing: -0.5px; }
  .hero-text-only .hero-title { font-size: 44px; }
  .hero-subtitle { font-size: 18px; }
  .hero-video-bg { padding: calc(var(--header-h) + 32px) 12px 64px; }
  .section { padding: 56px 18px; }
  .section-heading { font-size: 28px; }
  .section-description { font-size: 16px; }
  .section-eyebrow { font-size: 11px; letter-spacing: 1.4px; }
  .bullet-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .timeline-step { padding: 32px 24px 24px; }
  .timeline-step h3 { font-size: 24px; }
  .pull-quote { padding: 32px 24px; border-radius: 12px; }
  .pull-quote blockquote { font-size: 22px; }
  .pull-quote::before { font-size: 80px; top: 0; left: 12px; }
  .workshop-card { padding: 22px 22px; }
  .workshop-date { font-size: 36px; }
  .workshop-date .month { font-size: 18px; }
  .workshop-title { font-size: 22px; }
  .cta-band-heading { font-size: 26px; }
  .cta-band-sub { font-size: 16px; }
  .button, .button-large { padding: 12px 22px; font-size: 11px; letter-spacing: 1.4px; }
  .inquiry-form { padding: 24px 18px; border-radius: 14px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 15px; padding: 12px 14px; }
  .architecture-image { height: 240px; }
  .problem-card { height: 460px; }
  .glassmorphic-overlay { right: 18%; padding: 20px; }
  .card-title { font-size: 22px; }
  .card-text  { font-size: 14px; }
}
