/* tastemaker · macrostructure: Editorial Index (repair) · mood: editorial/premium · page: landing
 * nav: N4 · hero: H1 · features: F6 · footer: Ft2 · knobs: split-statement/code-native-board/service-ledger
 * palette: existing 239 black/white/orange · contrast: pass (matrix)
 * critique: ShowTell 4 · Phil 4 · Hier 5 · Spec 4 · Restr 5 · Var 4 */
:root {
  color-scheme: light;
  --color-bg: #ffffff;
  --color-surface: #f2efef;
  --color-ink: #0c0c0c;
  --color-muted: #686363;
  --color-line: #b8b2b2;
  --color-accent: #ff5a2d;
  --color-accent-dark: #7c1c05;
  --color-white: #ffffff;
  --color-dark-line: rgba(255, 255, 255, .22);
  --color-white-08: rgba(255, 255, 255, .08);
  --color-white-12: rgba(255, 255, 255, .12);
  --color-white-68: rgba(255, 255, 255, .68);
  --color-white-76: rgba(255, 255, 255, .76);
  --color-success: #baf4c7;
  --color-error: #ffb7a5;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --radius-control: 8px;
  --container: 1440px;
  --page-pad: clamp(20px, 3.2vw, 48px);
  --ease-out: cubic-bezier(.2, 0, 0, 1);
  --focus-ring: #8f2609;
  --focus-ring-dark: #ff8b6b;
}

* { box-sizing: border-box; }

html,
body { overflow-x: clip; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img,
svg {
  display: block;
  max-width: 100%;
}

a { color: inherit; }
button, input, textarea { font: inherit; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  min-width: 0;
  font-family: var(--font-display);
  font-style: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.container {
  width: min(var(--container), calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-control);
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 150ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.site-header {
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
}

.nav {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-6);
  border-bottom: 1px solid var(--color-line);
}

.brand {
  width: max-content;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand span { color: var(--color-accent-dark); }

.nav-location {
  justify-self: center;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-links > a:not(.nav-action) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition-property: color;
  transition-duration: 150ms;
  transition-timing-function: var(--ease-out);
}

.nav-links > a:not(.nav-action):hover { color: var(--color-accent-dark); }

.nav-action,
.button {
  min-height: 50px;
  padding: 0 var(--space-5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-control);
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition-property: background-color, color, transform;
  transition-duration: 150ms;
  transition-timing-function: var(--ease-out);
}

.nav-action { min-height: 44px; }

.nav-action:hover,
.button:hover {
  background: var(--color-accent);
  color: var(--color-ink);
}

.nav-action:active,
.button:active,
.contact-form button:active { transform: scale(.98); }

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.arrow-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.hero {
  min-height: 100svh;
  padding: 116px 0 var(--space-7);
  display: flex;
  align-items: stretch;
  background: var(--color-bg);
}

.hero-grid {
  min-height: calc(100svh - 164px);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: stretch;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: var(--space-5) var(--space-2);
}

.hero-context {
  margin: 0 0 var(--space-7);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-context::before {
  width: 40px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--color-accent);
  content: "";
}

.hero-title {
  max-width: 10.5ch;
  margin: auto 0;
  font-size: clamp(4.8rem, 7.7vw, 7.7rem);
  font-weight: 650;
  letter-spacing: -.022em;
  line-height: 1;
}

.hero-title span { color: var(--color-accent-dark); }

.hero-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-6);
  align-items: end;
  border-top: 1px solid var(--color-line);
}

.hero-lede {
  max-width: 43ch;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-board {
  min-width: 0;
  min-height: 620px;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
}

.board-top,
.board-footer {
  min-height: 50px;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--color-white-68);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.board-top { border-bottom: 1px solid var(--color-dark-line); }
.board-footer { border-top: 1px solid var(--color-dark-line); }

.board-canvas {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background-image:
    linear-gradient(var(--color-white-08) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-white-08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.board-number {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 7%;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(7rem, 11vw, 12rem);
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1;
}

.board-rule,
.board-block,
.board-dot { position: absolute; display: block; }

.board-rule {
  height: 1px;
  background: var(--color-white-76);
}

.board-rule-one { top: 54%; right: 8%; left: 7%; }
.board-rule-two { top: 72%; right: 24%; left: 7%; }

.board-block { border: 1px solid var(--color-white-76); }
.board-block-one { right: 8%; bottom: 10%; width: 28%; height: 25%; }
.board-block-two { left: 7%; bottom: 10%; width: 35%; height: 10%; background: var(--color-white); }
.board-block-three { right: 8%; top: 19%; width: 14%; aspect-ratio: 1; background: var(--color-accent); border-color: var(--color-accent); }
.board-dot { right: 31%; bottom: 17%; width: 10px; height: 10px; border-radius: 50%; background: var(--color-accent); }

.service-index {
  border-block: 1px solid var(--color-ink);
  background: var(--color-bg);
}

.service-index-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.service-index-list li {
  min-height: 68px;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-right: 1px solid var(--color-line);
  font-size: 13px;
  font-weight: 600;
}

.service-index-list li:first-child { padding-left: 0; }
.service-index-list li:last-child { border-right: 0; }

.service-index-list span {
  color: var(--color-accent-dark);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.section {
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--color-ink);
}

.services { background: var(--color-surface); }

.services-head {
  margin-bottom: var(--space-8);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  gap: var(--space-8);
  align-items: end;
}

.services-head h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.7rem, 6vw, 6.4rem);
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1;
}

.services-head p {
  max-width: 41ch;
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

.service-ledger { border-top: 1px solid var(--color-ink); }

.service-row {
  min-height: 148px;
  padding-block: var(--space-5);
  display: grid;
  grid-template-columns: 44px 96px minmax(190px, .75fr) minmax(260px, 1fr) 36px;
  gap: var(--space-5);
  align-items: center;
  border-bottom: 1px solid var(--color-ink);
  color: var(--color-ink);
  text-decoration: none;
  transition-property: background-color;
  transition-duration: 150ms;
  transition-timing-function: var(--ease-out);
}

.service-row:hover { background: var(--color-bg); }

.service-row > span:first-child {
  color: var(--color-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.service-visual {
  position: relative;
  width: 88px;
  height: 64px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-ink);
  background: var(--color-bg);
}

.service-visual i {
  position: absolute;
  display: block;
  background: var(--color-ink);
}

.service-visual-site i:nth-child(1) { top: 8px; right: 8px; left: 8px; height: 5px; }
.service-visual-site i:nth-child(2) { top: 21px; bottom: 8px; left: 8px; width: 23px; background: var(--color-accent); }
.service-visual-site i:nth-child(3) { top: 21px; right: 8px; bottom: 8px; left: 39px; }

.service-visual-landing i:nth-child(1) { top: 8px; right: 8px; left: 8px; height: 20px; }
.service-visual-landing i:nth-child(2) { top: 36px; left: 8px; width: 46px; height: 5px; }
.service-visual-landing i:nth-child(3) { right: 8px; bottom: 8px; width: 24px; height: 11px; background: var(--color-accent); }

.service-visual-brand i { bottom: 8px; width: 19px; height: 35px; }
.service-visual-brand i:nth-child(1) { left: 8px; background: var(--color-ink); }
.service-visual-brand i:nth-child(2) { left: 34px; background: var(--color-accent); }
.service-visual-brand i:nth-child(3) { right: 8px; border: 1px solid var(--color-ink); background: var(--color-bg); }

.service-visual-launch i { left: 14px; height: 5px; }
.service-visual-launch i::before {
  position: absolute;
  left: -7px;
  width: 3px;
  height: 3px;
  background: var(--color-accent);
  content: "";
}
.service-visual-launch i:nth-child(1) { top: 14px; width: 55px; }
.service-visual-launch i:nth-child(2) { top: 29px; width: 44px; }
.service-visual-launch i:nth-child(3) { top: 44px; width: 50px; }

.service-row h3 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3.6rem);
  font-weight: 620;
  letter-spacing: -.018em;
  line-height: 1;
}

.service-row p {
  max-width: 50ch;
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}

.service-arrow {
  width: 36px;
  height: 44px;
  display: grid;
  place-items: center;
}

.approach {
  --focus-ring: var(--focus-ring-dark);
  padding: var(--space-10) 0;
  background: var(--color-ink);
  color: var(--color-white);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  gap: var(--space-9);
  align-items: start;
}

.approach-lockup {
  position: sticky;
  top: var(--space-5);
}

.approach-number {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(8rem, 14vw, 14rem);
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.approach-lockup > p:last-child {
  margin: var(--space-4) 0 0;
  color: var(--color-white-68);
  font-size: 13px;
}

.approach-quote {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4rem, 6.2vw, 6.6rem);
  font-weight: 620;
  letter-spacing: -.022em;
  line-height: 1;
}

.approach-quote span { color: var(--color-accent); }

.approach-intro {
  max-width: 58ch;
  margin: var(--space-7) 0 var(--space-8);
  color: var(--color-white-76);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  text-wrap: pretty;
}

.approach-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-dark-line);
  list-style: none;
}

.approach-list li {
  min-height: 114px;
  padding: var(--space-5) 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
  border-bottom: 1px solid var(--color-dark-line);
}

.approach-list > li > span {
  color: var(--color-accent);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.approach-list h3 {
  margin: 0 0 var(--space-2);
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.05;
}

.approach-list p {
  margin: 0;
  color: var(--color-white-68);
  font-size: 15px;
  line-height: 1.5;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
  gap: var(--space-9);
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: var(--space-5);
}

.faq-aside h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.4rem, 5.2vw, 5.5rem);
  font-weight: 630;
  letter-spacing: -.02em;
  line-height: 1;
}

.faq-count {
  margin: var(--space-8) 0 0;
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 6rem);
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1;
}

.faq-list { border-top: 1px solid var(--color-ink); }

details { border-bottom: 1px solid var(--color-ink); }

summary {
  position: relative;
  min-height: 104px;
  padding: var(--space-5) 56px var(--space-5) 0;
  display: flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  font-weight: 580;
  letter-spacing: -.012em;
  line-height: 1.18;
  text-wrap: balance;
}

summary::-webkit-details-marker { display: none; }

summary::before,
summary::after {
  position: absolute;
  top: 50%;
  right: var(--space-2);
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  content: "";
  transform: translateY(-50%);
  transition-property: transform, opacity;
  transition-duration: 150ms;
  transition-timing-function: var(--ease-out);
}

summary::after { transform: translateY(-50%) rotate(90deg); }
details[open] summary::after { opacity: 0; transform: translateY(-50%) rotate(0deg); }

details p {
  max-width: 70ch;
  margin: 0;
  padding: 0 72px var(--space-6) 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.contact {
  --focus-ring: var(--focus-ring-dark);
  padding: var(--space-9) 0 var(--space-6);
  background: var(--color-ink);
  color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .62fr);
  gap: var(--space-9);
  align-items: start;
}

.contact-copy h2 {
  max-width: 10ch;
  margin: 0 0 var(--space-6);
  font-size: clamp(4rem, 6.5vw, 7rem);
  font-weight: 620;
  letter-spacing: -.022em;
  line-height: 1;
}

.contact-copy h2 span { color: var(--color-accent); }

.contact-copy p {
  max-width: 42ch;
  margin: 0;
  color: var(--color-white-76);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.field {
  display: grid;
  gap: var(--space-2);
}

.field-wide { grid-column: 1 / -1; }

.field label {
  font-size: 12px;
  font-weight: 650;
}

.field label span {
  color: var(--color-white-68);
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: var(--space-4);
  border: 1px solid var(--color-dark-line);
  border-radius: var(--radius-control);
  background: var(--color-white-08);
  color: var(--color-white);
  outline: 0;
  transition-property: border-color, background-color;
  transition-duration: 150ms;
  transition-timing-function: var(--ease-out);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-white-12);
}

.contact-form button {
  grid-column: 1 / -1;
  min-height: 54px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-control);
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition-property: background-color, border-color, transform;
  transition-duration: 150ms;
  transition-timing-function: var(--ease-out);
}

.contact-form button:hover {
  border-color: var(--color-white);
  background: var(--color-white);
}

.contact-form button:disabled {
  border-color: var(--color-dark-line);
  background: var(--color-white-12);
  color: var(--color-white-68);
  cursor: not-allowed;
  opacity: .55;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  grid-column: 1 / -1;
  margin: calc(var(--space-1) * -1) 0 0;
  color: var(--color-white-68);
  font-size: 12px;
  line-height: 1.55;
}

.form-note a {
  color: var(--color-white);
  text-underline-offset: 3px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--color-white-76);
  font-size: 12px;
  line-height: 1.5;
}

.form-status[data-state="success"] { color: var(--color-success); }
.form-status[data-state="error"] { color: var(--color-error); }

.footer {
  margin-top: var(--space-9);
  padding-top: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  border-top: 1px solid var(--color-dark-line);
  color: var(--color-white-68);
  font-size: 12px;
}

.footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
}

.footer-links a { color: var(--color-white-76); }
.footer-links a:hover { color: var(--color-white); }

.js [data-reveal] { visibility: hidden; }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); gap: var(--space-7); }
  .hero-title { font-size: clamp(4.6rem, 8vw, 6.6rem); }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-bottom .button { justify-self: start; }
  .service-row { grid-template-columns: 40px 88px minmax(180px, .75fr) minmax(230px, 1fr) 32px; }
  .approach-grid,
  .faq-grid,
  .contact-grid { gap: var(--space-8); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { min-height: 620px; }
  .hero-title { max-width: 11ch; }
  .hero-board { min-height: 560px; }
  .services-head,
  .approach-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .services-head { gap: var(--space-6); }
  .service-row {
    grid-template-columns: 40px 88px minmax(0, 1fr) 32px;
  }
  .service-row p { grid-column: 3 / -1; }
  .approach-lockup,
  .faq-aside { position: static; }
  .approach-lockup {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-5);
  }
  .approach-lockup > p:last-child { margin-bottom: var(--space-5); }
  .faq-aside {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-5);
  }
  .faq-count { margin: 0; }
  .contact-form { max-width: 760px; }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
    --space-10: 88px;
    --space-9: 72px;
  }

  .nav {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .nav-location { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    z-index: 2;
    top: 74px;
    right: 0;
    left: 0;
    padding: var(--space-4) var(--page-pad) var(--space-5);
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid var(--color-ink);
    background: var(--color-bg);
  }

  .site-header.is-open .nav-links { display: grid; }

  .nav-links > a:not(.nav-action) {
    min-height: 52px;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-action { margin-top: var(--space-4); }

  .hero { padding-top: 98px; }
  .hero-copy { min-height: 0; padding: 0; }
  .hero-context { margin-bottom: var(--space-6); font-size: 12px; }
  .hero-title {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.9rem, 13.25vw, 4.6rem);
    letter-spacing: -.018em;
    line-height: 1.03;
  }
  .hero-bottom { margin-top: var(--space-7); grid-template-columns: 1fr; }
  .hero-bottom .button { width: 100%; }
  .hero-board { min-height: 500px; }
  .board-number { font-size: clamp(7rem, 31vw, 10rem); }

  .service-index-list { grid-template-columns: 1fr 1fr; }
  .service-index-list li { padding-inline: var(--space-4); }
  .service-index-list li:first-child { padding-left: var(--space-4); }
  .service-index-list li:nth-child(2) { border-right: 0; }
  .service-index-list li:nth-child(-n+2) { border-bottom: 1px solid var(--color-line); }

  .services-head h2 { font-size: clamp(3.2rem, 13vw, 4.4rem); }
  .service-row {
    grid-template-columns: 32px 76px minmax(0, 1fr);
    gap: var(--space-4);
  }
  .service-visual { width: 72px; height: 56px; }
  .service-row h3 { font-size: clamp(1.8rem, 7.5vw, 2.5rem); }
  .service-row p { grid-column: 3; }
  .service-arrow { display: none; }

  .approach-number { font-size: clamp(7rem, 35vw, 10rem); }
  .approach-quote { font-size: clamp(3.4rem, 13vw, 4.6rem); }
  .approach-intro { margin-block: var(--space-6) var(--space-7); }

  .faq-aside h2 { font-size: clamp(3.2rem, 13vw, 4.4rem); }
  .faq-count { font-size: clamp(3rem, 12vw, 4.4rem); }
  summary { min-height: 92px; font-size: 1.35rem; }
  details p { padding-right: var(--space-6); }

  .contact-copy h2 { font-size: clamp(3.6rem, 14vw, 5rem); }
  .contact-form { grid-template-columns: 1fr; }
  .field-wide,
  .form-note,
  .contact-form button,
  .form-status { grid-column: 1; }
  .footer { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; gap: var(--space-4); }
}

@media (max-width: 480px) {
  .brand { font-size: 15px; }
  .hero-board { min-height: 430px; }
  .board-top,
  .board-footer { min-height: 46px; font-size: 10px; }
  .service-index-list { grid-template-columns: 1fr; }
  .service-index-list li,
  .service-index-list li:nth-child(2) {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }
  .service-index-list li:last-child { border-bottom: 0; }
  .service-row {
    grid-template-columns: 30px minmax(0, 1fr);
  }
  .service-visual { grid-column: 2; }
  .service-row h3 { grid-column: 2; }
  .service-row p { grid-column: 2; }
  .approach-lockup,
  .faq-aside { display: block; }
  .approach-lockup > p:last-child { margin: var(--space-3) 0 0; }
  .faq-count { margin-top: var(--space-6); }
}

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