/* =========================================================
   RESOLUTE MEDIA — site styles
   Palette, type, motion primitives, loader, page chrome.
   ========================================================= */

:root {
  --moonless:    #0E0E0C;
  --bone:        #EDEAE6;
  --bone-warm:   #E5E1DB;
  --bone-cool:   #E9E5DF;
  --deep-navy:   #0F223A;
  --muted-navy:  #2F466F;
  --smoke:       #6F6F68;
  --mist:        #C5C1B9;

  --display: 'Archivo Black', system-ui, sans-serif;
  --serif:   'Fraunces', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --max:    1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(120px, 16vh, 220px);

  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-curtain: cubic-bezier(0.86, 0, 0.07, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bone);
  color: var(--moonless);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}

a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; color: inherit; }
img, svg, video { display: block; max-width: 100%; }

/* italic helpers */
.italic { font-family: var(--serif); font-style: italic; font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 100; }

/* =========================================================
   FILM GRAIN OVERLAY — subtle texture across whole page
   ========================================================= */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
.grain.dark { mix-blend-mode: screen; opacity: 0.06; }

/* =========================================================
   CURSOR
   ========================================================= */
.cursor {
  position: fixed; width: 6px; height: 6px;
  background: var(--moonless); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform .2s var(--ease), opacity .2s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--moonless); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform .4s var(--ease), width .3s var(--ease), height .3s var(--ease), border-color .25s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor.hover { transform: translate(-50%, -50%) scale(0); }
.cursor-ring.hover { width: 72px; height: 72px; border-color: var(--muted-navy); }

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--deep-navy); z-index: 200;
  transform-origin: left center; transform: scaleX(0);
  transition: transform .08s linear;
}

/* =========================================================
   LOGO LOADER — full-screen intro + transition curtain
   ========================================================= */
.loader {
  position: fixed; inset: 0;
  background: var(--moonless);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.loader.is-leaving {
  animation: curtainUp 1.05s var(--ease-curtain) forwards;
}
.loader.is-entering {
  animation: curtainDown 0.65s var(--ease-curtain) forwards;
}
@keyframes curtainUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-101%); }
}
@keyframes curtainDown {
  0%   { transform: translateY(-101%); }
  100% { transform: translateY(0); }
}

.loader-stage {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px;
}

.loader-wordmark {
  position: relative;
  display: flex;
  align-items: baseline;
  line-height: 0.85;
}
.loader-wordmark .lm-letter {
  font-family: var(--display);
  font-size: clamp(48px, 12vw, 168px);
  color: var(--bone);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  animation: letterRise 0.7s var(--ease) forwards;
}
.loader-wordmark .lm-letter:nth-child(1) { animation-delay: 0.05s; }
.loader-wordmark .lm-letter:nth-child(2) { animation-delay: 0.10s; }
.loader-wordmark .lm-letter:nth-child(3) { animation-delay: 0.15s; }
.loader-wordmark .lm-letter:nth-child(4) { animation-delay: 0.20s; }
.loader-wordmark .lm-letter:nth-child(5) { animation-delay: 0.25s; }
.loader-wordmark .lm-letter:nth-child(6) { animation-delay: 0.30s; }
.loader-wordmark .lm-letter:nth-child(7) { animation-delay: 0.35s; }
.loader-wordmark .lm-letter:nth-child(8) { animation-delay: 0.40s; }
.loader-wordmark .lm-dot {
  display: inline-block;
  width: 0.14em; height: 0.14em;
  background: var(--muted-navy);
  margin-left: 0.08em;
  transform: scale(0);
  animation: dotPop 0.5s var(--ease) 0.50s forwards;
}
@keyframes letterRise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes dotPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.loader-meta {
  display: flex; gap: 40px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(237, 234, 230, 0.42);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.5s var(--ease) 0.7s forwards;
}
.loader-meta .dot-tiny {
  display: inline-block; width: 4px; height: 4px;
  background: var(--muted-navy); border-radius: 50%;
  vertical-align: middle; margin: 0 8px;
  transform: translateY(-1px);
}

.loader-bar {
  width: clamp(180px, 24vw, 360px);
  height: 1px;
  background: rgba(237, 234, 230, 0.15);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.4s var(--ease) 0.5s forwards;
}
.loader-bar::after {
  content: '';
  position: absolute; top: 0; left: 0;
  height: 100%; width: 100%;
  background: var(--bone);
  transform-origin: left;
  transform: scaleX(0);
  animation: barFill 1.05s var(--ease) 0.6s forwards;
}
@keyframes barFill { to { transform: scaleX(1); } }
@keyframes fadeIn { to { opacity: 1; } }

/* Transition variant: smaller logo, faster */
.loader.transition .loader-wordmark .lm-letter {
  font-size: clamp(36px, 7vw, 84px);
  animation-duration: 0.4s;
}
.loader.transition .loader-bar { display: none; }
.loader.transition .loader-meta { animation-delay: 0.3s; }

/* corners for filmic feel */
.loader-corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(237, 234, 230, 0.32);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.4s var(--ease) 0.8s forwards;
}
.loader-corner.tl { top: 28px; left: 32px; }
.loader-corner.tr { top: 28px; right: 32px; }
.loader-corner.bl { bottom: 28px; left: 32px; }
.loader-corner.br { bottom: 28px; right: 32px; }

/* =========================================================
   NAV
   ========================================================= */
nav.top {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(237, 234, 230, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
nav.top.scrolled { border-bottom-color: rgba(14, 14, 12, 0.08); }
nav.top.dark { background: rgba(14, 14, 12, 0.82); color: var(--bone); }
nav.top.dark .brand { color: var(--bone); }
nav.top.dark .nav-link { color: rgba(237, 234, 230, 0.68); }
nav.top.dark .nav-link:hover { color: var(--bone); }
nav.top.dark .nav-cta { background: var(--bone); color: var(--moonless); }

nav.top .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.brand {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--moonless);
  text-transform: uppercase;
  display: inline-flex; align-items: baseline;
  transition: color .3s var(--ease);
}
.brand .b-dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--muted-navy);
  margin-left: 4px; transform: translateY(-1px);
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-family: var(--body); font-size: 13.5px;
  font-weight: 500; color: var(--moonless);
  transition: color .25s var(--ease); letter-spacing: 0.01em;
  position: relative;
}
.nav-link[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--deep-navy);
}
.nav-link:hover { color: var(--deep-navy); }
.nav-cta {
  font-family: var(--body); font-size: 13px; font-weight: 600;
  padding: 11px 22px;
  background: var(--moonless); color: var(--bone);
  border-radius: 999px;
  transition: background .3s var(--ease);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--deep-navy); }
@media (max-width: 720px) {
  .nav-links { gap: 14px; }
  .nav-link:not(.nav-cta) { display: none; }
  .brand { font-size: 18px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 14px; font-weight: 500;
  padding: 16px 28px; border-radius: 999px;
  transition: all .35s var(--ease);
  letter-spacing: 0.01em; position: relative;
  white-space: nowrap;
}
.btn-fill { background: var(--moonless); color: var(--bone); }
.btn-fill:hover { background: var(--deep-navy); }
.btn-ghost { background: transparent; color: var(--moonless); padding: 16px 8px; }
.btn-ghost:hover { color: var(--deep-navy); }
.btn .arrow { display: inline-block; transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-lg { padding: 20px 36px; font-size: 15px; }

/* =========================================================
   SECTION SCAFFOLD
   ========================================================= */
.section { padding: var(--section) var(--gutter); position: relative; }
.section-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.section-head { margin-bottom: 96px; }
.section-head.center { text-align: center; }
.section-label {
  font-family: var(--mono); font-size: 11px;
  color: var(--deep-navy);
  letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.section-head.center .section-label { justify-content: center; }
.section-label .num {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; font-weight: 500;
  color: var(--smoke); letter-spacing: 0;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section-head h2 {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.98; letter-spacing: -0.025em;
  color: var(--moonless); max-width: 17ch;
}
.section-head.center h2 { margin: 0 auto; }
.section-head h2 .italic {
  color: var(--deep-navy);
  text-transform: none; letter-spacing: -0.01em;
}

/* corner timecode markers (filmic chrome) */
.tc-marker {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
}
.tc-marker.tl { top: 32px; left: var(--gutter); }
.tc-marker.tr { top: 32px; right: var(--gutter); }
.tc-marker.bl { bottom: 32px; left: var(--gutter); }
.tc-marker.br { bottom: 32px; right: var(--gutter); }
.dark .tc-marker { color: rgba(237, 234, 230, 0.42); }

/* =========================================================
   REVEAL UTILITIES
   ========================================================= */
.r { opacity: 0; transform: translateY(32px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.r.in { opacity: 1; transform: none; }
.r-d1 { transition-delay: .08s; }
.r-d2 { transition-delay: .18s; }
.r-d3 { transition-delay: .28s; }
.r-d4 { transition-delay: .38s; }
.r-d5 { transition-delay: .48s; }
.r-d6 { transition-delay: .58s; }

/* clip-reveal */
.cr { clip-path: inset(100% 0 0 0); transition: clip-path 1.3s var(--ease); }
.cr.in { clip-path: inset(0 0 0 0); }

/* =========================================================
   FILMSTRIP — used on About + Landing
   ========================================================= */
.filmstrip {
  background: var(--moonless);
  color: var(--bone);
  padding: 28px 0;
  position: relative;
  border-top: 1px solid rgba(237, 234, 230, 0.08);
  border-bottom: 1px solid rgba(237, 234, 230, 0.08);
  overflow: hidden;
}
.filmstrip::before, .filmstrip::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 14px;
  background-image: radial-gradient(circle, var(--bone) 0, var(--bone) 4px, transparent 5px);
  background-size: 28px 14px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.08;
}
.filmstrip::before { top: 0; }
.filmstrip::after { bottom: 0; }

.filmstrip-track {
  display: flex; gap: 18px;
  white-space: nowrap;
  animation: stripScroll 60s linear infinite;
  will-change: transform;
}
.filmstrip-frame {
  flex-shrink: 0;
  width: 280px; height: 180px;
  background: rgba(237, 234, 230, 0.04);
  border: 1px solid rgba(237, 234, 230, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 14px;
}
.filmstrip-frame::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(47, 70, 111, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(15, 34, 58, 0.5) 0%, transparent 60%);
}
/* Varied "film still" character per frame — reads as a strip of different shots */
.filmstrip-frame.ff-a::before { background: linear-gradient(135deg, rgba(15,34,58,0.7) 0%, rgba(14,14,12,0.85) 100%), radial-gradient(circle at 40% 30%, rgba(47,70,111,0.6) 0%, transparent 55%); }
.filmstrip-frame.ff-b::before { background: linear-gradient(180deg, rgba(47,70,111,0.45) 0%, rgba(14,14,12,0.92) 100%), radial-gradient(ellipse at 50% 80%, rgba(237,234,230,0.06) 0%, transparent 60%); }
.filmstrip-frame.ff-c::before { background: linear-gradient(135deg, rgba(14,14,12,0.92) 0%, rgba(15,34,58,0.55) 100%), radial-gradient(circle at 70% 50%, rgba(47,70,111,0.45) 0%, transparent 60%); }
.filmstrip-frame.ff-d::before { background: linear-gradient(90deg, rgba(15,34,58,0.6) 0%, rgba(14,14,12,0.88) 100%), radial-gradient(circle at 20% 60%, rgba(47,70,111,0.45) 0%, transparent 50%); }
.filmstrip-frame.ff-e::before { background: linear-gradient(225deg, rgba(47,70,111,0.4) 0%, rgba(14,14,12,0.94) 100%), radial-gradient(circle at 60% 30%, rgba(237,234,230,0.08) 0%, transparent 40%); }
.filmstrip-frame.ff-f::before { background: linear-gradient(45deg, rgba(14,14,12,0.88) 0%, rgba(15,34,58,0.7) 100%), radial-gradient(circle at 50% 50%, rgba(47,70,111,0.35) 0%, transparent 65%); }
.filmstrip-frame.ff-g::before { background: linear-gradient(0deg, rgba(14,14,12,0.94) 0%, rgba(47,70,111,0.55) 100%); }
/* Dashed inset \u2014 makes it read as "image placeholder" rather than a flat card */
.filmstrip-frame::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px dashed rgba(237, 234, 230, 0.1);
  pointer-events: none;
}
.filmstrip-frame .ff-num {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.3em; color: rgba(237, 234, 230, 0.45);
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.filmstrip-frame .ff-cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.3em; color: rgba(237, 234, 230, 0.45);
  text-transform: uppercase;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   FOOTER (shared)
   ========================================================= */
footer {
  background: var(--moonless);
  color: var(--bone);
  padding: 80px var(--gutter) 40px;
  position: relative;
  overflow: hidden;
}
footer .foot-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(237, 234, 230, 0.08);
}
footer .foot-head {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--bone);
  max-width: 14ch;
}
footer .foot-head .italic { color: var(--muted-navy); text-transform: none; }
footer .foot-col h5 {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(237, 234, 230, 0.42);
  margin-bottom: 22px;
}
footer .foot-col a, footer .foot-col p {
  display: block;
  font-family: var(--body); font-size: 14px;
  color: rgba(237, 234, 230, 0.75);
  padding: 6px 0;
  transition: color .25s var(--ease);
}
footer .foot-col a:hover { color: var(--bone); }
footer .foot-bottom {
  max-width: var(--max); margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(237, 234, 230, 0.4);
}
@media (max-width: 760px) {
  footer .foot-grid { grid-template-columns: 1fr 1fr; }
  footer .foot-head { grid-column: 1 / -1; }
}

/* =========================================================
   FORM ELEMENTS (Contact)
   ========================================================= */
.field {
  display: block;
  margin-bottom: 28px;
  position: relative;
}
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--body); font-size: 16px;
  color: var(--moonless);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--mist);
  padding: 14px 0;
  outline: none;
  transition: border-color .3s var(--ease);
  cursor: none;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--deep-navy);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder {
  color: var(--mist);
}

.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  font-family: var(--body); font-size: 13px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--mist);
  color: var(--moonless);
  background: transparent;
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--deep-navy); }
.chip.active {
  background: var(--moonless);
  color: var(--bone);
  border-color: var(--moonless);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  border-bottom: 1px solid var(--mist);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: none;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.01em;
  color: var(--moonless);
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--deep-navy); }
.faq-item .faq-icon {
  width: 18px; height: 18px;
  position: relative; flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.faq-item .faq-icon::before, .faq-item .faq-icon::after {
  content: ''; position: absolute;
  background: var(--moonless);
}
.faq-item .faq-icon::before { left: 0; right: 0; top: 50%; height: 1px; }
.faq-item .faq-icon::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 0 28px;
  font-family: var(--body);
  font-size: 16px; line-height: 1.6;
  color: var(--smoke);
  max-width: 64ch;
}
.faq-item .faq-body strong { color: var(--moonless); font-weight: 600; }


/* =========================================================
   PAIN POINT — single statement of the problem
   ========================================================= */
.painpoint {
  background: var(--bone);
  padding: var(--section) var(--gutter);
}
.painpoint-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pp-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.pp-eyebrow::before,
.pp-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--deep-navy); opacity: 0.4;
}
.painpoint h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--moonless);
  max-width: 16ch;
  margin: 0 auto 40px;
}
.painpoint h2 .italic {
  color: var(--deep-navy);
  text-transform: none;
  letter-spacing: -0.015em;
}
.pp-body {
  font-family: var(--body);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--smoke);
  max-width: 64ch;
  margin: 0 auto;
}

/* =========================================================
   WHY RESOLUTE — single benefit + 3-step process
   ========================================================= */
.why {
  background: var(--bone-warm);
  padding: var(--section) var(--gutter);
}
.why-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.why-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 96px;
  align-items: start;
}
.why-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--deep-navy);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
}
.why-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--deep-navy); opacity: 0.45;
}
.why-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--moonless);
  max-width: 18ch;
  margin-bottom: 32px;
}
.why-head h2 .italic {
  color: var(--deep-navy);
  text-transform: none;
  letter-spacing: -0.015em;
}
.why-lead {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--smoke);
  max-width: 56ch;
}
.why-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mist);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  margin-bottom: 56px;
}
.why-step {
  background: var(--bone-warm);
  padding: 44px 32px 40px;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.ws-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--deep-navy);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.why-step h4 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--moonless);
  margin-bottom: 16px;
}
.why-step p {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--smoke);
}
.why-cta {
  text-align: center;
}
@media (max-width: 880px) {
  .why-head { grid-template-columns: 1fr; gap: 32px; }
  .why-process { grid-template-columns: 1fr; }
}

/* =========================================================
   TESTIMONIALS — dark band, three cards
   ========================================================= */
.testimonials {
  background: var(--moonless);
  color: var(--bone);
  padding: var(--section) var(--gutter);
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(15, 34, 58, 0.4) 0%, transparent 70%);
}
.testimonials-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.t-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-navy);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.t-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--muted-navy); opacity: 0.6;
}
.testimonials h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(52px, 8.5vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--bone);
  max-width: 14ch;
  margin-bottom: 72px;
}
.testimonials h2 .italic {
  color: var(--muted-navy);
  text-transform: none;
  letter-spacing: -0.015em;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.t-card {
  background: rgba(237, 234, 230, 0.04);
  border: 1px solid rgba(237, 234, 230, 0.08);
  border-radius: 12px;
  padding: 40px 32px 32px;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.t-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-bottom: auto;
  padding-bottom: 24px;
}
.t-card cite {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(237, 234, 230, 0.5);
  font-style: normal;
}
@media (max-width: 880px) {
  .t-grid { grid-template-columns: 1fr; }
}


/* Why-step: bigger Strategy/Production/Delivery labels */
.ws-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}
.ws-meta .ws-num {
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--deep-navy);
  text-transform: uppercase;
}
.ws-label {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--moonless);
  margin: 0;
}
.why-step h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--deep-navy);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-transform: none;
  letter-spacing: -0.005em;
}


/* =========================================================
   WORK CARD — rotating photo stack with Ken Burns zoom
   ========================================================= */
.work-card { position: relative; overflow: hidden; }
.work-card .wc-slides {
  position: absolute; inset: 0;
  z-index: 0;
}
.work-card .wc-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease-in-out;
  will-change: transform, opacity;
}
.work-card .wc-slide.active {
  opacity: 1;
  animation: kenburns 7s linear forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.10); }
}
.work-card .work-card-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 34, 58, 0.35) 0%, rgba(14, 14, 12, 0.75) 100%),
    linear-gradient(135deg, rgba(15, 34, 58, 0.45) 0%, rgba(15, 34, 58, 0.35) 100%);
  transition: background .6s ease;
}
.work-card:hover .work-card-overlay {
  background:
    linear-gradient(180deg, rgba(15, 34, 58, 0.20) 0%, rgba(14, 14, 12, 0.65) 100%),
    linear-gradient(135deg, rgba(15, 34, 58, 0.30) 0%, rgba(15, 34, 58, 0.20) 100%);
}
/* Keep text above slides + overlay */
.work-card > .work-meta,
.work-card > div:not(.wc-slides):not(.work-card-overlay) {
  position: relative;
  z-index: 2;
}
/* Hide old work-card-bg gradient if still present on other cards */
.work-card .work-card-bg { display: none; }


/* =========================================================
   THREE-BUCKET ENGINE / BUCKETS
   ========================================================= */
.buckets {
  background: var(--bone-warm);
  padding: var(--section) var(--gutter);
}
.buckets-inner { max-width: var(--max); margin: 0 auto; }
.buckets-head {
  margin-bottom: 72px;
  max-width: 800px;
}
.buckets-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--moonless);
  margin-bottom: 24px;
}
.buckets-head h2 .italic {
  color: var(--deep-navy);
  text-transform: none;
  letter-spacing: -0.015em;
}
.buckets-lead {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--smoke);
  max-width: 56ch;
}
.buckets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bucket {
  background: var(--bone);
  border-radius: 16px;
  padding: 48px 36px 40px;
  display: flex; flex-direction: column;
  min-height: 380px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.bucket:hover {
  transform: translateY(-6px);
  box-shadow: 0 50px 100px -50px rgba(14, 14, 12, 0.2);
}
.bucket .b-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--deep-navy);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.bucket h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--moonless);
  margin-bottom: 16px;
}
.bucket .b-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.35;
  color: var(--deep-navy);
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.bucket .b-body {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--smoke);
  margin-top: auto;
}
@media (max-width: 880px) {
  .buckets-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TIERS — flagship label & "other" tiers row (Signature/Doc)
   ========================================================= */
.tiers-flagship-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--deep-navy);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: center;
}
.tiers-flagship-label::before,
.tiers-flagship-label::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--deep-navy); opacity: 0.4;
}
.tiers-flagship-lead {
  text-align: center;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--smoke);
  max-width: 56ch;
  margin: 0 auto 48px;
}
.tier-other-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.tier-other {
  background: var(--bone-warm);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex; flex-direction: column;
}
.tier-other h4 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--moonless);
  margin-bottom: 6px;
}
.tier-other-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.tier-other p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--smoke);
  margin-bottom: 28px;
  flex-grow: 1;
}
.tier-cta-light {
  background: transparent !important;
  color: var(--moonless) !important;
  border: 1px solid var(--moonless);
  align-self: flex-start;
  padding: 12px 22px !important;
}
.tier-cta-light:hover {
  background: var(--moonless) !important;
  color: var(--bone) !important;
}
@media (max-width: 880px) {
  .tier-other-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   COMMITMENTS
   ========================================================= */
.commitments {
  background: var(--bone);
  padding: var(--section) var(--gutter);
}
.commitments-inner { max-width: var(--max); margin: 0 auto; }
.commitments-head {
  text-align: center;
  margin-bottom: 88px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.commitments-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--moonless);
  margin-bottom: 24px;
}
.commitments-head h2 .italic {
  color: var(--deep-navy);
  text-transform: none;
  letter-spacing: -0.015em;
}
.commitments-lead {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--smoke);
  max-width: 56ch;
  margin: 0 auto;
}
.commitments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.commit-col .cc-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mist);
}
.commit-col.commit-no .cc-head { color: var(--smoke); }
.commit-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--mist);
}
.commit-item h4 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--moonless);
  margin-bottom: 12px;
}
.commit-col.commit-no .commit-item h4 { color: var(--smoke); }
.commit-item p {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--smoke);
}
.commit-tagline {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: var(--deep-navy);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  max-width: 32ch;
}
@media (max-width: 880px) {
  .commitments-grid { grid-template-columns: 1fr; gap: 56px; }
}


/* =========================================================
   MOBILE MENU — hamburger + slide-down overlay
   ========================================================= */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 12px;
  z-index: 70;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--moonless);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.nav-burger span:nth-child(1) { transform: translateY(-6px); }
.nav-burger span:nth-child(2) { transform: translateY(0); }
.nav-burger span:nth-child(3) { transform: translateY(6px); }
.nav-burger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); background: var(--bone); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); background: var(--bone); }
nav.top.dark .nav-burger span { background: var(--bone); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--moonless);
  z-index: 65;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu-links {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 28px !important;
}
.mobile-menu-links a {
  display: block !important;
  font-family: var(--display) !important;
  text-transform: uppercase;
  font-size: clamp(28px, 6vw, 44px) !important;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--bone) !important;
  font-weight: 400 !important;
  padding: 6px 12px !important;
  transition: color .25s var(--ease);
  background: transparent !important;
  border-radius: 0 !important;
}
.mobile-menu-links a.nav-cta {
  margin-top: 24px;
  background: var(--bone) !important;
  color: var(--moonless) !important;
  font-size: 18px !important;
  padding: 16px 32px !important;
  border-radius: 999px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mobile-menu-links a:hover {
  color: var(--muted-navy) !important;
}
.mobile-menu-links a[aria-current="page"] {
  color: var(--muted-navy) !important;
}

@media (max-width: 720px) {
  .nav-burger { display: flex; }
  /* Keep brand on the left, hamburger on the right; hide everything between */
  nav.top .nav-links { display: none; }
}


/* =========================================================
   MOBILE OPTIMIZATION + SECTION RHYTHM
   ========================================================= */

/* ---- Section rhythm: alternate bone tones so sections feel distinct ---- */
@media (max-width: 880px) {
  /* Tighten section padding on mobile so the page doesn't drag */
  :root {
    --section: 72px;
    --gutter: 22px;
  }

  /* Force background variation across sections so each one feels its own */
  .hero { background: var(--bone); }
  .marquee { background: var(--moonless); color: var(--bone); border-top-color: transparent; border-bottom-color: rgba(237,234,230,0.08); }
  .marquee .marquee-item { color: var(--bone); }
  .marquee .marquee-item .accent { color: var(--muted-navy); }
  .marquee .marquee-dot { background: var(--muted-navy); }
  .why { background: var(--bone); }
  .buckets { background: var(--moonless); color: var(--bone); }
  .buckets .buckets-head h2 { color: var(--bone); }
  .buckets .buckets-head h2 .italic { color: var(--muted-navy); }
  .buckets .buckets-lead { color: rgba(237,234,230,0.65); }
  .buckets .bucket { background: rgba(237,234,230,0.04); border: 1px solid rgba(237,234,230,0.08); }
  .buckets .bucket h3 { color: var(--bone); }
  .buckets .bucket .b-tag { color: var(--muted-navy); }
  .buckets .bucket .b-body { color: rgba(237,234,230,0.65); }
  .buckets .bucket .b-num { color: var(--muted-navy); }
  .tiers { background: var(--bone-warm); }
  .commitments { background: var(--bone); }
  .work-soon { background: var(--moonless); color: var(--bone); }
  .work-soon .section-head h2 { color: var(--bone); }
  .work-soon .section-head h2 .italic { color: var(--muted-navy); }
  .availability { background: var(--bone-warm); color: var(--moonless); }
  .availability .av-eyebrow { color: var(--deep-navy); }
  .availability .av-eyebrow::before,
  .availability .av-eyebrow::after { background: var(--deep-navy); opacity: 0.45; }
  .availability .av-body { color: var(--moonless); }
  .availability .av-body .italic { color: var(--deep-navy); }
  .availability .btn-fill { background: var(--moonless); color: var(--bone); }
  .availability .grain.dark, .availability-bg { display: none !important; }
  .faq { background: var(--bone); }
  .final { background: var(--moonless); }

  /* Section-label chip — large, visible chip at top of every major section so
     visitor always knows which "movement" they're in */
  section[data-screen-label]::before {
    content: attr(data-screen-label);
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--deep-navy);
    padding: 22px 22px 0;
    opacity: 0.55;
  }
  section.buckets[data-screen-label]::before,
  section.work-soon[data-screen-label]::before,
  section.marquee[data-screen-label]::before,
  section.final[data-screen-label]::before { color: var(--muted-navy); }

  /* Typography scale-down — hero & all H2s breathe on small screens */
  .hero h1 { font-size: clamp(40px, 13vw, 64px) !important; max-width: 18ch !important; line-height: 0.95 !important; }
  .hero-anchor { font-size: clamp(20px, 5.5vw, 28px) !important; margin-top: 24px !important; max-width: 22ch !important; }
  .hero-claim { font-size: 15px !important; margin-top: 22px !important; }
  .hero-eyebrow { font-size: 10px !important; letter-spacing: 0.32em !important; }
  .hero-ctas { margin-top: 36px !important; }
  .hero { min-height: 92vh !important; padding: 0 22px !important; }

  .section-head h2,
  .buckets-head h2,
  .commitments-head h2,
  .testimonials h2,
  .final h2,
  .why-head h2,
  .av-body {
    font-size: clamp(32px, 8vw, 48px) !important;
    line-height: 1 !important;
    max-width: none !important;
    letter-spacing: -0.025em !important;
  }
  .av-body { line-height: 1.08 !important; }

  /* Process / outcomes cards — stack and tighten */
  .why-process,
  .why-process.outcomes { grid-template-columns: 1fr !important; }
  .why-step { min-height: auto !important; padding: 28px 22px !important; }
  .ws-label { font-size: 22px !important; line-height: 1.05 !important; }
  .why-head { grid-template-columns: 1fr !important; gap: 24px !important; margin-bottom: 40px !important; }

  /* Buckets — stack tightly */
  .buckets-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .bucket { min-height: auto !important; padding: 32px 24px !important; }
  .buckets-head { margin-bottom: 40px !important; }

  /* Tiers / engagement cards */
  .tier-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .tier { padding: 36px 24px !important; }
  .tier.featured { transform: none !important; }
  .tier.featured:hover { transform: translateY(-4px) !important; }
  .tier-other-grid { grid-template-columns: 1fr !important; gap: 14px !important; margin-top: 56px !important; }
  .tier-other { padding: 32px 24px !important; }
  .tiers-flagship-lead { margin-bottom: 32px !important; padding: 0 4px; }

  /* Commitments two-col → single */
  .commitments-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .commit-item { padding: 18px 0 !important; }
  .commit-item h4 { font-size: 16px !important; }
  .commitments-head { margin-bottom: 48px !important; }

  /* Featured work cards */
  .work-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .work-card { padding: 32px 24px !important; aspect-ratio: 4 / 3 !important; }
  .work-title { font-size: clamp(30px, 8vw, 42px) !important; }
  .work-soon .section-head { margin-bottom: 36px !important; }

  /* FAQ density */
  .faq-item summary { padding: 22px 0 !important; font-size: 16px !important; }
  .faq-item .faq-body { padding: 0 0 22px !important; font-size: 15px !important; }

  /* Final CTA */
  .final { padding: 80px 22px 88px !important; min-height: auto !important; }

  /* Marquee speed up + smaller text on mobile */
  .marquee { padding: 22px 0 !important; }
  .marquee-item { font-size: 28px !important; gap: 36px !important; }
  .marquee-track { animation-duration: 22s !important; gap: 36px !important; }

  /* Footer breathing */
  footer { padding: 60px 22px 32px !important; }
  footer .foot-head { font-size: 36px !important; }
  footer .foot-grid { padding-bottom: 40px !important; gap: 32px !important; }

  /* Stat numbers smaller on mobile */
  .stat-num { font-size: clamp(40px, 14vw, 64px) !important; }
  .stats-grid { gap: 28px !important; padding-top: 40px !important; }

  /* Buttons */
  .btn { padding: 14px 22px !important; font-size: 13.5px !important; }
  .btn-lg { padding: 16px 28px !important; font-size: 14px !important; }

  /* Hide cinematic chrome on mobile — too noisy at small sizes */
  .tc-marker { display: none !important; }

  /* Padding for every section */
  .section,
  .why,
  .buckets,
  .commitments,
  .testimonials,
  .availability,
  .work-soon,
  .faq,
  .painpoint {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  /* Promise slider tweaks */
  .promise-slide { padding: 56px 22px 100px !important; }
  .promises-nav { bottom: 24px !important; gap: 14px !important; }
  .promises-nav button.p-arrow { width: 40px; height: 40px; }

  /* About / contact page tweaks */
  .about-hero { padding: 120px 22px 60px !important; min-height: auto !important; }
  .about-hero h1 { font-size: clamp(40px, 11vw, 60px) !important; }
  .portrait { max-width: 260px; margin: 0 auto; }
  .bio-block-inner { padding: 0 !important; gap: 28px !important; }
  .bio-block { padding: 60px 22px !important; }
  .bio-block-content { font-size: 15px !important; }
  .bio-block-content .drop { font-size: 48px !important; padding: 4px 10px 0 0 !important; }
  .values { padding: 72px 22px !important; }
  .purpose { padding: 72px 22px !important; }

  .book-full { padding: 100px 22px 80px !important; }
  .bf-embed .calendly-inline-widget { height: 640px !important; }
  .studio { padding: 72px 22px !important; }
}

/* Extra-small phones */
@media (max-width: 420px) {
  .hero h1 { font-size: 40px !important; }
  .hero-anchor { font-size: 20px !important; }
  .marquee-item { font-size: 22px !important; }
  .work-title { font-size: 28px !important; }
}
