:root {
  --black: #040404;
  --ink: #0b0b0a;
  --charcoal: #151514;
  --charcoal-2: #20201d;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(4, 4, 4, 0.12);
  --white: #ffffff;
  --soft-white: #f3f1eb;
  --muted: #c7c3b8;
  --muted-dark: #5e5a50;
  --gold: #caa347;
  --gold-strong: #e0bc62;
  --max: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(4, 4, 4, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(140px, 16vw, 205px);
  overflow: visible;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.brand img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.panel-logo img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  transition: color 180ms ease;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold-strong);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--black);
  background: var(--gold-strong);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--white);
  transition: transform 220ms var(--ease);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(58px, 8vw, 118px) 0 clamp(34px, 5vw, 64px);
}

.hero::before {
  position: absolute;
  inset: var(--header-height) 0 auto;
  height: 52svh;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(202, 163, 71, 0.12), transparent 32%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 118px
    );
  content: "";
  opacity: 0.55;
}

.hero-copy,
.hero-panel {
  position: relative;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5.8vw, 5.45rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.15rem);
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  line-height: 1.1;
}

.hero-tagline {
  margin-bottom: 18px;
  color: var(--gold-strong);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 800;
}

.hero-body {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold-strong);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-strong);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(202, 163, 71, 0.62);
  color: var(--gold-strong);
}

.hero-panel {
  min-height: 560px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #171716 0%, #070707 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-panel::after {
  position: absolute;
  right: -70px;
  bottom: 56px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(202, 163, 71, 0.5);
  content: "";
  transform: rotate(45deg);
}

.panel-topline,
.panel-footer,
.workflow-row {
  position: relative;
  z-index: 1;
}

.panel-topline,
.panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin: 62px auto 46px;
  padding: 18px 0 10px;
  border-top: 1px solid rgba(202, 163, 71, 0.4);
  border-bottom: 1px solid rgba(202, 163, 71, 0.4);
}

.workflow-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0 0 44px;
}

.workflow-row {
  display: grid;
  grid-template-columns: 1fr auto 34%;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  color: var(--muted);
}

.workflow-row strong {
  color: var(--white);
}

.workflow-row i {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(202, 163, 71, 0.1));
}

.workflow-row.is-highlighted {
  border-color: rgba(224, 188, 98, 0.58);
  background: rgba(202, 163, 71, 0.1);
}

.panel-footer {
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.panel-footer strong {
  max-width: 190px;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-align: right;
  text-transform: none;
}

.authority,
.interest {
  padding: 0 0 clamp(76px, 8vw, 126px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.wide-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 30px;
}

.authority-grid,
.interest-grid,
.fix-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.authority-card {
  min-height: 276px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.authority-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.authority-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.interest-card {
  min-height: 178px;
  padding: 24px;
  color: var(--white);
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  font-weight: 800;
  line-height: 1.15;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.interest-card span,
.fix-card span,
.service-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.interest-card:hover,
.interest-card:focus-visible,
.interest-card.is-active {
  color: var(--black);
  background: var(--gold);
  outline: none;
}

.interest-card:hover span,
.interest-card:focus-visible span,
.interest-card.is-active span {
  color: var(--black);
}

.proof {
  background: var(--soft-white);
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  border-left: 1px solid var(--line-dark);
}

.proof-item {
  min-height: 220px;
  padding: clamp(28px, 4vw, 46px) 24px;
  border-right: 1px solid var(--line-dark);
}

.proof-item strong {
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.proof-item span {
  display: block;
  max-width: 210px;
  color: var(--muted-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fixes,
.services,
.outcomes,
.starting-points {
  padding: clamp(76px, 10vw, 140px) 0;
}

.fix-card,
.service-card {
  min-height: 208px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.fix-card:hover,
.service-card:hover {
  border-color: rgba(202, 163, 71, 0.45);
  background: rgba(202, 163, 71, 0.075);
  transform: translateY(-3px);
}

.fix-card h3 {
  max-width: 260px;
}

.services {
  background: var(--soft-white);
  color: var(--ink);
}

.services .section-kicker,
.outcomes .section-kicker,
.method .section-kicker,
.about .section-kicker,
.trust .section-kicker {
  color: #9a7832;
}

.service-grid {
  border-color: var(--line-dark);
}

.service-card {
  min-height: 272px;
  background: transparent;
  border-color: var(--line-dark);
}

.service-card span {
  color: #9a7832;
}

.service-card p,
.method-step p,
.about-panel p,
.trust-panel p {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
}

.outcomes {
  background: var(--soft-white);
  color: var(--ink);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.outcome-column {
  min-height: 340px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.outcome-column h3 {
  margin-bottom: 28px;
  color: var(--ink);
}

.outcome-column ul,
.pricing-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-column li,
.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-dark);
  font-weight: 800;
}

.outcome-column li::before,
.pricing-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 1px;
  background: #9a7832;
  content: "";
}

.outcome-column-after {
  background: rgba(202, 163, 71, 0.08);
}

.outcome-column-after li {
  color: var(--ink);
}

.method {
  padding: clamp(76px, 10vw, 136px) 0;
  background: var(--soft-white);
  color: var(--ink);
}

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

.method-step {
  position: relative;
  min-height: 280px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.method-step::after {
  position: absolute;
  top: 58px;
  right: -28px;
  z-index: 2;
  width: 56px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.method-step:last-child::after {
  display: none;
}

.method-step span {
  display: block;
  margin-bottom: 52px;
  color: #9a7832;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.8;
}

.about {
  padding: 0 0 clamp(76px, 10vw, 136px);
  background: var(--soft-white);
  color: var(--ink);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(34px, 6vw, 70px) 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.about-panel p {
  margin-top: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.trust {
  padding: 0 0 clamp(76px, 10vw, 136px);
  background: var(--soft-white);
  color: var(--ink);
}

.trust-panel {
  max-width: 920px;
  padding: clamp(34px, 6vw, 70px) 0 0;
  border-top: 1px solid var(--line-dark);
}

.trust-panel h2 {
  margin-bottom: 26px;
}

.trust-panel p {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.starting-points {
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-card {
  min-height: 420px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.pricing-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pricing-card h3 {
  min-height: 52px;
}

.price {
  margin: 14px 0 30px;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 2.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
}

.pricing-card li {
  color: var(--muted);
  font-weight: 700;
}

.pricing-note {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.14rem);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 146px) 18px;
  background:
    linear-gradient(135deg, rgba(202, 163, 71, 0.15), transparent 34%),
    var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  content: "";
  opacity: 0.6;
}

.final-cta-inner {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.final-cta h2 {
  max-width: 850px;
  margin-bottom: 20px;
}

.final-cta-copy {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.form-field {
  display: grid;
  gap: 9px;
}

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

.form-field label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(4, 4, 4, 0.52);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.form-field input:focus,
.form-field textarea:focus {
  background: rgba(4, 4, 4, 0.72);
  border-color: rgba(224, 188, 98, 0.76);
  box-shadow: 0 0 0 3px rgba(202, 163, 71, 0.14);
}

.lead-form .button {
  justify-self: start;
  margin-top: 4px;
  cursor: pointer;
}

.form-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-actions-secondary {
  margin-top: 22px;
}

.contact-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  overflow-wrap: anywhere;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--gold-strong);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) 1fr auto;
  gap: 30px;
  align-items: start;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #020202;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 14px;
}

.footer-brand p {
  margin: 0;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact,
.footer-nav {
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.footer-nav {
  justify-items: end;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thank-you-page {
  background: var(--black);
}

.thank-you-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(58px, 8vw, 118px) 0;
}

.thank-you-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(202, 163, 71, 0.12), transparent 32%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 118px
    );
  content: "";
  opacity: 0.55;
}

.thank-you-copy,
.next-steps {
  position: relative;
}

.thank-you-copy h1 {
  max-width: 820px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.next-steps {
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.next-steps h2 {
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
}

.next-steps ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 14px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.next-steps li span {
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.follow-up-note {
  margin: 24px 0 0;
  color: var(--muted);
}

.follow-up-note a {
  color: var(--gold-strong);
  font-weight: 900;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 24px;
    background: rgba(4, 4, 4, 0.96);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 180ms ease,
      transform 220ms var(--ease);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 14px;
    padding: 0 18px;
    border-bottom: 1px solid var(--gold-strong);
  }

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

  .thank-you-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    min-height: 460px;
  }

  .interest-grid,
  .authority-grid,
  .fix-grid,
  .service-grid,
  .pricing-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-heading {
    display: block;
  }

  .method-grid,
  .outcome-grid,
  .about-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .method-step::after {
    display: none;
  }

  .footer-nav {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand {
    width: 138px;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .hero-actions,
  .contact-actions,
  .thank-you-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    text-align: center;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form .button {
    justify-self: stretch;
  }

  .hero-panel {
    min-height: 390px;
    padding: 18px;
  }

  .panel-logo {
    margin: 42px auto 32px;
  }

  .workflow-row {
    grid-template-columns: 1fr auto;
  }

  .workflow-row i {
    grid-column: 1 / -1;
    width: 100%;
  }

  .interest-grid,
  .authority-grid,
  .fix-grid,
  .service-grid,
  .pricing-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .interest-card,
  .authority-card,
  .fix-card,
  .service-card,
  .pricing-card,
  .proof-item,
  .method-step,
  .outcome-column {
    min-height: auto;
  }

  .interest-card {
    padding: 22px;
  }

  .interest-card span,
  .fix-card span,
  .service-card span {
    margin-bottom: 28px;
  }

  .proof-grid {
    width: 100%;
    border-left: 0;
  }

  .proof-item {
    border-right: 0;
  }

  .about-panel {
    gap: 26px;
  }

  .trust-panel {
    padding-top: 34px;
  }

  .footer-brand img {
    width: 200px;
  }
}

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
