/* Full Vision Media — static site
   Marina palette (boutique, coastal, light-first).
   Fonts unchanged: Cormorant Garamond + Instrument Sans. */

:root {
  /* Brand tokens */
  --paper: #f8f6f1;
  --fog: #edeae1;
  --ocean-glass: #7fa096;
  --brass: #a98b54;
  --brass-light: #c2a36b;
  --deep-sea: #2c4a50;
  --deepest: #132a2e;
  --mist: #9fb5ae;
  --mist-on-dark: #b4cbc5;
  --driftwood: #4a504b;

  /* Mapped site tokens */
  --surface: var(--paper);
  --surface-alt: color-mix(in srgb, var(--fog) 55%, var(--paper));
  --ink: #1f211f;
  --ink-heading: #2c302c;
  --ink-muted: var(--driftwood);
  --ink-faint: color-mix(in srgb, var(--driftwood) 72%, var(--paper));
  --line: var(--fog);
  --eucalyptus: var(--ocean-glass);
  --eucalyptus-wash: color-mix(in srgb, var(--ocean-glass) 16%, var(--paper));
  --stone: var(--fog);
  --stone-wash: color-mix(in srgb, var(--fog) 35%, var(--paper));
  --gold: var(--brass);
  --ash: color-mix(in srgb, var(--fog) 50%, var(--paper));
  --ink-hover: #33362f;
  --rollover: var(--ocean-glass);
  --rollover-wash: var(--eucalyptus-wash);
  --max: 80rem;
  --pad: 1.5rem;
  --pad-lg: 2.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --radius: 5px;
  --radius-card: 10px;
  --display-section: clamp(2rem, 3.6vw, 3.15rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: color-mix(in srgb, var(--eucalyptus) 25%, transparent);
}

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

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

/* Layout */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

@media (min-width: 1024px) {
  .container { padding-left: var(--pad-lg); padding-right: var(--pad-lg); }
}

.section { padding: 4.75rem 0; }

@media (min-width: 1024px) {
  .section { padding: 6.5rem 0; }
}

.section--sm { padding: 4.75rem 0; }

@media (min-width: 1024px) {
  .section--sm { padding: 5.75rem 0; }
}

.section--sm.bg-dark {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .section--sm.bg-dark {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* Layout — simple splits, no 12-col grid */
.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .split--hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: end;
  }

  .split--50 {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .split--philosophy {
    align-items: center;
  }

  .split--philosophy .text-muted {
    font-size: calc(1rem + 1pt);
  }


  .split--60-40 {
    grid-template-columns: 1.25fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .split--contact {
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 4rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .split--contact {
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: 5rem;
  }
}

.contact-form-wrap {
  min-width: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .split--contact {
    gap: 2.5rem;
  }

  .contact-form-wrap {
    order: 2;
  }
}

/* Typography */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-heading);
}

h1.display {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 1rem 0 0;
}

.hero-title {
  margin: 1rem 0 0;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.hero-title__line {
  display: block;
}

.hero-title__line--muted {
  color: #646766;
  font-style: normal;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.15rem 0 0;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--brass) 48%, var(--fog));
}

.hero-meta__rule {
  display: block;
  width: 2.35rem;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
  flex: 0 0 auto;
}



h2.display {
  font-size: var(--display-section);
  margin: 0.75rem 0 0;
  line-height: 1.12;
}

h2.display--section {
  font-size: var(--display-section);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h3.display { font-size: 1.5rem; margin: 0; }

.text-muted { color: var(--ink-muted); }
.text-faint { color: var(--ink-faint); font-size: 0.875rem; }
.text-balance { text-wrap: balance; }
.text-lg { font-size: 1.125rem; line-height: 1.7; }

.hero-dek {
  max-width: 24rem;
}

.lead { font-size: 1.125rem; line-height: 1.7; color: var(--ink-muted); max-width: 42rem; }
.lead--full { max-width: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(1.75rem - 4px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav-main {
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  .header-inner { padding: calc(2rem - 4px) var(--pad-lg); }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}

.logo svg,
.logo-mark,
.logo-img {
  flex-shrink: 0;
  display: block;
  background: transparent;
}

.logo-img {
  height: 18px;
  width: auto;
}

.site-footer .logo-img {
  height: 18px;
}

.logo-text {
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-main { display: none; gap: 2.5rem; align-items: center; }

@media (min-width: 768px) {
  .nav-main { display: flex; }
}

.nav-main a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] { color: var(--ink); }

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -0.75rem;
  right: -0.75rem;
  top: 100%;
  height: 0.625rem;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle,
.nav-dropdown__toggle[aria-current="true"] {
  color: var(--ink);
}

.nav-dropdown__chevron {
  width: 0.65rem;
  height: 0.65rem;
  transition: transform 0.2s;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 13rem;
  margin: 0;
  padding: 0.375rem 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 60;
}

.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
  background: transparent;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown__menu a[aria-current="page"] {
  color: var(--ink);
}

.nav-dropdown__menu:not(:has(a:hover, a:focus-visible)) a[aria-current="page"] {
  background: color-mix(in srgb, var(--fog) 45%, var(--paper));
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: var(--ink);
  background: color-mix(in srgb, var(--fog) 45%, var(--paper));
}

.nav-dropdown__menu:has(a:hover) a:not(:hover),
.nav-dropdown__menu:has(a:focus-visible) a:not(:focus-visible) {
  color: var(--ink-muted);
  background: transparent;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  padding: 1.5rem var(--pad);
}

.nav-mobile.is-open { display: block; }

@media (min-width: 768px) {
  .nav-mobile { display: none !important; }
}

.nav-mobile ul { list-style: none; margin: 0; padding: 0; }

.nav-mobile li { margin-bottom: 0.85rem; }

.nav-mobile a.display,
.nav-mobile .nav-mobile-link {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
}

.nav-mobile-label {
  display: block;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ink-muted);
}

.nav-mobile-sub {
  list-style: none;
  margin: 0.55rem 0 0;
  padding: 0 0 0 0.25rem;
}

.nav-mobile-sub li { margin-bottom: 0.5rem; }

.nav-mobile-sub a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink-muted);
  padding: 0.125rem 0;
}

.nav-mobile-sub a:hover,
.nav-mobile-sub a[aria-current="page"] {
  color: var(--ink);
}

/* Buttons & links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.5em;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.btn-primary {
  background: var(--ink);
  color: var(--surface);
}

.btn-primary:hover {
  background: var(--ink-hover);
  color: var(--surface);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in srgb, var(--fog) 70%, var(--driftwood));
}

.btn-secondary:hover {
  background: transparent;
  border-color: var(--driftwood);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.75rem; }

.link-underline {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.link-underline:hover {
  color: var(--brass);
}

.link-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.link-underline:hover::after { transform: scaleX(1); }

/* Sections */
.border-b { border-bottom: 1px solid var(--line); }
.border-t { border-top: 1px solid var(--line); }
.border-y { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.bg-dark {
  background: var(--deep-sea);
  color: var(--paper);
}

.bg-dark .text-muted { color: var(--mist-on-dark); }

.bg-dark .eyebrow {
  color: var(--brass-light);
}

.bg-dark .display {
  color: var(--paper);
}

.bg-dark .btn-primary {
  background: var(--paper);
  color: var(--deep-sea);
}

.bg-dark .btn-primary:hover {
  background: var(--fog);
  color: var(--deep-sea);
}

.bg-dark .btn-secondary {
  background: transparent;
  border-color: var(--paper);
  color: var(--paper);
}

.bg-dark .btn-secondary:hover {
  background: color-mix(in srgb, var(--paper) 8%, transparent);
  border-color: var(--paper);
  color: var(--paper);
}

.section-cta {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.section-cta .link-underline {
  margin-top: 2rem;
}

.section-cta .text-muted {
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .section-cta {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn:hover,
  .btn:active {
    transform: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
}

.bg-alt,
.bg-ash {
  background: var(--surface-alt);
}

.bg-fog {
  /* Accent surface only — not for full-page section grounds */
  background: var(--fog);
}

.bg-stone-wash {
  background-color: var(--stone-wash);
}

.bg-eucalyptus-wash,
.bg-rollover-wash,
.bg-ocean-wash {
  background-color: var(--eucalyptus-wash);
}

.bg-deep-wash {
  background: color-mix(in srgb, var(--deep-sea) 9%, var(--paper));
}

/* Ink is never a section ground — alias kept only so old class names stay deep sea */
.bg-ink {
  background: var(--deep-sea);
  color: var(--paper);
}

.bg-dark.border-b,
.bg-dark.border-t,
.bg-dark.border-y,
.bg-ink.border-b,
.bg-ink.border-t,
.bg-ink.border-y {
  border-color: color-mix(in srgb, var(--paper) 14%, transparent);
}

.bg-dark .lead,
.bg-ink .lead {
  color: var(--mist-on-dark);
}

.offer-line {
  margin: 3.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--paper) 22%, transparent);
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.45;
  color: var(--paper);
  text-wrap: balance;
}

.bg-ink .text-muted { color: var(--mist-on-dark); }

.bg-ink .eyebrow {
  color: var(--brass-light);
}

.bg-ink .display {
  color: var(--paper);
}

.bg-ink .btn-primary {
  background: var(--paper);
  color: var(--deep-sea);
}

.bg-ink .btn-primary:hover {
  background: var(--fog);
  color: var(--deep-sea);
}

.bg-ink .btn-secondary {
  background: transparent;
  border-color: var(--paper);
  color: var(--paper);
}

.bg-ink .btn-secondary:hover {
  background: color-mix(in srgb, var(--paper) 8%, transparent);
  border-color: var(--paper);
  color: var(--paper);
}

.bg-dark .link-underline,
.bg-ink .link-underline {
  color: var(--brass-light);
}

.bg-dark .link-underline:hover,
.bg-ink .link-underline:hover {
  color: var(--paper);
}

.section-cta.bg-dark,
.section-cta.bg-ink {
  border-color: transparent;
}

.section-cta.bg-dark .text-muted,
.section-cta.bg-ink .text-muted {
  color: var(--mist-on-dark);
}


.split--philosophy .philosophy-emph {
  font-style: italic;
  font-weight: 400;
  color: var(--mist-on-dark);
}

.statement-band {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .statement-band {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }
}

.statement-band .container {
  display: flex;
  justify-content: center;
}

.statement-line {
  margin: 0 auto;
  max-width: 42rem;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  line-height: 1.55;
  font-weight: 400;
  text-align: center;
  text-wrap: balance;
}

.statement-line__row {
  display: block;
}

.statement-line__dim {
  color: var(--mist-on-dark);
}

.statement-line__lit,
.statement-line__emph {
  color: #f4f1ea;
  font-style: normal;
}

.statement-line__emph {
  font-style: italic;
  font-weight: 400;
}

@media (min-width: 640px) {
  .statement-line {
    max-width: none;
  }

  .statement-line__row {
    white-space: nowrap;
  }
}

.pull-quote {
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-muted);
  text-wrap: balance;
}

.pull-quote__break {
  display: none;
}

@media (min-width: 640px) {
  .pull-quote__break {
    display: inline;
  }
}

.pull-quote strong { color: var(--ink); font-weight: 400; }

/* Process steps */
.process-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .process-grid--compact { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid--full { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.process-step h3 { margin-top: 0.75rem; }

.process-step p { font-size: 0.875rem; color: var(--ink-muted); margin: 1rem 0 0; }

/* Our approach — compact strip (homepage) */
.approach-strip {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .approach-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 2rem;
  }
}

.approach-strip .display {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.625rem);
  line-height: 1.15;
}

.approach-strip p {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--driftwood);
}

/* Our approach — lined list (service pages) */
.approach-list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--fog);
}

.approach-item {
  display: grid;
  gap: 0.75rem 2.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--fog);
}

.approach-item .display {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  line-height: 1.15;
}

.approach-item p {
  margin: 0;
  max-width: 36rem;
  color: var(--driftwood);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .approach-item {
    grid-template-columns: minmax(10rem, 14rem) 1fr;
    align-items: baseline;
    padding: 2rem 0;
    gap: 2rem 3rem;
  }
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  margin-top: 3.5rem;
}

@media (min-width: 1024px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--fog);
  border-radius: var(--radius-card);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .card { padding: 2.5rem; }
}

.card .display { margin-top: 1.25rem; font-size: 1.5rem; line-height: 1.3; }

/* Client focus — two-column interactive lists */
.client-section__heading + .client-columns {
  margin-top: 3.5rem;
}

.client-columns {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 900px) {
  .client-columns {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .client-columns { gap: 5.5rem; }
}

.client-column__header {
  margin-bottom: 1.25rem;
}

.client-column__header .display {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.15;
}

.client-column__lead {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.client-column .client-tags {
  margin-top: 0;
}

.client-column .client-tags li {
  padding: 0.3em 1em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
}

.client-content {
  margin-top: 3.5rem;
  padding-top: 3rem;
}

.client-content .eyebrow {
  margin-bottom: 1.5rem;
}

.client-content-label {
  margin: 0;
}

/* Audience sections + reveal loops */
.audience-intro .display {
  margin: 0.75rem 0 0;
  max-width: 52rem;
}

.audience-roster {
  margin-top: 3rem;
  padding-top: 2.35rem;
  border-top: 1px solid color-mix(in srgb, var(--brass) 14%, var(--paper));
}

.audience-roster__label {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.audience-tags > li {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--driftwood);
  background: color-mix(in srgb, var(--paper) 94%, var(--fog));
  border: 1px solid color-mix(in srgb, var(--fog) 92%, var(--driftwood));
  border-radius: 999px;
}

@media (max-width: 767px) {
  .audience-tags {
    gap: 0.375rem;
  }

  .audience-tags > li {
    padding: 0.3rem 0.65rem;
  }
}

.reveal-loop {
  margin-top: 2.75rem;
  padding-top: 0;
  border-top: none;
}

.reveal-loop > .eyebrow {
  margin-bottom: 1.5rem;
}

.reveal-loop__lead {
  margin: 1rem 0 0;
  max-width: none;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  color: var(--ink);
}

.reveal-loop__lead-line {
  display: block;
}

@media (min-width: 640px) {
  .reveal-loop__lead-line {
    white-space: nowrap;
  }
}

.reveal-loop__steps {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.reveal-loop__lead + .reveal-loop__steps {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .reveal-loop__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .reveal-loop__steps--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .reveal-loop__steps--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.reveal-loop__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.45rem;
  width: 100%;
  min-height: 6.6rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid color-mix(in srgb, var(--fog) 88%, var(--driftwood));
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.reveal-loop__step:hover:not(.is-active) {
  background: transparent;
  border-color: #a2aba3;
}

.reveal-loop__step.is-active {
  background: #edeee9;
  border-color: #a2aba3;
  color: var(--ink);
}

.reveal-loop__label {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
}

.reveal-loop__hint {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-muted);
}

.reveal-loop__step.is-active .reveal-loop__hint {
  color: var(--driftwood);
}

.reveal-loop__panels {
  margin-top: 1.5rem;
  min-height: 0;
  padding: 1.35rem 1.55rem 1.35rem 1.7rem;
  background: #f1efe9;
  border-left: 3px solid var(--brass);
}

.reveal-loop__panel {
  margin: 0;
  max-width: none;
  font-family: var(--font-body);
  font-size: calc(clamp(1.05rem, 1.8vw, 1.2rem) - 1pt);
  line-height: 1.6;
  color: var(--ink-heading);
  text-wrap: pretty;
}

.reveal-loop__panel[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-loop__step,
  .reveal-loop__step.is-active {
    transform: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
}

.client-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.client-list--static .client-list__item {
  cursor: default;
  color: var(--ink-faint);
  font-size: 0.875rem;
  padding: 0.75rem 0;
}

.client-list--static .client-list__item:hover {
  color: var(--ink-faint);
}

.client-section .client-list__item {
  font-size: 0.875rem;
  padding: 0.75rem 0;
  color: var(--ink-faint);
}

.client-section .client-list__item.is-active {
  color: var(--ink);
}

.client-focus {
  display: block;
}

.client-list__item {
  display: block;
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.client-list__item:hover {
  color: var(--ink);
}

.client-list__item.is-active {
  color: var(--ink);
}

.client-list__item:focus-visible {
  outline: 2px solid var(--eucalyptus);
  outline-offset: 4px;
}

.client-panels {
  position: relative;
  margin-top: 1.75rem;
}

.client-panel {
  animation: client-panel-in 0.35s var(--ease);
}

.client-panel[hidden] {
  display: none;
}

@keyframes client-panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-panel__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.client-tags li {
  padding: 0;
}

.client-tag {
  display: block;
  padding: 0.5rem 0.875rem;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--ash);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.client-tag:hover,
.client-tag.is-active {
  background: color-mix(in srgb, var(--eucalyptus) 22%, white);
}

.client-tag:focus-visible {
  outline: 2px solid var(--eucalyptus);
  outline-offset: 2px;
}

.client-panel.is-active .client-tags li:hover {
  background: color-mix(in srgb, var(--eucalyptus) 22%, white);
}

@media (prefers-reduced-motion: reduce) {
  .client-panel {
    animation: none;
  }
}

/* Video placeholder */
.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--deep-sea);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: none;
}

.case-study { margin-top: 3.5rem; }

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1rem;
}

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

/* Featured work / case study */
.featured-work__frame {
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
}

.featured-work__header {
  margin-top: 0.75rem;
}

.featured-work__role {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.featured-work__tags {
  margin-top: 1.5rem;
}

.featured-work__summary {
  margin-top: 1.5rem;
  max-width: none;
}

.featured-work__caption {
  margin-top: 2rem;
  max-width: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink-faint);
}

.featured-work__media {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .featured-work__media {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.85fr);
    gap: 1.75rem;
  }

  .featured-work__media--carousel-only {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }

  .featured-work__media--social {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2.75rem;
    align-items: start;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
}

.media-carousel__viewport {
  position: relative;
  overflow: hidden;
}

.featured-work__media--carousel-only .media-carousel__viewport {
  aspect-ratio: auto;
}

.featured-work__media--carousel-only .media-carousel__slide.is-active {
  height: auto;
}

.featured-work__media--carousel-only .media-carousel__slide[data-aspect="9x16"].is-active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-work__media--social .media-carousel {
  width: fit-content;
  max-width: 100%;
}

.media-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
}

.media-carousel__slide {
  display: none;
}

.media-carousel__slide.is-active {
  display: block;
}

.media-frame {
  width: 100%;
  background: var(--deep-sea);
  color: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}

.media-frame--16x9 {
  aspect-ratio: 16 / 9;
}

.featured-work__media--carousel-only .media-frame--16x9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.media-frame--9x16 {
  aspect-ratio: 9 / 16;
  width: min(100%, 14rem);
}

.featured-work__media--carousel-only .media-frame--9x16 {
  width: min(20rem, 100%);
  height: auto;
  max-width: 100%;
  aspect-ratio: 9 / 16;
}

.featured-work__media--social .media-frame--9x16 {
  width: 20rem;
  max-width: 100%;
}

.media-frame video,
.media-frame iframe,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.media-carousel__controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.875rem;
}

.media-carousel__btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-sea);
  background: transparent;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--deep-sea) 35%, transparent);
  padding: 0.25rem 0;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.media-carousel__btn:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
  transform: translateY(-1px);
}

.media-carousel__btn:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.photo-grid-block {
  max-width: 22rem;
}

.featured-work__media--social .photo-grid-block {
  max-width: none;
  width: 100%;
  padding-top: 0.15rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.featured-work__media--social .photo-grid {
  gap: 0.625rem;
}

.photo-grid__item {
  margin: 0;
}

.photo-grid__placeholder,
.photo-grid__item img {
  aspect-ratio: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  background: color-mix(in srgb, var(--deep-sea) 18%, var(--fog));
}

.photo-grid__item img {
  background: transparent;
}

.photo-grid__credit {
  margin: 0.75rem 0 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-faint);
}

/* Form */
.form-panel {
  border: 1px solid var(--line);
  padding: 2rem;
  background: var(--fog);
  width: 100%;
}

@media (min-width: 1024px) {
  .form-panel { padding: 2.5rem 3rem; }
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 540px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

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

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

input, select, textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23767676' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 9rem;
}

.form-actions {
  margin-top: 0.5rem;
}

.form-error {
  color: var(--ink-muted);
  margin: 0;
}

.form-success { display: none; }
.form-success.is-visible { display: block; }
#contact-form.is-hidden { display: none; }

.hp { position: absolute; left: -9999px; opacity: 0; }

/* Footer */
.site-footer {
  font-family: var(--font-body);
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 3.5rem 0 2.5rem;
}

@media (min-width: 1024px) {
  .site-footer { padding: 4.5rem 0 2.5rem; }
}

.footer-main {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.35fr 1fr;
    gap: 5rem;
  }
}

.footer-brand {
  max-width: 22rem;
}

.footer-tagline {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.footer-links {
  display: flex;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-links {
    gap: 4rem;
  }
}

.footer-nav ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.footer-nav li { margin-bottom: 0.75rem; }
.footer-nav li:last-child { margin-bottom: 0; }

.footer-nav a {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.footer-nav a:hover { color: var(--ink); }

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 3rem;
  font-size: 0.75rem;
  color: var(--ink-faint);
}

.footer-meta p { margin: 0; }

@media (min-width: 640px) {
  .footer-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* Utilities */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.list-lined { list-style: none; margin: 0; padding: 0; }
.list-lined li {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--ink-muted);
}
.list-lined li:last-child { border-bottom: none; margin-bottom: 0; }

.blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
}

/* FAQ */
.faq-list {
  max-width: 40rem;
}

.faq-section--home .section-heading {
  margin-bottom: 2.5rem;
}

.faq-section--home .faq-list {
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-top: 1px solid var(--fog);
}

.faq-item:first-child {
  border-top: none;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--fog);
}

.faq-item__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem 0;
  border: none;
  background: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
}

.faq-question:hover,
.faq-item.is-open .faq-question {
  color: var(--ink);
}

.faq-question:focus-visible {
  outline: 2px solid var(--ocean-glass);
  outline-offset: 4px;
}

.faq-question__text {
  flex: 1;
  min-width: 0;
}

.faq-icon {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45em;
  border-right: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out;
}

.faq-item.is-open .faq-icon {
  transform: rotate(-135deg);
  margin-top: 0.55em;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--driftwood);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  transition: grid-template-rows 0.3s ease-in-out;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0;
  transition: padding-bottom 0.3s ease-in-out;
}

.faq-answer__inner p + p {
  margin-top: 1rem;
}

.faq-item.is-open .faq-answer__inner {
  padding-bottom: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-answer__inner,
  .faq-icon {
    transition: none;
  }
}

.faq-answer p {
  margin: 0;
}

.faq-list-plain {
  margin: 0;
  padding-left: 1.25rem;
}

.faq-list-plain li {
  margin-bottom: 0.35rem;
}

.faq-list-plain li:last-child {
  margin-bottom: 0;
}

.faq-quote {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.section-heading { }
.section-heading .lead { margin-top: 1.25rem; }

/* Why page — focus sections */
.why-focus .display {
  font-size: var(--display-section);
  line-height: 1.12;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.why-focus .display--section {
  font-size: var(--display-section);
  letter-spacing: -0.02em;
  line-height: 1.12;
  white-space: normal;
}

@media (min-width: 768px) {
  .why-focus .display {
    overflow-wrap: normal;
  }
}

.why-focus__body {
  max-width: 40rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .why-focus__body { margin-top: 2.5rem; }
}

.about-photo {
  margin: 2rem auto 0;
  width: 100%;
  max-width: 17rem;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-credit {
  margin: 0.5rem 0 0;
  font-family: var(--font-body);
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}

.about-photo--sm {
  width: 80%;
  max-width: 16rem;
  margin-left: 0;
  margin-right: auto;
  overflow: visible;
  border: none;
  aspect-ratio: auto;
  background: transparent;
}

.about-photo--sm img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  border: 1px solid var(--fog);
  object-fit: cover;
}

/* Founder photo: single tall image, centered in the About split column */
.founder-photos {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  margin: 2rem auto 0;
  padding-top: 1.75rem;
}

.founder-photos__item {
  margin: 0;
  width: min(100%, 16.06rem);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--fog);
  background: transparent;
}

.founder-photos__item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .founder-photos {
    margin: 2.5rem 0 0;
    align-self: center;
    height: 100%;
    align-items: center;
  }

  .founder-photos__item {
    width: min(100%, 16.06rem);
  }
}

.founder-testimonial {
  max-width: 44rem;
  margin: 4.5rem auto 0;
  padding: 2.25rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--brass) 14%, var(--paper));
  text-align: center;
}

.founder-testimonial p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: color-mix(in srgb, var(--driftwood) 72%, var(--paper));
  text-wrap: pretty;
}

.founder-testimonial cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.about-photo--focus-top img {
  object-position: center 72%;
}

.page-about .hero-pad .lead,
.page-about .why-focus__body p,
.page-about .section-cta .text-muted {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-photo__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  border: 1px solid var(--fog);
  background: color-mix(in srgb, var(--deep-sea) 18%, var(--fog));
}

@media (min-width: 768px) {
  .about-photo--sm {
    width: 80%;
    max-width: none;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    align-self: start;
  }
}

.split--about-focus {
  align-items: center;
}

.split--about-focus .why-focus__body {
  max-width: none;
}

@media (min-width: 768px) {
  .about-photo {
    margin: 0 auto;
    max-width: 22rem;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    align-self: center;
  }

  #why-experts .about-photo {
    margin-top: 20px;
  }

  .split--about-focus.split--50 {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 4rem;
  }

  .split--photo-left.split--50 {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 767px) {
  .page-about .split--about-focus {
    gap: 1.25rem;
  }

  .page-about .about-photo {
    margin-top: 0.5rem;
  }

  .page-about .founder-photos {
    margin-top: 0.5rem;
    padding-top: 0;
  }

  .split--photo-left .about-photo {
    order: 2;
  }
}

@media (min-width: 768px) {
  .why-focus--offset {
    display: grid;
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
    align-items: start;
  }

  .why-focus--offset .display,
  .why-focus--offset .why-focus__body {
    grid-column: 2;
  }

  .why-focus--offset .display {
    margin-top: 0;
  }

  .why-focus--offset .why-focus__body {
    margin-top: 2rem;
    max-width: none;
  }
}

/* Service pages */
.remote-deliverables {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 1024px) {
  .remote-deliverables {
    margin-top: 5rem;
    padding-top: 3.5rem;
  }
}

.service-crosslink {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}

.service-crosslink:hover {
  color: var(--brass);
}

.section-process {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

@media (min-width: 1024px) {
  .section-process {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.process {
  display: grid;
  gap: 3.25rem;
  max-width: none;
  margin: 0;
  width: 100%;
  text-align: left;
}

@media (min-width: 960px) {
  .process {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    column-gap: 4.25rem;
    row-gap: 3rem;
    align-items: start;
  }

  .process__intro {
    grid-column: 1;
    grid-row: 1;
  }

  .process__formats {
    grid-column: 2;
    grid-row: 1;
  }

  .process__footer {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

.process__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 34rem;
}

.process .eyebrow {
  margin: 0;
}

h2.display.process__headline {
  width: auto;
  max-width: 100%;
  margin: 1.1rem 0 0;
  padding-inline: 0;
  font-size: var(--display-section);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink-heading);
  white-space: normal;
  text-wrap: balance;
  text-align: left;
}

.process__subhead {
  margin: 0.95rem 0 0;
  max-width: 34rem;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--brass);
  text-align: left;
  text-wrap: balance;
}

.process__lead {
  margin: 1.55rem 0 0;
  max-width: 32rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-muted);
  text-align: left;
  text-wrap: pretty;
}

.process__formats {
  margin-top: 0;
  width: 100%;
  min-width: 0;
}

.process__label {
  margin: 0 0 1.7rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  text-align: left;
}

.process__groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.15rem 1.75rem;
  margin: 0;
  width: 100%;
  text-align: left;
  justify-items: start;
}

.process__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
}

.process__dot {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.process__dot::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--mist) 20%, var(--driftwood));
  opacity: 0.35;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

.process__dot.is-active::after {
  opacity: 1;
  transform: scale(1.15);
  background: color-mix(in srgb, var(--driftwood) 75%, var(--ink));
}

@media (max-width: 767px) {
  .process__formats {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process__label {
    text-align: center;
  }

  .process__groups {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 0;
    margin: 0.15rem auto 0;
    width: 100%;
    max-width: 18rem;
    text-align: center;
    touch-action: pan-y;
  }

  .process__group {
    grid-area: 1 / 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  .process__group.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .process__group-label,
  .process__list {
    align-items: center;
    text-align: center;
  }

  .process__list > li {
    justify-content: center;
  }

  .process__dots {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .process__groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
  }
}

@media (min-width: 960px) {
  .process__groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1.75rem;
  }
}

.process__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.process__group-label {
  margin: 0 0 1.05rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-heading);
  text-align: left;
}

.process__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.62rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.process__list > li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-muted);
  text-align: left;
}

.process__list > li::before {
  content: "—";
  flex: 0 0 auto;
  color: color-mix(in srgb, var(--mist) 35%, var(--driftwood));
}

.process__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  margin: 0;
  width: 100%;
  padding-top: 0.75rem;
}

.process__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.15rem 2.35rem;
  margin-top: 0;
}

.process__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--deep-sea);
  border-bottom: 1px solid color-mix(in srgb, var(--deep-sea) 35%, transparent);
  padding-bottom: 0.2rem;
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.process__link-arrow {
  font-family: var(--font-body);
  font-size: 0.85em;
  font-weight: 400;
  transition: transform 0.2s var(--ease);
}

.process__link:hover {
  color: var(--ink);
  border-bottom-color: color-mix(in srgb, var(--ink) 40%, transparent);
}

.process__link:hover .process__link-arrow {
  transform: translateX(0.15rem);
}

.text-btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--deep-sea);
  border-bottom: 1px solid color-mix(in srgb, var(--deep-sea) 35%, transparent);
  padding-bottom: 0.15rem;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.text-btn:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
  transform: translateY(-1px);
}

.service-deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-deliverables li {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.service-deliverables li:first-child {
  padding-top: 0;
}

.service-deliverables li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-dark .service-deliverables li,
.bg-ink .service-deliverables li {
  color: var(--mist);
  border-bottom-color: color-mix(in srgb, var(--paper) 14%, transparent);
}

.bg-dark .approach-item p,
.bg-ink .approach-item p {
  color: var(--mist);
}

.hero-pad {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding-top: 4rem;
  padding-bottom: 5.25rem;
}

@media (min-width: 1024px) {
  .hero-pad {
    padding-top: 5rem;
    padding-bottom: 6.75rem;
  }
}

/* Subtle cinematic wash — homepage hero only */
.hero-pad--wash {
  position: relative;
  isolation: isolate;
  min-height: min(64svh, 34rem);
  padding-top: 4.5rem;
  padding-bottom: 6.25rem;
  background:
    radial-gradient(115% 75% at 10% 15%, color-mix(in srgb, var(--ocean-glass) 10%, transparent), transparent 58%),
    radial-gradient(85% 65% at 92% 88%, color-mix(in srgb, var(--deep-sea) 7%, transparent), transparent 55%),
    linear-gradient(168deg, var(--paper) 0%, var(--paper) 42%, color-mix(in srgb, var(--fog) 55%, var(--paper)) 100%);
}

.hero-pad--wash::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

@media (min-width: 1024px) {
  .hero-pad--wash {
    min-height: min(70svh, 38rem);
    padding-top: 5.5rem;
    padding-bottom: 7.5rem;
  }
}

.hero-pad--compact {
  display: block;
  min-height: 0;
  padding-top: 3rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 1024px) {
  .hero-pad--compact {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
}

/* Extra air between the hero and the first band that follows */
.hero-pad + .section--sm,
.hero-pad + .section {
  padding-top: 5.75rem;
}

@media (min-width: 1024px) {
  .hero-pad + .section--sm,
  .hero-pad + .section {
    padding-top: 7.25rem;
  }
}

.hero-pad--compact + .section,
.hero-pad--compact + .section--sm {
  padding-top: 3.5rem;
}

@media (min-width: 1024px) {
  .hero-pad--compact + .section,
  .hero-pad--compact + .section--sm {
    padding-top: 4.5rem;
  }
}

.hero-pad + .section--sm.bg-dark {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

@media (min-width: 1024px) {
  .hero-pad + .section--sm.bg-dark {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* Motion: hero entrance + once-per-section scroll reveals */
@media (prefers-reduced-motion: no-preference) {
  .hero-choreo .eyebrow,
  .hero-choreo h1,
  .hero-choreo .lead,
  .hero-choreo .text-lg,
  .hero-choreo .btn-group {
    opacity: 0;
    transform: translate3d(0, 0.7rem, 0);
    animation: hero-choreo-in 0.48s var(--ease) forwards;
  }

  .hero-choreo .eyebrow {
    animation-delay: 0.04s;
  }

  .hero-choreo h1 {
    animation-delay: 0.12s;
  }

  .hero-choreo .lead,
  .hero-choreo .text-lg {
    animation-delay: 0.24s;
  }

  .hero-choreo .btn-group {
    animation-delay: 0.36s;
  }

  @keyframes hero-choreo-in {
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  .reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 0.4rem, 0);
    transition:
      opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
  }

  .reveal-on-scroll.is-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }

  @media (max-width: 1023px), (hover: none), (pointer: coarse) {
    .reveal-on-scroll {
      opacity: 1;
      transform: none;
      transition: none;
      will-change: auto;
    }

    @view-transition {
      navigation: none;
    }
  }

  /* Soft cross-page fade (Chrome/Safari; no-op elsewhere) */
  @view-transition {
    navigation: auto;
  }

  ::view-transition-group(root) {
    animation-duration: 0.55s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  ::view-transition-old(root) {
    animation: vt-fade-out 0.5s cubic-bezier(0.4, 0, 1, 1) both;
  }

  ::view-transition-new(root) {
    animation: vt-fade-in 0.55s cubic-bezier(0, 0, 0.2, 1) both;
  }

  @keyframes vt-fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
  }

  @keyframes vt-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}
