:root {
  --bg: #ffffff;
  --surface: #f5f5f5;
  --surface-2: #ececec;
  --ink: #090909;
  --muted: #6a6a6f;
  --muted-2: #4f4f53;
  --line: #d9d9dc;
  --line-soft: #e9e9eb;
  --dark: #000000;
  --light: #f7f7f7;
  --radius: 18px;
  --radius-sm: 10px;
  --pill: 999px;
  --maxw: 1080px;
  --maxw-wide: 1280px;
  --gutter: clamp(22px, 3.5vw, 52px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", "SF Mono", Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.home { background: var(--dark); color: var(--light); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
::selection { background: #d7d7da; color: #000; }

.wrap { width: 100%; max-width: var(--maxw-wide); margin: 0 auto; padding-inline: 24px; }
.home-shell { width: 100%; max-width: 1440px; margin: 0 auto; padding-inline: var(--gutter); }
.mono { font-family: var(--mono); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; border-radius: 8px; background: #fff; color: #000; font-size: 14px; font-weight: 650; transform: translateY(-160%); transition: transform .2s var(--ease); }
.skip-link:focus { transform: translateY(0); outline: 2px solid #000; outline-offset: 2px; }

.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* Buttons */
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, .nav-toggle:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.btn-sm { min-height: 40px; padding-inline: 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary, .home .btn-solid { background: #f7f7f7; color: #090909; border-color: #f7f7f7; }
.btn-primary:hover, .home .btn-solid:hover { background: #dcdcdf; border-color: #dcdcdf; }
.btn-dark, .btn-solid { background: #090909; color: #fff; border-color: #090909; }
.btn-dark:hover, .btn-solid:hover { background: #2a2a2c; border-color: #2a2a2c; }
.btn-ghost { color: #f5f5f5; border-color: rgba(255,255,255,.28); background: rgba(0,0,0,.14); }
.btn-ghost:hover { border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.08); }
.btn-line { color: #111; border-color: var(--line); background: transparent; }
.btn-line:hover { border-color: #111; }
.btn-text { min-height: auto; padding: 10px 0; border-radius: 0; }
.btn-text:hover { opacity: .66; transform: none; }
.btn-on-dark { color: #f3f3f3; }
.btn-icon { width: 16px; height: 16px; flex: 0 0 auto; transition: transform .25s var(--ease); }
.btn:hover .btn-icon, .inline-link:hover .btn-icon { transform: translateX(3px); }
.icon-light { filter: invert(1); }

/* Navigation */
.ticker { display: none !important; }
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 64px;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  transition: background-color .3s, border-color .3s;
}
.nav.scrolled { border-bottom-color: rgba(0,0,0,.12); }
.nav-inner { width: 100%; max-width: var(--maxw-wide); height: 64px; margin: 0 auto; padding-inline: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 15px; min-width: max-content; }
.brand-mark { width: 44px; height: 30px; object-fit: contain; filter: invert(1); }
.brand-name { font-size: 14px; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 34px; }
.nav-links a { color: #202023; font-size: 14px; transition: opacity .2s; }
.nav-links a span { display: none; }
.nav-links a:hover { opacity: .55; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle img { width: 24px; height: 24px; }
.nav-toggle .menu-close { display: none; }
.nav-toggle.open .menu-open { display: none; }
.nav-toggle.open .menu-close { display: block; }
.nav-mobile { display: none; }

.home .nav { height: 80px; background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
.home .nav.scrolled { height: 64px; background: rgba(0,0,0,.82); border-bottom-color: rgba(255,255,255,.12); -webkit-backdrop-filter: saturate(140%) blur(18px); backdrop-filter: saturate(140%) blur(18px); }
.home .nav-inner { max-width: none; height: 100%; padding-inline: var(--gutter); }
.home .brand-mark, .footer-dark .brand-mark { width: 60px; height: 36px; filter: none; }
.home .brand-name, .footer-dark .brand-name { color: #f5f5f5; }
.home .nav-links a { color: #9a9a9f; }
.home .nav-links a:hover { color: #fff; opacity: 1; }
.home .nav-toggle img { filter: invert(1); }

/* Homepage hero */
.home-hero { position: relative; min-height: 855px; overflow: hidden; background: #000; border-bottom: 1px solid #202024; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 61% 50%; }
.hero-scrim { position: absolute; inset: 0; background: rgba(0,0,0,.08); pointer-events: none; }
.hero-content { position: absolute; z-index: 2; left: var(--gutter); bottom: 62px; width: min(720px, 64vw); }
.kicker { font-family: var(--mono); font-size: 12px; font-weight: 500; line-height: 1.2; letter-spacing: .17em; text-transform: uppercase; }
.home-hero .kicker { width: 264px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.42); color: #b3b3b7; }
.home-hero-title { margin-top: 32px; color: #f5f5f5; font-size: clamp(58px, 5.5vw, 82px); font-weight: 700; line-height: 1.08; letter-spacing: -.055em; }
.home-hero-copy { max-width: 430px; margin-top: 25px; color: #b3b3b7; font-size: 20px; line-height: 1.55; letter-spacing: -.018em; }
.hero-actions { display: flex; align-items: center; gap: 38px; margin-top: 34px; }
.hero-actions .btn-primary { min-width: 222px; }
.discipline-rail { position: absolute; z-index: 2; right: var(--gutter); bottom: 27px; width: 112px; border-left: 1px solid rgba(255,255,255,.42); }
.discipline-rail a { display: grid; grid-template-columns: 24px 1fr; gap: 3px; padding: 13px 0 13px 24px; border-bottom: 1px solid rgba(255,255,255,.16); color: #828287; font-family: var(--mono); font-size: 11px; transition: color .2s, padding-left .2s var(--ease); }
.discipline-rail a:last-child { border-bottom: 0; }
.discipline-rail a:hover { color: #fff; padding-left: 28px; }
.discipline-rail strong { grid-column: 2; font-weight: 500; color: #b8b8bc; }

/* Homepage work */
.home-work { background: #000; color: #f5f5f5; padding: 22px 0 100px; }
.section-label-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 19px; }
.section-label-row .kicker { color: #d1d1d3; }
.inline-link { display: inline-flex; align-items: center; gap: 12px; color: #aaaab0; font-size: 14px; transition: color .2s; }
.inline-link:hover { color: #fff; }
.featured-work { border: 1px solid #303034; overflow: hidden; background: #080808; }
.featured-work-media { display: block; aspect-ratio: 16 / 8.4; overflow: hidden; }
.featured-work-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.featured-work:hover .featured-work-media img { transform: scale(1.015); }
.featured-work-caption { display: grid; grid-template-columns: 1fr minmax(260px, .7fr); align-items: end; gap: 40px; padding: 29px 32px 33px; border-top: 1px solid #303034; }
.work-meta, .work-type, .work-num { color: #8b8b91; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.featured-work-caption h3 { margin-top: 8px; font-size: clamp(27px, 3vw, 44px); line-height: 1.08; letter-spacing: -.04em; }
.featured-work-caption > p { max-width: 46ch; color: #9e9ea3; font-size: 16px; }
.work-index { margin-top: 54px; border-top: 1px solid #303034; }
.work-row { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 27px 0; border-bottom: 1px solid #252529; }
.work-row h3 { font-size: clamp(21px, 2vw, 28px); font-weight: 600; letter-spacing: -.025em; }
.work-row p { max-width: 60ch; margin-top: 5px; color: #8f8f94; font-size: 15px; }
.work-note { margin-top: 25px; color: #77777d; font-size: 13px; }

/* Homepage light sections */
.home-services, .home-approach { background: #f5f5f5; color: #0b0b0c; }
.home-services { padding: 120px 0 118px; }
.section-intro { max-width: 900px; }
.section-intro .kicker, .approach-copy .kicker { color: #67676c; }
.section-intro h2, .approach-copy h2 { margin-top: 20px; font-size: clamp(46px, 6vw, 86px); font-weight: 700; line-height: 1.02; letter-spacing: -.06em; }
.section-intro > p:last-child { max-width: 620px; margin-top: 26px; color: #5f5f64; font-size: 20px; line-height: 1.5; }
.service-pillars { margin-top: 78px; border-top: 1px solid #cfcfd2; }
.service-pillar { display: grid; grid-template-columns: 58px minmax(0, 1fr) 32px; gap: 28px; align-items: center; padding: 28px 8px; border-bottom: 1px solid #cfcfd2; transition: padding .3s var(--ease), background-color .3s var(--ease); }
.service-pillar:hover { padding-inline: 22px; background: #fff; }
.pillar-num { font-family: var(--mono); font-size: 12px; color: #77777c; }
.service-pillar h3 { font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -.04em; }
.service-pillar p { margin-top: 8px; color: #646469; font-size: 16px; }
.pillar-icon { width: 22px; height: 22px; transition: transform .3s var(--ease); }
.service-pillar:hover .pillar-icon { transform: translate(3px, -3px); }
.services-all { margin-top: 42px; }

.home-approach { padding: 110px 0 120px; border-top: 1px solid #d7d7da; }
.approach-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, .75fr); gap: 10vw; align-items: start; }
.approach-copy h2 { font-size: clamp(42px, 5vw, 70px); }
.approach-copy > p:last-child { max-width: 620px; margin-top: 25px; color: #606065; font-size: 19px; line-height: 1.55; }
.approach-steps { list-style: none; border-top: 1px solid #cfcfd2; }
.approach-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid #cfcfd2; }
.approach-steps li > span { font-family: var(--mono); color: #77777c; font-size: 12px; }
.approach-steps h3 { font-size: 20px; letter-spacing: -.02em; }
.approach-steps p { margin-top: 5px; color: #68686d; font-size: 15px; }

/* Homepage contact */
.home-contact { background: #000; color: #f5f5f5; padding: 118px 0; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr); gap: 10vw; align-items: start; }
.contact-copy .kicker { color: #9a9a9f; }
.contact-copy h2 { margin-top: 22px; font-size: clamp(43px, 5vw, 72px); font-weight: 700; line-height: 1.03; letter-spacing: -.055em; }
.contact-copy > p { max-width: 600px; margin-top: 25px; color: #929297; font-size: 18px; line-height: 1.55; }
.contact-methods { display: grid; gap: 22px; margin-top: 48px; }
.contact-methods a { width: fit-content; display: grid; gap: 4px; }
.contact-methods span { color: #7f7f85; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.contact-methods strong { font-size: clamp(20px, 2vw, 29px); font-weight: 600; letter-spacing: -.025em; transition: opacity .2s; }
.contact-methods a:hover strong { opacity: .6; }
.contact-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { color: #aaaab0; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #36363a; border-radius: var(--radius-sm); background: #0c0c0d; color: #f5f5f5; padding: 14px 15px; font-size: 16px; transition: border-color .2s, background-color .2s; }
.field input, .field select { min-height: 50px; }
.field textarea { resize: vertical; min-height: 150px; }
.field input::placeholder, .field textarea::placeholder { color: #65656a; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #aaaab0; background: #111113; outline: none; }
.form-status { min-height: 22px; color: #cfcfd2; font-size: 13px; text-align: center; }
.form-status.is-error { color: #ffffff; }
.form-status.is-success { color: #bdbdc2; }

/* Footer */
.footer { border-top: 1px solid var(--line); background: var(--surface); padding: 30px 0; }
.footer-dark { border-top-color: #242427; background: #000; color: #f5f5f5; }
.footer-inner { width: 100%; max-width: var(--maxw-wide); margin: 0 auto; padding-inline: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.home .footer-inner { max-width: none; padding-inline: var(--gutter); }
.footer .brand-mark { width: 38px; height: 26px; }
.footer .brand-name { font-size: 12px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 13px; transition: color .2s; }
.footer-dark .footer-links a { color: #88888d; }
.footer-links a:hover { color: currentColor; }
.footer-copy { color: var(--muted); font-family: var(--mono); font-size: 11px; }
.footer-dark .footer-copy { color: #717176; }

/* Generated service pages and catalog */
.crumb { max-width: var(--maxw); margin: 0 auto; padding: 104px 24px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.crumb a { transition: color .2s; }
.crumb a:hover { color: #000; }
.crumb [aria-current="page"] { color: var(--ink); font-style: normal; }
.crumb-sep { color: #aaa; }

.svc { padding-bottom: 96px; }
.svc .wrap, .catalog .wrap { max-width: var(--maxw); }
.svc-hero { padding: 46px 0 48px; text-align: center; border-bottom: 1px solid var(--line-soft); }
.eyebrow, .section-eyebrow { color: var(--muted); font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.svc-hero h1 { max-width: 900px; margin: 12px auto 0; font-size: clamp(42px, 6vw, 72px); font-weight: 700; line-height: 1.04; letter-spacing: -.05em; }
.svc-lead { max-width: 720px; margin: 20px auto 0; color: var(--muted-2); font-size: clamp(18px, 2.1vw, 22px); line-height: 1.5; }
.svc-facts { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; margin-top: 30px; }
.svc-facts li { font-size: 16px; }
.svc-facts .mono { display: block; margin-bottom: 4px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.svc-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 32px; }

.svc-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 72px; padding: 64px 0 22px; }
.svc-block h2, .svc-block h3, .svc-steps-block h2, .faq > h2, .rel > h2 { margin-bottom: 22px; font-size: 13px; font-family: var(--mono); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.svc-block h3 { margin-top: 34px; margin-bottom: 16px; color: var(--muted-2); }
.svc-body p { max-width: 66ch; margin-bottom: 18px; font-size: 18px; line-height: 1.68; }
.svc-body p:last-child { margin-bottom: 0; }
.check { list-style: none; }
.check li { position: relative; padding: 14px 0 14px 31px; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
.check li::before { content: ""; position: absolute; left: 0; top: 15px; width: 16px; height: 16px; background: url("assets/icons/check.svg") center / contain no-repeat; }
.svc-tags, .idx-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tags span, .idx-tags span { padding: 6px 11px; border-radius: var(--pill); background: var(--surface); color: var(--muted-2); font-size: 12px; }

.svc-steps-block { margin-top: 42px; padding: 38px 0 22px; border-top: 1px solid var(--line-soft); }
.svc-steps-block > h2 { text-align: center; }
.steps-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 0; }
.steps-4 li { display: block; padding: 0; border-bottom: 0; }
.steps-4 li > span { display: block; margin-bottom: 10px; color: var(--muted); }

.pkgs { margin-top: 42px; padding: 58px 0 26px; border-top: 1px solid var(--line-soft); }
.pkgs-head { text-align: center; margin-bottom: 36px; }
.pkgs-head h2 { margin-top: 10px; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.04em; }
.pkgs-note { max-width: 46ch; margin: 12px auto 0; color: var(--muted); font-size: 13px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pkg { position: relative; display: flex; flex-direction: column; padding: 30px 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.pkg-pop { border-color: #111; box-shadow: 0 0 0 1px #111; }
.pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 5px 13px; border-radius: var(--pill); background: #111; color: #fff; font-size: 11px; white-space: nowrap; }
.pkg-size { color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.pkg-head h3 { margin-top: 9px; font-size: 23px; letter-spacing: -.025em; }
.pkg-head p { min-height: 45px; margin-top: 7px; color: var(--muted-2); font-size: 14px; }
.pkg-feats { list-style: none; margin: 20px 0; border-top: 1px solid var(--line-soft); }
.pkg-feats li { position: relative; padding: 11px 0 11px 27px; border-bottom: 1px solid var(--line-soft); color: var(--muted-2); font-size: 14px; }
.pkg-feats li::before { content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 14px; background: url("assets/icons/check.svg") center / contain no-repeat; }
.pkg-meta { display: grid; gap: 5px; margin: auto 0 18px; padding-top: 4px; color: var(--muted); font-size: 12px; }

.faq, .rel { margin-top: 42px; padding: 58px 0; border-top: 1px solid var(--line-soft); }
.faq > h2, .rel > h2 { text-align: center; }
.faq-list { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--line-soft); }
.faq-item h3 { font-size: 18px; }
.faq-item p { max-width: 72ch; margin-top: 9px; color: var(--muted-2); font-size: 15px; line-height: 1.6; }
.rel-grid, .cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rel-card, .cat-card { position: relative; display: block; padding: 24px 50px 25px 22px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease); }
.rel-card:hover, .cat-card:hover { transform: translateY(-3px); background: #fff; border-color: #bcbcc0; }
.rel-card h3, .cat-card h3 { font-size: 18px; letter-spacing: -.02em; }
.rel-card p, .cat-card p { margin-top: 8px; color: var(--muted-2); font-size: 14px; line-height: 1.5; }
.rel-arrow { position: absolute; top: 22px; right: 20px; width: 17px; height: 17px; transition: transform .3s var(--ease); }
.rel-card:hover .rel-arrow, .cat-card:hover .rel-arrow { transform: translate(3px, -3px); }
.svc-final { margin-top: 42px; padding: 78px 0 18px; border-top: 1px solid var(--line-soft); text-align: center; }
.svc-final h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.04em; }
.svc-final p { margin: 14px 0 28px; color: var(--muted-2); font-size: 17px; }

.catalog { padding-bottom: 96px; }
.cat-hero { padding: 136px 0 54px; text-align: center; }
.cat-hero h1 { max-width: 900px; margin: 12px auto 0; font-size: clamp(44px, 6.5vw, 80px); font-weight: 700; line-height: 1.03; letter-spacing: -.055em; }
.cat-lead { max-width: 700px; margin: 20px auto 0; color: var(--muted-2); font-size: 19px; line-height: 1.55; }
.cat-search { max-width: 570px; margin: 32px auto 0; }
.cat-search input { width: 100%; min-height: 50px; padding: 0 20px; border: 1px solid var(--line); border-radius: var(--pill); background: var(--surface); color: var(--ink); text-align: center; font-size: 16px; }
.cat-search input:focus { border-color: #111; background: #fff; outline: none; }
.cat-jumps { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 25px; }
.cat-jumps a { padding: 7px 13px; border-radius: var(--pill); background: var(--surface); color: var(--muted-2); font-size: 12px; transition: background-color .2s, color .2s; }
.cat-jumps a:hover { background: #111; color: #fff; }
.cat-empty { padding: 22px 0; color: var(--muted); text-align: center; }
.cat-empty a { text-decoration: underline; }
.cat-block { padding: 58px 0 8px; scroll-margin-top: 74px; }
.cat-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.cat-head h2 { font-size: clamp(27px, 3.5vw, 42px); letter-spacing: -.04em; }
.cat-head p { max-width: 55ch; margin-top: 7px; color: var(--muted-2); font-size: 15px; }
.cat-count { color: var(--muted); font-size: 12px; white-space: nowrap; }

/* Service index retained for any legacy markup */
.index { list-style: none; max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line-soft); }
.index-row { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto 24px; gap: 22px; align-items: center; padding: 22px 18px; border-bottom: 1px solid var(--line-soft); border-radius: var(--radius); transition: background-color .25s; }
.index-row:hover { background: var(--surface); }
.idx-num { color: var(--muted); font-size: 13px; }
.idx-body h3 { font-size: 21px; }
.idx-body p { max-width: 62ch; margin-top: 4px; color: var(--muted-2); font-size: 15px; }
.idx-arrow { width: 17px; height: 17px; }

@media (max-width: 1050px) {
  .discipline-rail { display: none; }
  .hero-content { width: min(760px, 74vw); }
  .approach-grid, .contact-grid { gap: 7vw; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile { display: flex; flex-direction: column; max-height: 0; overflow: hidden; visibility: hidden; pointer-events: none; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); transition: max-height .35s var(--ease), visibility 0s linear .35s; }
  .nav-mobile.open { max-height: 320px; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .nav-mobile a { padding: 15px 24px; border-top: 1px solid var(--line-soft); font-size: 16px; }
  .home .nav-mobile { border-bottom-color: #27272a; background: rgba(0,0,0,.96); }
  .home .nav-mobile a { border-top-color: #242427; color: #f5f5f5; }
  .home-hero { min-height: 780px; }
  .hero-media img { object-position: 68% center; opacity: .74; }
  .hero-content { width: min(720px, calc(100vw - 48px)); bottom: 55px; }
  .home-hero-title { font-size: clamp(54px, 9vw, 72px); }
  .featured-work-caption, .approach-grid, .contact-grid, .svc-grid { grid-template-columns: 1fr; }
  .featured-work-caption { gap: 20px; }
  .approach-grid, .contact-grid { gap: 58px; }
  .pkg-grid, .rel-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  html { scroll-padding-top: 64px; }
  .nav-inner { padding-inline: 18px; }
  .home .nav-inner { padding-inline: var(--gutter); }
  .home .brand-mark { width: 46px; height: 30px; }
  .brand-name { font-size: 11px; letter-spacing: .12em; }
  .home-hero { min-height: 730px; }
  .hero-media { inset: 0 -24% 18% 4%; }
  .hero-media img { object-position: 71% center; opacity: .66; }
  .hero-scrim { background: rgba(0,0,0,.18); }
  .hero-content { left: var(--gutter); right: var(--gutter); bottom: 42px; width: auto; }
  .home-hero .kicker { width: 100%; max-width: 264px; }
  .home-hero-title { margin-top: 26px; font-size: clamp(46px, 14vw, 60px); line-height: 1.03; }
  .home-hero-copy { max-width: 31ch; font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; margin-top: 28px; }
  .hero-actions .btn-primary { width: 100%; min-width: 0; }
  .hero-actions .btn-text { align-self: flex-start; }
  .home-work { padding-bottom: 72px; }
  .section-label-row { align-items: flex-start; }
  .featured-work-media { aspect-ratio: 4 / 5; }
  .featured-work-media img { object-position: 68% center; }
  .featured-work-caption { padding: 23px 20px 26px; }
  .work-row { grid-template-columns: 34px 1fr; gap: 12px; }
  .work-type { grid-column: 2; }
  .home-services, .home-approach, .home-contact { padding-block: 82px; }
  .section-intro h2, .approach-copy h2, .contact-copy h2 { font-size: clamp(42px, 13vw, 58px); }
  .section-intro > p:last-child { font-size: 18px; }
  .service-pillars { margin-top: 50px; }
  .service-pillar { grid-template-columns: 34px 1fr 24px; gap: 12px; padding: 24px 0; }
  .service-pillar:hover { padding-inline: 10px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-methods strong { font-size: 19px; word-break: break-word; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
  .svc { padding-bottom: 70px; }
  .crumb { padding-top: 88px; }
  .svc-hero { padding-top: 34px; }
  .svc-facts { gap: 24px; }
  .pkg-grid, .rel-grid, .cat-grid, .steps-4 { grid-template-columns: 1fr; }
  .cat-hero { padding-top: 110px; }
  .cat-jumps { flex-wrap: nowrap; justify-content: flex-start; margin-inline: -24px; padding-inline: 24px; overflow-x: auto; scrollbar-width: none; }
  .cat-jumps::-webkit-scrollbar { display: none; }
  .cat-head { align-items: flex-start; flex-direction: column; }
  .index-row { grid-template-columns: 30px 1fr; grid-template-areas: "num body" "num tags"; gap: 5px 14px; }
  .idx-num { grid-area: num; }
  .idx-body { grid-area: body; }
  .idx-tags { grid-area: tags; justify-content: flex-start; margin-top: 8px; }
  .idx-arrow { display: none; }
}

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