:root {
  color-scheme: dark;
  --bg: #0B0B0D;
  --surface: #151517;
  --surface-raised: #1B1B1E;
  --surface-quiet: #111113;
  --text: #FFFFFF;
  --muted: #B0B0B5;
  --quiet: #929299;
  --accent: #E04444;
  --accent-text: #F06A6A;
  --accent-strong: #EB5656;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --focus: #FF9292;
  --container: 1216px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { touch-action: manipulation; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 4px; }

.container { width: min(calc(100% - 56px), var(--container)); margin-inline: auto; }
.section-anchor { scroll-margin-top: 96px; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--bg);
  font-size: 0.875rem;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 13, 0.96);
  backdrop-filter: blur(14px);
}
.header-inner { position: relative; display: flex; min-height: 84px; align-items: center; gap: clamp(20px, 3vw, 44px); }
.brand { display: inline-flex; flex: 0 0 auto; width: 202px; flex-direction: column; align-items: flex-start; gap: 2px; }
.brand-lockup { width: 177px; height: auto; }
.brand-descriptor { padding-left: 3px; color: var(--quiet); font-size: 0.52rem; font-weight: 650; letter-spacing: 0.2em; line-height: 1.35; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px, 2.4vw, 32px); margin-left: auto; }
.site-nav a, .footer-column a {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 550;
  letter-spacing: 0.015em;
  transition: color 160ms ease;
}
.site-nav a:hover, .footer-column a:hover { color: var(--text); }
.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}
.menu-lines { display: grid; width: 18px; gap: 5px; }
.menu-lines span { width: 18px; height: 1px; background: currentColor; transition: transform 160ms ease; }
.menu-toggle[aria-expanded="true"] .menu-lines span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines span:last-child { transform: translateY(-3px) rotate(-45deg); }
.no-js .menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0 20px;
  font-size: 0.82rem;
  font-weight: 680;
  letter-spacing: 0.005em;
  line-height: 1.2;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 1rem; }
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover { background: var(--accent-strong); }
.button-secondary { border-color: var(--line-strong); background: transparent; color: var(--text); }
.button-secondary:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.04); }
.button-small { min-height: 42px; padding-inline: 16px; font-size: 0.73rem; }
.button:disabled { transform: none; background: #632c2c; color: #d8c4c4; cursor: not-allowed; }

.hero { overflow: hidden; padding: 72px 0 0; }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.07fr) minmax(350px, 0.88fr); align-items: center; gap: clamp(52px, 7vw, 108px); }
.hero-copy { max-width: 690px; padding: 8px 0 20px; }
.eyebrow, .section-kicker, .service-kind, .step-label, .form-label, .visual-topline, .form-status, .footer-column h2, .legal-eyebrow {
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 25px; color: var(--muted); }
.eyebrow-mark { width: 7px; height: 7px; flex: 0 0 auto; background: var(--accent); }
h1, h2, h3, p, figure { margin-top: 0; }
.hero h1 { max-width: 13ch; margin-bottom: 25px; font-size: clamp(3.25rem, 6.1vw, 5.5rem); font-weight: 570; letter-spacing: -0.073em; line-height: 1.015; }
.hero h1 span { color: var(--accent); }
.hero-description { max-width: 57ch; margin-bottom: 30px; color: var(--muted); font-size: 1rem; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-principles { display: flex; flex-wrap: wrap; gap: 10px 23px; margin-top: 34px; }
.hero-principles span { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.71rem; }
.hero-principles i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero-visual {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 23px 25px 20px;
  background-color: var(--surface);
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
}
.hero-visual::before { position: absolute; inset: 0; background: linear-gradient(145deg, rgba(11, 11, 13, 0.16), rgba(11, 11, 13, 0.88)); content: ""; pointer-events: none; }
.visual-topline, .visual-bottomline { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--quiet); font-size: 0.59rem; }
.visual-topline span:first-child { color: var(--text); letter-spacing: 0.18em; }
.visual-mark-wrap { position: absolute; inset: 50% auto auto 50%; display: grid; width: min(75%, 360px); aspect-ratio: 1; place-items: center; transform: translate(-50%, -52%); }
.visual-mark { position: relative; z-index: 1; width: 74%; height: auto; }
.visual-mark-outline { position: absolute; inset: 9%; border: 1px solid rgba(255, 255, 255, 0.12); transform: rotate(45deg); }
.visual-mark-outline::before, .visual-mark-outline::after { position: absolute; width: 7px; height: 7px; background: var(--accent); content: ""; }
.visual-mark-outline::before { top: -4px; left: 50%; }
.visual-mark-outline::after { right: -4px; bottom: 50%; }
.visual-caption { color: var(--text); font-size: 0.9rem; font-weight: 560; letter-spacing: -0.015em; }
.visual-index { color: var(--quiet); letter-spacing: 0.12em; }
.visual-rail { position: absolute; z-index: 2; right: 0; top: 30%; display: grid; gap: 7px; padding: 12px 8px; border: 1px solid var(--line); border-right: 0; background: var(--bg); }
.visual-rail span { width: 4px; height: 4px; background: var(--quiet); }
.visual-rail span:first-child { background: var(--accent); }
.hero-bottom { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-top: 1px solid var(--line); }
.hero-bottom span { padding: 17px 16px 18px 0; color: var(--quiet); font-size: 0.64rem; font-weight: 610; letter-spacing: 0.09em; text-transform: uppercase; }
.hero-bottom span + span { border-left: 1px solid var(--line); padding-left: 23px; }

.section-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--muted); }
.section-kicker > span:first-child { color: var(--accent-text); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(270px, 0.78fr); align-items: end; gap: clamp(44px, 7.5vw, 116px); }
.section-heading h2, .method-intro h2, .about-heading h2, .faq-intro h2, .contact-copy h2, .closing-panel h2, .legal-content h1 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.4vw, 4.15rem);
  font-weight: 560;
  letter-spacing: -0.067em;
  line-height: 1.04;
}
.section-lead, .section-heading > p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.78; }
.intro-section { padding: 112px 0 118px; border-block: 1px solid var(--line); background: var(--surface); }
.intro-heading { margin-bottom: 63px; }
.approach-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.approach-card { position: relative; min-height: 222px; padding: 24px 28px 8px 0; }
.approach-card + .approach-card { border-left: 1px solid var(--line); padding-left: 28px; }
.card-number { display: block; margin-bottom: 20px; color: var(--accent-text); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; }
.approach-icon, .service-icon { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(224, 68, 68, 0.46); color: var(--accent); }
.approach-icon { margin-bottom: 18px; }
.approach-icon svg, .service-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.approach-card h3 { margin-bottom: 8px; font-size: 1.08rem; font-weight: 570; letter-spacing: -0.03em; }
.approach-card p { max-width: 39ch; margin-bottom: 0; color: var(--muted); font-size: 0.83rem; line-height: 1.7; }

.services-section { padding: 118px 0 125px; }
.services-heading { margin-bottom: 52px; }
.services-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.service-card { display: flex; min-height: 440px; grid-column: span 2; flex-direction: column; align-items: flex-start; border: 1px solid var(--line); padding: 27px 27px 24px; background: var(--surface-quiet); transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease; }
.service-card:hover { transform: translateY(-3px); border-color: var(--line-strong); background: var(--surface); }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; min-height: 390px; }
.service-card-featured { border-color: rgba(224, 68, 68, 0.38); background: linear-gradient(145deg, rgba(224, 68, 68, 0.075), transparent 48%), var(--surface-quiet); }
.service-card-top { display: flex; width: 100%; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.service-icon { width: 36px; height: 36px; }
.service-number { color: var(--quiet); font-size: 0.65rem; font-weight: 650; letter-spacing: 0.14em; }
.service-kind { margin: 0 0 9px; color: var(--accent-text); font-size: 0.59rem; }
.service-card h3 { max-width: 20ch; margin: 0 0 12px; font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 560; letter-spacing: -0.045em; line-height: 1.15; }
.service-description { margin: 0 0 18px; color: var(--muted); font-size: 0.82rem; line-height: 1.7; }
.service-list { display: grid; gap: 8px; margin: 0 0 18px; padding: 0; list-style: none; }
.service-list li { position: relative; padding-left: 15px; color: var(--muted); font-size: 0.76rem; line-height: 1.45; }
.service-list li::before { position: absolute; top: 0.58em; left: 0; width: 5px; height: 1px; background: var(--accent); content: ""; }
.service-note { margin: 0 0 15px; color: var(--quiet); font-size: 0.7rem; line-height: 1.55; }
.text-link { display: inline-flex; min-height: 38px; align-items: center; gap: 10px; margin-top: auto; color: #F06A6A; font-size: 0.77rem; font-weight: 650; }
.text-link span { color: var(--accent); font-size: 0.98rem; transition: transform 160ms ease; }
.text-link:hover span { transform: translate(2px, -2px); }
.services-disclaimer { max-width: 75ch; margin: 23px 0 0; color: var(--quiet); font-size: 0.75rem; line-height: 1.6; }

.method-section { padding: 112px 0 118px; border-block: 1px solid var(--line); background: var(--surface); }
.method-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(270px, 0.78fr); align-items: end; gap: clamp(44px, 7.5vw, 116px); margin-bottom: 59px; }
.method-intro h2 span { color: var(--accent); }
.method-intro > p { max-width: 54ch; margin: 0 0 4px; color: var(--muted); font-size: 0.93rem; line-height: 1.78; }
.method-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.method-step { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; min-height: 287px; padding: 27px 26px 28px 0; }
.method-step:nth-child(even) { border-left: 1px solid var(--line); padding-left: 27px; }
.method-step:nth-child(n + 3) { border-top: 1px solid var(--line); }
.step-number { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(224, 68, 68, 0.52); color: var(--accent-text); font-size: 0.72rem; font-weight: 700; }
.step-label { margin: 0 0 9px; color: var(--quiet); font-size: 0.59rem; }
.step-content h3 { margin: 0 0 10px; font-size: 1.35rem; font-weight: 570; letter-spacing: -0.04em; }
.step-content > p:not(.step-label) { margin: 0 0 16px; color: var(--muted); font-size: 0.82rem; line-height: 1.72; }
.step-content ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.step-content li { position: relative; padding-left: 14px; color: var(--muted); font-size: 0.74rem; line-height: 1.55; }
.step-content li::before { position: absolute; top: 0.66em; left: 0; width: 5px; height: 1px; background: var(--accent); content: ""; }
.method-note { margin: 22px 0 0; color: var(--quiet); font-size: 0.74rem; }

.about-section { padding: 116px 0 119px; }
.about-layout { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr); column-gap: clamp(54px, 8vw, 120px); }
.about-heading h2 { max-width: 11ch; }
.about-copy { padding-top: 4px; }
.about-copy p { margin-bottom: 17px; color: var(--muted); font-size: 0.91rem; line-height: 1.82; }
.about-copy p:last-child { margin-bottom: 0; }
.values-grid { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 70px; border-top: 1px solid var(--line); }
.value-card { min-height: 180px; padding: 22px 23px 0 0; }
.value-card + .value-card { border-left: 1px solid var(--line); padding-left: 23px; }
.value-card > span { display: block; margin-bottom: 15px; color: var(--accent-text); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.13em; }
.value-card h3 { margin-bottom: 8px; font-size: 1rem; font-weight: 590; }
.value-card p { max-width: 32ch; margin: 0; color: var(--muted); font-size: 0.77rem; line-height: 1.65; }

.faq-section { padding: 112px 0 118px; border-block: 1px solid var(--line); background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.15fr); gap: clamp(54px, 8vw, 124px); }
.faq-intro h2 { max-width: 10ch; margin-bottom: 18px; }
.faq-intro > p:not(.section-kicker) { max-width: 35ch; margin-bottom: 20px; color: var(--muted); font-size: 0.87rem; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; display: flex; min-height: 69px; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; color: var(--text); cursor: pointer; font-size: 0.87rem; font-weight: 560; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:focus-visible { outline-offset: 0; }
.faq-plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-plus::before, .faq-plus::after { position: absolute; top: 8px; left: 3px; width: 12px; height: 1px; background: var(--accent); content: ""; transition: transform 160ms ease; }
.faq-plus::after { transform: rotate(90deg); }
.faq-item[open] .faq-plus::after { transform: rotate(0); }
.faq-item > p { max-width: 68ch; margin: -1px 30px 20px 0; color: var(--muted); font-size: 0.82rem; line-height: 1.72; }

.contact-section { padding: 118px 0 122px; }
.contact-layout { display: grid; grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.15fr); align-items: start; gap: clamp(50px, 8vw, 120px); }
.contact-copy h2 { max-width: 11ch; margin-bottom: 19px; }
.contact-copy > p:not(.section-kicker) { max-width: 45ch; margin-bottom: 28px; color: var(--muted); font-size: 0.91rem; line-height: 1.78; }
.contact-promise { display: flex; max-width: 45ch; align-items: flex-start; gap: 13px; border-top: 1px solid var(--line); padding-top: 18px; }
.contact-promise-mark { width: 7px; height: 7px; flex: 0 0 auto; margin-top: 8px; background: var(--accent); }
.contact-promise p { margin: 0; color: var(--quiet); font-size: 0.78rem; line-height: 1.65; }
.form-panel { border: 1px solid var(--line); padding: clamp(23px, 3vw, 34px); background: var(--surface); }
.form-panel-heading { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 17px; }
.form-label { color: var(--text); font-size: 0.75rem; }
.form-status { display: inline-flex; align-items: center; gap: 8px; color: var(--quiet); font-size: 0.57rem; }
.form-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.form-pending { margin: 0 0 23px; border-left: 2px solid var(--accent); padding: 10px 13px; background: rgba(224, 68, 68, 0.07); color: var(--muted); font-size: 0.77rem; line-height: 1.68; }
.form-pending[data-state="success"] { border-left-color: var(--line-strong); background: var(--surface); color: var(--text); }
#lead-form fieldset { margin: 0; border: 0; padding: 0; }
#lead-form fieldset:disabled { opacity: 1; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 14px; }
.form-field { display: flex; min-width: 0; flex-direction: column; gap: 7px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { color: var(--muted); font-size: 0.72rem; font-weight: 560; }
.form-field label > span[aria-hidden="true"] { color: #F06A6A; }
.optional { color: var(--quiet); font-size: 0.67rem; font-weight: 450; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 10px 12px;
  background: #101012;
  color: var(--text);
  font-size: 0.79rem;
}
.form-field textarea { min-height: 126px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--quiet); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--focus); outline: 2px solid var(--focus); outline-offset: 2px; }
.form-field :disabled { border-color: var(--line); background: #111113; color: #88888D; cursor: not-allowed; }
.field-help { color: var(--quiet); font-size: 0.65rem; line-height: 1.5; }
.consent-label { display: flex; align-items: flex-start; gap: 10px; margin: 19px 0; color: var(--muted); font-size: 0.71rem; line-height: 1.65; }
.consent-label input { width: 16px; height: 16px; flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--accent); }
.consent-label a { color: #F06A6A; text-decoration: underline; text-underline-offset: 3px; }
.form-submit { width: 100%; }
.form-submit:disabled { border-color: transparent; }

.closing-section { padding: 0 0 103px; }
.closing-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 20px 40px; border: 1px solid rgba(224, 68, 68, 0.35); padding: 34px clamp(26px, 4vw, 52px); background: linear-gradient(112deg, rgba(224, 68, 68, 0.08), rgba(21, 21, 23, 0.8) 55%), var(--surface); }
.closing-panel .section-kicker { grid-column: 1 / -1; margin-bottom: 0; }
.closing-panel h2 { max-width: 16ch; font-size: clamp(2rem, 3.7vw, 3.1rem); }
.closing-panel .button { grid-column: 2; grid-row: 2; white-space: nowrap; }

.site-footer { border-top: 1px solid var(--line); background: var(--surface-quiet); }
.footer-main { display: grid; grid-template-columns: minmax(210px, 1.1fr) repeat(3, minmax(130px, 0.7fr)); gap: 36px; padding-top: 48px; padding-bottom: 41px; }
.footer-brand-block > p { margin: 17px 0 0; color: var(--quiet); font-size: 0.76rem; }
.footer-brand { width: 208px; }
.footer-brand .brand-lockup { width: 175px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h2 { margin: 3px 0 7px; color: var(--text); font-size: 0.63rem; }
.footer-column a { font-size: 0.73rem; }
.footer-bottom { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); color: var(--quiet); font-size: 0.66rem; letter-spacing: 0.025em; }

.legal-page { min-height: calc(100vh - 150px); padding: 82px 0 100px; }
.legal-content { max-width: 800px; }
.legal-eyebrow { margin: 0 0 18px; color: var(--accent-text); }
.legal-content h1 { max-width: 16ch; margin-bottom: 19px; }
.legal-notice { margin: 0 0 38px; border-left: 2px solid var(--accent); padding: 14px 17px; background: rgba(224, 68, 68, 0.07); color: var(--muted); font-size: 0.82rem; line-height: 1.7; }
.legal-content h2 { margin: 34px 0 10px; font-size: 1.25rem; font-weight: 580; letter-spacing: -0.03em; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.87rem; line-height: 1.8; }
.legal-content ul { display: grid; gap: 7px; padding-left: 21px; }
.legal-placeholder { color: #F06A6A; font-weight: 620; }
.legal-back { margin-top: 38px; }

@media (max-width: 1050px) {
  .container { width: min(calc(100% - 44px), var(--container)); }
  .header-inner { gap: 22px; }
  .brand { width: 180px; }
  .brand-lockup { width: 162px; }
  .site-nav { gap: 17px; }
  .site-nav a { font-size: 0.72rem; }
  .header-actions .button { padding-inline: 13px; }
  .hero-layout { grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.87fr); gap: 46px; }
  .hero-visual { min-height: 450px; }
  .service-card { padding-inline: 22px; }
  .method-step { grid-template-columns: 40px minmax(0, 1fr); gap: 14px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 80px; }
  .container { width: min(calc(100% - 36px), 620px); }
  .header-inner { min-height: 72px; justify-content: space-between; gap: 14px; }
  .brand { width: 164px; }
  .brand-lockup { width: 148px; }
  .brand-descriptor { font-size: 0.45rem; }
  .js .site-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; border: 1px solid var(--line); border-top: 0; padding: 7px 18px 14px; background: var(--bg); box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28); }
  .js .site-nav.is-open { display: flex; }
  .js .site-nav a { border-bottom: 1px solid var(--line); padding: 12px 2px; font-size: 0.83rem; }
  .js .site-nav a:last-child { border-bottom: 0; }
  .js .menu-toggle { display: inline-flex; }
  .no-js .header-inner { flex-wrap: wrap; }
  .no-js .site-nav { display: flex; flex: 1 0 100%; order: 3; justify-content: flex-start; flex-wrap: wrap; padding: 4px 0 12px; }
  .no-js .site-nav a { font-size: 0.67rem; }
  .header-actions { gap: 9px; }
  .header-actions .button { min-height: 40px; padding: 0 12px; font-size: 0.69rem; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero { padding-top: 52px; }
  .hero-layout { grid-template-columns: 1fr; gap: 37px; }
  .hero-copy { max-width: 640px; padding: 0; }
  .hero h1 { max-width: 13ch; font-size: clamp(3rem, 10.7vw, 4.8rem); }
  .hero-description { font-size: 0.92rem; }
  .hero-visual { min-height: min(84vw, 420px); }
  .hero-bottom { margin-top: 37px; }
  .hero-bottom span { padding: 13px 8px 14px 0; font-size: 0.55rem; }
  .hero-bottom span + span { padding-left: 10px; }
  .section-heading, .method-intro { grid-template-columns: 1fr; gap: 23px; }
  .section-heading h2, .method-intro h2, .about-heading h2, .faq-intro h2, .contact-copy h2 { font-size: clamp(2.45rem, 8.5vw, 3.55rem); }
  .section-lead, .section-heading > p, .method-intro > p { max-width: 62ch; font-size: 0.87rem; }
  .intro-section, .services-section, .method-section, .about-section, .faq-section, .contact-section { padding: 80px 0 86px; }
  .intro-heading { margin-bottom: 42px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card, .approach-card + .approach-card { min-height: 0; border-left: 0; border-bottom: 1px solid var(--line); padding: 20px 0 22px; }
  .approach-card:first-child { border-top: 0; }
  .approach-card:last-child { border-bottom: 0; }
  .approach-icon { margin-bottom: 13px; }
  .services-heading, .method-intro { margin-bottom: 37px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { min-height: 0; grid-column: auto; padding: 20px 18px 19px; }
  .service-card h3 { font-size: 1.27rem; }
  .service-description { font-size: 0.78rem; }
  .service-list li { font-size: 0.72rem; }
  .service-card-top { margin-bottom: 18px; }
  .service-note { font-size: 0.66rem; }
  .method-steps { grid-template-columns: 1fr; }
  .method-step, .method-step:nth-child(even) { min-height: 0; border-left: 0; border-top: 1px solid var(--line); padding: 21px 0 24px; }
  .method-step:first-child { border-top: 0; }
  .about-layout { grid-template-columns: 1fr; row-gap: 23px; }
  .about-heading h2 { max-width: 12ch; }
  .about-copy p { font-size: 0.86rem; }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 33px; }
  .value-card, .value-card + .value-card { min-height: 0; padding: 18px 14px 20px 0; }
  .value-card:nth-child(even) { border-left: 1px solid var(--line); padding-left: 15px; }
  .value-card:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro h2 { max-width: 12ch; }
  .faq-intro > p:not(.section-kicker) { margin-bottom: 14px; }
  .faq-item summary { min-height: 64px; font-size: 0.82rem; }
  .contact-copy h2 { max-width: 12ch; }
  .form-panel { padding: 22px 18px; }
  .closing-section { padding-bottom: 68px; }
  .closing-panel { grid-template-columns: 1fr; gap: 19px; padding: 25px 22px; }
  .closing-panel .section-kicker { grid-column: auto; }
  .closing-panel h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .closing-panel .button { grid-column: auto; grid-row: auto; justify-self: start; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; padding-top: 35px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-bottom { min-height: 52px; }
  .legal-page { min-height: calc(100vh - 125px); padding: 60px 0 78px; }
}

@media (max-width: 620px) {
  .header-actions .button { min-height: 38px; font-size: 0.65rem; }
  .hero-principles { gap: 9px 15px; }
  .hero-principles span { font-size: 0.66rem; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-bottom span, .hero-bottom span + span { border-left: 0; border-bottom: 1px solid var(--line); padding: 10px 0; }
  .hero-bottom span:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { padding: 21px 20px 21px; }
  .service-card h3 { font-size: 1.43rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .form-panel-heading { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 25px 17px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; padding-block: 10px; }
}

@media (max-width: 390px) {
  .container { width: min(calc(100% - 30px), 620px); }
  .brand { width: 132px; }
  .brand-lockup { width: 127px; }
  .brand-descriptor { font-size: 0.39rem; letter-spacing: 0.18em; }
  .header-actions { gap: 6px; }
  .header-actions .button { padding-inline: 9px; font-size: 0.61rem; }
  .menu-toggle { width: 36px; height: 38px; }
  .hero h1 { font-size: clamp(2.7rem, 11.4vw, 3.3rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .visual-topline, .visual-bottomline { font-size: 0.53rem; }
  .visual-caption { font-size: 0.8rem; }
  .form-panel { padding-inline: 15px; }
  .footer-main { grid-template-columns: 1fr; }
}

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