/* =========================================================================
   Reckon. — shared stylesheet
   Tokens, base, nav, footer, sections, components used across all pages.
   Page-specific styles (particle canvas, dictionary, dot story) live inline
   on the page that needs them.
   ========================================================================= */

:root {
  --claude-orange: #d4683a;
  --claude-orange-glow: #e8875c;
  --claude-dark: #141413;
  --claude-cream: #f7f4ed;
  --claude-mid: #8a877d;
  --claude-light-gray: #e0ddd3;
  --wes-rose: #c8726e;
  --wes-sage: #7a9c6d;
  --wes-mustard: #c9982e;
  --wes-teal-deep: #3d6b6b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-mono: 'JetBrains Mono', Menlo, monospace;
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --text-primary: #2a2927;
  --text-secondary: #5a5850;
  --border: #c4c0b4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
html { scroll-behavior: smooth; background: var(--claude-dark); }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-wrap: pretty;
  background: var(--claude-cream);
}

/* Typography utility: white-space nowrap for clause-level binding when &nbsp;
   inside the clause would clutter the markup. Used on multi-clause pull-quotes
   to keep "We design the experience," from breaking mid-clause. Browser still
   wraps at the spaces between .nowrap clauses. */
.nowrap { white-space: nowrap; }

/* Skip link */
.skip-link {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
  font-family: var(--font-mono); font-size: 12px; color: var(--claude-cream); background: var(--claude-dark);
  padding: 8px 16px; z-index: 10001; text-decoration: none;
}
.skip-link:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto; overflow: visible; }

/* =========================================================================
   KEYFRAMES
   ========================================================================= */
@keyframes morph-slow {
  0%, 38% { border-radius: 50%; transform: scale(1) rotate(0deg); }
  50%, 88% { border-radius: 2px; transform: scale(0.82) rotate(45deg); }
  100% { border-radius: 50%; transform: scale(1) rotate(0deg); }
}
@keyframes morph-accent {
  0%, 38% { border-radius: 50%; transform: scale(1) rotate(0deg); }
  50%, 88% { border-radius: 1px; transform: scale(0.8) rotate(45deg); }
  100% { border-radius: 50%; transform: scale(1) rotate(0deg); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 104, 58, 0.25); }
  50% { box-shadow: 0 0 24px rgba(212, 104, 58, 0.6); }
}
@keyframes fade-up {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes line-extend { 0% { width: 0; opacity: 0; } 100% { width: 60px; opacity: 0.5; } }
@keyframes dot-appear { 0% { opacity: 0; transform: scale(0); } 100% { opacity: 1; transform: scale(1); } }
@keyframes diamond-appear { 0% { opacity: 0; transform: scale(0) rotate(45deg); } 100% { opacity: 0.7; transform: scale(1) rotate(45deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 0.4; } }
@keyframes breathe { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.25; } }

/* =========================================================================
   GLOBAL NAV
   ========================================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 20, 19, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 104, 58, 0.15);
}
.site-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 40px);
}
.site-nav-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 800;
  color: #ebe8e0; text-decoration: none;
  display: inline-flex; align-items: baseline; gap: 0;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.site-nav-mark .morph {
  display: inline-block;
  /* Match hero wordmark dot proportion (~19.5% of font-size, 22px nav -> ~5px).
     Margin tight (1px) so "works" sits flush after the dot, exactly like hero. */
  width: 5px; height: 5px;
  background: var(--claude-orange);
  position: relative; top: -1px;
  margin: 0 1px;
  animation: morph-slow 7s var(--ease-smooth) infinite;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Expandable wordmark: "R" + (hidden "eckon") + morph-dot + (hidden "works").
   In hero on home: only "R + dot" is visible.
   Past hero on home, or on any subpage: full "Reckon. works" wordmark.
   The two hidden spans must explicitly inherit the brand font + cream color,
   match the hero wordmark's "works" treatment (Playfair regular, dim cream),
   and animate via max-width + opacity. */
.site-nav-mark .nm-eck,
.site-nav-mark .nm-works {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  font-family: 'Playfair Display', Georgia, serif;
  color: #ebe8e0;
  transition: max-width 0.55s var(--ease-smooth), opacity 0.4s var(--ease-smooth), margin 0.4s var(--ease-smooth);
}
.site-nav-mark .nm-eck {
  font-weight: 800;
  font-style: normal;
}
.site-nav-mark .nm-works {
  font-weight: 400;
  font-style: normal;
  font-size: 0.78em;
  margin-left: 0;
}
body.nav-expanded .site-nav-mark .nm-eck { max-width: 90px; opacity: 1; }
body.nav-expanded .site-nav-mark .nm-works { max-width: 90px; opacity: 0.42; margin-left: 0; }
@media (prefers-reduced-motion: reduce) {
  .site-nav-mark .nm-eck,
  .site-nav-mark .nm-works { transition: none; }
}
.site-nav-links {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
}
.site-nav-links a {
  color: #b5b3a9; text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
  position: relative;
}
.site-nav-links a:hover,
.site-nav-links a[aria-current="page"] { color: var(--claude-orange); }
.site-nav-links a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--claude-orange); opacity: 0.6;
}
.site-nav-toggle {
  display: none; background: none; border: 1px solid rgba(235, 232, 224, 0.2);
  color: #ebe8e0; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; padding: 8px 14px;
  cursor: pointer; transition: border-color 0.3s, color 0.3s;
}
.site-nav-toggle:hover { border-color: var(--claude-orange); color: var(--claude-orange); }

@media (max-width: 820px) {
  .site-nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .site-nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(20, 20, 19, 0.98);
    flex-direction: column; gap: 0; padding: 16px 0;
    border-bottom: 1px solid rgba(212, 104, 58, 0.15);
  }
  .site-nav-links.open { display: flex; }
  .site-nav-links a {
    width: 100%; padding: 14px clamp(20px, 4vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }
  .site-nav-links a[aria-current="page"]::after { display: none; }
}

/* =========================================================================
   PAGE HERO (non-landing)
   Compact hero on subpages: section label, headline, lead paragraph.
   ========================================================================= */
.page-hero {
  background: var(--claude-dark);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px) clamp(60px, 8vw, 100px);
  position: relative; overflow: hidden;
}
.page-hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--claude-orange); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.page-hero-eyebrow::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--claude-orange); animation: morph-accent 5s var(--ease-smooth) infinite;
}
.page-hero-headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 5.4vw, 64px); line-height: 1.08;
  color: #f5f2ea; letter-spacing: -1px; margin-bottom: 24px;
  text-wrap: balance;
}
.page-hero-headline em { font-style: italic; color: var(--claude-orange); font-weight: 600; }
.page-hero-lead {
  font-family: var(--font-body); font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.65; color: #d0cdc4; max-width: 640px; font-style: italic;
}
.page-hero-meta {
  /* Page-hero is always dark; bump above default claude-mid for AA contrast. */
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 24px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: #b5b3a9;
}
.page-hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero-meta span::before {
  content: ''; display: inline-block; width: 5px; height: 5px;
  background: var(--claude-orange); opacity: 0.5; border-radius: 50%;
}

/* Hero ornament reused on subpages */
.page-hero-ornament {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 8px; margin: 0 0 28px;
}
.page-hero-ornament .line { width: 32px; height: 1px; background: var(--claude-orange); opacity: 0.5; }
.page-hero-ornament .dot { width: 4px; height: 4px; background: var(--claude-orange); opacity: 0.5; border-radius: 50%; }
.page-hero-ornament .dia { width: 6px; height: 6px; background: var(--claude-orange); opacity: 0.7; transform: rotate(45deg); }

/* =========================================================================
   BREADCRUMB
   ========================================================================= */
.breadcrumb {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--claude-mid); margin-bottom: 24px;
}
.breadcrumb a { color: var(--claude-mid); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--claude-orange); }
.breadcrumb .sep { display: inline-block; margin: 0 10px; opacity: 0.4; }
/* Breadcrumb sits inside .page-hero (always dark): bump for readable contrast. */
.page-hero .breadcrumb,
.page-hero .breadcrumb a { color: #b5b3a9; }
.page-hero .breadcrumb a:hover { color: var(--claude-orange); }

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section-light {
  background: var(--claude-cream);
  padding: clamp(56px, 8vw, 100px) clamp(24px, 6vw, 80px);
  position: relative;
}
.section-dark {
  background: var(--claude-dark);
  padding: clamp(56px, 8vw, 100px) clamp(24px, 6vw, 80px);
  position: relative;
}
.section-content { max-width: 720px; margin: 0 auto; }
.section-content.wide { max-width: 960px; }
.section-content.narrow { max-width: 600px; }

.section-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--claude-orange); margin-bottom: 24px;
}
.section-headline {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.15; color: var(--text-primary);
  margin-bottom: 24px; text-wrap: balance;
}
.section-headline em { font-style: italic; color: var(--claude-orange); }
.section-body {
  font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 20px;
}
.section-body:last-of-type { margin-bottom: 0; }
.section-body strong {
  font-weight: 400; color: var(--text-primary);
  background: linear-gradient(to bottom, transparent 65%, rgba(212, 104, 58, 0.18) 65%);
  padding: 0 2px;
}
.section-body em { font-style: italic; color: var(--claude-orange); }
.section-body a {
  color: var(--claude-orange); text-decoration: none;
  border-bottom: 1px solid rgba(212, 104, 58, 0.25);
  transition: border-color 0.3s;
}
.section-body a:hover { border-bottom-color: var(--claude-orange); }

.section-dark .section-headline { color: #f5f2ea; }
.section-dark .section-headline em { color: var(--claude-orange); }
.section-dark .section-body { color: #b5b3a9; }
.section-dark .section-body strong { color: #f5f2ea; background: linear-gradient(to bottom, transparent 65%, rgba(212, 104, 58, 0.22) 65%); }

.section-divider {
  border-top: 1px solid var(--claude-light-gray);
}
.section-dark + .section-dark,
.section-light + .section-light { padding-top: clamp(24px, 4vw, 56px); }

/* Corner frames */
.corner-frames .corner { position: absolute; width: 20px; height: 20px; pointer-events: none; }
.corner-frames .corner::before, .corner-frames .corner::after { content: ''; position: absolute; background: var(--claude-orange); }
.corner-frames .corner::before { width: 20px; height: 2px; }
.corner-frames .corner::after { width: 2px; height: 20px; }
.corner-frames .tl { top: 20px; left: 20px; animation: breathe 6s ease-in-out infinite; }
.corner-frames .tl::before { top: 0; left: 0; } .corner-frames .tl::after { top: 0; left: 0; }
.corner-frames .tr { top: 20px; right: 20px; animation: breathe 6s ease-in-out 1.5s infinite; }
.corner-frames .tr::before { top: 0; right: 0; } .corner-frames .tr::after { top: 0; right: 0; }
.corner-frames .br { bottom: 20px; right: 20px; animation: breathe 6s ease-in-out 3s infinite; }
.corner-frames .br::before { bottom: 0; right: 0; } .corner-frames .br::after { bottom: 0; right: 0; }
.corner-frames .bl { bottom: 20px; left: 20px; animation: breathe 6s ease-in-out 4.5s infinite; }
.corner-frames .bl::before { bottom: 0; left: 0; } .corner-frames .bl::after { bottom: 0; left: 0; }
@media (max-width: 600px) { .corner-frames .corner { display: none !important; } }

/* Reveals */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 28px);
  font-weight: 600; font-style: italic; color: var(--claude-orange);
  line-height: 1.4; text-align: center; max-width: 560px; margin: 32px auto 24px;
  opacity: 0.9;
}
.section-dark .pull-quote { color: var(--claude-orange-glow); opacity: 1; }

/* Inline CTA */
.inline-cta {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--claude-orange);
  border: 1px solid var(--claude-orange); padding: 10px 24px; margin-top: 32px;
  text-decoration: none; transition: background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
  cursor: pointer; background: transparent;
}
.inline-cta:hover { background: var(--claude-orange); color: var(--claude-cream); }
.section-dark .inline-cta:hover { color: var(--claude-dark); }
.inline-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px;
}
.inline-cta-row .inline-cta { margin-top: 0; }
.inline-cta.ghost {
  border-color: rgba(212, 104, 58, 0.4);
  color: var(--claude-mid);
}
.inline-cta.ghost:hover { color: var(--claude-cream); background: var(--claude-orange); border-color: var(--claude-orange); }
.inline-cta.teal { border-color: var(--wes-teal-deep); color: var(--wes-teal-deep); }
.inline-cta.teal:hover { background: var(--wes-teal-deep); color: var(--claude-cream); }
.inline-cta.mustard { border-color: var(--wes-mustard); color: var(--wes-mustard); }
.inline-cta.mustard:hover { background: var(--wes-mustard); color: var(--claude-dark); }

/* =========================================================================
   ROUTES GRID — used to route from landing to subpages, and on overview pages
   ========================================================================= */
.route-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.route-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--claude-light-gray);
  background: rgba(255, 255, 255, 0.45);
  padding: 28px 24px 24px; text-decoration: none;
  /* Reset the default blue link color on the wrapping anchor; children set their own. */
  color: var(--text-primary);
  transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
  position: relative;
}
.section-dark .route-card { color: #b5b3a9; }
.section-dark .route-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.route-card:hover { border-color: var(--claude-orange); transform: translateY(-2px); }
.route-card-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--claude-orange); margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.route-card-eyebrow::before {
  content: ''; display: inline-block; width: 5px; height: 5px;
  background: var(--claude-orange); opacity: 0.5;
  animation: morph-accent 5s var(--ease-smooth) infinite;
}
.route-card-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px; line-height: 1.2;
}
.section-dark .route-card-title { color: #f5f2ea; }
.route-card-title em { font-style: italic; color: var(--claude-orange); font-weight: 600; }
.route-card-body {
  font-size: 14px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 16px; flex: 1;
}
.section-dark .route-card-body { color: #b5b3a9; }
.route-card-arrow {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--claude-orange);
}
.route-card-arrow::after { content: ' →'; transition: margin-left 0.2s; display: inline-block; }
.route-card:hover .route-card-arrow::after { margin-left: 4px; }

/* Subsection label: smaller than .section-label, used inside a band to
   visually separate sub-rows like "Studio products" vs "Live in the wild". */
.studio-sublabel {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--claude-orange);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  width: 100%;
}
.studio-sublabel::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--claude-orange); opacity: 0.7;
  animation: morph-accent 5s var(--ease-smooth) infinite;
}
.studio-sublabel-rule {
  flex: 1; height: 1px; background: rgba(212, 104, 58, 0.2);
  display: inline-block; margin-left: 8px;
}
.studio-subsection { display: block; }
.studio-subsection + .studio-subsection { margin-top: 64px; }

/* Feature variant: larger, single-row card used to lead a section.
   Supports an optional media slot (video or image) on the left when given
   the .route-card-feature-with-media variant — text moves into .route-card-text. */
.route-card-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border: 1px solid rgba(212, 104, 58, 0.45);
  background: rgba(212, 104, 58, 0.06);
  padding: 36px clamp(24px, 4vw, 40px);
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
  margin-bottom: 24px;
}
.route-card-feature-with-media {
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
  padding: clamp(20px, 2.5vw, 28px);
}
.route-card-feature-with-media .route-card-media {
  position: relative;
  /* Default: square media slot for square or landscape sources. The
     .route-card-media-portrait modifier switches to 9:16 for vertical sources. */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--claude-dark);
  border: 1px solid rgba(212, 104, 58, 0.18);
}
.route-card-feature-with-media .route-card-media-portrait { aspect-ratio: 9 / 16; }
.route-card-feature-with-media .route-card-media video,
.route-card-feature-with-media .route-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.route-card-feature-with-media .route-card-text {
  display: flex; flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.route-card-feature-with-media .route-card-text .route-card-arrow { margin-top: 6px; }
@media (max-width: 720px) {
  .route-card-feature-with-media {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .route-card-feature-with-media .route-card-media {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
  .route-card-feature-with-media .route-card-media-portrait {
    max-width: 240px;
  }
}

/* Case showcase: container for client cases on the home page. Today shows a
   single feature card; structured as a list so a future carousel can drop in. */
.case-showcase {
  display: grid; gap: 18px;
  margin-top: 4px;
}

/* =========================================================================
   PARKTHEATER SHOWCASE — landing page case-in-the-wild moment
   Centered spread: full 9:16 portrait video on the left, text left-aligned
   in a column to the right. Sits inside section-dark padding (no full-bleed).
   ========================================================================= */
.parktheater-showcase {
  margin-left: calc(-1 * clamp(24px, 6vw, 80px));
  margin-right: calc(-1 * clamp(24px, 6vw, 80px));
  margin-top: clamp(40px, 6vw, 72px);
  margin-bottom: calc(-1 * clamp(56px, 8vw, 96px));
  background: rgb(4, 4, 4);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 80px);
}
.parktheater-spread {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  text-decoration: none;
  color: #ebe8e0;
}
.parktheater-spread-video {
  aspect-ratio: 9 / 16;
  background: rgb(4, 4, 4);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-smooth);
}
.parktheater-spread:hover .parktheater-spread-video {
  transform: translateY(-4px);
}
.parktheater-spread-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: rgb(4, 4, 4);
}
.parktheater-spread-prose {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 22px);
  text-align: left;
  align-items: flex-start;
}
.parktheater-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--claude-orange);
  display: inline-flex; align-items: center; gap: 10px;
  text-wrap: balance;
}
.parktheater-tag::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--claude-orange); opacity: 0.7;
  flex-shrink: 0;
  animation: morph-accent 5s var(--ease-smooth) infinite;
}
.parktheater-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(56px, 7.4vw, 112px);
  line-height: 0.9; color: #f5f2ea;
  letter-spacing: -2px;
  margin: 0;
}
.parktheater-title em { font-style: italic; color: var(--claude-orange); font-weight: 800; }
.parktheater-headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18; color: #f5f2ea;
  margin: 4px 0 0;
  text-wrap: balance;
}
.parktheater-headline em { font-style: italic; color: var(--claude-orange); font-weight: 700; }
.parktheater-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(8px, 1vw, 16px);
}
.parktheater-col-eyebrow {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--claude-orange); opacity: 0.9;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.parktheater-col-eyebrow::before {
  content: ''; display: inline-block; width: 5px; height: 5px;
  background: var(--claude-orange); opacity: 0.7;
}
.parktheater-col p {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.25vw, 14.5px);
  line-height: 1.65; color: #d0cdc4;
  margin: 0;
}
.parktheater-col p + p { margin-top: 0.9em; }
.parktheater-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: clamp(8px, 1vw, 14px);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--claude-orange);
  transition: opacity 0.3s var(--ease-smooth);
}
.parktheater-spread:hover .parktheater-arrow { opacity: 0.7; }
@media (max-width: 900px) {
  .parktheater-spread {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 520px;
  }
  .parktheater-spread-video {
    max-height: 70vh;
    margin: 0 auto;
    width: 100%;
  }
  .parktheater-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================================
   CASE STUDY PAGE — full-bleed image hero, prose grid, CRT TV moment, 2-up
   gallery, credits row. Deep-page pattern for /cases/<slug>/.
   ========================================================================= */
.case-hero {
  position: relative;
  width: 100%;
  height: clamp(520px, 80vh, 920px);
  overflow: hidden;
  background: #0a0908;
  isolation: isolate;
}
.case-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 70%;
  z-index: 0;
}
.case-hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      transparent 75%),
    linear-gradient(to top,
      rgba(0, 0, 0, 0.45) 0%,
      transparent 35%);
  pointer-events: none;
}
.case-hero-breadcrumb {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  left: clamp(20px, 4vw, 56px);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d6d2c4;
}
.case-hero-breadcrumb a { color: #d6d2c4; text-decoration: none; transition: color 0.3s; }
.case-hero-breadcrumb a:hover { color: var(--claude-orange); }
.case-hero-breadcrumb .sep { display: inline-block; margin: 0 8px; opacity: 0.45; }
.case-hero-overlay {
  position: absolute;
  top: 0; right: 0;
  z-index: 2;
  max-width: min(680px, 88%);
  padding: clamp(72px, 9vw, 132px) clamp(28px, 5vw, 72px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: flex-end;
  text-align: right;
}
.case-hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--claude-orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.case-hero-tag::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  background: var(--claude-orange); opacity: 0.8;
}
.case-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.9;
  color: #f5f2ea;
  letter-spacing: -2.5px;
  margin: 0;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.7);
}
.case-hero-title em { font-style: italic; color: var(--claude-orange); font-weight: 800; }
.case-hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.3;
  color: #ebe8e0;
  margin: 0;
  max-width: 540px;
  text-wrap: balance;
}
@media (max-width: 720px) {
  .case-hero { height: clamp(460px, 70vh, 720px); }
  .case-hero::after {
    background:
      radial-gradient(ellipse 110% 65% at 50% 0%,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 80%),
      linear-gradient(to top,
        rgba(0, 0, 0, 0.6) 0%,
        transparent 40%);
  }
  .case-hero-overlay {
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
    padding-top: clamp(80px, 16vw, 120px);
    padding-right: clamp(20px, 6vw, 32px);
  }
  .case-hero-breadcrumb { left: clamp(20px, 6vw, 32px); }
}

/* Single-column lead prose */
.case-lead {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.75;
  color: var(--text-secondary);
  text-wrap: pretty;
}
.case-lead p + p { margin-top: 1.1em; }

/* Inline stats sentence — numbers as oversized italic Playfair */
.case-stats-inline {
  max-width: 760px;
  margin: clamp(48px, 7vw, 80px) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.45;
  color: var(--text-primary);
  text-wrap: balance;
}
.case-stats-inline .num {
  font-style: italic;
  font-weight: 700;
  color: var(--claude-orange);
  font-size: 1.65em;
  letter-spacing: -0.02em;
}

/* Brief / Build dual-column on light bg */
.case-prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  max-width: 1100px;
  margin: 0 auto;
}
.case-col-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--claude-orange);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.case-col-eyebrow::before {
  content: ''; display: inline-block;
  width: 5px; height: 5px;
  background: var(--claude-orange); opacity: 0.7;
}
.case-col p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: var(--text-secondary);
  margin: 0;
}
.case-col p + p { margin-top: 1em; }
.case-col p a {
  color: var(--claude-orange);
  border-bottom: 1px solid rgba(212, 104, 58, 0.4);
  text-decoration: none;
  transition: opacity 0.3s var(--ease-smooth);
}
.case-col p a:hover { opacity: 0.7; }
@media (max-width: 720px) {
  .case-prose-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* CRT TV moment */
.crt-stage {
  max-width: 760px;
  margin: 0 auto;
}
.crt-screen {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 640px;
  margin: 0 auto;
  background: #000;
  border-radius: 12% / 9%;
  overflow: hidden;
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.7),
    inset 0 0 4px rgba(212, 104, 58, 0.18),
    0 18px 60px rgba(0, 0, 0, 0.55),
    0 0 0 6px rgba(20, 20, 19, 0.95),
    0 0 0 8px rgba(60, 56, 50, 0.45);
}
.crt-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.crt-screen::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.18) 2px,
    rgba(0, 0, 0, 0.18) 4px
  );
  mix-blend-mode: multiply;
}
.crt-screen::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(ellipse at center,
    transparent 55%,
    rgba(0, 0, 0, 0.55) 100%);
  mix-blend-mode: multiply;
}
.crt-caption {
  margin-top: clamp(20px, 3vw, 28px);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.6);
}
.section-light .crt-caption { color: var(--claude-mid); }

/* 2-up gallery — natural aspect ratios, asymmetric grid, bottom-aligned baseline */
.case-gallery-2up {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: end;
}
.case-gallery-2up figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-gallery-2up img {
  width: 100%;
  height: auto;
  display: block;
  background: #0d1218;
}
.case-gallery-2up figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--claude-mid);
}
.section-dark .case-gallery-2up figcaption { color: rgba(245, 242, 234, 0.6); }
@media (max-width: 720px) {
  .case-gallery-2up { grid-template-columns: 1fr; gap: 24px; }
}

/* Credits row — Tinker-style minimal typography */
.case-credits {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
  padding-top: clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--claude-light-gray);
}
.section-dark .case-credits { border-top-color: rgba(255, 255, 255, 0.12); }
.case-credit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 140px;
  max-width: 240px;
}
.case-credit-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--claude-mid);
}
.section-dark .case-credit-label { color: rgba(245, 242, 234, 0.55); }
.case-credit-value {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-primary);
}
.section-dark .case-credit-value { color: #ebe8e0; }
.case-credit-value em { font-style: italic; color: var(--claude-orange); }

/* =========================================================================
   RETREAT PAGE — full-bleed Madeira hero, photo-led day-by-day rows,
   oversized pricing block. Uses teal accent throughout.
   ========================================================================= */
.retreat-hero {
  position: relative;
  width: 100%;
  height: clamp(540px, 75vh, 880px);
  overflow: hidden;
  background: #0a0908;
  isolation: isolate;
}
.retreat-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.retreat-hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 65% 80% at 100% 0%,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      transparent 75%),
    linear-gradient(to top,
      rgba(0, 0, 0, 0.45) 0%,
      transparent 35%);
  pointer-events: none;
}
.retreat-hero-breadcrumb {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  left: clamp(20px, 4vw, 56px);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d6d2c4;
}
.retreat-hero-breadcrumb a { color: #d6d2c4; text-decoration: none; transition: color 0.3s; }
.retreat-hero-breadcrumb a:hover { color: var(--wes-teal-deep); }
.retreat-hero-breadcrumb .sep { display: inline-block; margin: 0 8px; opacity: 0.45; }
.retreat-hero-overlay {
  position: absolute;
  top: 0; right: 0;
  z-index: 2;
  max-width: min(740px, 92%);
  padding: clamp(64px, 8vw, 112px) clamp(28px, 5vw, 72px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vw, 20px);
  align-items: flex-end;
  text-align: right;
}
.retreat-hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wes-teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.retreat-hero-tag::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  background: var(--wes-teal-deep); opacity: 0.85;
}
.retreat-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  color: #f5f2ea;
  letter-spacing: -1.2px;
  margin: 0;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.7);
  text-wrap: balance;
}
.retreat-hero-title em {
  font-style: italic;
  color: #7eb6b3;
  font-weight: 700;
}
.retreat-hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.4;
  color: #ebe8e0;
  margin: 0;
  max-width: 500px;
  text-wrap: balance;
}
.retreat-hero-price {
  margin-top: clamp(12px, 2vw, 20px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #d6d2c4;
  line-height: 1.85;
  max-width: 480px;
}
.retreat-hero-price strong {
  color: #f5f2ea;
  font-weight: 500;
}
@media (max-width: 720px) {
  .retreat-hero { height: clamp(520px, 75vh, 720px); }
  .retreat-hero::after {
    background:
      radial-gradient(ellipse 110% 65% at 50% 0%,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 80%),
      linear-gradient(to top,
        rgba(0, 0, 0, 0.6) 0%,
        transparent 40%);
  }
  .retreat-hero-overlay {
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
    padding-top: clamp(80px, 16vw, 120px);
    padding-right: clamp(20px, 6vw, 32px);
  }
  .retreat-hero-breadcrumb { left: clamp(20px, 6vw, 32px); }
}

/* Photo-led day rows (alternating left/right) */
.retreat-days-photo {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 112px);
  max-width: 1180px;
  margin: 0 auto;
}
.retreat-day-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.retreat-day-row:nth-child(even) {
  grid-template-columns: 1fr 1.05fr;
}
.retreat-day-row:nth-child(even) .retreat-day-photo { order: 2; }
.retreat-day-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1916;
}
.retreat-day-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.retreat-day-text {
  display: flex; flex-direction: column;
  gap: 14px;
}
.retreat-day-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wes-teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.retreat-day-eyebrow::before {
  content: ''; display: inline-block;
  width: 5px; height: 5px;
  background: var(--wes-teal-deep); opacity: 0.85;
}
.retreat-day-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.06;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin: 0;
  text-wrap: balance;
}
.retreat-day-title em { font-style: italic; color: var(--wes-teal-deep); }
.retreat-day-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: var(--text-secondary);
  margin: 0;
  max-width: 460px;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .retreat-day-row,
  .retreat-day-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .retreat-day-row:nth-child(even) .retreat-day-photo { order: 0; }
  .retreat-day-photo { aspect-ratio: 4 / 3; }
}

/* Oversized pricing detail block (Playfair italic for the amount) */
.retreat-pricing-detail {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.retreat-pricing-detail .price-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wes-teal-deep);
  margin-bottom: clamp(20px, 3vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.retreat-pricing-detail .price-eyebrow::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  background: var(--wes-teal-deep); opacity: 0.85;
}
.retreat-pricing-detail .price-amount {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 7.6vw, 88px);
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -1.5px;
  margin: 0 0 clamp(14px, 2vw, 20px);
  text-wrap: balance;
}
.retreat-pricing-detail .price-amount em {
  font-style: italic;
  color: var(--wes-teal-deep);
}
.retreat-pricing-detail .price-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 auto clamp(28px, 4vw, 40px);
  max-width: 580px;
  text-wrap: pretty;
}
.retreat-pricing-detail .price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.retreat-pricing-detail .price-row .inline-cta { margin-top: 0; }

/* Studio film strip: cinematic 9:16 video with text overlaid in the right
   half, sitting on a soft transparent-to-dark gradient that fades the video's
   right edge into the dark band. Wall-to-wall full-bleed inside section-dark. */
.studio-film-strip {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #ebe8e0;
  /* Break out of section-dark's horizontal padding so the strip is full-bleed. */
  margin-left: calc(-1 * clamp(24px, 6vw, 80px));
  margin-right: calc(-1 * clamp(24px, 6vw, 80px));
  margin-top: clamp(40px, 6vw, 72px);
  /* Pure black to match the H.264 video's letterbox so the seam is invisible. */
  background: #000;
  border-top: 1px solid rgba(212, 104, 58, 0.18);
  border-bottom: 1px solid rgba(212, 104, 58, 0.18);
  min-height: clamp(480px, 62vw, 720px);
  isolation: isolate;
}
.studio-film-strip video {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  width: auto;
  max-width: none;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000;
  z-index: 0;
}
/* Multi-stop dark fade from the video's right edge across the strip. The
   gradient is transparent over the visible face of the video (left ~22%)
   then ramps quickly into pure dark, so the caption sits on a soft seam
   that hides where the 9:16 video stops. */
.studio-film-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.4) 24%,
    rgba(0, 0, 0, 0.82) 34%,
    rgba(0, 0, 0, 0.96) 44%,
    #000 58%);
  pointer-events: none;
  z-index: 1;
}
/* Caption is a true overlay; its left edge starts just inside the video's
   right edge so the text reads as on-top-of-video and the seam is part of
   the composition rather than a horizontal split. */
.studio-film-caption {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  left: clamp(260px, 24%, 420px);
  z-index: 2;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 6vw, 80px) clamp(40px, 5vw, 72px) clamp(20px, 2.4vw, 40px);
  display: flex; flex-direction: column; gap: 18px;
  justify-content: flex-start;
  align-items: flex-start;
}
/* Decorative orange film-leader rule above the title (Exversa-inspired). */
.studio-film-caption::before {
  content: '';
  display: block;
  width: 56px; height: 2px;
  background: var(--claude-orange);
  opacity: 0.7;
  margin-bottom: 4px;
  order: -1;
}
.studio-film-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--claude-orange);
  display: inline-flex; align-items: center; gap: 10px;
}
.studio-film-eyebrow::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--claude-orange); opacity: 0.7;
  animation: morph-accent 5s var(--ease-smooth) infinite;
}
.studio-film-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.06; color: #f5f2ea;
  letter-spacing: -0.5px;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.studio-film-title em { font-style: italic; color: var(--claude-orange); font-weight: 700; }
.studio-film-body {
  font-family: var(--font-body); font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7; color: #ebe8e0;
  max-width: 480px; margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.studio-film-meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: #ebe8e0;
  margin-top: 6px;
}
.studio-film-meta span { display: inline-flex; align-items: center; gap: 8px; }
.studio-film-meta span::before {
  content: ''; display: inline-block; width: 5px; height: 5px;
  background: var(--claude-orange); opacity: 0.8; border-radius: 50%;
}
.studio-film-arrow {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--claude-orange);
  margin-top: 12px;
  transition: opacity 0.3s var(--ease-smooth);
}
.studio-film-strip:hover .studio-film-arrow { opacity: 0.7; }
@media (max-width: 720px) {
  /* Stack on mobile: video on top at native portrait aspect, text below
     in a dark block. The fade overlay turns into a vertical bottom-fade. */
  .studio-film-strip {
    min-height: auto;
  }
  .studio-film-strip video {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    max-height: 70vh;
    object-fit: cover;
    margin: 0 auto;
    display: block;
  }
  .studio-film-strip::after {
    background: linear-gradient(to bottom,
      transparent 0%,
      transparent 60%,
      rgba(20, 20, 19, 0.85) 85%,
      var(--claude-dark) 100%);
  }
  .studio-film-caption {
    width: 100%;
    margin: 0;
    padding: clamp(28px, 6vw, 48px);
    background: var(--claude-dark);
  }
}
.route-card-feature:hover { border-color: var(--claude-orange); transform: translateY(-2px); }
.section-dark .route-card-feature {
  border-color: rgba(212, 104, 58, 0.4);
  background: rgba(212, 104, 58, 0.08);
  color: #b5b3a9;
}
.route-card-feature .route-card-eyebrow { margin-bottom: 0; }
.route-card-feature .route-card-title-large {
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 36px); font-weight: 700;
  line-height: 1.15; color: var(--text-primary); margin: 0;
}
.section-dark .route-card-feature .route-card-title-large { color: #f5f2ea; }
.route-card-feature .route-card-title-large em { font-style: italic; color: var(--claude-orange); font-weight: 700; }
.route-card-feature .route-card-body {
  font-size: 15px; line-height: 1.7; color: var(--text-secondary);
  max-width: 640px; margin: 0;
}
.section-dark .route-card-feature .route-card-body { color: #b5b3a9; }
.route-card-feature .route-card-meta {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 4px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-secondary);
}
.section-dark .route-card-feature .route-card-meta { color: #d0cdc4; }
.route-card-feature .route-card-meta span { display: inline-flex; align-items: center; gap: 8px; }
.route-card-feature .route-card-meta span::before {
  content: ''; display: inline-block; width: 5px; height: 5px;
  background: var(--claude-orange); opacity: 0.6; border-radius: 50%;
}

/* =========================================================================
   FORMAT COMPARE (cards: workshop / day / retreat)
   ========================================================================= */
.format-compare {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.format-card {
  border: 1px solid var(--claude-light-gray); padding: 28px 24px;
  transition: border-color 0.3s; display: flex; flex-direction: column;
  background: rgba(255, 255, 255, 0.45);
}
.format-card:hover { border-color: var(--claude-orange); }
.format-card-label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--claude-orange); margin-bottom: 10px;
}
.format-card-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 12px;
}
.format-card-detail {
  font-size: 14px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 6px;
}
.format-card-detail::before {
  content: ''; display: inline-block; width: 4px; height: 4px;
  background: var(--claude-orange); opacity: 0.4; margin-right: 8px;
  vertical-align: middle; border-radius: 50%;
}
.format-card-price {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--claude-light-gray);
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--text-primary); line-height: 1.2;
}
.format-card-price-note {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--claude-mid); margin-top: 6px;
}
@media (max-width: 768px) { .format-compare { grid-template-columns: 1fr; } }

/* =========================================================================
   DAY BLOCKS (Audit / Build / Practice, etc.)
   ========================================================================= */
.day-blocks { margin-top: 48px; }
.day-block { padding: 32px 0; }
.day-block + .day-block { border-top: 1px solid var(--claude-light-gray); }
.day-block-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--claude-orange); margin-bottom: 12px;
}
.day-block-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 10px;
}
.day-block-body {
  font-size: 15px; line-height: 1.75; color: var(--text-secondary);
}
.section-dark .day-block + .day-block { border-top-color: rgba(255, 255, 255, 0.08); }
.section-dark .day-block-title { color: #f5f2ea; }
.section-dark .day-block-body { color: #b5b3a9; }

.morph-divider { display: flex; align-items: center; justify-content: center; padding: 8px 0; user-select: none; }
.morph-divider .pip { width: 6px; height: 6px; background: var(--claude-orange); opacity: 0.4; }
.morph-divider .pip:nth-child(1) { animation: morph-accent 5s var(--ease-smooth) 0s infinite; }
.morph-divider .pip:nth-child(2) { animation: morph-accent 5s var(--ease-smooth) -1.7s infinite; margin: 0 12px; opacity: 0.25; }
.morph-divider .pip:nth-child(3) { animation: morph-accent 5s var(--ease-smooth) -3.3s infinite; }

/* =========================================================================
   PROOF STATS (case studies, retreat outcomes)
   ========================================================================= */
.proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.proof-stat { border-top: 2px solid var(--claude-orange); padding-top: 16px; }
.proof-stat-value {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--text-primary); margin-bottom: 4px;
}
.section-dark .proof-stat-value { color: #f5f2ea; }
.proof-stat-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--claude-mid);
}
@media (max-width: 600px) { .proof-stats { grid-template-columns: 1fr; gap: 20px; } }

/* =========================================================================
   FAQ — accordion
   ========================================================================= */
.faq-list { margin-top: 32px; }
.faq-item {
  border-top: 1px solid var(--claude-light-gray);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--claude-light-gray); }
.section-dark .faq-item { border-top-color: rgba(255, 255, 255, 0.08); }
.section-dark .faq-item:last-child { border-bottom-color: rgba(255, 255, 255, 0.08); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none; gap: 16px;
}
.faq-q-text {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--text-primary); line-height: 1.4;
}
.section-dark .faq-q-text { color: #f5f2ea; }
.faq-toggle {
  width: 8px; height: 8px; background: var(--claude-orange); opacity: 0.4;
  border-radius: 50%; flex-shrink: 0;
  transition: border-radius 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth), opacity 0.4s var(--ease-smooth);
}
.faq-item.open .faq-toggle { border-radius: 1px; transform: rotate(45deg) scale(0.85); opacity: 0.85; }
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s var(--ease-smooth), opacity 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}
.faq-item.open .faq-a { max-height: 600px; opacity: 1; padding-top: 14px; }
.faq-a p {
  font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 10px;
}
.faq-a p:last-child { margin-bottom: 0; }
.section-dark .faq-a p { color: #b5b3a9; }

/* =========================================================================
   FEATURES / BULLETED LIST
   ========================================================================= */
.feature-list { margin-top: 28px; padding: 0; list-style: none; }
.feature-list li {
  position: relative; padding-left: 22px; margin-bottom: 14px;
  font-size: 15px; line-height: 1.7; color: var(--text-secondary);
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; background: var(--claude-orange);
  transform: rotate(45deg);
}
.section-dark .feature-list li { color: #b5b3a9; }

/* =========================================================================
   TWO-COLUMN ABOUT
   ========================================================================= */
.about-people { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.person-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.person-role {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--claude-orange); margin-bottom: 14px;
}
.person-bio { font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.person-bio p { margin-bottom: 12px; }
.person-bio p:last-child { margin-bottom: 0; }
.section-dark .person-name { color: #f5f2ea; }
.section-dark .person-bio { color: #b5b3a9; }
@media (max-width: 720px) { .about-people { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================================
   ARTICLE / JOURNAL
   ========================================================================= */
.article {
  max-width: 720px; margin: 0 auto; padding: 0 clamp(24px, 6vw, 40px);
}
.article-meta {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--claude-mid); margin-bottom: 16px;
}
.article-meta time { color: var(--claude-orange); }
.article h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4.5vw, 48px); line-height: 1.15;
  color: var(--text-primary); margin-bottom: 20px; letter-spacing: -0.5px;
  text-wrap: balance;
}
.article h1 em { font-style: italic; color: var(--claude-orange); font-weight: 700; }
.article-lead {
  font-family: var(--font-body); font-size: 19px; font-style: italic;
  line-height: 1.6; color: var(--text-secondary); margin-bottom: 36px;
}
.article h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; line-height: 1.25; color: var(--text-primary);
  margin: 40px 0 16px;
}
.article h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; line-height: 1.3; color: var(--text-primary);
  margin: 32px 0 12px;
}
.article p, .article ul, .article ol {
  font-size: 17px; line-height: 1.8; color: var(--text-primary); margin-bottom: 18px;
}
.article ul, .article ol { padding-left: 24px; }
.article li { margin-bottom: 8px; }
.article p strong { font-weight: 600; }
.article p em { font-style: italic; color: var(--claude-orange); }
.article p a { color: var(--claude-orange); border-bottom: 1px solid rgba(212, 104, 58, 0.3); text-decoration: none; }
.article blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 22px; line-height: 1.5; color: var(--claude-orange);
  border-left: 2px solid var(--claude-orange); padding: 4px 0 4px 22px;
  margin: 28px 0;
}
.article hr {
  border: none; height: 1px; background: var(--claude-light-gray); margin: 40px 0;
}

.article-list { list-style: none; padding: 0; margin: 0; }
.article-list li {
  padding: 24px 0;
  border-top: 1px solid var(--claude-light-gray);
}
.article-list li:last-child { border-bottom: 1px solid var(--claude-light-gray); }
.article-list a {
  text-decoration: none; display: block;
}
.article-list a:hover .article-list-title { color: var(--claude-orange); }
.article-list-meta {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--claude-mid); margin-bottom: 8px;
}
.article-list-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-primary); line-height: 1.3; margin-bottom: 8px;
  transition: color 0.3s;
}
.article-list-excerpt {
  font-size: 15px; line-height: 1.7; color: var(--text-secondary);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--claude-dark);
  padding: 64px clamp(24px, 6vw, 40px) 32px;
  color: #b5b3a9;
}
.site-footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 104, 58, 0.15);
}
.site-footer-brand .footer-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px; font-weight: 800;
  color: #ebe8e0; display: inline-flex; align-items: baseline;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.site-footer-brand .footer-mark .morph {
  display: inline-block;
  /* Match hero wordmark dot proportion (~19.5% of font-size, 36px -> 7px). */
  width: 7px; height: 7px;
  background: var(--claude-orange);
  position: relative; top: -2px; margin: 0 1px;
  animation: morph-slow 7s var(--ease-smooth) infinite;
  border-radius: 50%;
  flex-shrink: 0;
}
.site-footer-brand .footer-mark .footer-eck {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  color: #ebe8e0;
}
.site-footer-brand .footer-mark .footer-works {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.78em;
  color: #ebe8e0;
  opacity: 0.42;
  margin-left: 0;
}
.site-footer-brand p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.7;
  color: #b5b3a9; max-width: 360px; margin-bottom: 18px;
}
.site-footer-brand .email {
  display: inline-block; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 2px; color: var(--claude-orange); text-decoration: none;
}
.site-footer-brand .email:hover { opacity: 0.7; }

.site-footer-col h4 {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #ebe8e0; margin-bottom: 14px; font-weight: 500;
}
.site-footer-col ul { list-style: none; padding: 0; margin: 0; }
.site-footer-col li { margin-bottom: 8px; }
.site-footer-col a {
  font-family: var(--font-body); font-size: 14px;
  color: #8a877d; text-decoration: none;
  transition: color 0.3s;
}
.site-footer-col a:hover { color: var(--claude-orange); }

.site-footer-bottom {
  max-width: 1100px; margin: 24px auto 0;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; color: #5a5850; text-transform: uppercase;
}
.site-footer-bottom a { color: #8a877d; text-decoration: none; }
.site-footer-bottom a:hover { color: var(--claude-orange); }

.site-footer-social {
  display: flex; gap: 14px;
}
.site-footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid #3a3a38;
  transition: border-color 0.3s var(--ease-smooth);
}
.site-footer-social a:hover { border-color: var(--claude-orange); }
.site-footer-social svg {
  width: 16px; height: 16px; fill: #8a877d;
  transition: fill 0.3s var(--ease-smooth);
}
.site-footer-social a:hover svg { fill: var(--claude-orange); }

@media (max-width: 800px) {
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   FINAL CTA BAND (above footer)
   ========================================================================= */
.cta-band {
  background: var(--claude-dark); text-align: center;
  padding: clamp(60px, 9vw, 100px) clamp(24px, 6vw, 40px);
  position: relative;
}
.cta-band-eyebrow {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--claude-orange); margin-bottom: 18px;
}
.cta-band-headline {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(28px, 4.5vw, 40px); color: #f5f2ea;
  max-width: 640px; margin: 0 auto 12px;
  line-height: 1.2; text-wrap: balance;
}
.cta-band-headline em { color: var(--claude-orange); font-style: italic; }
.cta-band-sub {
  font-family: var(--font-body); font-size: 16px; color: #b5b3a9;
  max-width: 540px; margin: 0 auto 28px; line-height: 1.7;
}
.cta-band-row {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.cta-band-row .inline-cta { margin-top: 0; }

/* =========================================================================
   TIMELINE (used on case study)
   ========================================================================= */
.timeline { margin-top: 36px; }
.timeline-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--claude-light-gray);
}
.timeline-item:last-child { border-bottom: 1px solid var(--claude-light-gray); }
.timeline-when {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--claude-orange);
  padding-top: 4px;
}
.timeline-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 6px;
}
.timeline-body { font-size: 14px; line-height: 1.7; color: var(--text-secondary); }
.section-dark .timeline-item { border-top-color: rgba(255, 255, 255, 0.08); }
.section-dark .timeline-item:last-child { border-bottom-color: rgba(255, 255, 255, 0.08); }
.section-dark .timeline-title { color: #f5f2ea; }
.section-dark .timeline-body { color: #b5b3a9; }
@media (max-width: 600px) {
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
}

/* =========================================================================
   QUOTE BLOCK (testimonials)
   ========================================================================= */
.quote-block {
  border-left: 2px solid var(--claude-orange);
  padding: 8px 0 8px 22px; margin: 28px 0;
}
.quote-block .quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px); line-height: 1.5; color: var(--text-primary);
  margin-bottom: 12px;
}
.section-dark .quote-block .quote { color: #f5f2ea; }
.quote-block .attribution {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--claude-mid);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 600px) {
  .section-light, .section-dark { padding: 56px 24px; }
  .page-hero { padding: 64px 24px 48px; }
  .section-headline { font-size: 26px; }
  .day-block-title { font-size: 19px; }
}
