/* =========================================================
   THOMAS® — Monochrome design system
   Matches live thomasproductionsco.com: white, near-black, photo-first.
   ========================================================= */
:root {
  --paper:    #ffffff;
  --paper-2:  #f6f5f1;
  --paper-3:  #ecebe6;
  --ink:      #0c0c0c;
  --ink-soft: #1d1d1d;
  --line:     #e2e1dc;
  /* #6b6b65 on #fff ≈ 4.1:1 (fails AA). Darkened to #595953 ≈ 5.1:1 (passes). */
  --muted:    #595953;
  --text:     #141414;

  --invert-bg:   #0c0c0c;
  --invert-text: #f6f5f1;
  --invert-muted:#9c9c95;

  --bg: var(--paper);

  --font-display: "Anton", "Archivo Black", Impact, sans-serif;
  --font-serif:   "Fraunces", Georgia, serif;
  --font-body:    "Epilogue", "Inter", system-ui, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/*
 * Squarespace page-container escape.
 * main#page.container has max-width:1180px + padding:28px that boxes our
 * full-page code block into a centered column. Override it globally;
 * our sections use their own .container for inner content width.
 */
main#page.container,
#page.container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 760px; }
.section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }
.center { text-align: center; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow--center { text-align: center; }
.eyebrow--gold { color: var(--ink); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--ink);
}
.section__title.light { color: var(--invert-text); }
.section__title.center { margin-left: auto; margin-right: auto; max-width: 20ch; }

.micro { font-size: 0.82rem; color: var(--muted); margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 15px 28px;
  border-radius: 0;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  will-change: transform;
}
.btn--gold { background: var(--ink); color: var(--paper); }
.btn--gold:hover { transform: translateY(-2px); background: var(--ink-soft); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--sm { padding: 10px 18px; font-size: 0.82rem; }
.btn--lg { padding: 19px 40px; font-size: 1.08rem; }

/* On dark sections, invert button colors */
.invert .btn--gold { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.invert .btn--gold:hover { background: var(--paper-3); }
.invert .btn--ghost { border-color: var(--paper); color: var(--paper); }
.invert .btn--ghost:hover { background: var(--paper); color: var(--ink); }

/* ====================== NAV ====================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.6rem; letter-spacing: 0.04em; color: var(--ink); text-transform: uppercase;
}
.nav__logo span { color: var(--ink); font-size: 0.65em; vertical-align: super; }
.nav__logo--with-tag { display: inline-flex; flex-direction: column; line-height: 1; gap: 4px; text-transform: none; }
.nav__logo--with-tag .nav__logo-mark { font-family: var(--font-display); font-weight: 400; font-size: 1.55rem; letter-spacing: 0.04em; color: var(--ink); text-transform: uppercase; }
.nav__logo--with-tag .nav__logo-mark span { color: var(--ink); font-size: 0.65em; vertical-align: super; }
.nav__logo-tag { font-family: var(--font-body); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.06em; color: var(--muted); text-transform: lowercase; }
.nav.scrolled .nav__logo-tag { color: var(--muted); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--font-body); font-weight: 500; font-size: 0.92rem;
  color: var(--ink); position: relative; transition: color .3s;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--ink); transition: width .35s var(--ease);
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__links a.btn--gold { color: var(--paper); }
.nav__links a.btn--ghost { color: var(--ink); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s var(--ease); }

/* ====================== HERO ====================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--paper);
}
.hero__media {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 70% 0%, rgba(12,12,12,.04), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,12,.55) 0%, rgba(12,12,12,.45) 35%, rgba(12,12,12,.85) 78%, var(--paper) 100%); z-index: 1; }
.hero__title, .hero__title .accent { color: var(--invert-text) !important; }
.hero__sub { color: var(--invert-muted) !important; }
.hero .eyebrow { color: var(--invert-muted); }
.hero__cta .btn--gold { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero__cta .btn--gold:hover { background: var(--paper-3); }
.hero__cta .btn--ghost { color: var(--invert-text); border-color: var(--invert-text); }
.hero__cta .btn--ghost:hover { background: var(--invert-text); color: var(--ink); }
.hero__scroll-line { background: linear-gradient(var(--invert-text), transparent); }
.hero__scroll-line::after { background: var(--invert-text); }
.hero__content { position: relative; z-index: 2; max-width: 1060px; margin: 0 auto; padding: 0 28px; text-align: center; }
.hero__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.5rem, 5.4vw, 4.7rem);
  line-height: 1.04; letter-spacing: -0.005em; color: var(--ink);
  margin-bottom: 26px;
}
.hero__title .accent {
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  color: var(--ink); letter-spacing: -0.01em; text-transform: none;
}
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 660px; margin: 0 auto 38px; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll-line { display: block; width: 1px; height: 54px; background: linear-gradient(var(--ink), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -54px; left: 0; width: 100%; height: 54px; background: var(--ink); animation: scrolldrop 2.2s var(--ease) infinite; }
@keyframes scrolldrop { 0% { top: -54px; } 60%,100% { top: 54px; } }

/* ====================== TRUST ====================== */
.trust { padding: 50px 0 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust__label { text-align: center; text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.72rem; color: var(--muted); margin-bottom: 28px; font-weight: 600; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 72px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.45rem; letter-spacing: .05em; color: var(--ink); opacity: .55; white-space: nowrap; transition: opacity .3s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span:hover { opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trust__note { text-align: center; font-size: 0.7rem; color: var(--muted); opacity: .65; margin-top: 22px; }

/* ====================== BREAKDOWN ====================== */
.breakdown { background: var(--paper); }
.breakdown__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 60px 0 56px; border-top: 1px solid var(--line); }
.bd { padding: 50px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .35s var(--ease); }
.bd:last-child { border-right: 0; }
.bd:hover { background: var(--paper-2); }
.bd__num { font-family: var(--font-display); font-weight: 400; font-size: 3.4rem; color: var(--ink); display: block; margin-bottom: 18px; line-height: 1; }
.bd h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; text-transform: uppercase; letter-spacing: -0.005em; color: var(--ink); margin-bottom: 14px; line-height: 1.05; }
.bd p { color: var(--muted); font-size: 1rem; }

/* ====================== CAPABILITIES GRID ====================== */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 60px 0 50px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cap-grid span { padding: 26px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.15rem; letter-spacing: .005em; color: var(--ink); line-height: 1; transition: background .3s var(--ease); }
.cap-grid span:hover { background: var(--ink); color: var(--paper); }
.cap-closer { color: var(--muted); font-size: 1.05rem; max-width: 700px; margin: 0 auto; }

/* ====================== PROCESS (Brief → Deploy → Produce → Deliver → Stabilize) ====================== */
.process { background: var(--paper-2); }
.process__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin: 56px 0 40px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.proc { padding: 38px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: background .35s var(--ease); }
.proc:hover { background: var(--paper-3); }
.proc--gold { background: var(--ink); }
.proc--gold:hover { background: var(--ink-soft); }
.proc--gold h3, .proc--gold .proc__num, .proc--gold p { color: var(--invert-text); }
.proc--gold p { color: var(--invert-muted); }
.proc__num { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; color: var(--ink); letter-spacing: .12em; display: block; margin-bottom: 14px; }
.proc h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.6rem; color: var(--ink); letter-spacing: -0.005em; margin-bottom: 12px; line-height: 1; }
.proc p { color: var(--muted); font-size: 0.93rem; line-height: 1.5; }
.system__flow strong { font-weight: 400; }

/* System cards: add paragraph body in this new layout */
.sys-body { color: var(--invert-muted); font-size: 0.96rem; line-height: 1.55; }

/* ====================== LETTER ====================== */
.letter { background: var(--paper-2); color: var(--ink); }
.letter .section__title { color: var(--ink); }
.letter__body { font-size: 1.08rem; color: var(--text); }
.letter__body p { color: var(--text); margin-bottom: 20px; }
.letter__salutation { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem !important; color: var(--ink) !important; margin-bottom: 26px !important; }
.letter__questions { list-style: none; margin: 0 0 28px; }
.letter__questions li { position: relative; padding-left: 30px; margin-bottom: 16px; color: var(--text); }
.letter__questions li::before { content: "—"; position: absolute; left: 0; color: var(--ink); font-weight: 700; }
.letter__punch { font-family: var(--font-display) !important; font-weight: 400 !important; text-transform: uppercase; font-size: 1.7rem !important; color: var(--ink) !important; line-height: 1.05; padding: 12px 0; letter-spacing: -0.005em; }
.letter__body em { font-style: italic; font-family: var(--font-serif); color: var(--ink); }
.letter__sign { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem !important; color: var(--ink) !important; }

/* ====================== SYSTEM ====================== */
.system { background: var(--ink); color: var(--invert-text); }
.system .section__title, .system .section__title.light { color: var(--invert-text); }
.system .eyebrow { color: var(--invert-muted); }
.system__lead { color: var(--invert-muted); max-width: 620px; margin: 0 auto 56px; font-size: 1.05rem; }
.system__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sys { padding: 40px 32px; border-radius: 0; background: transparent; border: 1px solid rgba(255,255,255,.15); transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease); }
.sys:hover { transform: translateY(-6px); border-color: var(--invert-text); background: rgba(255,255,255,.04); }
.sys__num { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; color: var(--invert-text); letter-spacing: .12em; }
.sys h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.8rem; color: var(--invert-text); margin: 10px 0 22px; letter-spacing: -0.005em; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { font-size: 0.78rem; padding: 7px 14px; border-radius: 0; border: 1px solid rgba(255,255,255,.25); color: var(--invert-text); transition: background .3s, color .3s; letter-spacing: .03em; }
.tags span:hover { background: var(--invert-text); color: var(--ink); }
.system__flow { margin-top: 60px; font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(0.95rem, 1.7vw, 1.3rem); color: var(--invert-text); letter-spacing: .04em; }
.system__flow span { margin: 0 8px; opacity: .5; }

/* ====================== BROKERS ====================== */
.brokers { background: var(--paper-2); }
.brokers .breakdown__grid { margin-top: 60px; }

/* ====================== CASE STUDY ====================== */
.case { background: var(--paper); }
.case__meta { color: var(--muted); font-family: var(--font-body); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 30px; }
.case__intro { color: var(--muted); max-width: 720px; margin: 0 auto 64px; font-size: 1.08rem; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { text-align: center; padding: 40px 18px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 5.5vw, 4rem); color: var(--ink); line-height: 1; letter-spacing: -0.01em; }
.stat__label { display: block; margin-top: 12px; color: var(--muted); font-size: 0.92rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.stat__label small { color: var(--muted); opacity: .7; font-weight: 400; font-size: 0.7rem; text-transform: none; letter-spacing: 0; }

/* ====================== QUOTES ====================== */
.quotes { background: var(--paper-2); }
.quotes__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote { padding: 38px 34px; border: 1px solid var(--line); background: var(--paper); border-left: 3px solid var(--ink); }
.quote p { font-family: var(--font-serif); font-style: italic; font-size: 1.18rem; line-height: 1.5; color: var(--ink); margin-bottom: 18px; }
.quote cite { font-style: normal; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.quote--feature { grid-column: 1 / -1; text-align: center; border-left: 0; border-top: 3px solid var(--ink); padding: 60px 40px; background: var(--paper); }
.quote--feature p { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }

/* ====================== AUDIENCE ====================== */
.audience { background: var(--paper); }
.audience__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience__grid--three { grid-template-columns: repeat(3, 1fr); }
.aud { padding: 40px 28px; border-right: 1px solid var(--line); transition: background .3s var(--ease); }
.aud:last-child { border-right: 0; }
.aud:hover { background: var(--paper-2); }
.aud h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.4rem; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.005em; }
.aud p { color: var(--muted); font-size: 0.95rem; }

/* Tall audience cards (3-relationship version) */
.aud--tall { padding: 48px 36px 44px; }
.aud--tall .aud__num { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; color: var(--muted); letter-spacing: .15em; display: block; margin-bottom: 16px; }
.aud--tall h3 { font-size: 1.85rem; margin-bottom: 18px; line-height: 1; }
.aud__lede { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.4rem; color: var(--ink); line-height: 1.05; letter-spacing: -0.005em; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.aud__list { list-style: none; margin: 0; padding: 0; }
.aud__list li { color: var(--muted); font-size: 0.95rem; padding: 8px 0 8px 20px; position: relative; line-height: 1.5; }
.aud__list li::before { content: "—"; position: absolute; left: 0; color: var(--ink); }
.aud--tall:hover .aud__num { color: var(--ink); }

/* ====================== ABOUT ====================== */
.about { background: var(--paper); }
.about__inner { display: grid; grid-template-columns: 0.9fr 1fr; gap: 70px; align-items: center; }
.about__media { aspect-ratio: 4/5; position: relative; overflow: hidden; background: var(--paper-3); border: 1px solid var(--line); display: flex; align-items: flex-end; }
.about__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__media-label { position: relative; z-index: 2; padding: 22px 26px; font-family: var(--font-display); font-weight: 400; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-size: 0.9rem; }
.about__text p { color: var(--muted); margin-bottom: 18px; }
.about__text strong { color: var(--ink); font-weight: 600; }
.about__stats { display: flex; gap: 40px; margin: 32px 0 8px; border-top: 1px solid var(--line); padding-top: 28px; }
.about__stats div { display: flex; flex-direction: column; }
.about__stats strong { font-family: var(--font-display); font-weight: 400; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.about__stats span { font-size: 0.78rem; color: var(--muted); margin-top: 8px; letter-spacing: .06em; text-transform: uppercase; }

/* ====================== CTA ====================== */
.cta { background: var(--ink); color: var(--invert-text); position: relative; overflow: hidden; }
.cta::before { display: none; }
.cta__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.6rem); color: var(--invert-text); letter-spacing: -0.005em; line-height: 0.98; margin-bottom: 22px; }
.cta__sub { color: var(--invert-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 38px; }
.cta__contact { margin-top: 28px; color: var(--invert-muted); font-size: 0.9rem; letter-spacing: .04em; }
.cta .btn--gold { background: var(--invert-text); color: var(--ink); border-color: var(--invert-text); }
.cta .btn--gold:hover { background: var(--paper-3); }

/* ====================== FOOTER ====================== */
/* ====================== FOOTER (rich 4-column) ====================== */
.footer { background: var(--ink); padding: 72px 0 32px; border-top: 1px solid rgba(255,255,255,.06); }
.footer__cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__col { color: var(--invert-muted); }
.footer__col h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--invert-text); margin-bottom: 18px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: var(--invert-muted); font-size: 0.92rem; transition: color .25s; }
.footer__col a:hover { color: var(--invert-text); }
.footer__col--brand .nav__logo { color: var(--invert-text); display: flex !important; }
.footer__col--brand .nav__logo-mark { color: var(--invert-text); }
.footer__col--brand .nav__logo-mark span { color: var(--invert-text); }
.footer__col--brand .nav__logo-tag { color: var(--invert-muted); }
.footer__tag { color: var(--invert-muted); font-size: 0.95rem; margin-top: 24px; max-width: 36ch; line-height: 1.5; }
.footer__social a { font-size: 0.92rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer__legal { color: rgba(255,255,255,.4); font-size: 0.78rem; margin: 0; }
.footer__bottom-links { margin: 0; font-size: 0.78rem; }
.footer__bottom-links a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .25s; }
.footer__bottom-links a:hover { color: var(--invert-text); }
@media (max-width: 900px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .footer__cols { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ====================== REVEAL ====================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .hero__scroll-line::after { animation: none; }
  html { scroll-behavior: auto; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__track, .hero__scroll-line::after { animation: none !important; }
  .nav { position: static; }
  .hero { min-height: auto; padding: 60px 0; }
  .trust__note { display: none; }
}

/* ====================== INTERIOR PAGES ====================== */
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { width: 100%; }

.page-hero { padding: 180px 0 80px; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 0.95; letter-spacing: -0.01em; color: var(--ink); margin: 16px 0 22px; }
.page-hero__title .accent { font-family: var(--font-serif); font-weight: 400; font-style: italic; text-transform: none; color: var(--ink); }
.page-hero__sub { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* Filter chips */
.filters { padding: 36px 0 12px; background: var(--paper); border-bottom: 1px solid var(--line); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 0; justify-content: center; }
.chip { font-family: var(--font-body); font-weight: 600; font-size: 0.86rem; padding: 12px 22px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; transition: .3s var(--ease); margin-right: -1px; letter-spacing: .04em; text-transform: uppercase; }
.chip:hover { color: var(--ink); border-color: var(--ink); position: relative; z-index: 2; }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); position: relative; z-index: 2; }

/* Work grid */
.work { padding: 50px 0 90px; background: var(--paper); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-card { transition: opacity .35s var(--ease), transform .35s var(--ease); }
.work-card.is-hidden { opacity: 0; transform: scale(.96); pointer-events: none; position: absolute; }
.work-card__link { display: block; background: var(--paper); color: inherit; transition: .4s var(--ease); }
.work-card__link:hover .work-card__media { transform: scale(1.02); }
.work-card__link:hover .work-card__title { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.work-card__media { aspect-ratio: 4/3; background: var(--paper-3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; transition: transform .5s var(--ease); }
.work-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-card__media--alt { background: var(--ink); }
.work-card__media--alt .work-card__placeholder { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.3); }
.work-card__placeholder { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 8px 18px; border: 1px dashed var(--muted); }
.work-card__body { padding: 22px 0 24px; }
.work-card__client { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.work-card__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; color: var(--ink); margin: 8px 0 6px; letter-spacing: -0.005em; line-height: 1; }
.work-card__meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.work-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.work-card__tags span { font-size: 0.7rem; padding: 4px 9px; border: 1px solid var(--line); color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.work-card__stat { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: var(--ink); letter-spacing: .02em; }
.empty-state { text-align: center; color: var(--muted); padding: 60px 0; }

/* ====================== SERVICES PAGE ====================== */
.svc-list { display: grid; gap: 0; margin-top: 50px; }
.svc-item { display: grid; grid-template-columns: 0.4fr 1fr; gap: 50px; padding: 50px 0; border-top: 1px solid var(--line); align-items: start; }
.svc-item:last-child { border-bottom: 1px solid var(--line); }
.svc-item__num { font-family: var(--font-display); font-weight: 400; font-size: 3rem; color: var(--ink); line-height: 1; }
.svc-item__head h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 2.4rem; color: var(--ink); letter-spacing: -0.01em; margin: 12px 0 8px; line-height: 1; }
.svc-item__head p { color: var(--muted); font-size: 0.85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.svc-item__body p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }
.svc-feature-list { list-style: none; margin: 10px 0 18px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.svc-feature-list li { color: var(--text); font-size: 0.95rem; position: relative; padding-left: 18px; }
.svc-feature-list li::before { content: "—"; position: absolute; left: 0; color: var(--ink); }

/* À la carte */
.alacarte { background: var(--paper-2); }
.alacarte__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 40px; border-top: 1px solid var(--line); }
.alacarte__grid span { padding: 18px 22px; background: transparent; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--text); font-size: 0.92rem; transition: .3s; font-weight: 500; }
.alacarte__grid span:nth-child(3n) { border-right: 0; }
.alacarte__grid span:hover { background: var(--paper); color: var(--ink); }

/* Packages */
.packages { background: var(--paper); }
.pkg-row-title { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin: 80px 0 28px; text-align: center; line-height: 1; }
.pkg-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pkg-row--five { grid-template-columns: repeat(5, 1fr); }
.pkg { padding: 36px 28px; border-right: 1px solid var(--line); background: var(--paper); transition: .35s var(--ease); position: relative; }
.pkg:last-child { border-right: 0; }
.pkg:hover { background: var(--paper-2); }
.pkg--featured { background: var(--paper-2); }
.pkg--featured:hover { background: var(--paper-3); }
.pkg--ultra { background: var(--ink); color: var(--invert-text); }
.pkg--ultra h4, .pkg--ultra .pkg__tag { color: var(--invert-text); }
.pkg--ultra li { color: var(--invert-muted); }
.pkg--ultra li::before { color: var(--invert-text); }
.pkg__badge { position: absolute; top: -1px; right: -1px; background: var(--ink); color: var(--paper); font-family: var(--font-body); font-weight: 700; font-size: 0.66rem; letter-spacing: .15em; text-transform: uppercase; padding: 6px 12px; }
.pkg h4 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.6rem; color: var(--ink); letter-spacing: -0.005em; margin-bottom: 6px; line-height: 1; }
.pkg__tag { color: var(--muted); font-size: 0.84rem; font-weight: 500; margin-bottom: 18px; }
.pkg ul { list-style: none; margin: 0; padding: 0; }
.pkg li { color: var(--muted); font-size: 0.94rem; padding: 6px 0 6px 18px; position: relative; }
.pkg li::before { content: "—"; position: absolute; left: 0; color: var(--ink); }
.pkg--mini { text-align: center; padding: 28px 18px; }
.pkg--mini h4 { font-size: 1.25rem; margin-bottom: 8px; }
.pkg--mini .pkg__tag { margin-bottom: 0; font-size: 0.78rem; }

.record { margin-top: 60px; padding: 40px; border: 1px solid var(--ink); text-align: center; background: var(--paper); }
.record__label { font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.record__stat { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.8rem; color: var(--ink); margin-top: 10px; letter-spacing: -0.005em; line-height: 1; }
.record__stat strong { font-weight: 400; }

/* ====================== CASE STUDIES PAGE ====================== */
.cs-list { display: grid; gap: 0; margin-top: 60px; }
.cs { padding: 70px 0; border-top: 1px solid var(--line); }
.cs:last-child { border-bottom: 1px solid var(--line); }
.cs__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 20px; margin-bottom: 8px; }
.cs__client { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.cs__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.2rem, 4.5vw, 3.4rem); letter-spacing: -0.01em; color: var(--ink); line-height: 1; }
.cs__meta { color: var(--muted); margin-bottom: 36px; font-size: 0.95rem; }
.cs__body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; }
.cs__body h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; color: var(--ink); letter-spacing: .15em; text-transform: uppercase; margin: 22px 0 10px; }
.cs__body p { color: var(--muted); margin-bottom: 14px; font-size: 1rem; }
.cs__metrics { padding: 36px; border: 1px solid var(--ink); align-self: start; position: sticky; top: 100px; background: var(--paper); }
.cs__metric { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cs__metric:last-child { border-bottom: 0; }
.cs__metric span:first-child { color: var(--muted); font-size: 0.85rem; letter-spacing: .06em; text-transform: uppercase; }
.cs__metric span:last-child { font-family: var(--font-display); font-weight: 400; color: var(--ink); font-size: 1.4rem; }
.cs__quote { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--ink); padding: 22px 26px; border-left: 3px solid var(--ink); background: var(--paper-2); margin-top: 28px; }
.cs--placeholder { opacity: .65; }
.cs--placeholder .cs__title { font-style: italic; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 900px) {
  .breakdown__grid, .system__grid, .stats, .audience__grid, .quotes__grid { grid-template-columns: 1fr 1fr; }
  .bd, .aud, .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 380px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .alacarte__grid { grid-template-columns: 1fr 1fr; }
  .alacarte__grid span:nth-child(3n) { border-right: 1px solid var(--line); }
  .alacarte__grid span:nth-child(2n) { border-right: 0; }
  .cs__body { grid-template-columns: 1fr; }
  .cs__metrics { position: static; }
  .svc-item { grid-template-columns: 1fr; gap: 14px; }
  .pkg-row { grid-template-columns: 1fr 1fr; }
  .pkg-row--five { grid-template-columns: 1fr 1fr 1fr; }
  .pkg { border-bottom: 1px solid var(--line); }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .audience__grid--three { grid-template-columns: 1fr; }
  .aud--tall { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .nav__links { position: fixed; inset: 0 0 0 30%; flex-direction: column; justify-content: center; gap: 26px; background: rgba(255,255,255,.97); backdrop-filter: blur(16px); transform: translateX(100%); transition: transform .4s var(--ease); padding: 40px; }
  .nav__links.open { transform: none; }
  .nav__toggle { display: flex; z-index: 110; }
  .nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .breakdown__grid, .system__grid, .stats, .audience__grid, .quotes__grid { grid-template-columns: 1fr; }
  .quote--feature { grid-column: auto; }
  .about__stats { gap: 24px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .work-grid, .alacarte__grid { grid-template-columns: 1fr; }
  .alacarte__grid span { border-right: 0 !important; }
  .cs { padding: 50px 0; }
  .pkg-row, .pkg-row--five { grid-template-columns: 1fr; }
  .pkg { border-right: 0; }
  .cap-grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
}

/* ====================== SCROLL PROGRESS BAR ====================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--ink); z-index: 9997; pointer-events: none;
  transition: width .1s linear;
}
@media (prefers-reduced-motion: reduce) { .scroll-progress { display: none; } }

/* ====================== CLIENT TRUST GRID ====================== */
.portfolio-trust {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.portfolio-trust .eyebrow { margin-bottom: 36px; }
.portfolio-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.portfolio-trust__grid span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-top: 0;
  border-left: 0;
  transition: color .3s var(--ease);
}
.portfolio-trust__grid span:hover { color: var(--ink); }
.portfolio-trust__grid span:nth-child(1),
.portfolio-trust__grid span:nth-child(2),
.portfolio-trust__grid span:nth-child(3) { border-top: 1px solid var(--line); }
.portfolio-trust__grid span:nth-child(3n) { border-right: 0; }
@media (max-width: 640px) {
  .portfolio-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-trust__grid span:nth-child(3n) { border-right: 1px solid var(--line); }
  .portfolio-trust__grid span:nth-child(2n) { border-right: 0; }
  .portfolio-trust__grid span:nth-child(3),
  .portfolio-trust__grid span:nth-child(4) { border-top: 0; }
}

/* ====================== HERO WORD STAGGER ====================== */
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.hero__title .word--in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero__title .word { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ====================== CLIP-PATH IMAGE REVEAL ====================== */
.reveal-clip {
  clip-path: inset(100% 0 0 0);
  transition: clip-path .9s var(--ease);
}
.reveal-clip.in { clip-path: inset(0% 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  .reveal-clip { clip-path: inset(0%) !important; transition: none !important; }
}

/* ====================== CUSTOM CURSOR ====================== */
@media (pointer: fine) {
  /* custom cursor removed — James found it laggy */

  .cursor-dot {
    position: fixed; pointer-events: none; z-index: 9999;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--ink); top: 0; left: 0;
    transform: translate(-50%, -50%);
    transition: opacity .2s, background .2s, width .2s var(--ease), height .2s var(--ease);
    will-change: transform;
  }
  .cursor-ring {
    position: fixed; pointer-events: none; z-index: 9998;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--ink); top: 0; left: 0;
    transform: translate(-50%, -50%);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .2s, width .3s var(--ease), height .3s var(--ease),
                background .3s var(--ease), border-color .3s var(--ease);
    will-change: transform;
    overflow: hidden;
  }
  .cursor-label {
    font-family: var(--font-body); font-size: 0.62rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--paper); opacity: 0;
    transition: opacity .2s var(--ease);
    white-space: nowrap;
  }

  /* State: hovering links/buttons */
  body.cursor--hover .cursor-ring { width: 60px; height: 60px; }

  /* State: hovering work cards */
  body.cursor--work .cursor-dot { opacity: 0; }
  body.cursor--work .cursor-ring {
    width: 84px; height: 84px;
    background: var(--ink); border-color: var(--ink);
  }
  body.cursor--work .cursor-label { opacity: 1; }

  /* State: cursor left window */
  body.cursor--hidden .cursor-dot,
  body.cursor--hidden .cursor-ring { opacity: 0; }
}

/* ====================== SEQUENCE STRIP (services) ====================== */
.seq-strip { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.seq-strip__row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 14px; }
.seq-strip__step { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.seq-strip__step b { font-family: var(--font-display); font-weight: 400; font-size: 0.8rem; color: var(--muted); }
.seq-strip__step em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--muted); font-size: 0.9rem; }
.seq-strip__step--hi b, .seq-strip__step--hi { color: var(--ink); }
.seq-strip__step--hi { position: relative; }
.seq-strip__step--hi::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--ink); }
.seq-strip__arrow { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 760px) { .seq-strip__arrow { display: none; } .seq-strip__row { gap: 10px 18px; } }

/* services: deep-dive link + alt section tint */
.svc-item__link { display: inline-block; margin-top: 20px; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--ink); border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; transition: opacity .3s var(--ease); }
.svc-item__link:hover { opacity: 0.6; }
.section--alt { background: var(--paper-2); }

/* ====================== TRUST STATS (social/leasing) ====================== */
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 8px 0 40px; }
.trust-stat { background: var(--paper); padding: 32px 22px; text-align: center; }
.section--alt .trust-stat { background: var(--paper-2); }
.trust-stat strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1; color: var(--ink); margin-bottom: 12px; }
.trust-stat span { font-family: var(--font-body); font-size: 0.82rem; line-height: 1.4; color: var(--muted); }
@media (max-width: 760px) { .trust-stats { grid-template-columns: repeat(2, 1fr); } }

/* ====================== PULL-QUOTE BLOCK (testimonial) ====================== */
.pull-quote-block { margin: 8px auto 0; max-width: 760px; padding: 40px 44px; background: var(--ink); color: var(--invert-text); border-radius: 0; text-align: left; }
.pull-quote-block p { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.4; color: var(--invert-text); margin: 0 0 18px; }
.pull-quote-block cite { font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--invert-muted); }

/* 4-up package row */
.pkg-row--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .pkg-row--four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pkg-row--four { grid-template-columns: 1fr; } }

/* ====================== WORK-CARD BRANDED POSTERS (image-independent) ====================== */
.work-card__media .wp { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; background: linear-gradient(150deg, #1a1d22 0%, #0c0c0c 100%); font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.1rem, 2.4vw, 1.7rem); letter-spacing: 0.01em; line-height: 1; color: rgba(246,245,241,.92); }
.work-card:nth-child(2n) .work-card__media .wp { background: linear-gradient(150deg, #232323 0%, #0c0c0c 100%); }
.work-card:nth-child(3n) .work-card__media .wp { background: radial-gradient(120% 120% at 70% 0%, #26292e 0%, #0c0c0c 70%); }
.work-card__media--alt .wp { background: linear-gradient(150deg, #2a2a28 0%, #111 100%); }

/* === PORTFOLIO (#portfolio) — examples of our work === */
.pf__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.pf__item { position: relative; margin: 0; overflow: hidden; background: #0c0c0c; aspect-ratio: 4 / 3; }
.pf__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.pf__item:hover img { transform: scale(1.05); }
.pf__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 10px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #f6f5f1; background: linear-gradient(180deg, rgba(12,12,12,0) 0%, rgba(12,12,12,.62) 100%); }
.pf__capability { color: var(--muted); font-size: 0.95rem; max-width: 720px; margin: 0 auto; }
@media (max-width: 980px) { .pf__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pf__grid { grid-template-columns: 1fr; } }

/* ====================== TRUST-STAT BEM ALIASES ====================== */
.trust-stat__num { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1; color: var(--ink); margin-bottom: 10px; }
.trust-stat__label { font-family: var(--font-body); font-size: 0.8rem; line-height: 1.4; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.trust-sla { text-align: center; font-family: var(--font-body); font-weight: 600; font-size: 0.76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding: 14px 28px; border-bottom: 1px solid var(--line); background: var(--paper); }

/* ====================== CONTENT MOAT (dark section) ====================== */
.moat { background: var(--ink); color: var(--invert-text); }
.moat .eyebrow { color: var(--invert-muted); }
.moat .section__title { color: var(--invert-text); max-width: none; }
.moat .section__title .accent { font-family: var(--font-serif); font-weight: 400; font-style: italic; text-transform: none; color: var(--invert-text); }
.moat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 60px 0 60px; border: 1px solid rgba(246,245,241,.1); }
.moat__card { padding: 48px 36px; border-right: 1px solid rgba(246,245,241,.1); transition: background .35s var(--ease); }
.moat__card:hover { background: rgba(255,255,255,.04); }
.moat__card:last-child { border-right: none; }
.moat__card-label { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(246,245,241,.38); margin-bottom: 14px; }
.moat__card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.55rem; color: var(--invert-text); margin-bottom: 16px; line-height: 1.05; letter-spacing: -.005em; }
.moat__card p { font-size: 0.98rem; color: var(--invert-muted); line-height: 1.6; }
.moat__close { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.3rem, 2.5vw, 1.9rem); color: var(--invert-text); letter-spacing: -.005em; text-align: center; line-height: 1.05; max-width: 820px; margin: 0 auto; }
.moat__close .accent { font-family: var(--font-serif); font-weight: 400; font-style: italic; text-transform: none; color: var(--invert-text); }
@media (max-width: 800px) {
  .moat__grid { grid-template-columns: 1fr; }
  .moat__card { border-right: none; border-bottom: 1px solid rgba(246,245,241,.1); }
  .moat__card:last-child { border-bottom: none; }
}

/* ====================== SOCIAL WEDGE (start here — ladder) ====================== */
.social-wedge { background: var(--paper); }
.ladder-strip { display: flex; align-items: center; justify-content: center; gap: 0; margin: 42px 0 0; border: 1px solid var(--line); overflow-x: auto; }
.ladder-step { flex: 1; min-width: 0; padding: 18px 16px; text-align: center; font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); border-right: 1px solid var(--line); white-space: nowrap; }
.ladder-step:last-child { border-right: none; }
.ladder-step--active { color: var(--ink); background: var(--paper-2); }
.ladder-step a { color: inherit; transition: color .25s; }
.ladder-step a:hover { color: var(--ink); }
.ladder-arrow { padding: 0 4px; color: var(--line); font-size: 1rem; flex-shrink: 0; }
.price-anchor-line { font-family: var(--font-body); font-size: 0.86rem; color: var(--muted); text-align: center; margin-top: 20px; letter-spacing: .04em; }
@media (max-width: 640px) { .ladder-step { font-size: 0.68rem; padding: 14px 10px; letter-spacing: .08em; } }

/* ====================== CASE SUPPORT CARDS (Metro + Sofia) ====================== */
.case-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); }
.case-card { padding: 44px 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-card:nth-child(2n) { border-right: none; }
.case-card__client { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.case-card__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.75rem; color: var(--ink); margin-bottom: 16px; line-height: 1.05; letter-spacing: -.005em; }
.case-card__body { font-size: 0.97rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 640px) { .case-cards { grid-template-columns: 1fr; } .case-card { border-right: none; } }

/* Full-width Walsh pull-quote override */
.pull-quote-block { max-width: 100% !important; margin: 0 !important; padding: 72px 28px !important; text-align: center !important; }
.pull-quote-block blockquote { max-width: 720px; margin: 0 auto; }
.pull-quote-block p { margin: 0 auto 22px !important; font-size: clamp(1.4rem, 3vw, 2.2rem) !important; }
.pull-quote-block cite { display: block; }

/* ====================== BROKERS REFERRAL BLOCK ====================== */
.brokers__referral { margin-top: 56px; padding: 44px 0 0; border-top: 1px solid var(--line); }
.brokers__referral-line { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.1rem, 2.5vw, 1.7rem); color: var(--ink); letter-spacing: -.005em; line-height: 1.05; margin-bottom: 28px; max-width: 820px; }
.brokers__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

/* ====================== LEASE MACHINE GUARANTEE ====================== */
.system__guarantee { color: var(--invert-muted); font-size: 0.92rem; max-width: 620px; margin: 12px auto 0; line-height: 1.55; }

/* ====================== PRICING POINTER SECTION ====================== */
.pricing-strip { background: var(--paper-2); }
.pricing-anchors { display: flex; gap: 0; margin: 42px 0 36px; border: 1px solid var(--line); }
.pricing-anchor { flex: 1; padding: 32px 28px; border-right: 1px solid var(--line); }
.pricing-anchor:last-child { border-right: none; }
.pricing-anchor__label { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pricing-anchor__from { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.85rem; color: var(--ink); line-height: 1.05; text-transform: uppercase; letter-spacing: -.005em; }
.pricing-moat { font-size: 1rem; color: var(--muted); max-width: 640px; line-height: 1.6; margin: 0 0 16px; }
.pricing-reassurance { font-size: 0.88rem; color: var(--muted); margin-bottom: 32px; max-width: 560px; }
@media (max-width: 700px) { .pricing-anchors { flex-direction: column; } .pricing-anchor { border-right: none; border-bottom: 1px solid var(--line); } .pricing-anchor:last-child { border-bottom: none; } }

/* ====================== FOOTER 5-COLUMN OVERRIDE ====================== */
.footer__cols--five { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 1100px) { .footer__cols--five { grid-template-columns: 1.2fr 1fr 1fr; } }
@media (max-width: 760px) { .footer__cols--five { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__cols--five { grid-template-columns: 1fr; } }

/* ====================== CLARITY PASS (deliverables · timelines · process) ====================== */

/* Delivery-promise band — separates the two clocks (photo / video / booking) */
.deliver-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); max-width: var(--maxw); margin: 0 auto; }
.deliver-cell { padding: 36px 32px; border-right: 1px solid var(--line); text-align: center; }
.deliver-cell:last-child { border-right: none; }
.deliver-cell__time { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--ink); line-height: 1; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 8px; }
.deliver-cell__what { font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 640px) { .deliver-band { grid-template-columns: 1fr; } .deliver-cell { border-right: none; border-bottom: 1px solid var(--line); } .deliver-cell:last-child { border-bottom: none; } }

/* How-it-works tagline below the process grid */
.process-tagline { margin-top: 48px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* Deliverable-spec chips (centered, bordered) */
.tags--spec { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 0; }
.tags--spec span { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink); border: 1px solid var(--line); padding: 7px 14px; white-space: nowrap; }
@media (max-width: 560px) { .tags--spec span { white-space: normal; } }

/* Broker how-to-order process strip */
.broker-process { margin: 48px 0 40px; }
.broker-process__steps { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); }
.broker-process__step { display: flex; flex-direction: column; gap: 8px; padding: 24px 22px; flex: 1; min-width: 160px; border-right: 1px solid var(--line); }
.broker-process__step:last-of-type { border-right: none; }
.broker-process__num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; line-height: 1; letter-spacing: -.01em; text-transform: uppercase; color: var(--ink); }
.broker-process__text { font-family: var(--font-body); font-size: 0.9rem; color: var(--muted); line-height: 1.45; font-weight: 500; }
.broker-process__revision { margin-top: 16px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; border-left: 2px solid var(--ink); padding-left: 14px; }
@media (max-width: 640px) { .broker-process__steps { flex-direction: column; } .broker-process__step { border-right: none; border-bottom: 1px solid var(--line); } .broker-process__step:last-of-type { border-bottom: none; } }

/* Scope anchor line inside consulting .bd cards */
.bd__scope { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-family: var(--font-body); font-size: 0.84rem; color: var(--muted); font-weight: 600; line-height: 1.5; letter-spacing: .02em; }

/* Scope line beneath each pricing anchor */
.pricing-anchor__scope { display: block; margin-top: 10px; font-family: var(--font-body); font-size: 0.82rem; color: var(--muted); line-height: 1.55; font-weight: 500; }

/* ===== SERVICES CLARITY STRIP — "What we do" ===== */
.svc-strip { background: var(--paper); padding-top: 64px; padding-bottom: 64px; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); margin-top: 36px; }
.svc-cell { padding: 36px 30px; border-right: 1px solid var(--line); }
.svc-cell:last-child { border-right: none; }
.svc-cell__num { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--muted); line-height: 1; margin-bottom: 12px; }
.svc-cell__name { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.15rem; color: var(--ink); margin: 0 0 12px; letter-spacing: -.005em; line-height: 1.1; }
.svc-cell__desc { font-family: var(--font-body); font-size: 0.94rem; line-height: 1.62; color: var(--ink); opacity: .8; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr 1fr; } .svc-cell:nth-child(2n) { border-right: none; } .svc-cell:nth-child(n+3) { border-top: 1px solid var(--line); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } .svc-cell { border-right: none; border-bottom: 1px solid var(--line); } .svc-cell:last-child { border-bottom: none; } }

/* Audience line (who we serve) under the delivery band */
.audience-line { text-align: center; font-family: var(--font-body); font-weight: 600; font-size: 0.76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding: 16px 28px; border-bottom: 1px solid var(--line); background: var(--paper); margin: 0; }

/* Testimonial wall — mined verbatim client praise (masonry) */
.wall-sec { background: var(--paper-2); }
.wall { columns: 3 300px; column-gap: 16px; max-width: var(--maxw); margin: 48px auto 0; padding: 0 28px; }
.wall__card { break-inside: avoid; margin: 0 0 16px; border: 1px solid var(--line); background: var(--paper); padding: 26px 24px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.wall__card:hover { border-color: var(--ink); transform: translateY(-3px); }
.wall__card blockquote { margin: 0 0 14px; font-family: var(--font-body); font-size: 1rem; line-height: 1.55; color: var(--ink); font-weight: 500; }
.wall__card blockquote::before { content: "\201C"; }
.wall__card blockquote::after { content: "\201D"; }
.wall__card figcaption { font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }
@media (max-width: 980px) { .wall { columns: 2 260px; } }
@media (max-width: 560px) { .wall { columns: 1; } }

/* Nationwide coverage (dark) */
.nationwide { background: var(--ink); color: var(--invert-text); }
.nationwide .eyebrow, .nationwide .section__title, .nationwide .section__title.light { color: var(--invert-text); }
.nationwide__lead { max-width: 640px; margin: 18px auto 0; color: rgba(246,245,241,.7); font-size: 1.05rem; line-height: 1.6; }
.city-marquee { overflow: hidden; margin: 48px 0; border-top: 1px solid rgba(246,245,241,.12); border-bottom: 1px solid rgba(246,245,241,.12); padding: 22px 0; }
.city-marquee__track { display: inline-flex; white-space: nowrap; animation: city-scroll 42s linear infinite; }
.city-marquee__track span { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.5rem; letter-spacing: .04em; color: var(--invert-text); opacity: .48; padding: 0 26px; position: relative; }
.city-marquee__track span::after { content: "\2022"; position: absolute; right: -3px; opacity: .35; }
@keyframes city-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.nationwide__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(246,245,241,.14); max-width: var(--maxw); margin: 0 auto; }
.nationwide__stats > div { padding: 32px 20px; text-align: center; border-right: 1px solid rgba(246,245,241,.14); }
.nationwide__stats > div:last-child { border-right: none; }
.nationwide__stats strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--invert-text); line-height: 1; letter-spacing: -.005em; }
.nationwide__stats span { display: block; margin-top: 8px; font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(246,245,241,.6); }
@media (max-width: 760px) { .nationwide__stats { grid-template-columns: 1fr 1fr; } .nationwide__stats > div:nth-child(2n) { border-right: none; } .city-marquee__track span { font-size: 1.2rem; } }
@media (max-width: 480px) { .nationwide__stats { grid-template-columns: 1fr 1fr; } }

/* ==========================================================
   === A11Y: focus-visible ===
   Consistent keyboard-focus ring across all pages.
   2px solid ink with offset — on-brand, zero border-radius.
   On dark sections the ring inverts to --invert-text.
   ========================================================== */
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.btn:focus-visible,
a.btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}
/* Interactive elements that need explicit focus rings */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
/* Remove default :focus when :focus-visible is supported */
:focus:not(:focus-visible) { outline: none; }

/* Dark section: invert the focus ring so it's visible over ink bg */
.system :focus-visible,
.moat :focus-visible,
.nationwide :focus-visible,
.cta :focus-visible,
.footer :focus-visible {
  outline-color: var(--invert-text);
}

/* ==========================================================
   === A11Y: prefers-reduced-motion — complete coverage ===
   The existing partial rules are already in the file above.
   This block plugs the remaining gaps: city-marquee,
   custom-cursor transitions, scroll-behavior, hover transforms.
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  /* City marquee (nationwide section) */
  .city-marquee__track { animation: none; }

  /* Cursor — disable all transitions on the animated rings */
  .cursor-dot,
  .cursor-ring,
  .cursor-label {
    transition: none !important;
  }

  /* Kill hover transforms on card elements */
  .sys:hover,
  .wall__card:hover,
  .famt:hover,
  .work-card__link:hover .work-card__media,
  .pf__item:hover img {
    transform: none !important;
  }

  /* Kill button hover lifts */
  .btn--gold:hover,
  .btn:hover {
    transform: none !important;
  }

  /* scrolldrop animation (hero scroll indicator) already covered above */
  @keyframes scrolldrop { 0%, 100% { top: 0; } }

  /* city-scroll keyframe override */
  @keyframes city-scroll { from { transform: none; } to { transform: none; } }
}

/* ==========================================================
   === RESPONSIVE: 390px mobile hardening ===
   Plugs remaining overflow / fixed-width issues not already
   handled in the main @media blocks above.
   ========================================================== */

/* Container: tighter side padding on very small phones */
@media (max-width: 390px) {
  .container { padding: 0 18px; }
  .hero__content { padding: 0 18px; }
  /* Prevent hero title overflow at narrowest point */
  .hero__title { font-size: clamp(2.2rem, 10.5vw, 3rem); word-break: break-word; }
  /* Section vertical padding — avoid too much whitespace on small screens */
  .section { padding: clamp(56px, 10vw, 150px) 0; }
  /* Stat band: 2-col so numbers don't squish */
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: 0; }
  /* Pricing anchors already stack at 700px; fine */
  /* Portfolio grid already 1-col at 480px */
  /* Broker process steps already stack at 640px */
  /* Nav logo tag: hide on very narrow screens */
  .nav__logo-tag { display: none; }
}

/* Mobile menu: ensure full-height overlay doesn't have horizontal scroll */
@media (max-width: 640px) {
  .nav__links {
    /* Covers full viewport; inset: 0 0 0 30% keeps a partial sidebar effect */
    /* Ensure overflow doesn't escape on very narrow screens */
    overflow-y: auto;
  }
  /* Nav toggle: generous tap target */
  .nav__toggle {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
}

/* 768px tablet: process grid stays 2-col (already set), just confirm */
/* No additional overrides needed — the main 900px/640px blocks handle it */

/* ==========================================================
   === PRINT stylesheet ===
   Black ink on white paper. Hide nav, decorative sections,
   CTAs. Show meaningful content only.
   ========================================================== */
@media print {
  /* Base reset */
  *, *::before, *::after {
    color: #000 !important;
    background: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Fonts fall back to system — web fonts may not load in print */
  body { font-family: Georgia, serif; font-size: 12pt; line-height: 1.5; }

  /* Remove fixed/sticky nav */
  .nav { display: none !important; }

  /* Remove decorative / interactive elements */
  .scroll-progress,
  .cursor-dot,
  .cursor-ring,
  .hero__scroll,
  .city-marquee,
  .marquee,
  .cta,
  footer,
  .footer { display: none !important; }

  /* Hero: collapse to a simple header block */
  .hero {
    min-height: auto !important;
    height: auto !important;
    padding: 40pt 0 20pt !important;
    background: #fff !important;
    color: #000 !important;
  }
  .hero__media,
  .hero__scrim { display: none !important; }
  .hero__title,
  .hero__title .accent,
  .hero__sub { color: #000 !important; }
  .hero__cta { display: none !important; }

  /* Trust bar */
  .trust { border: none; padding: 10pt 0; }

  /* Sections: reduce padding */
  .section { padding: 20pt 0 !important; }

  /* Reveal: always visible in print */
  .reveal, .reveal-clip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }

  /* Links: show URL after anchor text for external links */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555 !important;
    word-break: break-all;
  }
  /* But not nav buttons or CTAs that are hidden anyway */
  .btn[href]::after { content: none; }

  /* Page breaks */
  .section { page-break-inside: avoid; }
  h2, h3 { page-break-after: avoid; }

  /* Images */
  img { max-width: 100% !important; page-break-inside: avoid; }

  /* Buttons: treat as plain text in print */
  .btn {
    border: 1px solid #000 !important;
    background: #fff !important;
    color: #000 !important;
    padding: 4pt 8pt !important;
  }

  /* Pull-quote: simple border */
  .pull-quote-block {
    background: #f5f5f5 !important;
    border-left: 3pt solid #000 !important;
    padding: 12pt 16pt !important;
    color: #000 !important;
  }
  .pull-quote-block p,
  .pull-quote-block cite { color: #000 !important; }

  /* Grid sections: single column in print */
  .breakdown__grid,
  .system__grid,
  .quotes__grid,
  .audience__grid,
  .stats,
  .work-grid,
  .footer__cols,
  .nationwide__stats,
  .moat__grid,
  .case-cards,
  .svc-grid,
  .pricing-anchors,
  .trust-stats {
    grid-template-columns: 1fr !important;
    display: block !important;
  }

  /* Wall testimonials: single column */
  .wall { columns: 1 !important; }
}


/* --- Homepage nav: readable over the dark/blue hero --- */
.home .nav:not(.scrolled){background:linear-gradient(180deg,rgba(8,18,40,.62) 0%,rgba(8,18,40,0) 100%);}
.home .nav:not(.scrolled) .nav__links a:not(.btn),
.home .nav:not(.scrolled) .nav__logo,
.home .nav:not(.scrolled) .nav__logo-mark,
.home .nav:not(.scrolled) .nav__logo-mark span,
.home .nav:not(.scrolled) .nav__logo span{color:#fff;}
.home .nav:not(.scrolled) .nav__toggle span{background:#fff;}
