/* ==========================================================================
   TopStitchDigital — Brand stylesheet
   Technology that supports the trade.
   ========================================================================== */

:root {
  /* Core palette — quilted leather brand world */
  --leather-black: #14100e;
  --leather-deep: #1c1512;
  --leather-mid: #2a211c;
  --leather-raised: #3a2e27;
  --oxblood: #7a2222;
  --oxblood-deep: #5c1818;
  --oxblood-bright: #9a2e2e;
  --stitch: #c45a28;
  --stitch-hover: #d96a36;
  --stitch-soft: rgba(196, 90, 40, 0.18);
  --cream: #f5efe6;
  --cream-soft: #e8e0d2;
  --cream-muted: #c4b8a4;
  --cream-dim: #9a8e7c;
  --ink: #1a1410;
  --ink-soft: #3d342c;

  /* Surfaces */
  --bg: var(--leather-black);
  --bg-elevated: var(--leather-deep);
  --bg-card: var(--leather-mid);
  --text: var(--cream);
  --text-muted: var(--cream-muted);
  --border: rgba(245, 239, 230, 0.1);
  --border-strong: rgba(245, 239, 230, 0.18);

  /* Typography */
  --font-display: "Cormorant Garamond", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --max: 1120px;
  --narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --radius: 10px;
  --radius-lg: 16px;
  --header-h: 4.25rem;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Reset & base ----------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(122, 34, 34, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(196, 90, 40, 0.08), transparent 50%);
  background-attachment: fixed;
}

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

a {
  color: var(--stitch-hover);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--cream);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--stitch);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.55rem); }

p {
  margin: 0 0 1rem;
  color: var(--cream-soft);
}

p:last-child { margin-bottom: 0; }

strong { color: var(--cream); font-weight: 600; }

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--cream-soft);
}

li { margin-bottom: 0.4rem; }

/* Layout helpers --------------------------------------------------------- */

.wrap {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - var(--gutter) * 2, var(--narrow));
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stitch);
  margin-bottom: 1rem;
}

.section__label::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--stitch);
}

.section__intro {
  max-width: 38rem;
  font-size: 1.125rem;
  color: var(--cream-muted);
  margin-bottom: 2.25rem;
}

.answer-first {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--cream-soft);
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

/* Header ----------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(20, 16, 14, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
}

.logo:hover { color: var(--cream); }

.logo__mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 0 2px rgba(196, 90, 40, 0.25);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.logo__text span {
  color: var(--stitch);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--cream);
  background: rgba(245, 239, 230, 0.06);
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--cream);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--stitch);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--stitch-hover);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-strong);
}

.btn--secondary:hover {
  border-color: var(--cream-muted);
  color: var(--cream);
  background: rgba(245, 239, 230, 0.05);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-muted);
  border: none;
  padding-inline: 0.75rem;
}

.btn--ghost:hover { color: var(--cream); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Hero ------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(3.5rem, 10vw, 7rem) 0 clamp(4rem, 10vw, 6.5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Banner art is texture only — heavy veil so the older “TopStitch Media”
     wordmark never reads as the live brand name. */
  background:
    linear-gradient(
      105deg,
      rgba(20, 16, 14, 0.97) 0%,
      rgba(20, 16, 14, 0.93) 42%,
      rgba(20, 16, 14, 0.78) 72%,
      rgba(92, 24, 24, 0.55) 100%
    ),
    url("../assets/banner-wide-clean.png") right center / cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(42%, 480px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(122, 34, 34, 0.12) 55%,
    rgba(122, 34, 34, 0.22) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stitch);
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--stitch);
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 0.85rem;
}

.hero__stitch {
  display: flex;
  align-items: center;
  gap: 0;
  width: min(100%, 18rem);
  margin: 0 0 1.5rem;
  color: var(--stitch);
}

.hero__stitch-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed var(--stitch);
  opacity: 0.85;
}

.hero__stitch-arrow {
  font-size: 0.85rem;
  line-height: 1;
  margin-left: -1px;
}

.hero__lede {
  max-width: 36rem;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--cream-soft);
  line-height: 1.7;
}

.hero__humour {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 1.15rem;
  max-width: 32rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream-muted);
  border-left: 2px solid var(--stitch);
  background: rgba(0, 0, 0, 0.28);
  border-radius: 0 8px 8px 0;
}

/* Cards & grids ---------------------------------------------------------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.card:hover {
  border-color: rgba(196, 90, 40, 0.35);
  transform: translateY(-2px);
}

.card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--stitch-soft);
  color: var(--stitch);
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.98rem;
  color: var(--cream-muted);
}

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

.card a:hover h3 {
  color: var(--stitch-hover);
}

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

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse > :first-child { order: 2; }
.split--reverse > :last-child { order: 1; }

.panel {
  background: linear-gradient(160deg, var(--leather-mid), var(--leather-deep));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}

.panel--photo {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--cream-soft);
  margin: 0;
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 2px solid var(--stitch);
  background:
    radial-gradient(circle at center, var(--stitch) 35%, transparent 36%);
}

/* Band / callout --------------------------------------------------------- */

.band {
  background:
    linear-gradient(135deg, rgba(122, 34, 34, 0.35), rgba(20, 16, 14, 0.9) 55%),
    linear-gradient(var(--leather-mid), var(--leather-mid));
  border-block: 1px solid var(--border);
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.band h2 {
  max-width: 18ch;
  margin-bottom: 0.5rem;
}

.band p {
  max-width: 32rem;
  color: var(--cream-muted);
  margin: 0;
}

/* Process steps ---------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(42, 33, 28, 0.55);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--stitch);
  margin-bottom: 0.65rem;
  letter-spacing: 0.04em;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--cream-muted);
  margin: 0;
}

/* Tables ----------------------------------------------------------------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

th, td {
  text-align: left;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  font-weight: 600;
  color: var(--cream);
  background: rgba(245, 239, 230, 0.04);
  white-space: nowrap;
}

td { color: var(--cream-soft); }

tr:last-child td { border-bottom: none; }

/* Forms ------------------------------------------------------------------ */

.form {
  display: grid;
  gap: 1.15rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream-muted);
  margin-bottom: 0.4rem;
}

.field label .req {
  color: var(--stitch);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  background: var(--leather-black);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--cream-dim);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--cream-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--stitch);
  box-shadow: 0 0 0 3px var(--stitch-soft);
  outline: none;
}

.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 1.5 6 6.5 11 1.5' stroke='%23c4b8a4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form__note {
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin: 0;
}

.form__status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.form__status--ok {
  display: block;
  background: rgba(60, 120, 70, 0.2);
  border: 1px solid rgba(100, 180, 110, 0.35);
  color: #c8e6c9;
}

.form__status--err {
  display: block;
  background: rgba(122, 34, 34, 0.25);
  border: 1px solid rgba(196, 90, 40, 0.4);
  color: var(--cream-soft);
}

/* Page header (inner pages) ---------------------------------------------- */

.page-hero {
  padding: clamp(2.75rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(122, 34, 34, 0.12), transparent 70%);
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero .answer-first {
  margin-bottom: 0;
  font-size: 1.15rem;
}

/* Footer ----------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--leather-deep);
  padding: 3rem 0 1.75rem;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand .logo {
  margin-bottom: 0.85rem;
}

.footer__brand p {
  color: var(--cream-muted);
  font-size: 0.95rem;
  max-width: 28ch;
}

.footer__col h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.9rem;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li { margin-bottom: 0.45rem; }

.footer__col a {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--cream-dim);
}

/* Utility ---------------------------------------------------------------- */

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

.text-muted { color: var(--cream-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stitch);
  background: var(--stitch-soft);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* Quote block ------------------------------------------------------------ */

.pullquote {
  margin: 0;
  padding: 0;
  border: none;
}

.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 1rem;
}

.pullquote footer {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--cream-muted);
}

/* Pain points (home) ----------------------------------------------------- */

.pains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pain {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(42, 33, 28, 0.5);
}

.pain__mark {
  flex: none;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--stitch-soft);
  color: var(--stitch);
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.pain p {
  font-size: 0.98rem;
  color: var(--cream-soft);
  margin-bottom: 0.3rem;
}

.pain p:last-child { margin-bottom: 0; }

.pain__fix {
  font-size: 0.9rem !important;
  color: var(--cream-muted) !important;
}

/* Market facts (home) ---------------------------------------------------- */

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fact {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--leather-mid), var(--leather-deep));
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
}

.fact__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  color: var(--stitch);
  margin-bottom: 0.9rem;
}

.fact p:last-child {
  font-size: 0.95rem;
  color: var(--cream-muted);
  margin: 0;
}

/* Responsive ------------------------------------------------------------- */

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child,
  .split--reverse > :last-child { order: unset; }
  .steps { grid-template-columns: 1fr 1fr; }
  .pains { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(20, 16, 14, 0.96) 20%, rgba(20, 16, 14, 0.9) 100%),
      url("../assets/banner-wide-clean.png") center / cover no-repeat;
  }
}

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

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem var(--gutter) 1.25rem;
    background: rgba(20, 16, 14, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
  }

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

  .nav__link {
    padding: 0.85rem 0.5rem;
    border-radius: 8px;
  }

  .nav__cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .form__row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}

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