@import url("https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700&family=Unbounded:wght@500;600&display=swap");

:root {
  --ink: #121514;
  --ink-soft: #1b201e;
  --paper: #ece9df;
  --paper-light: #f7f5ef;
  --steel: #9ca39f;
  --line: rgba(18, 21, 20, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #ff5a1f;
  --accent-light: #ff7a48;
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Onest", "Trebuchet MS", sans-serif;
  --pad: clamp(22px, 4vw, 72px);
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 14px var(--pad);
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -1px;
  transform: skewX(-8deg);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 13px;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 7px;
  color: #9ca39f;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #cfd2d0;
  font-size: 13px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact {
  justify-self: end;
  display: grid;
  text-align: right;
}

.header-contact span {
  color: var(--steel);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-contact a {
  margin-top: 4px;
  font-weight: 700;
  font-size: 17px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
  transition: transform 180ms ease;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(480px, 0.94fr) minmax(520px, 1.06fr);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 110px) var(--pad) clamp(42px, 6vw, 82px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 99.7%, rgba(255,255,255,.07) 99.7%),
    linear-gradient(0deg, transparent 99.7%, rgba(255,255,255,.04) 99.7%);
  background-size: 84px 84px;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6cbc8;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.13);
}

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

h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 78px);
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 34px;
  color: #c5cac7;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-light);
}

.button-ghost {
  border-color: var(--line-dark);
  color: #d9ddda;
}

.button-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(50px, 8vh, 90px);
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.hero-proof div {
  padding: 17px;
  background: var(--ink);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 13px;
}

.hero-proof span {
  margin-top: 6px;
  color: #969d99;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 600px;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0, transparent 25%),
    linear-gradient(0deg, rgba(18,21,20,.75), transparent 45%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.7) contrast(1.04);
}

.hero-visual-label {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 54px;
  width: min(310px, 60%);
  padding: 18px 20px;
  background: rgba(18, 21, 20, 0.78);
  border-left: 3px solid var(--accent);
  backdrop-filter: blur(8px);
}

.hero-visual-label span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual-label strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.45;
}

.metal-line {
  position: absolute;
  z-index: 2;
  width: 340px;
  height: 1px;
  background: rgba(255,255,255,.42);
  transform: rotate(-48deg);
  transform-origin: left;
}

.metal-line::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -4px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
}

.metal-line-one {
  top: 32%;
  right: -150px;
}

.metal-line-two {
  bottom: 20%;
  left: 15%;
}

.client-strip {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 20px var(--pad);
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.client-strip > p {
  flex: 0 0 auto;
  margin: 0;
  color: #6d7470;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-marquee {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  white-space: nowrap;
}

.client-marquee span {
  color: #59605c;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: -0.03em;
}

.section-pad {
  padding: clamp(76px, 9vw, 148px) var(--pad);
}

#services,
#price,
#works,
#process,
#faq,
#contact {
  scroll-margin-top: var(--header-h);
}

.section-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 92px);
}

.section-index {
  align-self: start;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 28px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
}

.section-heading h2,
.price-intro h2,
.trust h2,
.faq h2,
.final-cta h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 75px);
}

.section-note {
  margin: 0 0 5px;
  color: #626965;
  font-size: 14px;
}

.decision {
  background: var(--paper);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.risk-card {
  min-height: 320px;
  padding: clamp(26px, 3.5vw, 52px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.risk-card > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
}

.risk-card h3 {
  max-width: 280px;
  margin: 70px 0 16px;
  font-size: clamp(22px, 2vw, 30px);
}

.risk-card p {
  max-width: 380px;
  margin: 0;
  color: #5b625e;
}

.decision-answer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 28px clamp(26px, 3.5vw, 52px);
  background: var(--accent);
  color: #fff;
}

.decision-answer p {
  max-width: 700px;
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
}

.decision-answer a {
  flex: 0 0 auto;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-weight: 700;
}

.services {
  background: var(--ink);
  color: #fff;
}

.services .section-note {
  color: #9fa6a2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 400px;
  gap: 10px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

.service-card-wide {
  grid-column: span 2;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.78);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
  filter: grayscale(0) brightness(0.9);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,12,11,.9), transparent 65%);
}

.service-overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
}

.service-overlay span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.service-overlay h3 {
  margin: 12px 0 8px;
  font-size: clamp(22px, 2vw, 32px);
}

.service-overlay p {
  max-width: 440px;
  margin: 0;
  color: #c9cfcb;
  font-size: 14px;
}

.price {
  background: var(--paper-light);
}

.price-intro {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(240px, .42fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 74px;
}

.price-intro .kicker {
  grid-column: 2;
  margin-bottom: 0;
}

.price-intro h2 {
  grid-column: 2;
}

.price-intro > p:last-child {
  grid-column: 3;
  margin: 0;
  color: #626965;
}

.price-intro .section-index {
  grid-row: 1 / 3;
}

.price-builder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.price-factors {
  display: grid;
}

.factor {
  min-height: 82px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  padding: 0 28px 0 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.factor:last-child {
  border-bottom: 0;
}

.factor span {
  color: #858b87;
  font-size: 10px;
  text-align: center;
}

.factor.is-active,
.factor:hover {
  background: var(--ink);
  color: #fff;
}

.factor.is-active span {
  color: var(--accent);
}

.factor-explain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 410px;
  padding: clamp(36px, 6vw, 92px);
  background: #d8d6ce;
  border-left: 1px solid var(--line);
}

.factor-label {
  color: #6a716d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.factor-explain > p {
  min-height: 122px;
  margin: 28px 0 34px;
  font-size: clamp(21px, 2.3vw, 34px);
  line-height: 1.35;
}

.factor-result {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.factor-result span,
.factor-result strong {
  display: block;
}

.factor-result span {
  color: #6a716d;
  font-size: 11px;
}

.factor-result strong {
  margin-top: 6px;
}

.text-button {
  width: fit-content;
  margin-top: 32px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: none;
  cursor: pointer;
  font-weight: 700;
}

.cheap-warning {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) 1fr minmax(240px, .45fr);
  gap: 44px;
  align-items: center;
  margin-top: 12px;
  padding: clamp(30px, 4vw, 62px);
  background: var(--accent);
  color: #fff;
}

.cheap-number {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 84px);
  letter-spacing: -0.07em;
}

.cheap-warning h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.2vw, 32px);
}

.cheap-warning p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.cheap-check {
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,.38);
}

.cheap-check span,
.cheap-check strong {
  display: block;
}

.cheap-check span {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.works {
  background: var(--paper);
}

.works-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 560px 460px;
  gap: 12px;
}

.work {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d5d4cc;
}

.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.work:hover img {
  transform: scale(1.025);
}

.work figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  background: rgba(18,21,20,.84);
  color: #fff;
  backdrop-filter: blur(10px);
}

.work figcaption span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work figcaption strong {
  font-size: 13px;
  text-align: right;
}

.work-two img,
.work-four img {
  object-position: center top;
}

.trust {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 140px);
  background: var(--ink);
  color: #fff;
}

.trust-copy .section-index {
  margin-bottom: 46px;
}

.trust-copy > p:not(.kicker) {
  max-width: 560px;
  margin: 28px 0 48px;
  color: #aeb5b1;
  font-size: 18px;
}

.address-link {
  display: block;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.address-link span,
.address-link strong {
  display: block;
}

.address-link span {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.trust-stack {
  border-top: 1px solid var(--line-dark);
}

.trust-stack article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.trust-stack article > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 11px;
}

.trust-stack h3 {
  margin-bottom: 8px;
  font-size: clamp(21px, 2vw, 28px);
}

.trust-stack p {
  max-width: 580px;
  margin: 0;
  color: #9fa6a2;
}

.process {
  background: var(--paper-light);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list li {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-num {
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
}

.process-list h3 {
  margin: 72px 0 14px;
  font-size: 22px;
}

.process-list p {
  margin: 0;
  color: #606763;
  font-size: 14px;
}

.process-list small {
  margin-top: auto;
  padding-top: 28px;
  color: #8a908c;
  font-size: 11px;
  text-transform: uppercase;
}

.case-quote {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  background: var(--paper);
}

.case-photo {
  height: 650px;
  overflow: hidden;
}

.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-content blockquote {
  max-width: 850px;
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: clamp(30px, 4.3vw, 60px);
  line-height: 1.14;
  letter-spacing: -0.055em;
}

.case-content > p:not(.kicker) {
  max-width: 700px;
  margin-bottom: 36px;
  color: #626965;
  font-size: 18px;
}

.faq {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(48px, 8vw, 130px);
  background: var(--paper-light);
}

.faq-heading .section-index {
  margin-bottom: 46px;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 26px 52px 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 24px;
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 750px;
  margin: 0;
  padding: 0 52px 26px 0;
  color: #606763;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(60px, 10vw, 160px);
  background: var(--accent);
  color: #fff;
}

.final-copy > p:not(.kicker) {
  max-width: 610px;
  margin: 28px 0 48px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.final-copy .kicker {
  color: var(--ink);
}

.direct-contacts {
  display: grid;
  gap: 8px;
}

.direct-contacts a {
  width: fit-content;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 28px);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.55);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255,255,255,.6);
}

.lead-form select {
  color-scheme: dark;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #fff;
}

.lead-form .button-primary {
  margin-top: 12px;
  background: var(--ink);
}

.lead-form small {
  color: rgba(255,255,255,.68);
  font-size: 11px;
}

.lead-form small a {
  border-bottom: 1px solid currentColor;
}

.site-footer {
  min-height: 240px;
  display: grid;
  grid-template-columns: 1.1fr 1fr .8fr auto;
  gap: 34px;
  align-items: start;
  padding: 54px var(--pad);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin-bottom: 8px;
  color: #9da49f;
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: #d9ddda;
  font-size: 13px;
}

.copyright {
  text-align: right;
}

.mobile-call {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,8,7,.72);
  backdrop-filter: blur(5px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  padding: clamp(32px, 5vw, 60px);
  background: var(--paper-light);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.modal-dialog h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
}

.modal-dialog > p:not(.kicker) {
  color: #606763;
}

.modal-dialog > p a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.modal-form {
  margin-top: 28px;
}

.modal-form input {
  color: var(--ink);
  border-color: var(--line);
}

.modal-form input::placeholder {
  color: #929894;
}

.modal-form .button-primary {
  background: var(--accent);
}

.modal-form small {
  color: #747b77;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  width: min(390px, calc(100% - 44px));
  padding: 20px;
  background: var(--ink);
  color: #fff;
  border-left: 4px solid var(--accent);
  box-shadow: 0 16px 50px rgba(0,0,0,.32);
  transform: translateY(140%);
  transition: transform 260ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

.toast strong,
.toast span {
  display: block;
}

.toast span {
  margin-top: 6px;
  color: #aeb5b1;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px var(--pad) 30px;
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .menu-open .desktop-nav {
    transform: translateY(0);
  }

  .desktop-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 17px;
  }

  .header-contact {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 680px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 76px;
  }

  body {
    padding-bottom: 70px;
  }

  .site-header {
    min-height: var(--header-h);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 74px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 62px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
  }

  .hero-proof span {
    margin: 0;
  }

  .hero-visual {
    min-height: 480px;
  }

  .client-strip {
    display: block;
  }

  .client-strip > p {
    margin-bottom: 22px;
  }

  .client-marquee {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .section-heading,
  .price-intro {
    grid-template-columns: 52px 1fr;
  }

  .section-heading .section-note,
  .price-intro > p:last-child {
    grid-column: 2;
    margin-top: 10px;
  }

  .price-intro .section-index {
    grid-row: 1 / 4;
  }

  .decision-grid {
    grid-template-columns: 1fr;
  }

  .risk-card {
    min-height: 250px;
  }

  .risk-card h3 {
    margin-top: 42px;
  }

  .decision-answer {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-builder,
  .trust,
  .case-quote,
  .faq,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .factor-explain {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cheap-warning {
    grid-template-columns: 1fr;
  }

  .cheap-check {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255,255,255,.38);
    border-left: 0;
  }

  .works-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 520px);
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .case-photo {
    height: 520px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    text-align: left;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 -8px 30px rgba(0,0,0,.16);
  }

  .mobile-call span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
  }
}

@media (max-width: 560px) {
  .section-heading,
  .price-intro {
    grid-template-columns: 1fr;
  }

  .section-heading .section-note,
  .price-intro .kicker,
  .price-intro h2,
  .price-intro > p:last-child {
    grid-column: 1;
  }

  .section-index,
  .price-intro .section-index {
    grid-row: auto;
    margin-bottom: 10px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-visual-label {
    right: 18px;
    bottom: 20px;
    width: calc(100% - 36px);
  }

  .service-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 430px;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .factor {
    min-height: 76px;
  }

  .factor-explain > p {
    min-height: 0;
  }

  .works-grid {
    grid-template-rows: repeat(4, 440px);
  }

  .work figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .work figcaption strong {
    text-align: left;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 280px;
  }

  .case-photo {
    height: 440px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
