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

/* ===================================================================
   TOKENS
   =================================================================== */
:root {
  /* ── Brand Kit: Substrate ── */
  --bone:     #FAF8F4;
  --atelier:  #FDFBF7;
  --ink:      #181613;
  --ink-med:  #5A5550;
  --ink-soft: #8C8880;
  --border:   rgba(24,22,19,0.08);

  /* ── Brand Kit: Climates ── */
  --matcha:   #D8DCC7;
  --ash:      #E2E2DD;
  --lilac:    #C9C0D8;
  --plum:     #3A3354;

  /* ── Brand Kit: Signals ── */
  --butter:   #ECD07A;
  --coral:    #E88A6F;
  --blush:    #F0C1B2;

  /* ── Brand Kit: Confetti (calendar only) ── */
  --iris:     #C6BCE6;
  --moss:     #B8B691;
  --shell:    #ECB5A3;
  --rose:     #E29C84;

  /* ── Legacy aliases ── */
  --white:    #ffffff;
  --marquee-bg: #F4ECD5;

  /* ── Typography ── */
  --sans:  'DM Sans', sans-serif;
  --serif: 'Instrument Serif', serif;

  /* ── Radii ── */
  --r-section: 32px;
  --r-card:    28px;
  --r-pill:    999px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===================================================================
   BASE
   =================================================================== */
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain — felt, not seen */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

a { text-decoration: none; color: inherit; }
ol, ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
body.js .will-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
body.js .will-reveal.revealed {
  opacity: 1;
  transform: none;
}
body.js .brands-fade,
body.js .cta-fade {
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
body.js .brands-fade.fade-in,
body.js .cta-fade.fade-in {
  opacity: 1;
}

/* ===================================================================
   SHARED
   =================================================================== */
.lbl {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fde795;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  letter-spacing: 0.005em;
  transition: background 0.28s var(--ease),
              transform 0.28s var(--ease),
              box-shadow 0.28s var(--ease);
}
.btn-pill:hover {
  background: #f5dc80;
  transform: translateY(-1.5px);
  box-shadow: 0 10px 24px -8px rgba(253,231,149,0.7);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(17,17,17,0.18);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease), border-color 0.18s;
}
.arrow-link:hover { gap: 14px; border-color: var(--ink); }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 64px;
  opacity: 0;
  pointer-events: none;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease),
              opacity 0.35s ease, backdrop-filter 0.45s var(--ease);
}
.nav.nav-scrolled {
  opacity: 1;
  pointer-events: all;
  background: rgba(241,236,228,0.82);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border-bottom: 1px solid rgba(24,22,19,0.07);
}

.nav-logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-center a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: opacity 0.18s;
}
.nav-center a:hover { opacity: 0.5; }
.nav-arr { font-size: 9px; opacity: 0.45; margin-left: -4px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-burger {
  width: 36px;
  height: 36px;
  display: none; /* mobile only — shown via @media query */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.18s;
}
.nav-burger:hover { border-color: rgba(17,17,17,0.28); }
.nav-burger span {
  display: block;
  width: 13px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.32s var(--ease), opacity 0.2s var(--ease);
}
/* Burger → X when menu is open */
.nav-burger.is-open span:first-child {
  transform: translateY(2.75px) rotate(45deg);
}
.nav-burger.is-open span:last-child {
  transform: translateY(-2.75px) rotate(-45deg);
}

/* Mobile slide-down menu — floating card that drops below the pill nav */
.mobile-menu {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 82px);
  left: 14px;
  right: 14px;
  z-index: 99;
  background: var(--bone);
  border: 1px solid rgba(24,22,19,0.08);
  border-radius: 22px;
  box-shadow: 0 22px 50px -18px rgba(0,0,0,0.18),
              0 4px 12px -4px rgba(0,0,0,0.08);
  padding: 14px 24px 28px;
  transform: translateY(-12px);
  transition: transform 0.4s var(--ease), opacity 0.32s var(--ease);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
/* Hide last border on items when in floating card */
.mobile-menu a:last-of-type {
  border-bottom: none;
}
.mobile-menu a {
  display: block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid rgba(24,22,19,0.08);
  transition: padding-left 0.28s var(--ease), opacity 0.2s;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  padding-left: 12px;
}
.mobile-menu a em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-med);
  margin-left: 4px;
}
.mobile-menu .mobile-cta {
  margin-top: 18px;
  display: inline-flex;
  align-self: flex-start;
  background: #fde795;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: none;
}
.mobile-menu .mobile-cta:hover {
  padding-left: 26px;
}
body.menu-open {
  overflow: hidden;
}

/* ===================================================================
   §01 WHO WE ARE — Editorial hero
   =================================================================== */
/* ===================================================================
   §00 HERO — from Olla Hero.html design
   =================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #2c2a27;
}
/* (No watermark overlay needed — the hero-media uses transform: scale(1.08)
    anchored at top to push the KlingAI watermark below the visible area.) */
/* Filmic vignette — keeps overlays readable */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 35%, transparent 35%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, transparent 14%, transparent 78%, rgba(0,0,0,0.22) 100%);
  z-index: 2;
}
.hero-section .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  /* scale up slightly + anchor at top → pushes bottom (with KlingAI watermark)
     out of the section's overflow:hidden visible area */
  transform: translateZ(0) scale(1.08);
  transform-origin: center top;
  will-change: transform;
  filter: contrast(1.05) saturate(1.08) brightness(1.01);
}
/* Loading fallback gradient while video fetches */
.hero-section[data-loaded="false"] .hero-fallback { opacity: 1; }
.hero-section[data-loaded="true"] .hero-fallback { opacity: 0; pointer-events: none; }
.hero-fallback {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
  background:
    radial-gradient(60% 70% at 40% 60%, #6b5443 0%, #3a2d24 45%, #1e1612 100%),
    #1e1612;
  z-index: 1;
  pointer-events: none;
}
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 2.6vw, 40px) clamp(24px, 4.2vw, 64px);
  z-index: 5;
}
.navbar .logo {
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #f3ece0;
  text-shadow: 0 1px 16px rgba(0,0,0,0.22);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  font-size: clamp(13px, 1.05vw, 16px);
  color: rgba(248,242,232,0.94);
  font-weight: 400;
}
.nav-links a {
  text-shadow: 0 1px 12px rgba(0,0,0,0.22);
  transition: color 240ms ease, opacity 240ms ease;
}
.nav-links a:hover { color: #ffffff; }
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fde795;
  color: #181613;
  padding: clamp(13px, 1.1vw, 17px) clamp(20px, 1.9vw, 30px) clamp(14px, 1.15vw, 18px);
  border-radius: 999px;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-shadow: none;
  line-height: 1;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,0.38);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.btn-book:hover { transform: translateY(-1px); }
@keyframes cta-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.cta-circle {
  position: absolute;
  right: clamp(28px, 6vw, 120px);
  bottom: clamp(48px, 12vh, 180px);
  width: clamp(96px, 9.5vw, 150px);
  height: clamp(96px, 9.5vw, 150px);
  border-radius: 50%;
  background: #ffeaa5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: -0.005em;
  line-height: 1.22;
  color: #181613;
  z-index: 4;
  text-decoration: none;
  box-shadow:
    0 28px 56px -28px rgba(0,0,0,0.40),
    0 2px 6px rgba(0,0,0,0.08);
  animation: cta-float 5.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  transition: transform 520ms cubic-bezier(0.16,1,0.3,1),
              box-shadow 520ms cubic-bezier(0.16,1,0.3,1);
}
.cta-circle:hover {
  animation-play-state: paused;
  transform: scale(1.03) translateY(-3px);
  box-shadow:
    0 52px 96px -32px rgba(0,0,0,0.52),
    0 4px 12px rgba(0,0,0,0.09);
}
.cta-circle .ico { margin-top: 10px; }
.ico {
  display: inline-block;
  vertical-align: baseline;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: square;
  stroke-linejoin: miter;
  shape-rendering: geometricPrecision;
}
.ico-ne    { width: 0.62em; height: 0.62em; transform: translateY(-0.04em); opacity: 0.85; }
.ico-ne-lg { width: 13px; height: 13px; stroke-width: 1; opacity: 0.7; }

.who {
  background: var(--bone);
  padding: 52px 36px 40px;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 52px;
  align-items: center;
}

.who-left { padding-top: 0; }
.who-left .lbl { margin-bottom: 28px; }

.who-h1 {
  font-size: clamp(46px, 5.4vw, 86px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: var(--ink);
  margin-bottom: 22px;
}
.who-h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.who-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-med);
  max-width: 380px;
  margin-bottom: 40px;
}

.who-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.who-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.60;
  transition: opacity 0.18s;
}
.who-play:hover { opacity: 1; }
.who-play-circle {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(17,17,17,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.18s;
}
.who-play:hover .who-play-circle { border-color: rgba(17,17,17,0.45); }

/* Editorial photo mosaic — two independent rows with different col templates */
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-row {
  display: grid;
  gap: 8px;
}

/* ROW 1: portrait | sage block | wide brand photo */
.hero-row-1 {
  grid-template-columns: 205px 130px 1fr;
  height: 245px;
}

/* ROW 2: lavender | laptop | fashion | slim */
.hero-row-2 {
  grid-template-columns: 130px 1fr 1fr 72px;
  height: 210px;
}

.hg {
  border-radius: var(--r-card);
  overflow: hidden;
}

/* Editorial portrait — natural position in row 1 (no spans needed) */
.hg-portrait {
  background: #C8C4BC;
}
.hg-portrait img, .hg-portrait video,
.hg-photo-wide img, .hg-photo-wide video,
.hg-photo-lap img, .hg-photo-lap video,
.hg-photo-fash img, .hg-photo-fash video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1),
              filter 0.6s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
/* Mosaic hover: cell dims, hovered media breathes */
.hero-grid:hover .hg {
  opacity: 0.88;
  transition: opacity 0.45s var(--ease);
}
.hero-grid:hover .hg:hover {
  opacity: 1;
}
.hg:hover .hg-portrait img, .hg:hover .hg-portrait video,
.hg:hover .hg-photo-wide img, .hg:hover .hg-photo-wide video,
.hg:hover .hg-photo-lap img, .hg:hover .hg-photo-lap video,
.hg:hover .hg-photo-fash img, .hg:hover .hg-photo-fash video {
  transform: scale(1.025);
  filter: saturate(1.1) brightness(1.03);
}

/* Text cards */
.hg-block {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hg-block-title {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.38;
  letter-spacing: -0.005em;
}
.hg-arrow-btn {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.38;
  align-self: flex-end;
}

/* Colored blocks — softened palette */
.hg-lavender    { background: #E2DCEC; }
.hg-sage        { background: #D8E2BD; }
.hg-peach       { background: #F5D8C5; } /* soft light peach */
.hg-banana      { background: #F4EAB0; } /* legacy — unused in current layout */

/* Brand collateral photo — fills remainder of row 1 (wide landscape) */
.hg-photo-wide {
  background: #D0CABD;
}

/* Row 2 photo cells */
.hg-photo-lap   { background: #C4BEB6; }
.hg-photo-fash  { background: #BCB6AE; }

/* Row 2 right edge — soft light yellow slim accent */
.hg-slim {
  background: #F4EAB0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: rgba(24,22,19,0.30);
}

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee {
  background: var(--bone);
  border-top: 1px solid rgba(17,17,17,0.08);
  border-bottom: 1px solid rgba(17,17,17,0.08);
  padding: 32px 0;
  margin: 4px 0 56px 0;
  overflow: hidden;
}
.marquee-wrap { display: flex; }
.marquee-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: ticker 36s linear infinite;
  animation-duration: var(--ticker-dur, 36s);
}
/* Hover: decelerate, don't stop */
.marquee:hover .marquee-row {
  --ticker-dur: 90s;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.m-item {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17,17,17,0.62);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}
.m-item::after {
  content: '·';
  position: absolute;
  right: 0;
  font-size: 18px;
  font-weight: 300;
  color: rgba(17,17,17,0.28);
}
.m-item:last-child::after { display: none; }

/* ===================================================================
   §02 OUR IMPACT — Blue rounded container
   =================================================================== */
.impact {
  background: var(--bone);
  padding: 40px 28px 28px;
}

.impact-box {
  max-width: 1480px;
  margin: 0 auto;
  background: #EAF6FB;
  border-radius: var(--r-section);
  padding: 60px 64px 68px;
}

.impact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(24,22,19,0.12);
}
.impact-top .lbl { margin-bottom: 18px; }

.impact-h2 {
  font-size: clamp(28px, 3.4vw, 54px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.024em;
  color: var(--ink);
}
.impact-h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.impact-para {
  font-size: 16px;
  line-height: 1.74;
  color: var(--ink-med);
  max-width: 380px;
  padding-top: 36px;
}

.impact-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.impact-col {
  padding: 0 36px;
  border-right: 1px solid rgba(24,22,19,0.12);
}
.impact-col:first-child { padding-left: 0; }
.impact-col:last-child  { border-right: none; padding-right: 0; }

body.js .impact-col {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
body.js .impact-col.col-on {
  opacity: 1;
  transform: none;
}

.impact-num {
  font-size: 11px;
  font-weight: 400;
  color: rgba(24,22,19,0.42);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.impact-title {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 10px;
}
.impact-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-med);
  margin-bottom: 22px;
}
.impact-arr {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(24,22,19,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: border-color 0.18s, transform 0.28s var(--ease);
}
.impact-arr:hover { border-color: rgba(17,17,17,0.42); transform: translate(2px,-2px); }

/* ===================================================================
   §03 THE SYSTEM — Editorial calendar with sidebar
   =================================================================== */
.system {
  background: var(--bone);
  padding: 130px 36px 110px;
}

.sys-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}

.sys-copy {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sys-copy .lbl { margin-bottom: 30px; }

.sys-h2 {
  font-size: clamp(42px, 5.6vw, 92px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.034em;
  color: var(--ink);
  margin-bottom: 32px;
}
.sys-h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-med);
}

.sys-p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-med);
  margin-bottom: 44px;
  max-width: 540px;
}

/* Calendar card */
.cal-wrap {
  background: #FCFAF6;
  border: 1px solid rgba(24,22,19,0.10);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 40px -14px rgba(0,0,0,0.07);
  transform: translateY(16px) scale(0.989);
  opacity: 0;
  transition: transform 1s var(--ease), opacity 1s var(--ease), box-shadow 1s var(--ease);
}
.system.revealed .cal-wrap {
  transform: translateY(0) scale(1);
  opacity: 1;
  box-shadow: 0 22px 60px -18px rgba(0,0,0,0.10);
}

/* Top bar */
.cal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  height: 40px;
  border-bottom: 1px solid rgba(24,22,19,0.06);
}
.cal-brand-logo {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.cal-brand-label {
  font-size: 11px;
  font-weight: 500;
  color: #E07860;
  margin-left: 6px;
}
.cal-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cal-today-btn {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
}
.cal-search {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  cursor: pointer;
}

/* Body: sidebar + main grid + right panel */
.cal-body {
  display: grid;
  grid-template-columns: 106px 1fr 200px;
}

/* Sidebar */
.cal-sidebar {
  border-right: 1px solid rgba(24,22,19,0.06);
  padding: 8px 0;
}
.cal-nav-item {
  display: block;
  font-size: 9.5px;
  font-weight: 400;
  color: rgba(24,22,19,0.42);
  padding: 4px 9px;
  cursor: pointer;
  transition: color 0.15s;
  border-radius: 0;
}
.cal-nav-item:hover { color: var(--ink); }
.cal-nav-item.active {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 500;
  color: #C4703A;
  background: #F6E7B7;
  border-radius: 20px;
  padding: 3px 9px;
  margin: 2px 5px;
}

/* Main grid */
.cal-main { padding: 14px 14px 0 12px; overflow: hidden; }

.cal-month-hd {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}
.cal-month-name {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cal-month-chevron { font-size: 9px; color: var(--ink-soft); }

/* Fixed-coordinate artboard — one reference frame for labels and tiles */
.cal-artboard {
  position: relative;
  width: 752px;
  height: 540px;
}

/* Weekday labels — aligned to tile column left edges */
.cal-wday {
  position: absolute;
  font-size: 8.5px;
  font-weight: 400;
  color: rgba(24,22,19,0.32);
  letter-spacing: 0.01em;
  text-transform: lowercase;
  top: 14px;
}
.cal-wday-mon { left: 21px; }
.cal-wday-tue { left: 150px; }
.cal-wday-wed { left: 280px; }
.cal-wday-thu { left: 430px; }
.cal-wday-fri { left: 590px; }

/* Tiles — explicit source-of-truth coordinates from control panel */
.cc {
  position: absolute;
  height: 104px;
  padding: 8px 9px;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* tile-pad-x: 9, tile-pad-y: 8 — set via padding above */

/* x / y / w from control panel */
.cc-campaign   { left: 21px;  top: 80px;  width: 120px; }
.cc-collection { left: 280px; top: 80px;  width: 140px; }
.cc-media      { left: 590px; top: 80px;  width: 150px; }
.cc-product    { left: 150px; top: 350px; width: 120px; }
.cc-ugc        { left: 430px; top: 350px; width: 140px; }
.cc-brandvals  { left: 590px; top: 348px; width: 150px; }

.cc-dark   { background: #1A1510; overflow: hidden; padding: 0; }
.cc-dark-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cc-dark-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(0) brightness(0.32) sepia(0.55) contrast(1.2); }
/* Softened card palette */
.cc-blush  { background: #F0C9BC; }
.cc-petal  { background: #DDD6EF; }
.cc-amber  { background: #E8AE9C; }
.cc-yellow { background: #F0DC93; }
.cc-sage   { background: #F0C9BC; }
.cc-bone   { background: rgba(24,22,19,0.04); }

@keyframes cal-emerge {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body.js .cc-blush, body.js .cc-amber, body.js .cc-yellow,
body.js .cc-petal, body.js .cc-bone { opacity: 0; }
body.js .cc-blush.cc-on, body.js .cc-amber.cc-on,
body.js .cc-yellow.cc-on, body.js .cc-petal.cc-on, body.js .cc-bone.cc-on {
  animation: cal-emerge 0.55s var(--ease) both;
}

/* Confetti reveal alias for reduced-motion */


.cc-type {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.22;
  margin-bottom: 2px;
}
.cc-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

/* Right panel */
.cal-right {
  border-left: 1px solid rgba(24,22,19,0.07);
  padding: 11px 10px;
}
.cal-right-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-right-title {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: lowercase;
  color: var(--ink);
}
.cal-right-arr { font-size: 10px; color: var(--ink-soft); }

.cal-today-lbl {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(24,22,19,0.28);
  margin-bottom: 13px;
}
.cal-sched-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 19px;
}
.cal-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--shell);
}
.cal-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.cal-sched-name {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.cal-sched-time {
  font-size: 8px;
  color: var(--ink-soft);
}

/* Calendar placeholder panels */
.cal-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  padding: 24px 16px;
}
.cal-ph-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.cal-ph-sub {
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 220px;
}

/* ===================================================================
   VIEW STATES — overview · campaigns · assets · analytics
   OLLA Brand Kit as constraint. Editorial, asymmetric, premium.
   =================================================================== */

@keyframes view-enter {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: none; }
}

/* ── OVERVIEW — Studio Briefing Board ── */
.ov-wrap {
  display: flex;
  flex-direction: column;
  animation: view-enter 0.32s cubic-bezier(0.16,1,0.3,1) both;
}
.ov-hero {
  display: grid;
  grid-template-columns: 1fr 120px;
  padding: 13px 12px 12px;
  border-bottom: 1px solid rgba(24,22,19,0.06);
  gap: 0;
}
.ov-hero-left {
  display: flex;
  flex-direction: column;
  padding-right: 14px;
}
.ov-week {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 11px;
}
.ov-statement {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--ink);
  flex: 1;
  margin-bottom: 13px;
}
.ov-statement em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-med);
  letter-spacing: -0.01em;
}
.ov-live {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ov-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C4703A;
  flex-shrink: 0;
}
.ov-live-text { font-size: 8px; color: var(--ink-soft); }

/* Right column: stage markers */
.ov-markers {
  border-left: 1px solid rgba(24,22,19,0.06);
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ov-marker {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding-left: 8px;
}
.ov-m-plan    { border-left: 2px solid var(--butter); }
.ov-m-create  { border-left: 2px solid var(--matcha); }
.ov-m-publish { border-left: 2px solid var(--coral); }
.ov-m-measure { border-left: 2px solid var(--lilac); }
.ov-m-num {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  min-width: 14px;
}
.ov-m-tag {
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* Timeline strip */
.ov-timeline { padding: 9px 12px 8px; }
.ov-tl-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.ov-tl-days::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 4px;
  right: 4px;
  height: 1px;
  background: rgba(24,22,19,0.09);
  pointer-events: none;
}
.ov-tl-day {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.ov-tl-name {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(24,22,19,0.3);
  text-transform: lowercase;
}
.ov-tl-today .ov-tl-name { color: var(--ink); font-weight: 700; }
.ov-tl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(24,22,19,0.08);
  border: 1.5px solid rgba(24,22,19,0.13);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ov-tl-done   { background: rgba(24,22,19,0.26); border-color: rgba(24,22,19,0.26); }
.ov-tl-active { background: #C4703A; border-color: #C4703A; box-shadow: 0 0 0 3px rgba(196,112,58,0.14); }
.ov-tl-note { font-size: 7px; color: rgba(24,22,19,0.38); }
.ov-tl-today .ov-tl-note { color: var(--ink-soft); }

/* ── CAMPAIGNS — Creative Planning Wall ── */
.cp-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
  animation: view-enter 0.32s cubic-bezier(0.16,1,0.3,1) both;
  padding: 2px 0;
}
.cp-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(24,22,19,0.06);
}
.cp-eyebrow-label {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cp-eyebrow-count { font-size: 7.5px; color: var(--ink-soft); }

/* Hero campaign — featured */
.cp-hero {
  padding: 11px 13px 10px;
  border-radius: 9px;
  background: rgba(236,208,122,0.09);
  border-top: 2.5px solid var(--butter);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cp-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1px;
}
.cp-hero-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.1;
}
.cp-hero-status {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A6820;
  padding-top: 2px;
}
.cp-hero-brand { font-size: 8px; color: var(--ink-soft); }
.cp-hero-note {
  font-size: 8.5px;
  font-style: italic;
  color: var(--ink-med);
  line-height: 1.5;
  padding: 6px 0 5px;
  border-top: 1px solid rgba(24,22,19,0.06);
  border-bottom: 1px solid rgba(24,22,19,0.06);
  margin: 2px 0;
}
.cp-track {
  height: 1.5px;
  background: rgba(24,22,19,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 3px 0 1px;
}
.cp-fill { height: 100%; background: rgba(24,22,19,0.3); border-radius: 2px; }
.cp-hero-dates { font-size: 7.5px; color: var(--ink-soft); }

/* Supporting campaigns — 2 col */
.cp-supporting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.cp-support-card {
  padding: 10px 11px 9px;
  border-radius: 9px;
  background: rgba(24,22,19,0.018);
  border-top: 2px solid rgba(24,22,19,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-support-build { border-top-color: var(--matcha); }
.cp-support-brief { border-top-color: var(--ash); }
.cp-support-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp-support-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cp-support-name-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
}
.cp-support-status {
  font-size: 7px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.cp-support-brand { font-size: 7.5px; color: var(--ink-soft); }
.cp-support-dates { font-size: 7px; color: var(--ink-soft); margin-top: 1px; }

/* ── ASSETS — Creative Director's Light Table ── */
.as-wrap {
  display: flex;
  flex-direction: column;
  gap: 9px;
  animation: view-enter 0.32s cubic-bezier(0.16,1,0.3,1) both;
  padding: 2px 0;
}
.as-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(24,22,19,0.06);
}
.as-header-label {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.as-header-sep { color: rgba(24,22,19,0.2); font-size: 8px; }
.as-chips {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.as-chip {
  font-size: 7.5px;
  font-weight: 400;
  color: var(--ink-soft);
  padding: 1.5px 7px;
  border-radius: 999px;
  cursor: pointer;
}
.as-chip-on { font-weight: 600; color: var(--ink); background: rgba(24,22,19,0.07); }
.as-count-lbl { font-size: 7.5px; color: var(--ink-soft); margin-left: auto; }

/* Contact sheet — asymmetric grid */
.as-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 5px;
}
.as-hero-item {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.as-hero-img {
  width: 100%;
  flex: 1;
  min-height: 167px;
  border-radius: 9px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85);
  display: block;
  border: 1.5px solid var(--butter);
  box-sizing: border-box;
  transition: filter 0.22s;
}
.as-hero-item:hover .as-hero-img { filter: saturate(1.05); }
.as-hero-type {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.8;
  display: block;
}
.as-hero-title {
  font-size: 8px;
  font-weight: 500;
  color: var(--ink-med);
  display: block;
}
.as-item { display: flex; flex-direction: column; gap: 3px; }
.as-img {
  width: 100%;
  height: 78px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72);
  display: block;
  transition: filter 0.22s;
}
.as-item:hover .as-img { filter: saturate(0.92); }
.as-item-type {
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}
.as-item-title { font-size: 7px; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── ANALYTICS — Performance Memo ── */
.an-wrap {
  display: flex;
  flex-direction: column;
  animation: view-enter 0.32s cubic-bezier(0.16,1,0.3,1) both;
}
.an-header {
  padding: 12px 12px 10px;
  border-bottom: 1px solid rgba(24,22,19,0.06);
}
.an-period {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 9px;
}
.an-headline {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
}
.an-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-med);
  letter-spacing: 0;
}
.an-trend {
  padding: 8px 12px 6px;
  border-bottom: 1px solid rgba(24,22,19,0.06);
}
.an-trend-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}
.an-trend-day {
  font-size: 6.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(24,22,19,0.28);
  text-transform: lowercase;
}
.an-trend-today { color: var(--ink-soft); font-weight: 700; }
.an-trend-svg { display: block; width: 100%; overflow: visible; }
.an-signals {
  padding: 9px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.an-signal { display: flex; align-items: flex-start; gap: 7px; }
.an-signal-icon {
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.52;
}
.an-sig-up   { color: #7A8F6A; }
.an-sig-flat { color: var(--ink-soft); }
.an-signal-text { font-size: 8.5px; line-height: 1.55; color: var(--ink-med); }
.an-signal-text strong { font-weight: 600; color: var(--ink); }
.an-footnote {
  padding: 0 12px 8px;
  font-size: 7px;
  font-style: italic;
  color: rgba(24,22,19,0.28);
}

/* Search input in topbar */
.cal-search-input {
  display: none;
  height: 24px;
  border: 1px solid rgba(24,22,19,0.18);
  border-radius: 12px;
  background: transparent;
  padding: 0 10px;
  font-size: 11px;
  font-family: var(--sans);
  color: var(--ink);
  outline: none;
  width: 110px;
  transition: width 0.2s var(--ease), opacity 0.15s;
}
.cal-search-input::placeholder { color: var(--ink-soft); }
.cal-search-input.search-open { display: block; }

/* ===================================================================
   §04 BRANDS — Banana yellow container
   =================================================================== */
/* ===================================================================
   BRIDGE — quiet editorial moment between §03 system and §04 brands
   =================================================================== */
.brand-bridge {
  background: var(--bone);
  padding: 100px 36px 85px;
  text-align: center;
}

.bridge-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bridge-lbl {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.bridge-lbl::before,
.bridge-lbl::after {
  content: '';
  width: 44px;
  height: 1px;
  background: rgba(24,22,19,0.22);
}

.bridge-statement {
  font-family: var(--sans);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.032em;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
}
.bridge-statement em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-med);
}

/* Subtitle — adds context after the headline */
.bridge-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-med);
  max-width: 580px;
  margin: 32px auto 0;
}
.bridge-sub em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}

/* Industry pills — soft, editorial, fills the negative space below the headline */
.bridge-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 44px auto 0;
  padding: 0;
  max-width: 760px;
}
.bridge-cats li {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-med);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(24, 22, 19, 0.10);
  border-radius: 999px;
  padding: 8px 16px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.bridge-cats li:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(24, 22, 19, 0.22);
  color: var(--ink);
}

@media (max-width: 540px) {
  .bridge-sub { margin-top: 24px; font-size: 15px; }
  .bridge-cats { margin-top: 32px; gap: 7px; }
  .bridge-cats li { font-size: 10.5px; padding: 6px 12px; }
}

.brands {
  background: var(--bone);
  padding: 28px 36px;
}

.brands-box {
  max-width: 1480px;
  margin: 0 auto;
  background: #FFE8A8;
  border-radius: var(--r-section);
  padding: 56px 52px 40px;
}

.brands-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(24,22,19,0.12);
  margin-bottom: 0;
}

body.js .brand-item {
  opacity: 0;
  transition: opacity 0.75s var(--ease);
}
body.js .brand-item.brand-on { opacity: 1; }

.brands-list:hover .brand-item          { opacity: 0.35; }
.brands-list:hover .brand-item:hover    { opacity: 1; }
body.js .brands-list:hover .brand-item.brand-on          { opacity: 0.35; }
body.js .brands-list:hover .brand-item.brand-on:hover    { opacity: 1; }

.brand-item {
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(24,22,19,0.10);
}
.brand-item:last-child { border-bottom: none; }

/* Make each brand row a clickable link that scrolls to its work block */
.brand-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  color: inherit;
  cursor: pointer;
  transition: padding-left 0.32s var(--ease);
}
.brand-link:hover {
  padding-left: 12px;
}
.brand-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
  border-radius: 4px;
}

.brand-name {
  font-size: clamp(24px, 3.0vw, 46px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.brand-name.serif-it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 50px);
  letter-spacing: -0.015em;
}

.brand-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.brand-cat {
  font-size: 11px;
  font-weight: 500;
  color: rgba(17,17,17,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-tag {
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(24,22,19,0.52);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(24,22,19,0.20);
  padding: 4px 11px;
  border-radius: 4px;
  transition: border-color 0.18s;
}
/* Signal-colored status pills per brand kit */
.brand-tag-ongoing {
  color: var(--coral);
  border-color: rgba(232,138,111,0.45);
}
.brand-tag-active {
  color: #6B5AA6;
  border-color: rgba(198,188,230,0.7);
}
.brand-item:hover .brand-tag { border-color: rgba(24,22,19,0.42); }

/* ===================================================================
   §05 CTA — compact 2-col horizontal
   =================================================================== */
.cta {
  background: var(--bone);
  padding: 48px 36px 36px;
}

.cta-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.cta-left .lbl { margin-bottom: 20px; }

.cta-h2 {
  font-size: clamp(36px, 4.8vw, 70px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.cta-h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

@keyframes cta-word-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.js .cta-h2 .cw {
  display: inline-block;
  opacity: 0;
  animation: cta-word-in 0.8s var(--ease) both;
  animation-play-state: paused;
}
body.js .cta-h2 .cw.cw-on { animation-play-state: running; }

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-email {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-med);
  border-bottom: 1px solid rgba(24,22,19,0.20);
  padding-bottom: 2px;
  transition: color 0.18s;
}
.cta-email:hover { color: var(--ink); border-color: var(--ink); }

.cta-sub {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(24,22,19,0.42);
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  background: var(--bone);
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.foot-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.foot-links a {
  font-size: 11.5px;
  color: rgba(17,17,17,0.42);
  transition: color 0.18s;
}
.foot-links a:hover { color: var(--ink); }
.foot-copy {
  font-size: 11.5px;
  color: rgba(17,17,17,0.32);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 960px) {
  /* Mobile fixed nav — floating pill that doesn't touch screen edges */
  .nav {
    top: calc(env(safe-area-inset-top, 0px) + 14px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: none;
    padding: 0 20px 0 22px;
    height: 56px;
    border: 1px solid transparent;
    border-radius: 999px;
  }
  .nav.nav-scrolled {
    background: rgba(241,236,228,0.55);
    backdrop-filter: blur(24px) saturate(1.7);
    -webkit-backdrop-filter: blur(24px) saturate(1.7);
    border-color: rgba(255,255,255,0.32);
    border-bottom: 1px solid rgba(255,255,255,0.32);
    box-shadow: 0 14px 38px -14px rgba(0,0,0,0.14),
                0 2px 6px -2px rgba(0,0,0,0.06);
  }
  .nav-center { display: none; }
  .nav-burger { display: flex; } /* show hamburger only on mobile */

  /* Hero internal navbar — hide text links on mobile, keep only the book-a-call button */
  .navbar { padding: 18px 22px; }
  .nav-links { gap: 12px; }
  .nav-links a:not(.btn-book) { display: none; }

  /* Hero on mobile — keep the video, but use the billboard image as fallback
     so there's no brown flash before the video loads */
  .hero-section {
    background-color: #aea295; /* warm gray, matches billboard wall */
    background-image: url('../assets/hero-billboard-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  /* Adjust video framing on mobile so the "olla." billboard text stays in view */
  .hero-section .hero-media {
    object-position: 22% center;
    transform: translateZ(0); /* remove the 1.08 scale that crops too much on narrow screens */
  }

  .video-hero { height: 100dvh; }
  .who { padding: 48px 20px 64px; min-height: unset; }
  .who-inner { grid-template-columns: 1fr; gap: 40px; }
  .who-body { max-width: 100%; }

  /* §01 Mosaic — collapse the two-row structure into a single 2-col grid on mobile.
     display:contents on the row wrappers lets tiles flow as direct grid children. */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 8px;
    max-width: 100%;
    margin: 0;
  }
  .hero-row-1,
  .hero-row-2 {
    display: contents;
  }
  .hero-row-1 > .hg,
  .hero-row-2 > .hg {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  /* Mobile-only swap: lavender block ↔ brand-wide video
     (lavender moves to left, video moves to right) */
  .hg-portrait      { order: 1; }
  .hg-block.hg-sage { order: 2; }
  .hg-block.hg-lavender { order: 3; }
  .hg-photo-wide    { order: 4; }
  .hg-photo-lap     { order: 5; }
  .hg-block.hg-peach { order: 6; }
  /* slim accent feels redundant in tight mobile grid */
  .hg-slim { display: none; }

  .impact { padding: 12px 16px 20px; }
  .impact-box { padding: 36px 24px 40px; }
  .impact-top { grid-template-columns: 1fr; gap: 20px; }
  .impact-cols { grid-template-columns: 1fr 1fr; }
  .impact-col { padding: 0 20px 28px; }
  .impact-col:first-child { padding-left: 0; }
  .impact-col:nth-child(2n) { border-right: none; }
  .impact-col:nth-child(n+3) {
    border-top: 1px solid rgba(24,22,19,0.10);
    padding-top: 28px;
  }
  .impact-col:nth-child(3) { padding-left: 0; }

  .system { padding: 56px 20px 40px; }
  .sys-inner { grid-template-columns: 1fr; gap: 36px; }
  .cal-body { grid-template-columns: 80px 1fr; }
  .cal-nav-item.active { margin: 2px 6px; }
  .cal-right { display: none; }

  .brands { padding: 20px 20px; }
  .brands-box { padding: 32px 20px 24px; }
  .brand-cat { display: none; }
  .brand-tag { display: none; }
  .brands-list:hover .brand-item { opacity: 1; }
  .brands-list:hover .brand-item:hover { opacity: 1; }
  body.js .brands-list:hover .brand-item.brand-on { opacity: 1; }
  body.js .brands-list:hover .brand-item.brand-on:hover { opacity: 1; }

  .cta { padding: 40px 20px 32px; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .cta-actions { flex-direction: column; align-items: flex-start; gap: 16px; }

  footer {
    padding: 20px;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .foot-links { flex-wrap: wrap; justify-content: center; }
}

/* ===================================================================
   §03 OLLA DEMO — auto-playing animated product demonstration
   =================================================================== */
.olla-demo {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #FCFAF6;
  border: 1px solid rgba(24,22,19,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px -14px rgba(0,0,0,0.07);
  transform: translateY(16px) scale(0.989);
  opacity: 0;
  transition: transform 1s var(--ease), opacity 1s var(--ease), box-shadow 1s var(--ease);
}
.system.revealed .olla-demo {
  transform: translateY(0) scale(1);
  opacity: 1;
  box-shadow: 0 22px 60px -18px rgba(0,0,0,0.10);
}

/* Top bar */
.od-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  height: 48px;
  border-bottom: 1px solid rgba(24,22,19,0.05);
}
.od-logo {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.od-logo-dot { color: #ECD07A; }
.od-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.od-meta .od-brand {
  font-weight: 500;
  color: var(--ink-med);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.od-meta .od-brand em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-left: 1px;
}
.od-meta-dot { color: rgba(24,22,19,0.25); }
.od-week {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

/* Stage — fixed height container that holds all scenes layered */
.od-stage {
  position: relative;
  min-height: 560px;
  padding: 40px 44px;
}
@media (max-width: 1100px) {
  .od-stage { min-height: 520px; padding: 32px 28px; }
  .od-scene { inset: 32px 28px; }
}

/* Scenes layered, only one visible at a time */
.od-scene {
  position: absolute;
  inset: 40px 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.od-scene.is-on {
  opacity: 1;
}

/* ── Shared scene typography ── */
.od-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.od-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B8B691;
}
.od-h {
  font-family: var(--sans);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
}
.od-h em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* ── SCENE 1: form ── */
.od-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.od-field {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(24,22,19,0.06);
}
.od-fnum {
  font-size: 10px;
  font-weight: 400;
  color: rgba(24,22,19,0.32);
  padding-top: 3px;
}
.od-fbody {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.od-flbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-med);
}
.od-fval {
  display: inline-block;
  min-height: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-right: 1.5px solid transparent;
  padding-right: 2px;
}
.od-fval.is-typing {
  border-right-color: var(--ink);
  animation: od-caret 0.7s steps(2) infinite;
}
@keyframes od-caret {
  50% { border-right-color: transparent; }
}

.od-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.od-chip {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ink-med);
  background: transparent;
  border: 1px solid rgba(24,22,19,0.12);
  border-radius: 999px;
  padding: 5px 12px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.od-chip.is-on {
  background: #F0C9BC;
  border-color: transparent;
  color: var(--ink);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}
.od-chip.is-on::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.od-rhythm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 380px;
}
.od-rcard {
  font-size: 11.5px;
  color: var(--ink-med);
  background: rgba(24,22,19,0.025);
  border: 1px solid rgba(24,22,19,0.08);
  border-radius: 8px;
  padding: 8px 10px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.od-rcard.is-on {
  background: #F4E7B0;
  border-color: rgba(24,22,19,0.18);
  color: var(--ink);
  font-weight: 500;
}

/* ── SCENE 2: sensing ── */
.od-scene-sense {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.od-scene-sense .od-eyebrow { margin-bottom: 12px; }
.od-scene-sense .od-h { margin-bottom: 36px; }

.od-swatches {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 200px;
  margin-bottom: 32px;
}
.od-sw {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.18);
}
.od-sw-1 { background: #F2C2A8; top: 16px;  left: 8%;   transform: rotate(-8deg); }
.od-sw-2 { background: #C5D29A; top: 6px;   right: 12%; transform: rotate(6deg); }
.od-sw-3 { background: #BBD0DC; top: 110px; left: 22%;  transform: rotate(-4deg); }
.od-sw-4 { background: #ECD07A; top: 130px; right: 28%; transform: rotate(10deg); }
.od-sw-5 { background: #E8B6A0; top: 70px;  left: 44%;  transform: rotate(-2deg); }
.od-sw-6 { background: #DDD6EF; top: 30px;  right: 38%; transform: rotate(8deg); }

.od-scene-sense.is-on .od-sw {
  animation: od-sw-in 0.7s var(--ease) both, od-sw-float 4s var(--ease) infinite 0.7s alternate;
}
.od-scene-sense.is-on .od-sw-1 { animation-delay: 0.0s,  0.7s; }
.od-scene-sense.is-on .od-sw-2 { animation-delay: 0.08s, 0.78s; }
.od-scene-sense.is-on .od-sw-3 { animation-delay: 0.16s, 0.86s; }
.od-scene-sense.is-on .od-sw-4 { animation-delay: 0.24s, 0.94s; }
.od-scene-sense.is-on .od-sw-5 { animation-delay: 0.32s, 1.02s; }
.od-scene-sense.is-on .od-sw-6 { animation-delay: 0.40s, 1.10s; }

@keyframes od-sw-in {
  from { opacity: 0; transform: scale(0.6) rotate(0deg); }
}
@keyframes od-sw-float {
  to { transform: translateY(-4px) rotate(var(--r, 0deg)); }
}

.od-stags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 520px;
}
.od-stag {
  font-size: 11px;
  color: var(--ink-med);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(24,22,19,0.08);
  border-radius: 999px;
  padding: 6px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.od-stag em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  margin-right: 6px;
}
.od-scene-sense.is-on .od-stag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.od-scene-sense.is-on .od-stag:nth-child(2) { transition-delay: 0.75s; }
.od-scene-sense.is-on .od-stag:nth-child(3) { transition-delay: 0.9s; }

/* ── SCENE 3: composed post ── */
.od-scene-post {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.od-card {
  position: relative;
  width: 280px;
  height: 360px;
  border-radius: 22px;
  background: linear-gradient(160deg, #F2C2A8 0%, #E6A88A 100%);
  box-shadow: 0 24px 60px -22px rgba(196,112,58,0.45),
              0 4px 14px -6px rgba(196,112,58,0.18);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}
.od-scene-post.is-on .od-card {
  transform: scale(1);
  opacity: 1;
}
.od-card-brand {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.72);
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.5s;
}
.od-scene-post.is-on .od-card-brand { opacity: 1; }

.od-card-copy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.32;
  color: #FFFFFF;
  letter-spacing: 0.005em;
  min-height: 90px;
}

.od-state-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-med);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(24,22,19,0.08);
  border-radius: 999px;
  padding: 7px 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.od-state-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(24,22,19,0.25);
  transition: background 0.4s var(--ease);
}
.od-scene-post.is-done .od-state-pill {
  opacity: 1;
  transform: translateY(0);
}
.od-scene-post.is-done .od-state-dot {
  background: #B8B691;
}

/* ── SCENE 4: workspace / your weeks ── */
.od-scene-week {
  display: flex;
  flex-direction: column;
}
.od-ws-hd {
  margin-bottom: 22px;
}
.od-ws-hd-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.od-ws-title {
  margin-bottom: 0;
}
.od-ws-sub {
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.od-ws-sub em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 13px;
  margin: 0 1px;
}

.od-ws-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(24,22,19,0.06);
  padding-top: 16px;
}
.od-ws-row {
  display: grid;
  grid-template-columns: 14px minmax(170px, 1fr) minmax(180px, 1.4fr);
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.od-ws-row.is-shown {
  opacity: 1;
  transform: translateY(0);
}
.od-ws-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.od-ws-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.od-ws-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.od-ws-name em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-med);
  margin-left: 2px;
}
.od-ws-meta {
  font-size: 11px;
  color: var(--ink-soft);
}
.od-ws-meta em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 12px;
  margin: 0 1px;
}

.od-ws-track {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 4px;
}
.od-ws-tile {
  height: 22px;
  border-radius: 4px;
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: bottom;
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
  transition-delay: calc(var(--i, 0) * 38ms);
}
.od-ws-tile-empty {
  background: transparent;
  border: 1px dashed rgba(24,22,19,0.12);
}
.od-ws-row.is-shown .od-ws-tile {
  opacity: 1;
  transform: scaleY(1);
}

/* New post tile — soft pulse to call it out as just-composed */
.od-ws-row.is-shown .od-ws-tile-new {
  animation: od-tile-pulse 1.4s var(--ease) calc(var(--i, 0) * 38ms + 0.4s) 2;
  box-shadow: 0 0 0 0 rgba(196,112,58,0.32);
}
@keyframes od-tile-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(196,112,58,0.45); transform: scaleY(1); }
  40%  { box-shadow: 0 0 0 6px rgba(196,112,58,0);    transform: scaleY(1.08); }
  100% { box-shadow: 0 0 0 0   rgba(196,112,58,0);    transform: scaleY(1); }
}

/* Mobile fallback — keep stage shorter, smaller card */
@media (max-width: 720px) {
  .od-stage { min-height: 480px; padding: 24px 18px; }
  .od-scene { inset: 24px 18px; }
  .od-card  { width: 240px; height: 320px; }
  .od-card-copy { font-size: 15px; }
  .od-fields { gap: 10px; }
  .od-field  { padding: 8px 0; }
  .od-h { font-size: 19px; margin-bottom: 18px; }
  .od-swatches { max-width: 320px; height: 170px; }
  .od-ws-row { grid-template-columns: 12px 1fr; row-gap: 8px; }
  .od-ws-row .od-ws-track { grid-column: 1 / -1; }
  .od-ws-hd-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ===================================================================
   §05 WORK — per-brand showcase areas
   Each .wb is one brand's section; links from §04 scroll to its id
   .wb-tile is a placeholder — replace contents with <video> or <img>
   =================================================================== */
.work {
  background: var(--bone);
  padding: 110px 36px 100px;
}

.work-inner {
  max-width: 1480px;
  margin: 0 auto;
}

.work-hd {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 96px;
}
.work-hd .lbl { margin-bottom: 28px; }

.work-intro {
  font-size: 16px;
  line-height: 1.74;
  color: var(--ink-med);
  margin: 28px auto 0;
  max-width: 560px;
}

/* Active-page indicator in nav on standalone pages */
.nav-current {
  position: relative;
}
.nav-current::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--ink);
  opacity: 0.65;
}

/* Work page — ensure top breathing room since there's no hero pushing nav down */
body.page-work .work {
  padding-top: 140px;
}

.work-h2 {
  font-family: var(--sans);
  font-size: clamp(44px, 5.2vw, 80px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: var(--ink);
}
.work-h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-med);
}

.work-blocks {
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.wb {
  scroll-margin-top: 80px; /* offset for fixed nav when jumping to anchor */
}

.wb-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 22px;
  padding-bottom: 22px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(24,22,19,0.10);
}
.wb-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  font-feature-settings: "tnum" 1;
}
.wb-name {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.wb-name.serif-it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 52px);
  letter-spacing: -0.015em;
}
.wb-meta {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

.wb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
/* Modifier — 4 tiles in one row (for brands with 4 content pieces) */
.wb-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.wb-grid-4 .wb-tile {
  aspect-ratio: 9 / 16; /* Reels / vertical IG format — fits 4 narrower tiles */
}
@media (max-width: 900px) {
  .wb-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* Placeholder tile — replace content with <video> or <img> later */
.wb-tile {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(24,22,19,0.04) 0%, rgba(24,22,19,0.08) 100%),
    var(--atelier);
  border: 1px dashed rgba(24,22,19,0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wb-tile::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 200;
  color: rgba(24,22,19,0.18);
  pointer-events: none;
}
.wb-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -14px rgba(0,0,0,0.12);
}

/* When real media is inside, hide the placeholder cue */
.wb-tile:has(video),
.wb-tile:has(img) {
  background: var(--atelier);
  border-style: solid;
  border-color: rgba(24,22,19,0.06);
}
.wb-tile:has(video)::after,
.wb-tile:has(img)::after {
  display: none;
}
.wb-tile video,
.wb-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile responsive */
@media (max-width: 720px) {
  .work { padding: 70px 20px 60px; }
  .work-hd { margin-bottom: 56px; }
  .work-blocks { gap: 56px; }
  .wb-head {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }
  .wb-meta {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: 4px;
  }
  .wb-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ===================================================================
   BOOK-A-CALL MODAL — opens from any .btn-pill that triggers booking
   =================================================================== */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.book-modal.is-open {
  display: flex;
}

.book-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 19, 0.55);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}
.book-modal.is-open .book-modal-backdrop {
  opacity: 1;
}

.book-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 80px);
  overflow-y: auto;
  background: var(--bone);
  border-radius: 22px;
  padding: 44px 44px 36px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.32),
              0 8px 28px -10px rgba(0,0,0,0.18);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.book-modal.is-open .book-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.book-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-med);
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.book-modal-close:hover {
  background: rgba(24, 22, 19, 0.06);
  color: var(--ink);
}

.book-modal-card .lbl {
  margin-bottom: 14px;
}

.book-modal-h {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 12px;
}
.book-modal-h em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-med);
}

.book-modal-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-med);
  margin-bottom: 28px;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.book-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.book-field-lbl {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.book-field input,
.book-field textarea {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(24,22,19,0.18);
  padding: 8px 0 10px;
  outline: none;
  resize: none;
  transition: border-color 0.2s var(--ease);
}
.book-field textarea {
  min-height: 64px;
  line-height: 1.55;
}
.book-field input:focus,
.book-field textarea:focus {
  border-bottom-color: var(--ink);
}
.book-field input::placeholder,
.book-field textarea::placeholder {
  color: rgba(24,22,19,0.30);
}

.book-submit {
  margin-top: 10px;
  align-self: flex-start;
  font-size: 14px;
  padding: 12px 26px;
}

/* Success state (shown after form submit) */
.book-success {
  text-align: left;
  padding: 8px 0;
}
.book-success .lbl { margin-bottom: 12px; }
.book-success h3 {
  font-family: var(--sans);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 600;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 8px;
}
.book-success p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-med);
}

/* Lock body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 540px) {
  .book-modal-card { padding: 36px 26px 28px; border-radius: 18px; }
  .book-modal-close { top: 10px; right: 10px; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-row { animation: none; }
  body.js .will-reveal  { opacity: 1 !important; transform: none !important; }
  body.js .brands-fade,
  body.js .cta-fade     { opacity: 1 !important; }
  body.js .impact-col   { opacity: 1 !important; transform: none !important; }
  body.js .brand-item   { opacity: 1 !important; }
  body.js .cc-blush, body.js .cc-amber, body.js .cc-yellow,
  body.js .cc-petal, body.js .cc-bone { opacity: 1 !important; }
  body.js .cta-h2 .cw { opacity: 1 !important; transform: none !important; }
  /* Olla demo — show final composed-post scene as a static snapshot */
  .od-scene { opacity: 0 !important; }
  .od-scene-post { opacity: 1 !important; }
  .od-scene-post .od-card { opacity: 1 !important; transform: none !important; }
  .od-scene-post .od-card-brand { opacity: 1 !important; }
  .od-scene-post .od-state-pill { opacity: 1 !important; transform: none !important; }
  .od-scene-post .od-state-dot  { background: #B8B691 !important; }
}

