/* Core design tokens */
:root {
  --bg: #fffaf4;
  --bg-soft: #fff4e7;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #1c1b1a;
  --muted: #5b5752;
  --border: #e8dfd5;
  --accent: #ff6f3c;
  --accent-strong: #e94d11;
  --accent-alt: #ffb703;
  --mint: #53c8af;
  --focus: #0d6efd;
  --success: #146c43;
  --danger: #c5352f;
  --shadow-sm: 0 10px 28px rgba(38, 19, 3, 0.09);
  --shadow-md: 0 20px 56px rgba(38, 19, 3, 0.13);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1100px;
  --header-height: 78px;
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --easing-soft: cubic-bezier(0.25, 0.95, 0.28, 1);
  --easing-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Soft decorative background */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
}

body::before {
  width: 600px;
  height: 600px;
  top: -170px;
  right: -130px;
  background: radial-gradient(circle at center, rgba(255, 111, 60, 0.25), rgba(255, 111, 60, 0));
}

body::after {
  width: 520px;
  height: 520px;
  left: -190px;
  bottom: -120px;
  background: radial-gradient(circle at center, rgba(83, 200, 175, 0.18), rgba(83, 200, 175, 0));
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.7em;
  line-height: 1.13;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4.7vw, 4.25rem);
}

h2 {
  font-size: clamp(1.8rem, 3.3vw, 3.05rem);
}

h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
}

p {
  margin: 0 0 1.15em;
  color: var(--muted);
}

ul,
ol {
  margin: 0 0 1.15em;
  padding-left: 1.2rem;
  color: var(--muted);
}

strong {
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
}

.container {
  width: min(var(--max-width), 90vw);
  margin: 0 auto;
}

.site-header {
  --cursor-x: 50%;
  --cursor-y: 50%;
  --tab-x: 50%;
  --tab-y: 50%;
  --glow-opacity: 0;
  --tab-opacity: 0;
  --wobble-x: 0px;
  --wobble-y: 0px;
  --morph-size: 0px;
  --flow-pulse: 0.5;
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(13px);
  background: rgba(255, 250, 244, 0.62);
  border-bottom: 1px solid rgba(232, 223, 213, 0.7);
  overflow: hidden;
  isolation: isolate;
  transition: background 460ms var(--easing-soft), border-color 460ms var(--easing-soft), box-shadow 460ms var(--easing-soft);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(
      calc(172px + var(--morph-size)) circle at calc(var(--cursor-x) + var(--wobble-x)) calc(var(--cursor-y) + var(--wobble-y)),
      rgba(255, 151, 74, 0.62),
      rgba(255, 151, 74, 0.1) 52%,
      rgba(255, 151, 74, 0) 74%
    ),
    radial-gradient(
      calc(120px - var(--morph-size)) circle at calc(var(--cursor-x) - var(--wobble-x)) calc(var(--cursor-y) + var(--wobble-y)),
      rgba(255, 203, 126, 0.48),
      rgba(255, 203, 126, 0) 72%
    );
  opacity: calc(var(--glow-opacity) * (0.84 + (var(--flow-pulse) * 0.16)));
  filter: blur(12px) saturate(128%);
  transition: opacity 520ms var(--easing-soft);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(
      calc(138px + var(--morph-size)) circle at calc(var(--tab-x) + var(--wobble-y)) calc(var(--tab-y) - var(--wobble-x)),
      rgba(255, 107, 56, 0.72),
      rgba(255, 107, 56, 0.08) 54%,
      rgba(255, 107, 56, 0) 72%
    );
  opacity: calc(var(--tab-opacity) * (0.8 + (var(--flow-pulse) * 0.2)));
  filter: blur(10px) saturate(132%);
  transition: opacity 420ms var(--easing-soft);
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header {
    background: rgba(255, 250, 244, 0.95);
  }
}

.site-header.is-scrolled {
  background: rgba(255, 252, 249, 0.92);
  box-shadow: 0 6px 24px rgba(16, 6, 0, 0.08);
  border-color: rgba(223, 207, 189, 0.85);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text small {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  position: relative;
  z-index: 2;
  font-weight: 600;
  transition: color 320ms var(--easing-soft), text-shadow 320ms var(--easing-soft), transform 260ms var(--easing-soft);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  text-shadow: 0 0 15px rgba(255, 140, 68, 0.35);
}

.nav a.is-active {
  color: #6f290d;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: absolute;
  transition: transform 420ms var(--easing-soft), opacity 340ms var(--easing-soft);
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 75;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background:
    radial-gradient(540px circle at 82% 12%, rgba(255, 170, 120, 0.28), rgba(255, 170, 120, 0)),
    radial-gradient(430px circle at 18% 88%, rgba(83, 200, 175, 0.2), rgba(83, 200, 175, 0)),
    rgba(28, 22, 17, 0.28);
  backdrop-filter: blur(5px);
  transition: opacity 330ms var(--easing-soft), visibility 330ms var(--easing-soft);
}

.mobile-nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

main {
  display: block;
}

.section {
  padding: clamp(4.5rem, 8vw, 8.2rem) 0;
  position: relative;
}

.section--tight {
  padding: clamp(3.6rem, 6vw, 5.8rem) 0;
}

.section--hero {
  padding-top: clamp(4.4rem, 8vw, 7.4rem);
}

.section--hero-about {
  padding-top: clamp(2.4rem, 5vw, 4rem);
}

.section--hero-home {
  padding-top: clamp(1.4rem, 3.4vw, 2.6rem);
  padding-bottom: clamp(1.4rem, 3.2vw, 2.4rem);
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 111, 60, 0.15);
  color: #7e2e0c;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lead {
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
  color: #4d463e;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.1rem, 4.4vw, 4rem);
  align-items: center;
}

.hero__visual {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 111, 60, 0.14), rgba(83, 200, 175, 0.2));
  padding: clamp(1.15rem, 3.2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.hero__card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.2rem;
  margin-top: 1.1rem;
}

.hero__card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.12rem, 1.5vw, 1.24rem);
}

.hero__card p,
.hero__stats li {
  margin: 0;
  font-size: 0.99rem;
  line-height: 1.62;
  color: #443d35;
  font-weight: 500;
}

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 48px;
  padding: 0.74rem 1.3rem;
  text-decoration: none;
  font-weight: 700;
  will-change: transform, box-shadow;
  transition: transform 360ms var(--easing-soft), box-shadow 430ms var(--easing-soft), background-color 320ms var(--easing-soft), color 320ms var(--easing-soft), border-color 320ms var(--easing-soft);
}

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

.btn:active {
  transform: translateY(0) scale(0.986);
  transition-duration: 130ms;
}

.btn--primary {
  background: linear-gradient(100deg, var(--accent), #ff8155);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(233, 77, 17, 0.32);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 18px 36px rgba(233, 77, 17, 0.38);
}

.btn--secondary {
  border-color: rgba(255, 111, 60, 0.35);
  background: rgba(255, 255, 255, 0.7);
  color: #6b2a0f;
}

.btn--ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  will-change: transform, box-shadow;
  transition: transform 480ms var(--easing-soft), box-shadow 500ms var(--easing-soft), border-color 380ms var(--easing-soft);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #e0cab3;
}

.card h3,
.card h4 {
  margin-bottom: 0.5rem;
}

.card--stack {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.8rem;
  background: linear-gradient(150deg, rgba(255, 111, 60, 0.2), rgba(255, 183, 3, 0.22));
  color: #8a2f11;
  font-weight: 800;
}

.kicker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.kicker {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
}

.kicker strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.stat-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 244, 231, 0.78));
  padding: clamp(1.2rem, 3.4vw, 2.1rem);
  box-shadow: var(--shadow-sm);
}

.stat-chart {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.3rem;
}

.stat-item {
  display: grid;
  gap: 0.42rem;
}

.stat-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  color: #45382e;
}

.stat-label span:first-child {
  flex: 1;
  min-width: 0;
}

.stat-label span:last-child {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.bar-track {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(226, 211, 191, 0.65);
  overflow: hidden;
}

.bar-fill {
  --fill: 0;
  width: calc(var(--fill) * 1%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(100deg, #ff7c4d, #ffb703);
  transition: width 1450ms var(--easing-emphasis);
}

.stat-note {
  margin-top: 1.2rem;
  font-size: 0.95rem;
}

.sources {
  margin-top: 1.3rem;
  padding-left: 1rem;
}

.sources li {
  margin-bottom: 0.55rem;
}

.sources--inline {
  margin-top: 0.9rem;
  margin-bottom: 0;
}

.sources a {
  color: #7f2e0e;
}

.sources a:hover,
.sources a:focus-visible {
  text-decoration: none;
}

.timeline {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.timeline li {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.78);
}

.timeline strong {
  display: block;
  margin-bottom: 0.24rem;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 1.25rem;
}

.cost-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.86);
}

.cost-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: #6f2609;
  margin: 0.2rem 0 0.45rem;
}

.callout {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 111, 60, 0.35);
  background: rgba(255, 111, 60, 0.09);
  padding: 1.2rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.78rem;
}

.checklist--spaced {
  margin-top: 1.2rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
}

.checklist li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--mint), #65e0c6);
  position: absolute;
  left: 0;
  top: 0.35rem;
}

.profile {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.profile__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.profile__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-narrative {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-narrative p {
  margin-bottom: 1.15rem;
}

/* Use the regular sans font on legal pages instead of display serif headings */
.legal-page h1,
.legal-page h2,
.legal-page h3,
.legal-page h4,
.legal-page h5,
.legal-page h6 {
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.form-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.5rem;
  align-items: start;
}

.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  padding: clamp(1.2rem, 3.2vw, 1.9rem);
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  color: #3d3229;
  font-size: 0.95rem;
}

input,
textarea,
select {
  font: inherit;
  border-radius: 12px;
  border: 1px solid #d7c6b4;
  background: #fff;
  color: var(--text);
  padding: 0.78rem 0.9rem;
  width: 100%;
  min-height: 44px;
  transition: border-color 300ms var(--easing-soft), box-shadow 300ms var(--easing-soft), background-color 300ms var(--easing-soft);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.25);
  outline-offset: 2px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.checkbox input {
  width: 1rem;
  height: 1rem;
  min-height: auto;
  margin-top: 0.25rem;
}

.helper {
  font-size: 0.84rem;
  color: #6e6257;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-status {
  font-weight: 700;
  margin: 0;
}

.form-status[data-state="ok"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.faq {
  display: grid;
  gap: 0.92rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  overflow: clip;
  transition: box-shadow 420ms var(--easing-soft), transform 420ms var(--easing-soft), border-color 320ms var(--easing-soft);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: #dcc3ac;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 1.1rem;
  font: inherit;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
  transition: background-color 320ms var(--easing-soft), transform 320ms var(--easing-soft);
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
  background: rgba(255, 111, 60, 0.08);
}

.faq-trigger span:last-child {
  color: #7c2f10;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 380ms var(--easing-soft);
}

.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1rem;
  color: var(--muted);
  display: block;
  transition: max-height 520ms var(--easing-soft), opacity 420ms var(--easing-soft), padding 420ms var(--easing-soft);
}

.faq-item.is-open .faq-content {
  max-height: 420px;
  opacity: 1;
  padding: 0 1rem 1rem;
}

.faq-item.is-open .faq-trigger span:last-child {
  transform: rotate(45deg);
}

.notice {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.86);
}

.cta-box {
  border: 1px solid rgba(255, 111, 60, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, rgba(255, 111, 60, 0.09), rgba(83, 200, 175, 0.15));
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.8rem 0 2.5rem;
  background: rgba(255, 248, 240, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow-x: auto;
  padding-right: 0;
}

.footer-links a {
  text-decoration: none;
  color: #6d5947;
  font-weight: 600;
  white-space: nowrap;
  transition: color 260ms var(--easing-soft);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #55250d;
}

.small {
  font-size: 0.9rem;
}

.btn-row--end {
  width: 100%;
  margin-top: auto;
  padding-top: 2.4rem;
  justify-content: flex-end;
}

.btn-row--end .btn {
  margin-left: auto;
}

.steps-grid {
  grid-auto-flow: row;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.986);
  transition: opacity 620ms var(--easing-soft), transform 620ms var(--easing-soft);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 35ms;
}

.reveal-delay-2 {
  transition-delay: 70ms;
}

.reveal-delay-3 {
  transition-delay: 105ms;
}

.btn.is-pressed,
.nav a.is-pressed,
.faq-trigger.is-pressed,
.menu-toggle.is-pressed {
  transform: scale(0.985) !important;
}

/* Utility */
.mt-0 {
  margin-top: 0;
}

.center {
  text-align: center;
}

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

@media (max-width: 1024px) {
  .hero,
  .profile,
  .form-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .kicker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cost-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-header {
    overflow: visible;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    right: max(12px, env(safe-area-inset-right));
    left: max(12px, env(safe-area-inset-left));
    z-index: 92;
    padding: 0.82rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 223, 213, 0.95);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 56px rgba(20, 9, 1, 0.18);
    display: grid;
    gap: 0.46rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transition: opacity 360ms var(--easing-soft), transform 360ms var(--easing-soft), visibility 360ms var(--easing-soft);
  }

  .site-header[data-menu-open="true"] .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav a {
    border-radius: 12px;
    background: rgba(255, 249, 243, 0.88);
    border: 1px solid rgba(230, 218, 205, 0.9);
    padding: 0.82rem 0.95rem;
    transform: translateY(7px);
    opacity: 0;
    transition: transform 420ms var(--easing-soft), opacity 420ms var(--easing-soft), background-color 260ms var(--easing-soft), border-color 260ms var(--easing-soft), color 260ms var(--easing-soft);
  }

  .site-header[data-menu-open="true"] .nav a {
    transform: translateY(0);
    opacity: 1;
  }

  .site-header[data-menu-open="true"] .nav a:nth-child(1) {
    transition-delay: 45ms;
  }

  .site-header[data-menu-open="true"] .nav a:nth-child(2) {
    transition-delay: 80ms;
  }

  .site-header[data-menu-open="true"] .nav a:nth-child(3) {
    transition-delay: 115ms;
  }

  .site-header[data-menu-open="true"] .nav a:nth-child(4) {
    transition-delay: 150ms;
  }

  .site-header[data-menu-open="true"] .nav a:nth-child(5) {
    transition-delay: 185ms;
  }

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

@media (max-width: 680px) {
  .form-grid,
  .grid-2,
  .cost-grid,
  .kicker-grid {
    grid-template-columns: 1fr;
  }

  .brand__text {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn-row--end {
    justify-content: flex-start;
    padding-top: 1.1rem;
  }

  .btn-row--end .btn {
    margin-left: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .faq-content {
    max-height: none;
    opacity: 1;
  }
}
