:root {
  --bg: #f4efe7;
  --bg-deep: #d7e6e3;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #111827;
  --muted: #51606f;
  --accent: #0f766e;
  --accent-2: #1d4ed8;
  --accent-3: #b45309;
  --line: rgba(17, 24, 39, 0.1);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 16px 50px rgba(15, 23, 42, 0.14);
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --dur-1: 120ms;
  --dur-2: 200ms;
  --dur-3: 280ms;
  --ease-out: cubic-bezier(0.2, 0.9, 0.2, 1);
  --focus-color: rgba(15, 118, 110, 0.45);
  --focus-offset: 3px;
}

:root {
  --ds-font-display: "Fraunces", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  --ds-font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  --ds-duration-silk: 400ms;
  --ds-ease-silk: cubic-bezier(0.2, 0.9, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ds-color-text);
  font-family: var(--ds-font-sans);
  background: var(--ds-color-bg);
  overflow-x: hidden;
}

body.has-dynamic-bg {
  background: transparent;
}

.site-dynamic-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: linear-gradient(180deg, var(--dyn-bg-top, #ffffff), var(--dyn-bg-bottom, #ffffff));
}

.site-dynamic-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 18% 12%, var(--dyn-bg-glow-a, transparent), transparent),
    radial-gradient(50% 70% at 88% 82%, var(--dyn-bg-glow-b, transparent), transparent);
  opacity: 0.9;
}

body.has-page-transition {
  transition: opacity var(--ds-duration-silk) var(--ds-ease-silk);
}

body.has-page-transition.is-page-entering,
body.has-page-transition.is-page-leaving {
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: var(--ds-gradient-hero),
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 82%);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--ds-color-brand-500) 35%, transparent);
  outline-offset: 2px;
}

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

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

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
  max-width: 1280px;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 24px;
  }
}

@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

.section {
  padding-block: var(--ds-space-16);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--ds-space-24);
  }
}

.section-head {
  display: grid;
  gap: var(--ds-space-3);
  margin-bottom: var(--ds-space-8);
}

.eyebrow {
  font-size: var(--ds-text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ds-color-text-muted);
  font-weight: 700;
}

.h1,
h1 {
  font-family: var(--ds-font-display);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.02;
  margin: 0;
}

h2 {
  font-family: var(--ds-font-display);
  font-size: clamp(1.95rem, 3.1vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.lead {
  color: var(--ds-color-text-muted);
  font-size: var(--ds-text-lg);
  line-height: var(--ds-leading-body);
}

.info-page .page-shell {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
  max-width: 1280px;
  padding-block: var(--ds-space-10) var(--ds-space-16);
}

@media (min-width: 640px) {
  .info-page .page-shell {
    padding-inline: 24px;
  }
}

@media (min-width: 768px) {
  .info-page .page-shell {
    padding-inline: 32px;
    padding-block: var(--ds-space-12) var(--ds-space-20);
  }
}

.info-page .hero {
  padding-top: 0;
}

.info-page .eyebrow,
.info-page .panel-label {
  font-size: var(--ds-text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ds-color-text-muted);
  font-weight: 700;
}

.info-page .lead {
  max-width: 68ch;
  font-size: var(--ds-text-lg);
  line-height: var(--ds-leading-body);
}

.info-page .hero-copy h1 {
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  max-width: 18ch;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills > span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--ds-color-border);
  background: color-mix(in oklab, var(--ds-color-surface-2) 78%, transparent);
  color: var(--ds-color-text-muted);
  font-size: var(--ds-text-sm);
  font-weight: 700;
}

.chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.chip-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ds-color-text-muted);
  line-height: 1.35;
}

.chip-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--ds-color-brand-500) 70%, var(--ds-color-border));
  flex: 0 0 auto;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--ds-color-text);
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.checklist li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--ds-color-brand-500) 12%, var(--ds-color-surface));
  border: 1px solid color-mix(in oklab, var(--ds-color-brand-500) 18%, var(--ds-color-border));
  color: var(--ds-color-brand-700);
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 1px;
}

.section-card {
  border: 1px solid var(--ds-color-border);
  border-radius: var(--ds-radius-3xl);
  background: color-mix(in oklab, var(--ds-color-surface) 92%, transparent);
  box-shadow: var(--ds-shadow-md);
  padding: var(--ds-space-8);
  margin-top: var(--ds-space-10);
}

.info-page .faq-shell {
  position: relative;
  overflow: hidden;
}

.info-page .faq-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(55% 65% at 20% 0%, color-mix(in oklab, var(--ds-color-brand-500) 18%, transparent), transparent),
    radial-gradient(55% 65% at 90% 100%, color-mix(in oklab, var(--ds-color-accent-500) 12%, transparent), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.info-page .faq-shell > * {
  position: relative;
}

.process-grid {
  display: grid;
  gap: var(--ds-space-6);
  margin-top: var(--ds-space-8);
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.process-card {
  padding: var(--ds-space-8);
  display: grid;
  gap: var(--ds-space-3);
}

.process-card p {
  color: var(--ds-color-text-muted);
  line-height: var(--ds-leading-body);
}

.process-step {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--ds-radius-2xl);
  border: 1px solid color-mix(in oklab, var(--ds-color-brand-500) 18%, var(--ds-color-border));
  background: color-mix(in oklab, var(--ds-color-brand-500) 10%, var(--ds-color-surface));
  color: var(--ds-color-brand-700);
  font-weight: 900;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-card {
    padding: var(--ds-space-12);
  }
}

.split {
  display: grid;
  gap: var(--ds-space-8);
  align-items: start;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--ds-space-12);
  }
}

.support-card {
  border-radius: var(--ds-radius-3xl);
  border: 1px solid var(--ds-color-border);
  background: color-mix(in oklab, var(--ds-color-surface-2) 86%, transparent);
  box-shadow: var(--ds-shadow-sm);
  padding: var(--ds-space-8);
  display: grid;
  gap: var(--ds-space-4);
}

.support-card h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.support-card p {
  color: var(--ds-color-text-muted);
  line-height: var(--ds-leading-body);
}

.mini-callout {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: var(--ds-radius-2xl);
  border: 1px solid color-mix(in oklab, var(--ds-color-brand-500) 18%, var(--ds-color-border));
  background: color-mix(in oklab, var(--ds-color-brand-500) 6%, var(--ds-color-surface));
}

.mini-callout span {
  color: var(--ds-color-text-muted);
  line-height: 1.5;
}

.pill.pill-compact {
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}

.attorneys-page .attorney-grid {
  display: grid;
  gap: var(--ds-space-6);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .attorneys-page .attorney-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .attorneys-page .attorney-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.attorneys-page .attorney-card {
  overflow: hidden;
  display: grid;
}

.attorneys-page .attorney-card.card {
  transition: transform var(--ds-duration-base) var(--ds-ease-out), box-shadow var(--ds-duration-base) var(--ds-ease-out),
    border-color var(--ds-duration-base) var(--ds-ease-out);
}

.attorneys-page .attorney-card.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ds-shadow-lg);
  border-color: color-mix(in oklab, var(--ds-color-brand-500) 26%, var(--ds-color-border));
}

.attorneys-page .attorney-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  background: var(--ds-color-surface-2);
}

.attorneys-page .attorney-body {
  padding: var(--ds-space-6);
  display: grid;
  gap: var(--ds-space-3);
}

.attorneys-page .attorney-body p {
  color: var(--ds-color-text-muted);
  line-height: var(--ds-leading-body);
}

.attorneys-page .case-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.card {
  border: 1px solid var(--ds-color-border);
  border-radius: var(--ds-radius-3xl);
  background: color-mix(in oklab, var(--ds-color-surface) 92%, transparent);
  box-shadow: var(--ds-shadow-md);
}

.card-soft {
  background: color-mix(in oklab, var(--ds-color-surface-2) 86%, transparent);
  box-shadow: var(--ds-shadow-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  white-space: nowrap;
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  color: currentColor;
}

.icon use {
  pointer-events: none;
}

.btn-primary {
  height: 48px;
  padding: 0 24px;
  border-radius: var(--ds-radius-xl);
  background: var(--ds-gradient-cta);
  color: #ffffff;
  font-weight: 600;
  transition: transform var(--ds-duration-base) var(--ds-ease-out), filter var(--ds-duration-base) var(--ds-ease-out),
    box-shadow var(--ds-duration-base) var(--ds-ease-out);
}

.btn-primary:hover {
  filter: brightness(1.03);
  box-shadow: var(--ds-shadow-sm);
}

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

.btn-primary:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--ds-color-brand-500) 35%, transparent);
  outline-offset: 2px;
}

.btn-primary[disabled],
.btn-primary.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  filter: none;
  transform: none;
}

.btn.is-loading {
  pointer-events: none;
}

.btn.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  display: inline-block;
  margin-left: 10px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-secondary {
  height: 48px;
  padding: 0 24px;
  border-radius: var(--ds-radius-2xl);
  background: var(--ds-color-surface);
  border: 1px solid var(--ds-color-border);
  color: var(--ds-color-text);
  font-weight: 600;
  transition: background-color var(--ds-duration-slow) var(--ds-ease-out), border-color var(--ds-duration-slow) var(--ds-ease-out),
    transform var(--ds-duration-fast) var(--ds-ease-out);
}

.btn-secondary:hover {
  background-color: var(--ds-color-surface-2);
  border-color: color-mix(in oklab, var(--ds-color-border) 70%, #000);
}

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

.btn-secondary:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--ds-color-brand-500) 30%, transparent);
  outline-offset: 2px;
}

.btn-compact {
  height: 38px;
  padding: 0 16px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--ds-color-brand-500) 10%, var(--ds-color-surface));
  border: 1px solid color-mix(in oklab, var(--ds-color-brand-500) 18%, var(--ds-color-border));
  color: var(--ds-color-text);
  font-weight: 600;
  transition: background-color var(--ds-duration-slow) var(--ds-ease-out), transform var(--ds-duration-fast) var(--ds-ease-out);
}

.btn-compact:hover {
  background: color-mix(in oklab, var(--ds-color-brand-500) 14%, var(--ds-color-surface));
}

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

.btn-compact:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--ds-color-brand-500) 30%, transparent);
  outline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--ds-duration-slow) var(--ds-ease-out), transform var(--ds-duration-slow) var(--ds-ease-out);
}

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

body.has-page-motion .reveal {
  transition-duration: var(--ds-duration-silk);
  transition-timing-function: var(--ds-ease-silk);
}

.home-page #hero {
  position: relative;
}

.home-page #hero .container.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-ornaments {
  position: absolute;
  inset: -36px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  filter: saturate(0.9);
}

.hero-ornaments svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-ornaments .orn-stroke {
  stroke: color-mix(in oklab, var(--ds-color-brand-500) 32%, #0b1320);
  stroke-width: 1.2;
  fill: none;
  opacity: 0.22;
}

.hero-ornaments .orn-soft {
  fill: color-mix(in oklab, var(--ds-color-brand-500) 18%, transparent);
  opacity: 0.14;
}

.hero-ornaments .orn-dots {
  fill: color-mix(in oklab, var(--ds-color-brand-400) 30%, transparent);
  opacity: 0.2;
}

.hero-ornaments .float-slow {
  transform-origin: 50% 50%;
  animation: ornament-float 18s var(--ds-ease-silk) infinite;
}

.hero-ornaments .float-slower {
  transform-origin: 50% 50%;
  animation: ornament-float 26s var(--ds-ease-silk) infinite;
}

.hero-ornaments .rotate-slow {
  transform-origin: 50% 50%;
  animation: ornament-rotate 92s linear infinite;
}

.hero-ornaments .pulse-soft {
  animation: ornament-pulse 14s var(--ds-ease-silk) infinite;
}

.hero-ornaments .drift {
  transform-origin: 50% 50%;
  animation: ornament-drift 22s var(--ds-ease-silk) infinite;
}

@keyframes ornament-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes ornament-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ornament-pulse {
  0%,
  100% {
    opacity: 0.12;
  }
  50% {
    opacity: 0.22;
  }
}

@keyframes ornament-drift {
  0%,
  100% {
    transform: translate3d(-8px, 0, 0);
  }
  50% {
    transform: translate3d(10px, 0, 0);
  }
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 36px;
}

.topbar,
.hero,
.trust-strip,
.info-card,
.lead-form,
.footer {
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #0b4f49);
  color: white;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-name {
  font-weight: 800;
}

.brand-tag,
.panel-note p,
.form-disclaimer,
.small-copy,
.trust-strip p,
.lead,
.info-card p,
.panel-stat p,
.step p,
.form-head p,
.footer p {
  color: var(--muted);
}

.brand-tag {
  font-size: 0.92rem;
}

.topbar-link,
.button {
  text-decoration: none;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out),
    background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines {
  width: 18px;
  height: 14px;
  position: relative;
}

.nav-toggle-lines::before {
  content: "";
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.mobile-drawer {
  display: none;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  opacity: 0;
  transition: opacity var(--dur-2) var(--ease-out);
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, calc(100% - 64px));
  padding: calc(12px + env(safe-area-inset-top)) 14px calc(14px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 26px 0 0 26px;
  transform: translateX(100%);
  transition: transform var(--dur-3) var(--ease-out);
  will-change: transform;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-drawer.is-open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer.is-open .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  padding: 6px 2px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.85) 70%, transparent);
  backdrop-filter: blur(18px);
  z-index: 2;
}

.mobile-drawer-title {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mobile-drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-nav {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.mobile-drawer-nav a {
  padding: var(--ds-space-3) var(--ds-space-4);
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.18;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.mobile-drawer-nav a .drawer-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mobile-drawer-nav a .drawer-left span {
  min-width: 0;
}

.mobile-drawer-nav a .drawer-chevron {
  color: rgba(17, 24, 39, 0.45);
}

.mobile-drawer-nav a:last-child {
  border-bottom: 0;
}

.mobile-drawer-nav a:active {
  background: rgba(15, 118, 110, 0.06);
}

.mobile-sticky-cta {
  display: none;
}

.topbar-link {
  color: var(--accent);
  font-weight: 700;
}

.topbar-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.card-grid,
.content-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.hero {
  grid-template-columns: 1.4fr 0.95fr;
  align-items: stretch;
  padding: 32px;
  margin-bottom: 22px;
}

.hero-copy h1,
.info-card h2,
.form-head h2 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 12px 0 14px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 10ch;
}

.info-card h2,
.form-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 14ch;
}

.eyebrow,
.section-label,
.trust-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-3);
  font-weight: 800;
}

.lead {
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  border: 1px solid transparent;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #0b5d57);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.28);
}

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

.form-button {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-card,
.panel-stat,
.panel-note,
.info-card,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 16px;
  min-height: 110px;
  display: grid;
  align-content: space-between;
}

.proof-card strong {
  font-size: 1.8rem;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.panel-stat,
.panel-note {
  padding: 22px;
}

.panel-stat strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
  margin: 8px 0 8px;
}

.panel-stat.accent {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.13), rgba(255, 255, 255, 0.82));
}

.trust-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.social-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.proof-badge {
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.proof-badge strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.proof-badge span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-items,
.cta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-items span,
.cta-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.07);
  font-weight: 700;
  color: #243142;
}

.content-grid {
  grid-template-columns: 1.05fr 0.95fr;
  margin-bottom: 22px;
}

.info-card,
.lead-form {
  padding: 28px;
}

.steps,
.metric-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.step:first-child {
  border-top: 0;
  padding-top: 0;
}

.step span {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--accent-2);
  font-weight: 800;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.metric-grid > div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.metric-grid strong {
  display: block;
  margin-bottom: 8px;
}

.form-column {
  position: sticky;
  top: 18px;
  align-self: start;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #1f2937;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--text);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 118, 110, 0.6);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

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

.checkbox-row {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600 !important;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  margin-top: 6px;
}

.form-disclaimer {
  font-size: 0.92rem;
  margin: 0;
}

.form-success {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.24);
  color: #0f4f4a;
  font-weight: 700;
}

.faq-grid {
  grid-template-columns: 1fr 0.85fr;
  margin-bottom: 14px;
}

details {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

details:first-of-type {
  border-top: 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.highlight {
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.08), rgba(255, 255, 255, 0.84));
}


@media (max-width: 1024px) {
  .hero,
  .content-grid,
  .faq-grid,
  .trust-strip,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .form-column {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 16px, 1200px);
    padding-top: 10px;
    padding-bottom: 24px;
  }

  /* Improved touch targets */
  .topbar {
    border-radius: 20px;
    padding: 16px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    min-height: auto;
  }

  .brand {
    flex-direction: column;
    gap: 12px;
  }

  .topbar-link {
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  /* Improved content spacing */
  .hero,
  .info-card,
  .lead-form,
  .panel-stat,
  .panel-note {
    padding: 24px 20px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    line-height: 1.15;
    margin: 12px 0 16px;
  }

  .hero-copy .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .proof-row,
  .metric-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Improved readability for small text */
  .trust-strip,
  .footer {
    text-align: left;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .trust-items,
  .cta-list {
    flex-direction: column;
    gap: 10px;
  }

  .trust-items span,
  .cta-list span {
    padding: 12px 16px;
    text-align: center;
    font-size: 0.95rem;
  }

  .social-proof-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .social-proof-row .proof-badge:nth-child(3) {
    grid-column: span 2;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 20px;
  }

  .button {
    width: 100%;
    padding: 18px 20px;
    font-size: 1.05rem;
    min-height: 56px;
  }

  .button svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  /* Better form inputs for touch */
  input,
  select,
  textarea {
    padding: 16px;
    font-size: 1.05rem;
    min-height: 56px;
  }

  textarea {
    min-height: 120px;
  }

  .form-disclaimer,
  .small-copy {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps {
    gap: 16px;
  }

  .step {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .step span {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Mobile-specific improvements */
  .footer {
    text-align: center;
    flex-direction: column;
    gap: 16px;
  }

  .footer p {
    margin: 10px 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Increase tap target size for links */
  .footer-nav-list a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 0;
  }
  
  .contact-item {
    padding: 12px 0;
  }
  
  /* Improve legal disclosures readability */
  .legal-disclosures-card {
    padding: 24px 20px;
  }
  
  .disclosure-item {
    padding: 20px;
    margin-bottom: 16px;
  }
  
  .disclosure-item h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  
  .disclosure-item p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.8rem;
  }

  .proof-card {
    min-height: 90px;
    padding: 12px;
  }

  .proof-card strong {
    font-size: 1.5rem;
  }

  .social-proof-row {
    grid-template-columns: 1fr;
  }

  .social-proof-row .proof-badge:nth-child(3) {
    grid-column: span 1;
  }

  .button {
    padding: 13px 14px;
    font-size: 0.9rem;
  }

  .button svg {
    width: 16px;
    height: 16px;
  }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1f2c, #0f172a);
  color: white;
  padding: 20px 24px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
  color: #60a5fa;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-button {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.cookie-button-accept {
  background: linear-gradient(135deg, var(--accent), #0b5d57);
  color: white;
}

.cookie-button-reject {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive cookie banner */
@media (max-width: 768px) {
  .cookie-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cookie-button {
    min-width: 90px;
    padding: 9px 18px;
  }
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    padding: 16px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-button {
    width: 100%;
  }
}

/* Modern Footer Styles */
.footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}

.footer-main {
  padding: 40px 0 32px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
  border-radius: 12px;
}

.footer-description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 300px;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
}

.footer-nav-heading {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  color: var(--text);
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list li {
  margin: 0;
  line-height: 1.5;
}

.footer-nav-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-nav-list a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.footer-copyright {
  background: rgba(15, 23, 42, 0.03);
  border-top: 1px solid var(--line);
  padding: 28px 0;
  text-align: center;
}

.copyright-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  order: 1;
}

.legal-disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.9;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  order: 2;
}

/* Ensure the two texts are stacked vertically */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .copyright-container {
    padding: 0 16px;
  }
  
  /* Mobile-optimized footer spacing */
  .footer-nav-heading {
    margin-bottom: 16px;
    font-size: 1.05rem;
  }
  
  .footer-nav-list {
    gap: 10px;
  }
  
  .footer-nav-list a {
    font-size: 0.92rem;
    padding: 10px 0;
  }
  
  .contact-item {
    padding: 10px 0;
    font-size: 0.92rem;
    line-height: 1.6;
  }
  
  .contact-item svg {
    width: 14px;
    height: 14px;
    margin-top: 3px;
  }
  
  .footer-description {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 28px 0 20px;
  }
  
  .footer-container {
    gap: 28px;
  }
  
  .copyright {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  
  .legal-disclaimer {
    font-size: 0.78rem;
    line-height: 1.7;
    padding: 0 8px;
  }
  
  /* Extra small screen optimizations */
  .footer-nav-heading {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  
  .footer-nav-list a {
    font-size: 0.9rem;
    min-height: 42px;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-copyright {
    padding: 24px 0;
  }
  
  .copyright-container {
    gap: 14px;
  }
}

/* Responsive footer navigation */
@media (max-width: 1024px) {
  .footer-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer-nav-section:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-nav-section:last-child {
    grid-column: span 1;
  }
  
  .footer-nav-heading {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .footer-nav-list a {
    font-size: 0.9rem;
  }
}

/* Legal Disclosures Section */
.legal-disclosures-section {
  margin: 32px 0;
}

.legal-disclosures-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 32px;
}

.legal-disclosures-card h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 12px 0 20px;
  max-width: 20ch;
}

.disclosures-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 70ch;
}

.disclosures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.disclosure-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.disclosure-item h3 {
  font-size: 1.1rem;
  margin: 0 0 12px 0;
  color: var(--accent);
  font-weight: 800;
}

.disclosure-item p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
  font-size: 0.95rem;
}

.disclosure-item a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 700;
}

.disclosure-note {
  padding: 18px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: var(--radius-md);
}

.disclosure-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #0f4f4a;
}

/* Responsive legal disclosures */
@media (max-width: 1024px) {
  .disclosures-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .legal-disclosures-card {
    padding: 24px;
  }
  
  .disclosures-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .disclosure-item {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .legal-disclosures-card {
    padding: 20px;
  }
  
  .legal-disclosures-card h2 {
    font-size: 1.8rem;
  }
  
  .disclosures-intro {
    font-size: 1rem;
  }
}

/* Form Status Styles */
.form-status {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

.form-status-loading {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #1d4ed8;
}

.form-status-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
}

.form-status-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

@media (max-width: 480px) {
  .footer-navigation {
    gap: 16px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  input,
  select,
  textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .button {
    min-height: 44px; /* Minimum touch target size */
  }

  .checkbox-row input {
    min-width: 44px;
    min-height: 44px;
  }
  
  .cookie-button {
    min-height: 44px;
  }
  
  .footer-nav-list a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 124px;
  }

  body.is-drawer-open {
    overflow: hidden;
  }

  .page-shell {
    padding-top: 108px;
  }

  .topbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - 16px));
    z-index: 75;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius-pill);
    text-align: left;
    gap: 12px;
  }

  .brand {
    flex-direction: row;
    gap: 12px;
  }

  .brand-tag {
    display: none;
  }

  .topnav,
  .topbar-link {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-2) var(--ease-out);
  }

  .mobile-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 60;
    padding: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(calc(100% + 20px));
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur-2) var(--ease-out), opacity var(--dur-2) var(--ease-out);
  }

  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-sticky-cta .button {
    width: 100%;
  }

  body.has-mobile-sticky-cta .page-shell {
    padding-bottom: calc(36px + 96px + env(safe-area-inset-bottom));
  }
}

.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 12px;
}

.cookie-content {
  max-width: 980px;
  margin: 0 auto;
  background: color-mix(in oklab, var(--ds-color-surface) 92%, transparent);
  border: 1px solid var(--ds-color-border);
  border-radius: var(--ds-radius-3xl);
  box-shadow: var(--ds-shadow-lg);
  padding: 14px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.cookie-content p {
  color: var(--ds-color-text-muted);
  font-size: var(--ds-text-sm);
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-button {
  height: 44px;
  padding: 0 16px;
  border-radius: var(--ds-radius-xl);
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface);
  color: var(--ds-color-text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--ds-duration-slow) var(--ds-ease-out), transform var(--ds-duration-fast) var(--ds-ease-out);
}

.cookie-button:hover {
  background: var(--ds-color-surface-2);
}

.cookie-button:active {
  transform: translateY(1px);
}

.cookie-button-accept {
  background: var(--ds-gradient-cta);
  border-color: transparent;
  color: #ffffff;
}

.cookie-button-accept:hover {
  filter: brightness(1.03);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: color-mix(in oklab, var(--ds-color-bg) 65%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--ds-color-border) 70%, transparent);
  backdrop-filter: blur(14px);
}

.site-header .container {
  max-width: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding-block: 14px;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  position: relative;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--ds-radius-2xl);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ds-color-brand-700), var(--ds-color-brand-400));
  color: #ffffff;
  flex-shrink: 0;
}

.brand-badge img,
.brand-badge svg {
  width: 28px;
  height: 28px;
  display: block;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text .brand-name {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tagline {
  color: var(--ds-color-text-muted);
  font-size: 0.88rem;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .site-header .brand-tagline {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header .brand-text {
    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: 860px) {
  .header-inner {
    justify-content: space-between;
  }

  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .site-header .brand-text {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip: auto;
    clip-path: none;
    white-space: nowrap;
    border: 0;
    max-width: min(64vw, 520px);
  }

  .site-header .brand-text .brand-name {
    display: block;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-nav {
    display: none;
  }

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

  .header-link {
    display: none;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ds-color-text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background-color var(--ds-duration-slow) var(--ds-ease-out), color var(--ds-duration-slow) var(--ds-ease-out);
}

.nav-link:hover {
  background: color-mix(in oklab, var(--ds-color-brand-500) 10%, transparent);
  color: var(--ds-color-text);
}

.nav-link.is-active {
  background: color-mix(in oklab, var(--ds-color-brand-500) 12%, transparent);
  color: var(--ds-color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  height: 44px;
  padding: 0 16px;
}

.header-cta {
  height: 44px;
  padding: 0 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--ds-color-border);
  background: color-mix(in oklab, var(--ds-color-surface) 86%, transparent);
  color: var(--ds-color-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines {
  width: 18px;
  height: 14px;
  position: relative;
}

.nav-toggle-lines::before {
  content: "";
  height: 2px;
  border-radius: var(--ds-radius-xl);
  background: currentColor;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.hero {
  padding-top: var(--ds-space-16);
}

.hero-grid {
  display: grid;
  gap: var(--ds-space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--ds-space-16);
  }
}

.hero-copy {
  display: grid;
  gap: var(--ds-space-6);
}

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

.service-page .hero {
  display: grid;
  gap: var(--ds-space-12);
  align-items: start;
  grid-template-columns: 1fr;
  padding-top: var(--ds-space-10);
}

@media (min-width: 1024px) {
  .service-page .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--ds-space-16);
  }
}

.service-page .hero-panel {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-4);
}

.service-page .hero-panel .panel-media {
  order: -1;
}

.service-page .hero-panel .panel-media-grid img {
  aspect-ratio: 4 / 3;
}

.contact-page .hero {
  display: grid;
  gap: var(--ds-space-12);
  align-items: start;
  grid-template-columns: 1fr;
  padding-top: var(--ds-space-10);
}

@media (min-width: 1024px) {
  .contact-page .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--ds-space-16);
  }
}

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

@media (min-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat-card {
  padding: 14px 14px;
  display: grid;
  gap: 10px;
  box-shadow: var(--ds-shadow-sm);
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stat-icon {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 999px;
  color: var(--ds-color-brand-600);
  background: color-mix(in oklab, var(--ds-color-brand-500) 12%, var(--ds-color-surface));
  border: 1px solid color-mix(in oklab, var(--ds-color-brand-500) 18%, var(--ds-color-border));
}

.stat-value {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
  color: var(--ds-color-text);
  text-align: right;
}

.stat-label {
  font-size: var(--ds-text-sm);
  color: var(--ds-color-text-muted);
  line-height: 1.3;
}

.hero-media-card {
  padding: 18px;
}

.hero-media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-media-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.panel-card {
  padding: 18px;
  border-radius: var(--ds-radius-3xl);
  border: 1px solid var(--ds-color-border);
  background: color-mix(in oklab, var(--ds-color-surface) 92%, transparent);
  box-shadow: var(--ds-shadow-sm);
  display: grid;
  gap: 10px;
}

.panel-card > :first-child {
  margin-top: 0;
}

.panel-card > :last-child {
  margin-bottom: 0;
}

.panel-card.featured {
  border-color: color-mix(in oklab, var(--ds-color-brand-500) 26%, var(--ds-color-border));
  box-shadow: var(--ds-shadow-md);
}

.panel-card.note {
  background: color-mix(in oklab, var(--ds-color-brand-500) 6%, var(--ds-color-surface));
}

.panel-media-grid {
  display: grid;
  gap: 10px;
}

.panel-media-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--ds-radius-2xl);
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface-2);
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.portrait-grid.portrait-grid-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 92px;
  gap: 10px;
}

.portrait-grid.portrait-grid-collage img {
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  object-position: center;
  background: var(--ds-color-surface-2);
}

.hero-media-card .portrait-grid.portrait-grid-collage {
  gap: 8px;
  grid-auto-rows: 102px;
}

.hero-media-card .portrait-grid.portrait-grid-collage img {
  padding: 0;
  object-fit: cover;
  object-position: center 22%;
  background: transparent;
}

.portrait-grid.portrait-grid-collage img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.portrait-grid.portrait-grid-collage img:nth-child(2) {
  grid-column: span 2;
}

.portrait-grid.portrait-grid-collage img:nth-child(5) {
  grid-column: span 2;
  grid-row: span 2;
}

.portrait-grid.portrait-grid-collage img:nth-child(6) {
  grid-column: span 2;
}

.portrait-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: var(--ds-radius-2xl);
  border: 1px solid var(--ds-color-border);
  background: transparent;
}

.portrait-grid-people img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 22%;
  background: var(--ds-color-surface-2);
}

@media (max-width: 520px) {
  .portrait-grid.portrait-grid-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 96px;
  }

  .portrait-grid.portrait-grid-collage img:nth-child(1),
  .portrait-grid.portrait-grid-collage img:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .portrait-grid.portrait-grid-collage img:nth-child(2),
  .portrait-grid.portrait-grid-collage img:nth-child(6) {
    grid-column: span 2;
  }
}

.hero-media-foot {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--ds-color-border);
  background: color-mix(in oklab, var(--ds-color-surface-2) 78%, transparent);
  color: var(--ds-color-text-muted);
  font-size: var(--ds-text-sm);
  font-weight: 700;
}

.service-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .service-grid .full-width {
    grid-column: 1 / -1;
  }
}

.service-card {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.service-top {
  display: grid;
  gap: 8px;
}

.service-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid color-mix(in oklab, var(--ds-color-brand-500) 22%, var(--ds-color-border));
  background: color-mix(in oklab, var(--ds-color-brand-500) 10%, var(--ds-color-surface));
  color: var(--ds-color-brand-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.service-tag {
  width: fit-content;
  padding: 8px 10px;
  border-radius: var(--ds-radius-xl);
  background: color-mix(in oklab, var(--ds-color-brand-500) 12%, transparent);
  color: var(--ds-color-brand-700);
  font-weight: 800;
  font-size: var(--ds-text-sm);
}

.service-desc {
  color: var(--ds-color-text-muted);
  line-height: var(--ds-leading-body);
}

.service-list,
.case-list,
.plan-list,
.booking-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ds-color-text-muted);
  display: grid;
  gap: 8px;
  line-height: 1.5;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.btn-secondary.btn-compact {
  height: 38px;
  padding: 0 16px;
  border-radius: 14px;
}

.case-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 1024px) {
  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

.case-card {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.case-cover,
.case-cover-img {
  height: 128px;
  border-radius: var(--ds-radius-2xl);
  border: 1px solid var(--ds-color-border);
}

.case-cover-img {
  width: 100%;
  object-fit: cover;
  background: var(--ds-color-surface-2);
  display: block;
}

.cover-a {
  background: radial-gradient(70% 80% at 20% 10%, rgba(37, 99, 235, 0.35), transparent),
    radial-gradient(60% 80% at 80% 80%, rgba(249, 115, 22, 0.22), transparent),
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.02));
}

.cover-b {
  background: radial-gradient(70% 80% at 20% 20%, rgba(59, 130, 246, 0.28), transparent),
    radial-gradient(70% 80% at 80% 70%, rgba(37, 99, 235, 0.22), transparent),
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.02));
}

.cover-c {
  background: radial-gradient(70% 80% at 20% 10%, rgba(249, 115, 22, 0.26), transparent),
    radial-gradient(70% 80% at 80% 70%, rgba(59, 130, 246, 0.22), transparent),
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.02));
}

.case-subtle {
  color: var(--ds-color-text-muted);
  font-size: var(--ds-text-sm);
  line-height: 1.5;
}

.case-cta {
  margin-top: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.case-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.plan-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 1024px) {
  .plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

.plan-card {
  padding: 22px;
  display: grid;
  gap: 14px;
  position: relative;
}

.plan-featured {
  border-color: color-mix(in oklab, var(--ds-color-brand-500) 28%, var(--ds-color-border));
  box-shadow: var(--ds-shadow-lg);
  padding-top: 56px;
}

.plan-badge {
  /* position: absolute;
  top: 14px;
  right: 14px; */
  padding: 8px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--ds-color-accent-500) 16%, var(--ds-color-surface));
  color: color-mix(in oklab, var(--ds-color-accent-500) 80%, #000);
  font-weight: 800;
  font-size: var(--ds-text-sm);
  border: 1px solid color-mix(in oklab, var(--ds-color-accent-500) 30%, var(--ds-color-border));
  z-index: 2;
}

.plan-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.plan-price {
  font-weight: 800;
  color: var(--ds-color-brand-700);
}

.plan-note {
  margin-top: 14px;
  max-width: 75ch;
}

.review-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 1024px) {
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

.review-card {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.review-stars {
  font-weight: 900;
  letter-spacing: 0.08em;
  color: color-mix(in oklab, var(--ds-color-accent-500) 80%, #000);
}

.review-quote {
  color: var(--ds-color-text);
  line-height: var(--ds-leading-body);
  font-size: 1.05rem;
}

.review-meta {
  color: var(--ds-color-text-muted);
  font-size: var(--ds-text-sm);
  font-weight: 700;
}

.review-cta {
  margin-top: 16px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-card {
  padding: 16px 18px;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ds-color-text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary .faq-chevron {
  color: var(--ds-color-text-subtle);
  transition: transform var(--ds-duration-base) var(--ds-ease-out);
}

.faq-card[open] summary .faq-chevron {
  transform: rotate(180deg);
}

.faq-card p {
  margin-top: 10px;
  color: var(--ds-color-text-muted);
  line-height: var(--ds-leading-body);
}

.booking-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

@media (min-width: 1024px) {
  .booking-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
  }
}

.booking-copy {
  display: grid;
  gap: var(--ds-space-6);
}

.booking-form {
  padding: 22px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

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

.form-grid .span-2 {
  grid-column: span 2;
}

.form-inline-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  align-items: end;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .span-2 {
    grid-column: span 1;
  }

  .form-inline-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

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

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: var(--ds-radius-2xl);
  border: 1px solid var(--ds-color-border);
  background: color-mix(in oklab, var(--ds-color-surface) 92%, transparent);
  color: var(--ds-color-text);
  font-weight: 700;
  user-select: none;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--ds-color-brand-500);
}

.form-label {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
  color: var(--ds-color-text);
  font-size: 0.95rem;
}

.form-required {
  color: var(--ds-color-accent-500);
  font-weight: 900;
}

.form-helper {
  color: var(--ds-color-text-subtle);
  font-size: 0.78rem;
  line-height: 1.45;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--ds-radius-2xl);
  border: 1px solid var(--ds-color-border);
  background: color-mix(in oklab, var(--ds-color-surface) 92%, transparent);
  font: inherit;
  color: var(--ds-color-text);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: color-mix(in oklab, var(--ds-color-brand-500) 62%, var(--ds-color-border));
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--ds-color-brand-500) 18%, transparent);
}

.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  border-color: color-mix(in oklab, var(--ds-color-brand-500) 62%, var(--ds-color-border));
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--ds-color-brand-500) 18%, transparent);
}

.lead-form input[readonly],
.lead-form textarea[readonly],
.lead-form select:disabled {
  background: color-mix(in oklab, var(--ds-color-surface) 70%, var(--ds-color-bg));
  color: var(--ds-color-text-subtle);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form select {
  appearance: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-actions .btn {
  flex: 1;
  min-width: 220px;
}

#claimEditButton[hidden] {
  display: none !important;
}

.form-disclaimer {
  color: var(--ds-color-text-subtle);
  font-size: var(--ds-text-sm);
  line-height: 1.5;
  margin-top: 2px;
}

.contact-support-card {
  align-self: start;
  margin-top: var(--ds-space-8);
  padding: 20px;
  border-radius: var(--ds-radius-3xl);
  border: 1px solid var(--ds-color-border);
  background: color-mix(in oklab, var(--ds-color-surface) 92%, transparent);
  box-shadow: var(--ds-shadow-sm);
  display: grid;
  gap: 12px;
}

.contact-support-card h3,
.contact-support-card p {
  margin: 0;
}

.contact-support-card p {
  color: var(--ds-color-text-muted);
  line-height: 1.65;
}

.contact-support-card .support-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 24%;
  border-radius: var(--ds-radius-2xl);
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface-2);
}

.contact-support-card .mini-callout {
  padding: 12px 14px;
  border-radius: var(--ds-radius-xl);
  border: 1px solid color-mix(in oklab, var(--ds-color-border) 78%, transparent);
  background: color-mix(in oklab, var(--ds-color-bg) 22%, var(--ds-color-surface));
  display: grid;
  gap: 6px;
}

.contact-support-card .mini-callout span {
  color: var(--ds-color-text-subtle);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .contact-support-card {
    margin-top: var(--ds-space-5);
  }
}

.form-status {
  border-radius: var(--ds-radius-2xl);
  padding: 14px 16px;
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface);
}

.form-status-loading {
  background: color-mix(in oklab, var(--ds-color-brand-500) 10%, var(--ds-color-surface));
  border-color: color-mix(in oklab, var(--ds-color-brand-500) 22%, var(--ds-color-border));
  color: var(--ds-color-brand-700);
}

.form-status-success {
  background: color-mix(in oklab, #22c55e 10%, var(--ds-color-surface));
  border-color: color-mix(in oklab, #22c55e 20%, var(--ds-color-border));
  color: #15803d;
}

.form-status-error {
  background: color-mix(in oklab, #ef4444 10%, var(--ds-color-surface));
  border-color: color-mix(in oklab, #ef4444 20%, var(--ds-color-border));
  color: #b91c1c;
}

.site-footer {
  padding-block: var(--ds-space-16);
  border-top: 1px solid var(--ds-color-border);
  margin-top: var(--ds-space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-lead {
  color: var(--ds-color-text-muted);
  line-height: var(--ds-leading-body);
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-head {
  font-weight: 900;
  color: var(--ds-color-text);
}

.site-footer a {
  color: var(--ds-color-text-muted);
  text-decoration: none;
  font-weight: 700;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 2px;
  border-radius: 10px;
  transition: color var(--ds-duration-slow) var(--ds-ease-out), background-color var(--ds-duration-slow) var(--ds-ease-out);
}

.site-footer a:hover {
  color: var(--ds-color-text);
  background: color-mix(in oklab, var(--ds-color-brand-500) 10%, transparent);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in oklab, var(--ds-color-border) 70%, transparent);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--ds-color-text-subtle);
  font-weight: 700;
  font-size: var(--ds-text-sm);
}

.footer-bottom a {
  color: inherit;
}

.mobile-drawer-actions {
  padding: 14px 2px 2px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  border-radius: var(--ds-radius-3xl);
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface);
  box-shadow: var(--ds-shadow-lg);
  padding: 22px;
  display: grid;
  gap: 12px;
}

.modal-card p {
  color: var(--ds-color-text-muted);
  line-height: var(--ds-leading-body);
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 112px;
  }

  body.is-drawer-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: env(safe-area-inset-top);
  }

  main {
    padding-top: calc(86px + env(safe-area-inset-top));
  }

  .page-shell {
    padding-top: calc(86px + env(safe-area-inset-top));
  }

  .header-nav,
  .header-link,
  .header-cta {
    display: none;
  }

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

  .mobile-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 130;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ds-duration-fast) var(--ds-ease-out);
  }

  .mobile-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-sticky-cta {
    z-index: 70;
    background: color-mix(in oklab, var(--ds-color-surface) 86%, transparent);
    border-color: var(--ds-color-border);
    box-shadow: var(--ds-shadow-lg);
  }

  .mobile-sticky-cta .btn {
    width: 100%;
  }

  body.has-mobile-sticky-cta main {
    padding-bottom: calc(36px + 86px + env(safe-area-inset-bottom));
  }

  body.has-mobile-sticky-cta .cookie-consent-banner {
    bottom: calc(12px + 86px + env(safe-area-inset-bottom));
  }

  body.is-drawer-open .cookie-consent-banner {
    display: none;
  }
}
