/* ==========================================================================
   Endgame Accounting - main stylesheet
   Palette: ink #0A0F1E · slate #141C30 · gold #C9A961 · cream #F4EFE6
   Type: Fraunces (display) · Outfit (body)
   ========================================================================== */

/* ---- Fonts ---- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/fraunces-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
  --ink: #0A0F1E;
  --ink-2: #0D1424;
  --ink-3: #141C30;
  --line: rgba(201, 169, 97, 0.18);
  --line-soft: rgba(244, 239, 230, 0.08);
  --gold: #C9A961;
  --gold-bright: #E3C98C;
  --cream: #F4EFE6;
  --muted: #9AA3B8;
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --container: 1360px;
  --radius: 18px;
  --section-pad: clamp(5.5rem, 11vw, 10rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 420;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
p { margin: 0 0 1.2em; }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--cream); }
.prose a, .form-card p a {
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-thickness: from-font;
  text-decoration-skip-ink: auto;
}
::selection { background: rgba(201, 169, 97, 0.35); color: var(--cream); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
section { scroll-margin-top: 5.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.35s;
}
.btn svg { width: 0.85em; height: 0.85em; transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn-gold {
  background: var(--gold);
  color: #171207;
}
.btn-gold:hover {
  background: var(--gold-bright);
  color: #171207;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.25);
}
.btn-ghost {
  background: rgba(244, 239, 230, 0.04);
  color: var(--cream);
  border-color: rgba(244, 239, 230, 0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

/* ---- Eyebrow / badge ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 230, 0.25);
  background: rgba(10, 15, 30, 0.35);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

/* ---- Header / nav ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 15, 30, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--cream);
  transition: color 0.25s;
}
.brand:hover { color: var(--gold-bright); }
.brand svg, .brand img { height: 2.4rem; width: auto; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.46em;
  color: var(--gold);
  margin-top: 0.3rem;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.btn) {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  margin: 6px 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(75deg, rgba(10, 15, 30, 0.65) 0%, rgba(10, 15, 30, 0.85) 18%, rgba(10, 15, 30, 0.55) 48%, rgba(10, 15, 30, 0.15) 75%),
    linear-gradient(to top, rgba(10, 15, 30, 0.9) 0%, rgba(10, 15, 30, 0) 35%);
}
.hero-inner {
  width: 100%;
  padding-block: 8rem 6rem;
}
.hero h1 {
  font-size: clamp(2.75rem, 6.4vw, 5.25rem);
  font-weight: 400;
  max-width: 12ch;
  margin-block: 1.6rem 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-sub {
  max-width: 44ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(244, 239, 230, 0.82);
  margin-bottom: 2.4rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-cue {
  position: absolute;
  left: clamp(1.25rem, 4vw, 2.5rem);
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: rgba(244, 239, 230, 0.6);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  padding-bottom: 0;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 4.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: cue 2.6s var(--ease-out) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Sections ---- */
.section { padding-block: var(--section-pad); position: relative; }
.section-alt { background: var(--ink-2); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
.section-head p { color: var(--muted); font-size: 1.1rem; max-width: 56ch; }

/* Mission */
.mission { text-align: center; }
.mission blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  font-weight: 380;
  line-height: 1.2;
}
.mission blockquote em { color: var(--gold-bright); font-style: italic; }
.mission-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 0;
  list-style: none;
}
.mission-points li {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}

/* Audience cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  position: relative;
  padding: 2.2rem 2rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(244, 239, 230, 0.035), rgba(244, 239, 230, 0.008));
  transition: transform 0.45s var(--ease-out), border-color 0.35s, background 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
}
.card h3 { font-size: 1.45rem; margin-top: 1.2rem; }
.card p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.card-icon {
  width: 2.6rem;
  height: 2.6rem;
  color: var(--gold);
}
.card-icon svg { width: 100%; height: 100%; }
.card .platforms {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 169, 97, 0.75);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.service {
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(10, 15, 30, 0.5);
  transition: transform 0.45s var(--ease-out), border-color 0.35s;
}
.service:hover { transform: translateY(-5px); border-color: var(--line); }
.service h3 { font-size: 1.18rem; display: flex; align-items: baseline; gap: 0.7rem; }
.service h3::before {
  content: attr(data-n);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.service p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* Trade cards (pawn / rook) */
.trade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.trade-card {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 30rem;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  transition: border-color 0.35s;
}
.trade-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  z-index: -2;
  transition: transform 1.2s var(--ease-out);
}
.trade-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 15, 30, 0.95) 8%, rgba(10, 15, 30, 0.25) 55%, rgba(10, 15, 30, 0.35) 100%);
}
.trade-card:hover { border-color: var(--line); }
.trade-card:hover img { transform: scale(1.045); }
.trade-body { padding: 2.4rem; }
.trade-body .eyebrow { margin-bottom: 0.8rem; }
.trade-body h3 { font-size: 1.9rem; }
.trade-body p { color: rgba(244, 239, 230, 0.8); font-size: 0.98rem; max-width: 46ch; }
.trade-body .link-more {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* Differentiators */
.nots { counter-reset: nots; }
.not-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: baseline;
  padding-block: 2.6rem;
  border-top: 1px solid var(--line-soft);
}
.not-row:last-child { border-bottom: 1px solid var(--line-soft); }
.not-row h3 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 380;
  margin: 0;
}
.not-row h3 em { color: var(--gold-bright); font-style: italic; }
.not-row h3 s {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(201, 169, 97, 0.85);
  text-decoration-thickness: 3px;
}
.not-row p { color: var(--muted); margin: 0; font-size: 1.02rem; }

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2.2rem 2rem 2rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(244, 239, 230, 0.03), transparent);
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 340;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 97, 0.55);
  display: block;
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.4rem; }
.step h3 span { color: var(--gold); font-style: italic; }
.step p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding-block: clamp(6rem, 12vw, 10rem);
}
.cta-band .bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../media/hero-poster.jpg');
  background-size: cover;
  background-position: center 70%;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 15, 30, 0.82);
}
.cta-band h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band h2 em { color: var(--gold-bright); }
.cta-band p { color: var(--muted); max-width: 48ch; margin: 0 auto 2.4rem; }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding-block: 4rem 2.5rem;
  background: var(--ink-2);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-about p { color: var(--muted); max-width: 34ch; margin-top: 1.2rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.85rem;
}
address { font-style: normal; color: var(--muted); line-height: 1.8; }

/* ---- Contact page ---- */
.page-hero {
  padding-block: 10rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); max-width: 16ch; }
.page-hero h1 em { color: var(--gold-bright); }
.page-hero p { color: var(--muted); max-width: 52ch; font-size: 1.1rem; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding-bottom: var(--section-pad);
}
.contact-aside .detail { margin-bottom: 1.9rem; }
.contact-aside .detail h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-aside .detail p, .contact-aside .detail a { font-size: 1.05rem; color: var(--cream); }
.contact-aside .detail a:hover { color: var(--gold-bright); }

.form-card {
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(170deg, rgba(244, 239, 230, 0.035), rgba(244, 239, 230, 0.006));
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--gold); }
.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A961' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; }
.field select option { background: var(--ink-3); color: var(--cream); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.field textarea { resize: vertical; min-height: 9rem; }
.choices { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.choices input { position: absolute; opacity: 0; pointer-events: none; }
.choices label {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.choices input:checked + label {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(201, 169, 97, 0.08);
}
.choices input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }
.form-status {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem 1.3rem;
  border-radius: 10px;
  font-size: 0.95rem;
}
.form-status.ok { display: block; border: 1px solid rgba(120, 190, 120, 0.4); color: #A8D8A8; background: rgba(120, 190, 120, 0.08); }
.form-status.err { display: block; border: 1px solid rgba(220, 120, 120, 0.4); color: #E8B0B0; background: rgba(220, 120, 120, 0.08); }

/* ---- Prose (privacy) ---- */
.prose { max-width: 72ch; padding-bottom: var(--section-pad); }
.prose h2 { font-size: 1.7rem; margin-top: 2.6em; }
.prose p, .prose li { color: var(--muted); }
.prose li { margin-bottom: 0.5em; }
.prose strong { color: var(--cream); font-weight: 500; }

/* ---- 404 ---- */
.page-404 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
}
.page-404 h1 { font-size: clamp(3rem, 8vw, 6rem); }
.page-404 h1 em { color: var(--gold-bright); }
.page-404 p { color: var(--muted); max-width: 44ch; margin: 0 auto 2.2rem; }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---- Responsive ---- */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; z-index: 120; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 15, 30, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
    z-index: 110;
  }
  .nav-links a:not(.btn) { font-size: 1.4rem; }
  body.menu-open .nav-links { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .trade-grid { grid-template-columns: 1fr; }
  .trade-card { min-height: 24rem; }
  .not-row { grid-template-columns: 1fr; gap: 0.8rem; }
  .steps { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-block: 7rem 4rem; }
}
