/* ==========================================================================
   Pod Pro Solutions — Design System v2
   Light · terracotta (#a15334) · Poppins. Hand-written CSS, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand ramp — built around #a15334 (terracotta) */
  --brand-50:  #fbf4f1;
  --brand-100: #f5e4dc;
  --brand-200: #e9c8b9;
  --brand-300: #d9a58e;
  --brand-250: #e9c8b9;
  --brand-400: #c07a56;
  --brand-500: #a15334;   /* brand colour */
  --brand-600: #8a4529;
  --brand-700: #6f3620;
  --dark-800:  #2a201b;
  --dark-900:  #1a1310;

  /* Neutrals — warmed to sit with the brand */
  --white:    #ffffff;
  --grey-50:  #faf8f6;
  --grey-100: #f3efec;
  --grey-200: #e8e1db;
  --grey-300: #d3c9c2;

  /* Text */
  --ink-900: #241a15;
  --ink-700: #453730;
  --ink-600: #5f4f47;
  --ink-500: #6f5f56;

  /* On dark */
  --on-dark:        #ffffff;
  --on-dark-muted:  #ded3cd;
  --on-dark-faint:  #ac9d94;

  /* Lines & shadows */
  --line:        #e8e1db;
  --line-soft:   #f1ece8;
  --line-dark:   rgba(255, 255, 255, 0.14);
  --shadow-sm:   0 1px 2px rgba(36, 26, 21, 0.05);
  --shadow-md:   0 4px 16px -4px rgba(36, 26, 21, 0.09), 0 2px 6px -2px rgba(36, 26, 21, 0.05);
  --shadow-lg:   0 18px 44px -14px rgba(36, 26, 21, 0.18), 0 6px 16px -8px rgba(36, 26, 21, 0.09);
  --shadow-brand: 0 14px 34px -12px rgba(161, 83, 52, 0.42);

  /* Type */
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --gutter: clamp(1.25rem, 4.5vw, 3.5rem);
  --maxw: 1220px;
  --maxw-narrow: 900px;
  --header-h: 74px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.5s;
  --dur-fast: 0.2s;

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--brand-500); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  background: var(--brand-600); color: #fff;
  padding: 0.7rem 1.2rem; font-weight: 500; font-size: 0.875rem;
  border-radius: var(--r-sm);
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Typography — reduced, refined scale
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.h-hero  { font-size: clamp(2rem, 4.4vw, 3.35rem); line-height: 1.14; letter-spacing: -0.028em; font-weight: 600; }
.h1      { font-size: clamp(1.85rem, 3.6vw, 2.75rem); line-height: 1.18; letter-spacing: -0.025em; }
.h2      { font-size: clamp(1.55rem, 2.9vw, 2.15rem); line-height: 1.24; letter-spacing: -0.022em; }
.h3      { font-size: clamp(1.1rem, 1.7vw, 1.3rem);  line-height: 1.35; letter-spacing: -0.014em; }
.h4      { font-size: 1.0625rem; line-height: 1.4; letter-spacing: -0.01em; }

.light { font-weight: 300; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-600);
  line-height: 1;
}
.eyebrow::before {
  content: ""; width: 18px; height: 2px; border-radius: 2px;
  background: currentColor; flex: none;
}
.eyebrow--pill {
  padding: 0.45rem 0.85rem;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 100px;
  letter-spacing: 0.12em;
}
.eyebrow--pill::before { width: 6px; height: 6px; border-radius: 50%; }
.eyebrow--on-dark { color: var(--brand-200); }
.eyebrow--on-dark.eyebrow--pill {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

.lede {
  font-size: clamp(0.9688rem, 1.3vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-600);
  max-width: 58ch;
}
.lede strong { font-weight: 500; color: var(--ink-900); }

.prose p + p { margin-top: 1.1em; }
.prose { max-width: 66ch; }

.muted { color: var(--ink-500); }
.small { font-size: 0.8125rem; line-height: 1.65; }

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%; max-width: var(--maxw);
  margin-inline: auto; padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(3.5rem, 7.5vw, 6.5rem); position: relative; }
.section--tight { padding-block: clamp(2.75rem, 5vw, 4.5rem); }

.bg-white { background: var(--white); }
.bg-grey  { background: var(--grey-50); }
.bg-tint  { background: var(--brand-50); }

/* Dark surface */
.bg-dark {
  background: var(--dark-900);
  color: var(--on-dark-muted);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }
.bg-dark .lede, .bg-dark .muted { color: var(--on-dark-muted); }

/* Section head */
.sec-head { display: grid; gap: 0.9rem; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); max-width: 46rem; }
.sec-head--center { margin-inline: auto; text-align: center; justify-items: center; }
.sec-head--center .lede { margin-inline: auto; }
.sec-head--split { max-width: none; }
@media (min-width: 900px) {
  .sec-head--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    align-items: end; gap: 0.9rem 3rem;
  }
  .sec-head--split > .eyebrow { grid-column: 1; }
  .sec-head--split > h2 { grid-column: 1; }
  .sec-head--split > .lede { grid-column: 2; grid-row: 1 / span 2; align-self: end; }
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.7rem 1.4rem;
  font-size: 0.875rem; font-weight: 500; letter-spacing: -0.005em;
  border-radius: 100px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn svg { flex: none; transition: transform var(--dur-fast) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brand-600); color: #fff; border-color: var(--brand-600);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { background: var(--brand-700); border-color: var(--brand-700); }

.btn--outline { border-color: var(--line); color: var(--ink-900); background: var(--white); }
.btn--outline:hover { border-color: var(--brand-300); color: var(--brand-700); box-shadow: var(--shadow-sm); }

.btn--soft { background: var(--brand-50); color: var(--brand-700); border-color: var(--brand-100); }
.btn--soft:hover { background: var(--brand-100); }

.btn--white { background: #fff; color: var(--ink-900); border-color: #fff; }
.btn--white:hover { background: var(--brand-50); border-color: var(--brand-50); }

.btn--ghost-light { border-color: rgba(255,255,255,0.34); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }

.btn--sm { min-height: 40px; padding: 0.5rem 1.1rem; font-size: 0.8125rem; }
.btn--lg { min-height: 52px; padding: 0.85rem 1.75rem; font-size: 0.9375rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8438rem; font-weight: 500; color: var(--brand-600);
  transition: gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.link-arrow:hover { gap: 0.65rem; color: var(--brand-700); }

/* --------------------------------------------------------------------------
   6. Header — light, clean
   -------------------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.header.is-stuck {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 20px -6px rgba(36, 26, 21, 0.1);
}
.header__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}

/* Wordmark */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; flex: none; margin-right: auto; }
.brand__mark { flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink-900);
}
.brand__sub {
  font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brand-600); margin-top: 3px;
}

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 1.9rem); }
.nav__link {
  position: relative;
  font-size: 0.875rem; font-weight: 400; color: var(--ink-600);
  padding-block: 0.5rem;
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--brand-600);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur-fast) var(--ease);
}
.nav__link:hover { color: var(--ink-900); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--brand-600); font-weight: 500; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header__cta { display: none; }

/* Hamburger */
.burger { width: 44px; height: 44px; display: grid; place-items: center; margin-right: -8px; flex: none; }
.burger__box { width: 20px; height: 12px; position: relative; }
.burger__box span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--ink-900); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s linear, width 0.3s var(--ease);
}
.burger__box span:first-child { top: 0; }
.burger__box span:last-child { bottom: 0; width: 70%; }
.burger[aria-expanded="true"] .burger__box span:first-child { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:last-child { transform: translateY(-5px) rotate(-45deg); width: 100%; }

/* Mobile menu */
.mobilemenu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--white);
  padding: calc(var(--header-h) + 1.25rem) var(--gutter) 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.mobilemenu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobilemenu__list { display: grid; }
.mobilemenu__list li + li { border-top: 1px solid var(--line-soft); }
.mobilemenu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.125rem; font-weight: 500; color: var(--ink-900);
}
.mobilemenu__link svg { color: var(--grey-300); }
.mobilemenu__link[aria-current="page"] { color: var(--brand-600); }
.mobilemenu__link[aria-current="page"] svg { color: var(--brand-500); }
.mobilemenu__foot { padding-top: 1.75rem; display: grid; gap: 0.75rem; }
.mobilemenu__meta {
  margin-top: 0.75rem; font-size: 0.8125rem; color: var(--ink-500);
  display: grid; gap: 0.3rem;
}
body.menu-open { overflow: hidden; }

@media (min-width: 960px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .burger, .mobilemenu { display: none; }
}

/* --------------------------------------------------------------------------
   7. Hero slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--dark-900);
  isolation: isolate;
}

.hero__slides { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease-io);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s linear;
}
.hero__slide.is-active img { transform: scale(1); }

/* Readability scrim — directional so the left column stays clean */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg,
      rgba(20, 13, 10, 0.94) 0%,
      rgba(20, 13, 10, 0.86) 34%,
      rgba(20, 13, 10, 0.62) 58%,
      rgba(20, 13, 10, 0.44) 100%),
    linear-gradient(to top, rgba(20, 13, 10, 0.7), rgba(20, 13, 10, 0) 45%);
}

.hero__inner { position: relative; display: grid; gap: 2rem; max-width: 44rem; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--brand-300); font-weight: 300; display: block; }
.hero .lede { color: var(--on-dark-muted); font-weight: 300; max-width: 46ch; }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2rem;
  padding-top: 1.75rem; margin-top: 0.5rem;
  border-top: 1px solid var(--line-dark);
}
.hero__meta li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--on-dark-muted);
}
.hero__meta svg { color: var(--brand-300); flex: none; }

/* Slider controls */
.hero__dots {
  position: absolute; z-index: 3;
  left: var(--gutter); bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; gap: 0.5rem; align-items: center;
}
.hero__dot {
  width: 34px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.28);
  transition: background-color var(--dur) var(--ease), width var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.hero__dot::after {
  content: ""; position: absolute; inset: 0;
  background: #fff; transform: scaleX(0); transform-origin: left;
}
.hero__dot[aria-selected="true"] { width: 54px; background: rgba(255,255,255,0.34); }
.hero__dot[aria-selected="true"]::after { animation: dotFill 6s linear forwards; }
.hero.is-paused .hero__dot::after { animation-play-state: paused; }
@keyframes dotFill { to { transform: scaleX(1); } }
.hero__dot:hover { background: rgba(255,255,255,0.5); }

@media (max-width: 700px) {
  .hero { min-height: auto; }
  .hero__dots { position: static; margin-top: 2rem; }
}

/* --------------------------------------------------------------------------
   8. Client / trust strip
   -------------------------------------------------------------------------- */
.trust { padding-block: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line-soft); }
.trust__label {
  text-align: center; font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 1.75rem;
}
.trust__grid {
  display: grid; gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
}
@media (min-width: 560px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .trust__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .trust__grid { grid-template-columns: repeat(6, 1fr); } }

/* Typographic logo lockup — stands in for a real client logo */
.logomark {
  background: var(--white);
  padding: 1.35rem 1rem;
  display: grid; gap: 0.5rem; justify-items: center; text-align: center;
  min-height: 108px; align-content: center;
  transition: background-color var(--dur-fast) var(--ease);
}
.logomark:hover { background: var(--grey-50); }
.logomark__glyph {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-600);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em;
}
.logomark__name {
  font-size: 0.7188rem; font-weight: 500; line-height: 1.35;
  color: var(--ink-700); letter-spacing: -0.005em;
}

/* --------------------------------------------------------------------------
   9. Media + copy splits
   -------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 4.5vw, 3.75rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .split--media-first > .split__media { order: -1; }
  .split--6040 { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); }
  .split--4060 { grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); }
  .split--top { align-items: start; }
}
.split__copy { display: grid; gap: 1.15rem; align-content: start; }

/* Framed image */
.figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grey-100);
  box-shadow: var(--shadow-lg);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--4-3 { aspect-ratio: 4 / 3; }
.figure--3-2 { aspect-ratio: 3 / 2; }
.figure--1-1 { aspect-ratio: 1 / 1; }
.figure--4-5 { aspect-ratio: 4 / 5; }
.figure--flat { box-shadow: none; border: 1px solid var(--line); }

/* Decorative tinted plate behind an image */
.figure-stack { position: relative; }
.figure-stack::before {
  content: ""; position: absolute;
  inset: auto -14px -14px auto;
  width: 62%; height: 62%;
  background: var(--brand-50);
  border-radius: var(--r-lg);
  z-index: -1;
}
.figure-stack--tl::before { inset: -14px auto auto -14px; }

/* Overlapping inset portrait (Problem section) */
.figure-inset {
  position: absolute;
  right: clamp(-0.5rem, -1vw, -1.25rem);
  bottom: -1.75rem;
  width: clamp(120px, 30%, 190px);
  border-radius: var(--r);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  background: var(--grey-100);
}
.figure-inset img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 22%; }
.figure-inset__cap {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(12, 31, 69, 0.94), rgba(12, 31, 69, 0));
  padding: 1.4rem 0.7rem 0.55rem;
  color: #fff; text-align: center;
}
.figure-inset__cap b { display: block; font-size: 0.75rem; font-weight: 600; line-height: 1.2; }
.figure-inset__cap span { font-size: 0.5625rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--brand-200); }

.media-wrap { position: relative; }

/* Stat chip floating on an image */
.stat-chip {
  position: absolute; left: -12px; bottom: 22px;
  background: #fff; border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  max-width: 82%;
}
.stat-chip__icon {
  width: 34px; height: 34px; border-radius: 8px; flex: none;
  display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-600);
}
.stat-chip b { display: block; font-size: 0.8125rem; color: var(--ink-900); font-weight: 600; line-height: 1.3; }
.stat-chip span { font-size: 0.6875rem; color: var(--ink-500); line-height: 1.4; }

/* --------------------------------------------------------------------------
   10. Feature list (ticks)
   -------------------------------------------------------------------------- */
.ticks { display: grid; gap: 0.85rem; }
.ticks li {
  display: grid; grid-template-columns: 20px 1fr; gap: 0.75rem;
  align-items: start;
  font-size: 0.9063rem; line-height: 1.65; color: var(--ink-600);
}
.ticks svg { margin-top: 4px; color: var(--brand-500); }
.ticks--dark li { color: var(--on-dark-muted); }
.ticks--dark svg { color: var(--brand-300); }

/* Pain list */
.pains { display: grid; gap: 0.65rem; }
.pains li {
  display: grid; grid-template-columns: 22px 1fr; gap: 0.75rem;
  align-items: start;
  font-size: 0.875rem; line-height: 1.6; color: var(--ink-600);
  padding: 0.7rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.pains svg { margin-top: 3px; color: var(--brand-400); }

/* --------------------------------------------------------------------------
   11. Icon cards
   -------------------------------------------------------------------------- */
.icon-chip {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; flex: none;
  background: var(--brand-50); color: var(--brand-600);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.icon-chip--lg { width: 54px; height: 54px; border-radius: 14px; }
.icon-chip--solid { background: var(--brand-600); color: #fff; }
.icon-chip--on-dark { background: rgba(255,255,255,0.1); color: var(--brand-200); }

.cards { display: grid; gap: clamp(1rem, 1.8vw, 1.4rem); }
@media (min-width: 620px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 620px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 620px) { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  display: grid; gap: 0.85rem; align-content: start;
  position: relative; overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(to right, var(--brand-500), var(--brand-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.card:hover { border-color: var(--brand-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card:hover::after { transform: scaleX(1); }
.card:hover .icon-chip { background: var(--brand-600); color: #fff; }
.card h3 { font-size: 1.0313rem; }
.card p { font-size: 0.875rem; line-height: 1.7; color: var(--ink-600); }
.card--flat { box-shadow: none; }
.card--grey { background: var(--grey-50); border-color: transparent; }

/* Numbered "why us" card */
.card--why { padding-top: clamp(1.6rem, 2.4vw, 2.1rem); }
.card__num {
  position: absolute; right: 1.15rem; top: 0.9rem;
  font-size: 2.6rem; font-weight: 700; line-height: 1;
  color: var(--grey-100);
  letter-spacing: -0.04em;
  transition: color var(--dur) var(--ease);
  pointer-events: none;
}
.card--why:hover .card__num { color: var(--brand-50); }

/* --------------------------------------------------------------------------
   12. Big media boxes (The Fix)
   -------------------------------------------------------------------------- */
.mediabox {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(0.75rem, 1.4vw, 1.15rem);
  box-shadow: var(--shadow-md);
  display: grid; gap: 0;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.mediabox:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.mediabox__img {
  border-radius: var(--r); overflow: hidden;
  aspect-ratio: 3 / 2; background: var(--grey-100);
}
.mediabox__img img { width: 100%; height: 100%; object-fit: cover; }
.mediabox__body { padding: 1.25rem clamp(0.5rem, 1vw, 0.85rem) 0.75rem; display: grid; gap: 0.55rem; }
.mediabox__body h3 { font-size: 1.0313rem; }
.mediabox__body p { font-size: 0.875rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   13. Service blocks (services page)
   -------------------------------------------------------------------------- */
.service { display: grid; gap: clamp(1.75rem, 4vw, 3.25rem); align-items: center; }
@media (min-width: 940px) {
  .service { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
  .service--flip > .service__media { order: 2; }
}
.service__copy { display: grid; gap: 1.1rem; align-content: start; }
.service__head { display: grid; gap: 0.55rem; }

.tiers { display: grid; gap: clamp(1rem, 1.8vw, 1.4rem); }
@media (min-width: 720px) { .tiers--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .tiers--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .tiers--3 { grid-template-columns: repeat(3, 1fr); } }

.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.2vw, 1.85rem);
  display: grid; grid-template-rows: auto auto 1fr auto;
  gap: 1.1rem;
  position: relative;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.tier:hover { border-color: var(--brand-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tier--featured { border-color: var(--brand-300); box-shadow: var(--shadow-md); }
.tier__flag {
  position: absolute; top: 0; right: 1.4rem; transform: translateY(-50%);
  background: var(--brand-600); color: #fff;
  font-size: 0.5938rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 100px;
  box-shadow: var(--shadow-brand);
}
.tier__head { display: grid; gap: 0.4rem; align-content: start; }
.tier__meta { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--brand-600); }
.tier__name { font-size: 1.0625rem; }
.tier__blurb { font-size: 0.8438rem; line-height: 1.65; color: var(--ink-500); }
.tier__price { padding-block: 0.9rem; border-block: 1px solid var(--line-soft); }
.tier__price b { display: block; font-size: 1.65rem; font-weight: 600; color: var(--ink-900); letter-spacing: -0.03em; line-height: 1.1; }
.tier__price span { display: block; margin-top: 0.25rem; font-size: 0.75rem; color: var(--ink-500); }
.tier__list { display: grid; gap: 0.6rem; align-content: start; }
.tier__list li {
  display: grid; grid-template-columns: 16px 1fr; gap: 0.6rem;
  font-size: 0.8125rem; line-height: 1.55; color: var(--ink-600); align-items: start;
}
.tier__list svg { margin-top: 3px; color: var(--brand-500); }
.tier__list li strong { color: var(--ink-900); font-weight: 500; }
.tier .btn { align-self: end; }

.note {
  font-size: 0.8438rem; line-height: 1.7; color: var(--ink-600);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.note svg { flex: none; margin-top: 3px; color: var(--brand-600); }
.note strong { color: var(--ink-900); font-weight: 500; }

/* --------------------------------------------------------------------------
   14. Google reviews
   -------------------------------------------------------------------------- */
.gsummary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-inline: auto;
  width: fit-content;
}
.gsummary__score { font-size: 1.25rem; font-weight: 600; color: var(--ink-900); line-height: 1; }
.gsummary__div { width: 1px; height: 22px; background: var(--line); }
.gsummary__meta { font-size: 0.8125rem; color: var(--ink-500); }

.stars { display: inline-flex; gap: 2px; }
.stars svg { color: #fbbc04; }

.reviews { display: grid; gap: clamp(1rem, 1.8vw, 1.4rem); }
@media (min-width: 680px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .reviews { grid-template-columns: repeat(3, 1fr); } }

.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.35rem, 2.2vw, 1.75rem);
  display: grid; gap: 0.95rem; align-content: start;
  position: relative;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.review:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.review__who { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.review__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 0.8125rem; font-weight: 600; color: #fff;
  letter-spacing: 0.01em;
}
.review__name { font-size: 0.8438rem; font-weight: 500; color: var(--ink-900); line-height: 1.3; }
.review__date { font-size: 0.6875rem; color: var(--ink-500); }
.review__body { font-size: 0.875rem; line-height: 1.72; color: var(--ink-600); }
.review__body::before { content: none; }
.review__foot { display: flex; align-items: center; gap: 0.45rem; font-size: 0.6875rem; color: var(--ink-500); padding-top: 0.15rem; }

.av-1 { background: #1a73e8; }
.av-2 { background: #0f9d58; }
.av-3 { background: #d93025; }
.av-4 { background: #7b1fa2; }
.av-5 { background: #ef6c00; }
.av-6 { background: #00838f; }

/* --------------------------------------------------------------------------
   15. Steps
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 860px) { .steps--3 { grid-template-columns: repeat(3, 1fr); } }
.step {
  display: grid; gap: 0.75rem; align-content: start;
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.step__num {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand-600); color: #fff;
  font-size: 0.8125rem; font-weight: 600;
  box-shadow: var(--shadow-brand);
}
.step h3 { font-size: 1rem; }
.step p { font-size: 0.875rem; line-height: 1.7; }
/* connector line on desktop */
@media (min-width: 860px) {
  .steps--3 .step:not(:last-child)::after {
    content: ""; position: absolute;
    right: calc(-1 * clamp(1rem, 2vw, 1.5rem) - 1px);
    top: calc(clamp(1.4rem, 2.2vw, 1.9rem) + 19px);
    width: clamp(1rem, 2vw, 1.5rem); height: 1px;
    background: var(--line);
  }
}

/* --------------------------------------------------------------------------
   16. CTA band
   -------------------------------------------------------------------------- */
.band {
  border-radius: var(--r-xl);
  background: linear-gradient(115deg, var(--dark-900) 0%, var(--brand-700) 100%);
  color: var(--on-dark-muted);
  padding: clamp(1.85rem, 4vw, 3.25rem);
  display: grid; gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  position: relative; overflow: hidden;
}
.band::before {
  content: ""; position: absolute;
  right: -8%; top: -60%; width: 46%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(217, 165, 142, 0.30), transparent 65%);
  pointer-events: none;
}
.band > * { position: relative; }
.band h2, .band h3 { color: #fff; }
.band .lede { color: var(--on-dark-muted); }
@media (min-width: 900px) { .band--split { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); } }
.band__copy { display: grid; gap: 0.9rem; }
.band__actions { display: grid; gap: 0.7rem; }

/* Full-bleed image CTA */
.cta-image {
  position: relative; isolation: isolate;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  text-align: center;
  overflow: hidden;
}
.cta-image__bg { position: absolute; inset: 0; z-index: -2; }
.cta-image__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-image::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20, 13, 10, 0.9), rgba(20, 13, 10, 0.82));
}
.cta-image__inner { display: grid; gap: 1.35rem; justify-items: center; max-width: 46rem; margin-inline: auto; }
.cta-image h2 { color: #fff; }
.cta-image .lede { color: var(--on-dark-muted); text-align: center; }

/* --------------------------------------------------------------------------
   17. Page header (inner pages) with background image
   -------------------------------------------------------------------------- */
.pagehead {
  position: relative; isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(2.75rem, 5vw, 4.25rem));
  padding-bottom: clamp(2.75rem, 5vw, 4.25rem);
  overflow: hidden;
  background: var(--dark-900);
}
.pagehead__bg { position: absolute; inset: 0; z-index: -2; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagehead::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(20, 13, 10, 0.95) 0%, rgba(20, 13, 10, 0.84) 45%, rgba(20, 13, 10, 0.6) 100%);
}
.pagehead__inner { display: grid; gap: 0.9rem; max-width: 44rem; }
.pagehead h1 { color: #fff; }
.pagehead .lede { color: var(--on-dark-muted); }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; font-size: 0.75rem; color: var(--on-dark-faint); margin-bottom: 0.35rem; }
.crumbs a { transition: color var(--dur-fast) var(--ease); }
.crumbs a:hover { color: #fff; }
.crumbs svg { opacity: 0.6; }
.crumbs [aria-current] { color: var(--brand-200); }

/* --------------------------------------------------------------------------
   18. About — read more
   -------------------------------------------------------------------------- */
.readmore__extra {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}
.readmore__extra > div { overflow: hidden; }
.readmore.is-open .readmore__extra { grid-template-rows: 1fr; opacity: 1; }
.readmore__extra p:first-child { padding-top: 1.1em; }
.readmore__toggle {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.8438rem; font-weight: 500; color: var(--brand-600);
  padding: 0.5rem 0; min-height: 44px;
}
.readmore__toggle svg { transition: transform 0.35s var(--ease); }
.readmore.is-open .readmore__toggle svg { transform: rotate(180deg); }

/* Values */
.values { display: grid; gap: 1rem; }
@media (min-width: 860px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value {
  background: var(--white); border: 1px solid var(--line);
  border-left: 3px solid var(--brand-500);
  border-radius: var(--r);
  padding: 1.25rem 1.4rem;
  display: grid; gap: 0.4rem; align-content: start;
}
.value h3 { font-size: 0.9688rem; }
.value p { font-size: 0.8438rem; line-height: 1.65; }

/* --------------------------------------------------------------------------
   19. Contact
   -------------------------------------------------------------------------- */
.contact-tiles { display: grid; gap: clamp(1rem, 1.8vw, 1.4rem); }
@media (min-width: 700px) { .contact-tiles { grid-template-columns: repeat(3, 1fr); } }
.ctile {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  display: grid; gap: 0.7rem; justify-items: center; text-align: center;
  align-content: start;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.ctile:hover { border-color: var(--brand-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ctile:hover .icon-chip { background: var(--brand-600); color: #fff; }
.ctile h3 { font-size: 1rem; }
.ctile p { font-size: 0.8438rem; line-height: 1.6; color: var(--ink-500); }
.ctile__value { font-size: 0.875rem; font-weight: 500; color: var(--brand-600); word-break: break-word; }

.formcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-md);
}

.form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.75rem; font-weight: 500; color: var(--ink-700); letter-spacing: 0.01em; }
.field label .opt { color: var(--ink-500); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--grey-50);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.95rem;
  min-height: 46px;
  font-size: 0.9063rem;
  color: var(--ink-900);
  -webkit-appearance: none; appearance: none;
  transition: border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236f5f56' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.95rem center;
  padding-right: 2.5rem;
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.65; }
.field input::placeholder, .field textarea::placeholder { color: #a2938a; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand-400); background: var(--white);
  box-shadow: 0 0 0 3px rgba(161, 83, 52, 0.14);
}
@media (min-width: 620px) { .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; } }
.form__note { font-size: 0.75rem; line-height: 1.6; color: var(--ink-500); }
.form__status {
  font-size: 0.8438rem; line-height: 1.6;
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--r-sm); padding: 0.85rem 1rem; color: var(--ink-700);
}

/* --------------------------------------------------------------------------
   20. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.7rem; }
.faq__item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq__item.is-open { border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; text-align: left;
  padding: 1rem 1.25rem; min-height: 56px;
  font-size: 0.9375rem; font-weight: 500; color: var(--ink-900); line-height: 1.45;
  transition: color var(--dur-fast) var(--ease);
}
.faq__q:hover { color: var(--brand-600); }
.faq__icon {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-600);
  transition: transform 0.35s var(--ease), background-color var(--dur-fast) var(--ease);
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--brand-600); color: #fff; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p { padding: 0 1.25rem 1.15rem; font-size: 0.875rem; line-height: 1.75; color: var(--ink-600); max-width: 70ch; }

/* --------------------------------------------------------------------------
   21. Show cards (Shows page)
   -------------------------------------------------------------------------- */
.shows { display: grid; gap: clamp(1rem, 1.8vw, 1.4rem); }
@media (min-width: 640px) { .shows { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .shows { grid-template-columns: repeat(3, 1fr); } }

.showcard {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.2vw, 1.75rem);
  display: grid; gap: 0.85rem; align-content: start;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.showcard:hover { border-color: var(--brand-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.showcard__top { display: flex; align-items: center; gap: 0.8rem; }
.showcard__glyph {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-600);
  font-size: 0.8125rem; font-weight: 700;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.showcard:hover .showcard__glyph { background: var(--brand-600); color: #fff; }
.showcard__cat { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-600); }
.showcard h3 { font-size: 0.9688rem; line-height: 1.35; }
.showcard p { font-size: 0.8438rem; line-height: 1.65; color: var(--ink-600); }
.showcard__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding-top: 0.2rem; }

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--dark-900); color: var(--on-dark-muted); padding-block: clamp(3rem, 6vw, 4.5rem) 1.75rem; }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: var(--brand-300); }
.footer__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 700px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .footer__grid { grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr)); } }

.footer__brand { display: grid; gap: 1.15rem; align-content: start; max-width: 34ch; }
.footer__brand p { font-size: 0.8438rem; line-height: 1.75; color: var(--on-dark-faint); }
.footer__col h4 {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; margin-bottom: 1rem;
}
.footer__col ul { display: grid; gap: 0.6rem; }
.footer__col a {
  font-size: 0.8438rem; color: var(--on-dark-faint);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color var(--dur-fast) var(--ease);
}
.footer__col a:hover { color: #fff; }
.footer__col a svg { flex: none; opacity: 0.75; }

.socials { display: flex; gap: 0.5rem; }
.socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line-dark); border-radius: 10px;
  color: var(--on-dark-muted);
  transition: all var(--dur-fast) var(--ease);
}
.socials a:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }

.footer__bottom {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: 1.5rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: var(--on-dark-faint);
}
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: 1.15rem; }
.footer__bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   23. Placeholder marker
   -------------------------------------------------------------------------- */
.tbc {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.5938rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--brand-700); background: var(--brand-50);
  border: 1px solid var(--brand-100); border-radius: 3px;
  padding: 0.1rem 0.35rem; vertical-align: middle; line-height: 1.5;
  white-space: nowrap;
}
.bg-dark .tbc, .band .tbc, .pagehead .tbc {
  color: #fff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.24);
}
[data-placeholder] { border-bottom: 1px dashed var(--brand-300); }

/* --------------------------------------------------------------------------
   24. Reveal on scroll
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__slide img { transform: none; }
}

/* --------------------------------------------------------------------------
   25. Utilities
   -------------------------------------------------------------------------- */
.stack { display: grid; align-content: start; }
.g-2 { gap: 0.5rem; } .g-3 { gap: 0.75rem; } .g-4 { gap: 1rem; }
.g-5 { gap: 1.5rem; } .g-6 { gap: 2rem; } .g-7 { gap: 2.5rem; }
.mt-4 { margin-top: 1rem; } .mt-5 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; } .mt-7 { margin-top: 2.75rem; }
.center { text-align: center; }
.divider { height: 1px; background: var(--line-soft); border: 0; }

/* ==========================================================================
   26. Refinements
   ========================================================================== */

/* Eyebrows must hug their text, not stretch across the grid column */
.eyebrow { width: fit-content; max-width: 100%; }
.sec-head--center .eyebrow { margin-inline: auto; }

/* Header reads as genuinely white, including over dark hero imagery */
.header { background: #fff; border-bottom: 1px solid var(--line-soft); }
.header.is-stuck { background: #fff; box-shadow: 0 1px 18px -6px rgba(36, 26, 21, 0.12); }

/* In-grid CTA card — closes the 7-item "What we do" grid cleanly */
.card--cta {
  background: linear-gradient(120deg, var(--dark-900), var(--brand-700));
  border-color: transparent; color: var(--on-dark-muted);
  justify-content: center; align-content: center;
}
.card--cta h3 { color: #fff; }
.card--cta p { color: var(--on-dark-muted); }
.card--cta::after { display: none; }
.card--cta:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
@media (min-width: 620px)  { .cards--3 .card--cta { grid-column: span 2; } }
@media (min-width: 980px)  { .cards--3 .card--cta { grid-column: span 2; } }

/* Review meta stacks under the name */
.review__who > span:last-child { display: grid; min-width: 0; }
.review__name, .review__date { display: block; }

/* Trust strip — two columns on phones instead of six tall rows */
@media (min-width: 400px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }

/* Problem-section inset portrait — larger, with a legible caption */
.figure-inset {
  width: clamp(140px, 34%, 210px);
  right: clamp(-1.25rem, -2vw, -2rem);
  bottom: -2.25rem;
}
.figure-inset img { object-position: 50% 16%; }
.figure-inset__cap { padding: 2rem 0.75rem 0.7rem; }
.figure-inset__cap b { font-size: 0.8125rem; }
.figure-inset__cap span { font-size: 0.5313rem; letter-spacing: 0.11em; display: block; margin-bottom: 2px; }
@media (max-width: 560px) {
  .figure-inset { width: 132px; right: -0.5rem; bottom: -1.5rem; }
}

/* About — image column matches the height of the copy column */
@media (min-width: 900px) {
  .split--stretch { align-items: stretch; }
  .split--stretch .split__media { display: grid; align-content: stretch; }
  .split--stretch .figure {
    aspect-ratio: auto;
    height: 100%;
    min-height: 480px;
    max-height: 760px;
  }
  .split--stretch .figure img { object-position: 50% 18%; }
}

/* Let background photography read through the scrims */
.pagehead::before {
  background: linear-gradient(100deg, rgba(20, 13, 10, 0.92) 0%, rgba(20, 13, 10, 0.76) 46%, rgba(20, 13, 10, 0.44) 100%);
}
.cta-image::before {
  background: linear-gradient(180deg, rgba(20, 13, 10, 0.84), rgba(20, 13, 10, 0.74));
}

/* Hero benefit list keeps a tidy rhythm when it wraps */
.hero__meta { gap: 0.55rem 1.75rem; }
@media (max-width: 560px) { .hero__meta { flex-direction: column; gap: 0.5rem; } }

/* Section-level placeholder note */
.tbc-note {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1.5rem; font-size: 0.75rem; color: var(--ink-500); text-align: center;
}
.tbc-note svg { flex: none; color: var(--brand-500); }

/* Overflow guards on narrow viewports */
.tbc { white-space: normal; }
.tbc-note { flex-wrap: wrap; padding-inline: 0.5rem; }
@media (max-width: 560px) {
  .figure-inset { right: 0.75rem; bottom: -1.25rem; width: 120px; }
}

/* Trust grid — restate the wider breakpoints after the phone override above
   so source order doesn't collapse the desktop layout to two columns. */
@media (min-width: 560px)  { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px)  { .trust__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .trust__grid { grid-template-columns: repeat(6, 1fr); } }

/* Review avatars — darkened so the initial keeps 4.5:1 against white */
.av-2 { background: #0b7a44; }
.av-5 { background: #c2410c; }

/* Decorative "why us" numerals — visible enough to read as design, not noise */
.card__num { color: #f3ece8; }
.card--why:hover .card__num { color: var(--brand-100); }

/* Hero scrim — hold the copy column dark enough for body text to clear AA
   against the brightest pixels in any of the three rotating photographs. */
.hero::before {
  background:
    linear-gradient(100deg,
      rgba(20, 13, 10, 0.96) 0%,
      rgba(20, 13, 10, 0.93) 46%,
      rgba(20, 13, 10, 0.72) 68%,
      rgba(20, 13, 10, 0.44) 100%),
    linear-gradient(to top, rgba(20, 13, 10, 0.7), rgba(20, 13, 10, 0) 45%);
}
.hero .lede { color: #ece2dc; }
.hero__meta li { color: #ddd0c9; }

/* Page-header scrim — same treatment, slightly lighter since text sits higher */
.pagehead::before {
  background: linear-gradient(100deg,
    rgba(20, 13, 10, 0.95) 0%,
    rgba(20, 13, 10, 0.9) 48%,
    rgba(20, 13, 10, 0.66) 74%,
    rgba(20, 13, 10, 0.4) 100%);
}
.pagehead .lede { color: #ece2dc; }

/* <picture> is a block box with auto height, so `img { height: 100% }` had
   nothing to resolve against and full-bleed backgrounds stopped short of the
   container on some viewports. Make the picture element fill too. */
.hero__slide picture,
.pagehead__bg picture,
.cta-image__bg picture,
.figure picture,
.mediabox__img picture,
.figure-inset picture {
  display: block;
  width: 100%;
  height: 100%;
}
.figure picture img,
.mediabox__img picture img { width: 100%; height: 100%; object-fit: cover; }

/* Inset caption keeps breathing room at the smallest card size */
@media (max-width: 420px) {
  .figure-inset__cap span { font-size: 0.5rem; letter-spacing: 0.06em; }
}

/* ==========================================================================
   27. Feature icons — duotone, large, with motion
   ==========================================================================
   Structure: a near-black outline group (currentColor) plus one solid
   brand-coloured shape. Colour, size and motion are controlled here, so the
   SVG path data in build.py can be swapped for custom artwork later without
   touching any CSS or markup. */

.ico-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  position: relative;
  flex: none;
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease);
}
/* soft plate that only appears on hover — keeps the resting state clean
   like the reference, but gives the icon somewhere to land */
.ico-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--brand-50);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.ico {
  position: relative;
  width: 52px;
  height: 52px;
  color: var(--ink-900);
  overflow: visible;
}
.ico__line {
  transition: color 0.4s var(--ease), stroke-width 0.4s var(--ease);
}
.ico__accent {
  fill: var(--brand-500);
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 0.4s var(--ease), transform 0.55s var(--ease);
}

/* Hover: plate blooms, whole mark lifts, accent shape pulses */
.card:hover .ico-wrap::before,
.ctile:hover .ico-wrap::before,
.ico-wrap:hover::before { opacity: 1; transform: scale(1); }

.card:hover .ico-wrap,
.ctile:hover .ico-wrap { transform: translateY(-3px); }

.card:hover .ico__accent,
.ctile:hover .ico__accent { transform: scale(1.14); }

.card:hover .ico,
.ctile:hover .ico { color: var(--brand-700); }

/* Scroll-in: the icon draws up and settles a beat after its card */
[data-reveal] .ico-wrap {
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(var(--delay, 0ms) + 120ms);
}
[data-reveal].is-in .ico-wrap { opacity: 1; transform: none; }
[data-reveal].is-in:hover .ico-wrap { transform: translateY(-3px); }
.no-js [data-reveal] .ico-wrap { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] .ico-wrap { opacity: 1; transform: none; }
}

/* Icon-led cards: centred, with room for a large mark */
.card--center {
  justify-items: center;
  text-align: center;
  padding-top: clamp(1.9rem, 3vw, 2.6rem);
  padding-bottom: clamp(1.75rem, 2.8vw, 2.3rem);
  gap: 0.65rem;
}
.card--center h3 { margin-top: 0.35rem; }
.card--center p { max-width: 34ch; }
.card--center .btn-row { justify-content: center; }

/* The numbered "why us" cards keep their numeral top-right */
.card--why.card--center .card__num { top: 0.7rem; right: 1.1rem; }

/* Contact tiles use the same mark treatment */
.ctile .ico-wrap { margin-bottom: 0.15rem; }

/* On the dark CTA card inside the services grid, invert the outline */
.card--cta .ico { color: #fff; }

@media (max-width: 520px) {
  .ico-wrap { width: 64px; height: 64px; }
  .ico { width: 46px; height: 46px; }
}

/* Value cards carry a mark too */
.value {
  border-left-width: 3px;
  padding-top: 1.4rem;
  gap: 0.5rem;
}
.value .ico-wrap { width: 60px; height: 60px; margin-bottom: 0.15rem; margin-left: -0.35rem; }
.value .ico { width: 42px; height: 42px; }
.value:hover .ico-wrap::before { opacity: 1; transform: scale(1); }
.value:hover .ico__accent { transform: scale(1.14); }

/* Founder stat chip mark */
.stat-chip__icon { background: var(--brand-50); }
.stat-chip__icon .ico { width: 22px; height: 22px; }

/* Icons a step larger again — they carry the visual weight of these sections */
.ico-wrap { width: 80px; height: 80px; border-radius: 22px; }
.ico { width: 58px; height: 58px; }
@media (max-width: 520px) {
  .ico-wrap { width: 68px; height: 68px; }
  .ico { width: 50px; height: 50px; }
}
.value .ico-wrap { width: 62px; height: 62px; }
.value .ico { width: 44px; height: 44px; }

/* With a large centred mark the numeral should recede, not compete */
.card--why.card--center .card__num { font-size: 1.75rem; top: 0.9rem; right: 1.15rem; font-weight: 600; }

/* The in-grid CTA card matches its centred neighbours */
.card--cta { justify-items: center; text-align: center; }
.card--cta p { max-width: 44ch; }

/* ==========================================================================
   28. Editorial refresh
   --------------------------------------------------------------------------
   The rounded "pill badge" and the gradient "band card" have been removed
   from the system entirely. Section labels are now plain letterspaced caps
   with a hairline rule; feature blocks are full-width editorial layouts.
   ========================================================================== */

/* --- Section label (replaces the pill) ---------------------------------- */
.eyebrow {
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  letter-spacing: 0.17em;
  gap: 0.65rem;
}
.eyebrow::before { width: 24px; height: 1px; border-radius: 0; opacity: 0.9; }
.eyebrow--on-dark { color: var(--brand-300); }

/* Centred label gets rules on both sides */
.sec-head--center .eyebrow::after {
  content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.9; flex: none;
}

/* Hero kicker — no rule, just refined caps */
.kicker {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand-300);
  margin-bottom: 0.35rem;
}

/* --- Hero: centred, editorial ------------------------------------------ */
.hero { text-align: center; }
.hero::before {
  background:
    linear-gradient(180deg, rgba(20,13,10,0.86) 0%, rgba(20,13,10,0.78) 45%, rgba(20,13,10,0.9) 100%),
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(20,13,10,0.42), rgba(20,13,10,0.86));
}
.hero__inner {
  max-width: 46rem;
  margin-inline: auto;
  justify-items: center;
  gap: 1.5rem;
}
.hero h1 .accent { color: var(--brand-300); }
.hero .lede { max-width: 44ch; margin-inline: auto; }

/* Fine animated waveform rule under the headline */
.hero__rule { width: min(340px, 62vw); height: 26px; margin-block: 0.25rem; }
.hero__rule svg { width: 100%; height: 100%; }
.hero__wave rect {
  fill: rgba(255, 255, 255, 0.42);
  transform-box: fill-box;
  transform-origin: center;
  animation: heroWave 2.4s var(--ease-io) infinite alternate;
}
.hero__wave rect:nth-child(3n)   { animation-delay: -0.4s; fill: rgba(217,165,142,0.85); }
.hero__wave rect:nth-child(3n+1) { animation-delay: -0.9s; }
.hero__wave rect:nth-child(5n)   { animation-delay: -1.5s; }
.hero__wave rect:nth-child(7n)   { animation-delay: -2.0s; }
@keyframes heroWave { from { transform: scaleY(0.16); } to { transform: scaleY(1); } }

.hero__meta {
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1.35rem;
  margin-top: 0.5rem;
  gap: 0.5rem 2rem;
}
.hero__meta li { color: #ddd0c9; font-size: 0.75rem; letter-spacing: 0.06em; }
.hero__meta li + li { position: relative; }
.hero__meta li + li::before {
  content: ""; position: absolute; left: -1rem; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--brand-300); transform: translateY(-50%);
}
.hero__dots { left: 50%; transform: translateX(-50%); }

@media (max-width: 700px) {
  .hero { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 3.25rem; }
  .hero__inner { gap: 1.15rem; }
  .hero .h-hero { font-size: clamp(1.85rem, 8.4vw, 2.35rem); }
  .hero .lede { font-size: 0.9063rem; line-height: 1.72; }
  .hero .btn { min-height: 42px; padding: 0.6rem 1.15rem; font-size: 0.8125rem; }
  .hero__meta { flex-direction: column; gap: 0.5rem; align-items: center; }
  .hero__meta li + li::before { display: none; }
  .hero__dots { position: static; transform: none; justify-content: center; margin-top: 1.5rem; }
}

/* --- Editorial media layout (The Fix) ----------------------------------- */
.frame { border-radius: var(--r-lg); overflow: hidden; background: var(--grey-100); }
.frame picture, .frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.frame--16-9 { aspect-ratio: 16 / 9; }
.frame--4-3  { aspect-ratio: 4 / 3; }
.frame--3-2  { aspect-ratio: 3 / 2; }

.editorial { display: grid; gap: clamp(1.75rem, 3.5vw, 2.75rem); }
@media (min-width: 900px) {
  .editorial { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); align-items: start; }
}
.editorial__lead figcaption { padding-top: 1.35rem; display: grid; gap: 0.55rem; max-width: 52ch; }
.editorial__lead h3 { font-size: 1.15rem; }
.editorial__lead p { font-size: 0.9063rem; line-height: 1.75; }
.editorial__aside { display: grid; gap: clamp(1.5rem, 2.5vw, 2rem); align-content: start; }
.editorial__note { display: grid; gap: 0.6rem; padding-left: 1.15rem; border-left: 2px solid var(--brand-500); }
.editorial__note h3 { font-size: 1.05rem; }
.editorial__note p { font-size: 0.875rem; line-height: 1.75; }
.editorial__note .link-arrow { margin-top: 0.25rem; }

/* --- Trust row: wordmarks, no boxes, no initials ------------------------ */
.trust { border-bottom: 1px solid var(--line-soft); }
.trust__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem clamp(1.75rem, 4vw, 3.25rem);
}
.wordmark {
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-700);
  opacity: 0.62;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
  cursor: default;
}
.wordmark:hover { opacity: 1; color: var(--brand-600); }

/* --- Work cards (Shows) -------------------------------------------------- */
.work {
  display: grid; align-content: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.work:hover { border-color: var(--brand-200); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.work__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--grey-100); position: relative; }
.work__media picture, .work__media img { width: 100%; height: 100%; object-fit: cover; }
.work__media img { transition: transform 0.9s var(--ease); }
.work:hover .work__media img { transform: scale(1.055); }
.work__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,19,16,0) 55%, rgba(26,19,16,0.22));
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.work:hover .work__media::after { opacity: 1; }
.work__body { padding: clamp(1.25rem, 2vw, 1.6rem); display: grid; gap: 0.5rem; }
.work__cat {
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-600);
}
.work__title { font-size: 1.0313rem; line-height: 1.35; }
.work__desc { font-size: 0.8438rem; line-height: 1.7; color: var(--ink-600); }
.work__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding-top: 0.35rem; }

/* --- Free audit: flat dark section, no card ----------------------------- */
.offer { border-top: 1px solid rgba(255,255,255,0.06); }
.offer__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 900px) {
  .offer__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: start; }
}
.offer__copy { display: grid; gap: 1rem; align-content: start; }
.offer__list { display: grid; gap: 0; align-content: start; }
.offer__list li {
  display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9063rem; color: var(--on-dark-muted);
}
.offer__list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.offer__list span {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--brand-300);
}
.offer__actions { margin-top: clamp(2rem, 3.5vw, 2.75rem); }

/* --- Flat add-on / pitch blocks (replace band cards) -------------------- */
.addon {
  display: grid; gap: 1.5rem; align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 820px) {
  .addon { grid-template-columns: minmax(0, 1fr) auto; gap: 2.5rem; }
}
.pitch {
  max-width: 44rem;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

/* --- Contact tiles: two up ---------------------------------------------- */
@media (min-width: 700px) {
  .contact-tiles--2 { grid-template-columns: repeat(2, 1fr); max-width: 46rem; margin-inline: auto; }
}

/* ==========================================================================
   29. Loader
   ========================================================================== */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--white);
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
html.loading body { overflow: hidden; }

.loader__mark { display: grid; justify-items: center; gap: 1.15rem; }
.loader__bars rect {
  transform-box: fill-box;
  transform-origin: center;
  animation: loadWave 0.9s var(--ease-io) infinite alternate;
}
.loader__bars rect:nth-child(2n)   { animation-delay: -0.15s; }
.loader__bars rect:nth-child(3n)   { animation-delay: -0.35s; }
.loader__bars rect:nth-child(5n)   { animation-delay: -0.55s; }
.loader__bars rect:nth-child(7n)   { animation-delay: -0.75s; }
@keyframes loadWave { from { transform: scaleY(0.35); } to { transform: scaleY(3); } }

.loader__name {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--ink-500);
  animation: loadFade 0.7s var(--ease) both;
}
@keyframes loadFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .loader__bars rect, .loader__name { animation: none; }
}

/* ==========================================================================
   30. Mobile navigation — full-screen dark overlay
   ========================================================================== */
.burger__box { height: 14px; }
.burger__box span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 100%; }
.burger__box span:last-child { bottom: 0; width: 100%; }
.burger[aria-expanded="true"] .burger__box span:first-child { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(0.3); }
.burger[aria-expanded="true"] .burger__box span:last-child { transform: translateY(-6px) rotate(-45deg); }

.mobilemenu {
  background: rgba(20, 13, 10, 0.965);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 2.5rem;
  text-align: center;
}
.mobilemenu__nav { display: grid; place-content: center; flex: 1; }
.mobilemenu__list { display: grid; gap: 0.35rem; }
.mobilemenu__list li + li { border-top: 0; }
.mobilemenu__link {
  display: block;
  justify-content: center;
  padding: 0.85rem 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: color var(--dur-fast) var(--ease), opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mobilemenu.is-open .mobilemenu__link { opacity: 1; transform: none; }
.mobilemenu.is-open li:nth-child(1) .mobilemenu__link { transition-delay: 0.08s; }
.mobilemenu.is-open li:nth-child(2) .mobilemenu__link { transition-delay: 0.14s; }
.mobilemenu.is-open li:nth-child(3) .mobilemenu__link { transition-delay: 0.20s; }
.mobilemenu.is-open li:nth-child(4) .mobilemenu__link { transition-delay: 0.26s; }
.mobilemenu.is-open li:nth-child(5) .mobilemenu__link { transition-delay: 0.32s; }
.mobilemenu__link[aria-current="page"] { color: var(--brand-300); }
.mobilemenu__link:active { color: var(--brand-300); }

.mobilemenu__foot {
  display: grid; justify-items: center; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.mobilemenu__foot .btn { min-height: 44px; padding: 0.6rem 1.5rem; font-size: 0.8438rem; }
.mobilemenu__mail { font-size: 0.8125rem; color: var(--on-dark-faint); }

/* Header sits transparent over the dark hero/page-header on mobile, so the
   hamburger reads white against the imagery; it solidifies on scroll. */
@media (max-width: 959.98px) {
  .header { background: transparent; border-bottom-color: transparent; }
  .header .brand__name { color: #fff; }
  .header .brand__sub { color: var(--brand-300); }
  .header .burger__box span { background: #fff; }
  .header.is-stuck {
    background: #fff;
    border-bottom-color: var(--line-soft);
    box-shadow: 0 1px 18px -6px rgba(36, 26, 21, 0.14);
  }
  .header.is-stuck .brand__name { color: var(--ink-900); }
  .header.is-stuck .brand__sub { color: var(--brand-600); }
  .header.is-stuck .burger__box span { background: var(--ink-900); }
  /* while the overlay is open the icon must stay white regardless of scroll */
  body.menu-open .header,
  body.menu-open .header.is-stuck { background: transparent; box-shadow: none; border-bottom-color: transparent; }
  body.menu-open .header .brand__name { color: #fff; }
  body.menu-open .header .brand__sub { color: var(--brand-300); }
  body.menu-open .header .burger__box span { background: #fff; }
}

/* ==========================================================================
   31. Floating "Book a Meeting" — mobile only
   ========================================================================== */
.floatcta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 100px;
  background: var(--brand-500);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow: 0 10px 26px -8px rgba(161, 83, 52, 0.62);
  transform: translateY(120%);
  transition: transform 0.45s var(--ease), background-color var(--dur-fast) var(--ease);
}
.floatcta.is-shown { transform: none; }
.floatcta:active { background: var(--brand-600); }
.floatcta svg { flex: none; }
@media (max-width: 959.98px) { .floatcta { display: inline-flex; } }
body.menu-open .floatcta { transform: translateY(160%); }

/* ==========================================================================
   32. Extra motion — direction-aware reveals & image wipes
   ========================================================================== */
[data-reveal="left"]  { transform: translateX(-22px); }
[data-reveal="right"] { transform: translateX(22px); }
[data-reveal="left"].is-in,
[data-reveal="right"].is-in { transform: none; }

[data-reveal] .frame img,
[data-reveal] .work__media img,
[data-reveal] .figure img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.85s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--delay, 0ms) + 60ms);
}
[data-reveal].is-in .frame img,
[data-reveal].is-in .work__media img,
[data-reveal].is-in .figure img { clip-path: inset(0 0 0 0); }
.no-js [data-reveal] .frame img,
.no-js [data-reveal] .work__media img,
.no-js [data-reveal] .figure img { clip-path: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] .frame img,
  [data-reveal] .work__media img,
  [data-reveal] .figure img { clip-path: none; }
}

/* Buttons get a touch more life */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.22) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease);
}
.btn--primary:hover::after { transform: translateX(120%); }
.btn--primary > * { position: relative; z-index: 1; }

/* ==========================================================================
   33. Mobile length trim
   ========================================================================== */
@media (max-width: 767.98px) {
  /* the wordmark row repeats what the Shows page already says */
  .trust { display: none; }
}

/* Service bands: give imagery real presence and alternate the rhythm */
.service { gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 940px) {
  .service { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .service--flip > .service__media { order: 2; }
}
.service__media .frame { box-shadow: var(--shadow-lg); }
.service__copy { gap: 1.25rem; }
.service__head { gap: 0.75rem; }

/* Hero scrim tuned so the photograph still reads while the centred copy
   stays comfortably above AA (verified against the brightest pixel). */
.hero::before {
  background:
    linear-gradient(180deg, rgba(20,13,10,0.74) 0%, rgba(20,13,10,0.6) 45%, rgba(20,13,10,0.8) 100%),
    radial-gradient(ellipse 72% 64% at 50% 46%, rgba(20,13,10,0.36), rgba(20,13,10,0.82));
}

/* Waveform rule: baseline shape stays legible, motion is a gentle breathe */
.hero__wave rect {
  fill: rgba(255, 255, 255, 0.55);
  transform-origin: center;
  animation: heroWave 2.8s var(--ease-io) infinite alternate;
}
.hero__wave rect:nth-child(4n)   { fill: rgba(217,165,142,0.95); }
@keyframes heroWave { from { transform: scaleY(0.55); } to { transform: scaleY(1.25); } }

/* Labels sitting over photography need one step more lift than the same
   label on a flat dark panel — measured against the brightest hero pixel. */
.kicker { color: var(--brand-200); }
.hero .eyebrow--on-dark,
.pagehead .eyebrow--on-dark,
.cta-image .eyebrow--on-dark { color: var(--brand-200); }

/* Footer column headings are h2 inside the contentinfo landmark (keeps the
   document heading order clean) but keep their small-caps appearance. */
.footer__h {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff; margin-bottom: 1rem;
}
