/* ─── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --carbon:    #141414;
  --carbon-mid:#1E1E1E;
  --teal:      #00B5A3;
  --teal-lt:   #00CCB8;
  --white:     #FFFFFF;
  --off:       #F2F2F0;
  --off-mid:   #E8E8E4;
  --muted:     #6B6B68;
  --rule:      rgba(20,20,20,.1);
  --rule-lt:   rgba(255,255,255,.08);

  --ff-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
  --max: 1200px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--carbon); color: var(--white); font-family: var(--ff-sans); font-size: 1rem; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* BAR */
.bar { background: var(--teal); color: rgba(20,20,20,.8); font-size: .8125rem; letter-spacing: .03em; padding: .55rem var(--pad); }
.bar__inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: .6rem; }
.bar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--carbon); opacity: .3; flex-shrink: 0; }
.bar strong { color: var(--carbon); font-weight: 700; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(20,20,20,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--rule-lt); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: .9rem var(--pad); display: flex; align-items: center; justify-content: space-between; }
.nav__mark { display: flex; align-items: center; gap: .55rem; font-family: var(--ff-serif); font-weight: 700; font-size: 1rem; color: var(--white); }
.nav__logo-icon { flex-shrink: 0; color: var(--teal); }
.nav__cta { background: var(--teal); color: var(--carbon); padding: .5rem 1.1rem; border-radius: 6px; font-size: .875rem; font-weight: 700; display: flex; align-items: center; gap: .4rem; transition: background .2s; }
.nav__cta:hover { background: var(--teal-lt); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: .45rem; background: var(--teal); color: var(--carbon); padding: .85rem 1.85rem; border-radius: 8px; font-weight: 700; font-size: .9375rem; transition: background .2s, transform .15s; }
.btn-primary:hover { background: var(--teal-lt); transform: translateY(-1px); }
.btn-primary--lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-ghost { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.6); font-size: .9375rem; font-weight: 500; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: .85rem 1.85rem; transition: color .2s, border-color .2s; }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.45); }

/* HERO — dark carbon, large stacked type, teal accent line */
.hero {
  background: var(--carbon);
  min-height: clamp(560px, 85vh, 920px);
  display: flex; align-items: flex-end;
  padding-bottom: 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--rule-lt);
}
.hero__teal-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--teal);
}
.hero__dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 320px;
  gap: 4rem; align-items: end;
}
.hero__left {}
.hero__agency-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,181,163,.12); border: 1px solid rgba(0,181,163,.3);
  border-radius: 4px; padding: .3rem .75rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 2rem;
}
.hero__agency-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.hero__hed {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700; line-height: 1.0;
  margin-bottom: 1.75rem;
  letter-spacing: -.02em;
}
.hero__hed em { font-style: italic; color: var(--teal); }
.hero__sub { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,.45); margin-bottom: 2.5rem; max-width: 460px; }
.hero__sub strong { color: var(--white); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__right { padding-bottom: .25rem; }
.hero__stat-block { display: flex; flex-direction: column; gap: 1.5rem; border-left: 1px solid var(--rule-lt); padding-left: 2rem; }
.hero__stat { }
.hero__stat-num { font-family: var(--ff-serif); font-size: 2.25rem; font-weight: 700; color: var(--teal); line-height: 1; }
.hero__stat-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: .2rem; }

/* EXAMPLE BAR */
.example-bar { background: var(--carbon-mid); border-bottom: 1px solid var(--rule-lt); padding: 1rem var(--pad); }
.example-bar__label { max-width: var(--max); margin: 0 auto; font-size: .8125rem; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: .5rem; }
.example-bar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* WORK — what we deliver, 2-col on light */
.work { background: var(--off); color: var(--carbon); padding: clamp(5rem, 9vw, 8rem) var(--pad); }
.work__inner { max-width: var(--max); margin: 0 auto; }
.work__overline { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: .75rem; }
.work__title { font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; max-width: 600px; margin-bottom: 3.5rem; }
.work__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(20,20,20,.1); border: 1px solid rgba(20,20,20,.1); border-radius: 10px; overflow: hidden; }
.work-card { background: var(--off); padding: 2.25rem 2rem; }
.work-card--dark { background: var(--carbon); color: var(--white); }
.work-card__num { font-family: var(--ff-serif); font-size: .9rem; font-weight: 700; color: var(--teal); margin-bottom: 1rem; letter-spacing: .04em; }
.work-card__hed { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.work-card--dark .work-card__hed { color: var(--white); }
.work-card__body { font-size: .875rem; color: var(--muted); line-height: 1.7; }
.work-card--dark .work-card__body { color: rgba(255,255,255,.4); }
.work-card__tag { display: inline-flex; margin-top: 1rem; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); border: 1px solid rgba(0,181,163,.3); border-radius: 4px; padding: .25rem .65rem; }

/* PROCESS */
.process { background: var(--carbon-mid); padding: clamp(5rem, 9vw, 8rem) var(--pad); border-top: 1px solid var(--rule-lt); border-bottom: 1px solid var(--rule-lt); }
.process__inner { max-width: var(--max); margin: 0 auto; }
.process__overline { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: .75rem; }
.process__title { font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; max-width: 600px; margin-bottom: 3.5rem; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--rule-lt); border-radius: 8px; overflow: hidden; }
.process__step { background: var(--carbon); padding: 2rem 1.5rem; }
.process__step-num { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.25rem; }
.process__step-hed { font-family: var(--ff-serif); font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.process__step-text { font-size: .8125rem; color: rgba(255,255,255,.35); line-height: 1.7; }

/* WHO — light bg */
.who { background: var(--off); color: var(--carbon); padding: clamp(5rem, 9vw, 8rem) var(--pad); }
.who__inner { max-width: var(--max); margin: 0 auto; }
.who__overline { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: .75rem; }
.who__title { font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; max-width: 720px; margin-bottom: 3.5rem; }
.who__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.who__col { padding: 2rem 2rem 0 0; border-right: 1px solid var(--rule); }
.who__col:last-child { border-right: none; padding-right: 0; }
.who__col + .who__col { padding-left: 2rem; }
.who__col-hed { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: .65rem; color: var(--carbon); }
.who__col-body { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ACQUIRE */
.acquire { background: var(--carbon); padding: clamp(5rem, 9vw, 8rem) var(--pad); border-top: 1px solid var(--rule-lt); }
.acquire__inner { max-width: 680px; margin: 0 auto; }
.acquire__eyebrow { display: flex; align-items: center; gap: .5rem; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.acquire__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.acquire__title { font-family: var(--ff-serif); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; color: var(--white); }
.acquire__title em { font-style: italic; color: var(--teal); }
.acquire__lede { font-size: 1rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 2.5rem; }
.acquire-form { display: flex; flex-direction: column; gap: 1.25rem; }
.acquire-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field__label { font-size: .8125rem; font-weight: 500; color: rgba(255,255,255,.6); }
.field input, .field textarea { border: 1.5px solid rgba(255,255,255,.1); border-radius: 6px; padding: .75rem 1rem; font-family: var(--ff-sans); font-size: .9375rem; background: var(--carbon-mid); color: var(--white); transition: border-color .2s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 100px; }
.acquire-form__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; margin-top: .5rem; }
.acquire-form__alt { font-size: .875rem; color: rgba(255,255,255,.35); }
.acquire-form__alt a { color: var(--teal); border-bottom: 1px solid transparent; transition: border-color .2s; }
.acquire-form__alt a:hover { border-color: var(--teal); }

/* FOOTER */
.foot { background: #0A0A0A; color: rgba(255,255,255,.3); padding: 2rem var(--pad); }
.foot__inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.foot__mark { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .875rem; color: rgba(255,255,255,.6); }
.foot__small { font-size: .8rem; }
.foot__small a { color: rgba(255,255,255,.4); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { align-items: center; padding-bottom: 0; padding-top: 4rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__stat-block { flex-direction: row; border-left: none; border-top: 1px solid var(--rule-lt); padding-left: 0; padding-top: 1.5rem; gap: 2.5rem; flex-wrap: wrap; }
  .work__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .who__cols { grid-template-columns: 1fr; }
  .who__col { border-right: none; border-bottom: 1px solid var(--rule); padding: 2rem 0; }
  .who__col + .who__col { padding-left: 0; }
  .who__col:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .process__steps { grid-template-columns: 1fr; }
  .acquire-form__row { grid-template-columns: 1fr; }
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq { padding: clamp(4rem, 7vw, 6rem) var(--pad); border-bottom: 1px solid var(--rule); }
.faq__inner { max-width: var(--max); margin: 0 auto; }
.faq__title { font-family: var(--ff-serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 2.5rem; color: var(--soil); }
.faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); }
.faq__item { padding: 1.5rem 0; border-bottom: 1px solid var(--rule); }
.faq__q { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 700; color: var(--soil); margin-bottom: .5rem; }
.faq__a { font-size: .9rem; line-height: 1.75; color: var(--muted); }

/* --- Mobile overflow hardening --- */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  overscroll-behavior-x: none;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

main,
section,
header,
footer,
nav,
form,
fieldset,
[class*="__inner"],
[class*="__grid"],
[class*="__row"],
[class*="__cols"],
[class*="__card"],
[class*="__item"] {
  min-width: 0;
}

input,
textarea,
select,
button {
  max-width: 100%;
  min-width: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
li,
span {
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .btn,
  .btn-primary,
  .btn-ghost,
  [class*="btn"],
  [class*="button"] {
    max-width: 100%;
    white-space: normal;
  }
}

/* --- Hero image layer --- */
.hero {
  position: relative;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  filter: saturate(.95) contrast(1.04);
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.22) 48%, rgba(0,0,0,.5)),
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.58));
}

.hero > :not(.hero__image) {
  position: relative;
  z-index: 1;
}
