/* ============================================================
   Moreno Bookkeeping Services, Inc. — lead magnet
   ============================================================ */

:root {
  --paper:      #F7F5F1;
  --surface:    #FFFFFF;
  --sand:       #EFEBE3;
  --ink:        #191814;
  --ink-soft:   #46443E;
  --muted:      #6B6860;
  --line:       rgba(25, 24, 20, 0.14);
  --line-soft:  rgba(25, 24, 20, 0.08);
  --accent:     #2F5D51;
  --accent-dark:#24483F;
  --accent-tint:#DEE7E1;
  --dark:       #141412;

  --shell:      1200px;
  --gutter:     22px;
  --header-h:   70px;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --radius:     4px;
}

@media (min-width: 900px) {
  :root { --gutter: 48px; --header-h: 80px; }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html.has-smoothscroll { scroll-behavior: auto !important; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

section[id], span[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

::selection { background: var(--accent); color: #fff; }

a { color: inherit; }

.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: absolute; left: 16px; top: -80px; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; border-radius: var(--radius);
  font-size: 15px; text-decoration: none;
  transition: top 180ms var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.hero :focus-visible, .band :focus-visible { outline-color: #fff; }

/* ---------- layout ---------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.shell-narrow { max-width: 880px; }

.section { padding-block: clamp(64px, 9vw, 130px); }
.section-sand { background: var(--sand); }

/* ---------- type ---------- */

.eyebrow {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 0 22px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-wrap: pretty;
}
.eyebrow-dot {
  flex: 0 0 auto;
  width: 6px; height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.eyebrow-light { color: rgba(255,255,255,0.82); }
.eyebrow-light .eyebrow-dot { background: #fff; }

.section-title {
  margin: 0;
  font-size: clamp(29px, 3.7vw, 47px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 500;
  text-wrap: balance;
}

.section-lede {
  margin: 20px 0 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 17px;
  text-wrap: pretty;
}

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head-center {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.section-head-center .eyebrow { justify-content: center; }
.section-head-center .section-lede { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms var(--ease),
              border-color 180ms var(--ease),
              color 180ms var(--ease),
              transform 120ms var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-dark); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; }

.btn-sm { min-height: 42px; padding: 9px 20px; font-size: 14.5px; }
.btn-block { width: 100%; }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 240ms var(--ease), box-shadow 240ms var(--ease);
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  text-decoration: none;
  color: #fff;
  transition: color 240ms var(--ease);
}
.site-header.is-scrolled .wordmark,
.site-header.menu-open .wordmark { color: var(--ink); }

.wordmark-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.wordmark-sub {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links > li > a:not(.btn) {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 180ms var(--ease);
}
.nav-links > li > a:not(.btn):hover { color: #fff; }
.site-header.is-scrolled .nav-links > li > a:not(.btn),
.site-header.menu-open .nav-links > li > a:not(.btn) { color: var(--ink-soft); }
.site-header.is-scrolled .nav-links > li > a:not(.btn):hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  margin-right: -12px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: background-color 240ms var(--ease), transform 240ms var(--ease), opacity 160ms var(--ease);
}
.site-header.is-scrolled .nav-toggle-bar,
.site-header.menu-open .nav-toggle-bar { background: var(--ink); }
.site-header.menu-open .nav-toggle-bar:first-child { transform: translateY(3.75px) rotate(45deg); }
.site-header.menu-open .nav-toggle-bar:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,9,0.92) 0%, rgba(10,10,9,0.72) 28%, rgba(10,10,9,0.18) 62%, rgba(10,10,9,0.42) 100%),
    linear-gradient(to right, rgba(10,10,9,0.68) 0%, rgba(10,10,9,0.18) 55%, rgba(10,10,9,0) 100%);
}

.hero-inner {
  position: relative;
  padding-block: clamp(48px, 8vw, 88px);
  padding-top: calc(var(--header-h) + 40px);
  max-width: var(--shell);
}

.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-wrap: balance;
}
.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-sub {
  margin: 26px 0 0;
  max-width: 50ch;
  color: rgba(255,255,255,0.84);
  font-size: clamp(16px, 1.5vw, 18.5px);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* ---------- credential bar ---------- */

.credbar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.credbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  padding-block: 22px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

/* ---------- statement ---------- */

.statement { padding-block: clamp(72px, 11vw, 150px); }
.statement-text {
  margin: 0;
  font-size: clamp(21px, 2.5vw, 31px);
  line-height: 1.38;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--ink-soft);
  text-align: center;
  text-wrap: pretty;
}
.statement-text em { font-style: normal; color: var(--ink); }

/* ---------- problem ---------- */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}
.problem-card {
  background: var(--sand);
  padding: clamp(26px, 3vw, 40px);
}
.problem-title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.problem-body {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  text-wrap: pretty;
}

/* ---------- method ---------- */

.method-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.accordion { margin-top: clamp(32px, 4vw, 48px); }

.acc-item { border-top: 1px solid var(--line); }
.acc-item:last-child { border-bottom: 1px solid var(--line); }
.acc-item h3 { margin: 0; font-size: inherit; font-weight: inherit; }

.acc-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 62px;
  padding: 18px 0;
  background: none;
  border: 0;
  font-family: inherit;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.acc-num {
  flex: 0 0 auto;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.acc-label {
  flex: 1 1 auto;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
  text-wrap: pretty;
}
.acc-icon {
  flex: 0 0 auto;
  position: relative;
  width: 13px; height: 13px;
}
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 260ms var(--ease), opacity 200ms var(--ease);
}
.acc-icon::before { inset: 6px 0 auto 0; height: 1.5px; }
.acc-icon::after  { inset: 0 6px 0 auto; width: 1.5px; }
.acc-item.is-open .acc-icon::after { transform: rotate(90deg); opacity: 0; }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease);
}
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > .acc-panel-inner { overflow: hidden; }
.acc-panel-inner p {
  margin: 0 0 4px;
  padding-bottom: 4px;
  max-width: 58ch;
  color: var(--muted);
  font-size: 16px;
  text-wrap: pretty;
}
.acc-list {
  margin: 14px 0 24px;
  padding: 0;
  list-style: none;
}
.acc-list li {
  position: relative;
  padding: 0 0 0 24px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.acc-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 10px;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
}

.method-figure {
  position: relative;
  margin: 0;
  padding-bottom: 52px;
}
.method-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 29 / 36;
  object-fit: cover;
  border-radius: var(--radius);
}
.method-quote {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 18px 40px -28px rgba(20,20,18,0.5);
}
.method-quote p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.42;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

/* ---------- services ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-card {
  background: var(--sand);
  padding: clamp(26px, 2.8vw, 38px);
  transition: background-color 220ms var(--ease);
}
.svc-card:hover { background: var(--surface); }
.svc-mark {
  display: block;
  width: 10px; height: 10px;
  margin-bottom: 26px;
  background: var(--accent);
  border-radius: 2px;
}
.svc-title {
  margin: 0 0 10px;
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}
.svc-body {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  text-wrap: pretty;
}

/* ---------- who ---------- */

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.who-copy .btn { margin-top: 32px; }

.who-list { margin: 0; padding: 0; list-style: none; }
.who-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.who-item:first-child { border-top: 1px solid var(--line); }
.who-title {
  margin: 0 0 6px;
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 500;
  letter-spacing: -0.018em;
  text-wrap: pretty;
}
.who-meta {
  margin: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-wrap: pretty;
}

.who-figure-wrap { margin-top: clamp(48px, 6vw, 82px); }
.who-figure { margin: 0; }
.who-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 38%;
  border-radius: var(--radius);
}

/* ---------- dark band ---------- */

.band {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-block: clamp(72px, 10vw, 140px);
}
.band-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.band-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,12,11,0.94) 0%, rgba(12,12,11,0.8) 55%, rgba(12,12,11,0.55) 100%);
}
.band-inner { position: relative; }
.band-title {
  margin: 0;
  max-width: 20ch;
  color: #fff;
  font-size: clamp(29px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
  text-wrap: balance;
}
.band-sub {
  margin: 22px 0 0;
  max-width: 48ch;
  color: rgba(255,255,255,0.72);
  text-wrap: pretty;
}
.band-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: clamp(44px, 6vw, 72px) 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  list-style: none;
}
.band-fact-label {
  margin: 0 0 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.band-fact-value {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.35;
  text-wrap: pretty;
}

/* ---------- testimonial ---------- */

.quote-section { padding-block: clamp(72px, 10vw, 140px); }
.pullquote {
  margin: 0;
  text-align: center;
}
.pullquote p {
  margin: 0;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.022em;
  font-weight: 400;
  text-wrap: balance;
}
.pullquote footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-top: 28px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.pullquote-name { color: var(--ink); }
.pullquote-role { color: var(--muted); }

/* ---------- process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  background: var(--sand);
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2.4vw, 32px);
}
.step-num {
  margin: 0 0 20px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.step-title {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.step-body {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  text-wrap: pretty;
}

/* ---------- faq ---------- */

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}
.faq-head { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-grid .accordion { margin-top: 0; }

/* ---------- cta + form ---------- */

.cta-section { background: var(--sand); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.cta-alt {
  margin: 28px 0 0;
  font-size: 15.5px;
  color: var(--muted);
}
.cta-alt a { color: var(--accent); text-underline-offset: 3px; }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px);
}
.form-note {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
}
.req-mark { color: var(--accent); font-weight: 500; }

.field { margin-bottom: 20px; }
.field > label,
.checks legend {
  display: block;
  margin-bottom: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease);
}
.field textarea { resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--surface);
  border-color: var(--accent);
}
.field input[aria-invalid="true"] { border-color: #9B3A2C; }

.field-error {
  margin: 8px 0 0;
  font-size: 14px;
  color: #8E3527;
}

.checks {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 34px;
  padding: 4px 0;
  font-size: 15.5px;
  color: var(--ink-soft);
  cursor: pointer;
}
.check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 17px; height: 17px;
  margin: 4px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-status {
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--accent);
}
.form-status:empty { margin: 0; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-block: clamp(44px, 5vw, 70px);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
}
.wordmark-footer { color: #fff; }
.footer-line {
  margin: 0;
  font-size: 14.5px;
  text-wrap: pretty;
}
.footer-line a, .footer-meta a {
  color: #fff;
  text-underline-offset: 3px;
}
.footer-meta { margin: 0; font-size: 14.5px; }

/* ---------- reveal ---------- */

.pre-reveal {
  opacity: 0;
  transform: translateY(18px);
}
.pre-reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .pre-reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .nav-links { gap: 20px; }
  .nav-links > li > a:not(.btn) { font-size: 14.5px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .band-facts { grid-template-columns: repeat(2, 1fr); gap: 26px 32px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 24px;
    background: var(--paper);
    box-shadow: 0 16px 32px -24px rgba(20,20,18,0.5);
    border-top: 1px solid var(--line-soft);
  }
  .nav-links.is-open { display: flex; }
  .nav-links > li > a:not(.btn) {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-cta-item { margin-top: 18px; }
  .nav-links .btn {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
    background: var(--accent);
    color: #fff;
  }

  .method-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .cta-grid { grid-template-columns: 1fr; }

  .method-figure {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  body { font-size: 16.5px; }

  .hero { min-height: 88vh; min-height: 88svh; }
  /* On mobile the headline runs as one block of text filling the full measure and
     wrapping naturally, instead of holding the two desktop lines. */
  .hero-title {
    font-size: clamp(33px, 10.6vw, 58px);
    text-wrap: pretty;
  }
  .hero-line {
    display: inline;
    white-space: normal;
  }
  .hero-media img { object-position: center 20%; }
  .hero-scrim {
    background: linear-gradient(to top, rgba(10,10,9,0.94) 0%, rgba(10,10,9,0.8) 34%, rgba(10,10,9,0.3) 70%, rgba(10,10,9,0.45) 100%);
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .credbar-inner { gap: 10px 24px; font-size: 10px; }

  .problem-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .band-facts { grid-template-columns: 1fr; gap: 22px; }

  .who-copy .btn { width: 100%; }
  .who-figure img { aspect-ratio: 4 / 3; }

  .method-quote {
    left: 14px;
    right: 14px;
    padding: 18px 20px;
  }

  .form .btn-block { white-space: nowrap; font-size: 15px; padding-inline: 16px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 420px) {
  .form .btn-block { font-size: 14.5px; }
}
