/* ============================================================
   GOODBYE JUNK — Design Tokens
   ============================================================ */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #ffffff;
  --color-surface: #fff8e7;
  --color-surface-2: #fffcf6;
  --color-surface-offset: #f4ecd6;
  --color-surface-offset-2: #ece0bf;
  --color-surface-dynamic: #e3d5ac;
  --color-divider: #e6dcc0;
  --color-border: #dccfa9;

  /* Text */
  --color-text: #1d2a1e;
  --color-text-muted: #57624f;
  --color-text-faint: #98a190;
  --color-text-inverse: #fff8e7;

  /* Primary — Hunter Green */
  --color-primary: #355e3b;
  --color-primary-hover: #294a2e;
  --color-primary-active: #1e3722;
  --color-primary-highlight: #d8e3d1;

  --color-warning: #a15a24;
  --color-warning-highlight: #ecdccb;
  --color-error: #a13a3a;
  --color-error-highlight: #ecd3d3;
  --color-success: #355e3b;
  --color-success-highlight: #d8e3d1;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — tone matched to warm cream surfaces */
  --shadow-sm: 0 1px 2px oklch(0.25 0.03 140 / 0.08);
  --shadow-md: 0 6px 20px oklch(0.25 0.03 140 / 0.1);
  --shadow-lg: 0 20px 48px oklch(0.25 0.03 140 / 0.16);

  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Clash Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;

  /* Hero — fixed tones (hero always sits on a dark photo overlay,
     regardless of light/dark theme, so these never flip) */
  --hero-fg: #fff8e7;
  --hero-fg-muted: oklch(0.97 0.01 100 / 0.88);
  --hero-fg-faint: oklch(0.97 0.01 100 / 0.85);
  --hero-accent: #d9e8c9;
  --hero-btn-bg: #fff8e7;
  --hero-btn-bg-hover: #f4ecd6;
  --hero-btn-text: #294a2e;
}

[data-theme='dark'] {
  --color-bg: #12170f;
  --color-surface: #171d13;
  --color-surface-2: #1b2216;
  --color-surface-offset: #202717;
  --color-surface-offset-2: #26301c;
  --color-surface-dynamic: #2c3820;
  --color-divider: #2a331f;
  --color-border: #38442a;

  --color-text: #ece6d3;
  --color-text-muted: #a9af9c;
  --color-text-faint: #6e7563;
  --color-text-inverse: #12170f;

  --color-primary: #86b989;
  --color-primary-hover: #9ecaa0;
  --color-primary-active: #6ba26e;
  --color-primary-highlight: #263524;

  --color-warning: #d98a4e;
  --color-warning-highlight: #3a2c1e;
  --color-error: #d9716b;
  --color-error-highlight: #3a2422;
  --color-success: #86b989;
  --color-success-highlight: #263524;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 6px 20px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #12170f;
    --color-surface: #171d13;
    --color-surface-2: #1b2216;
    --color-surface-offset: #202717;
    --color-surface-offset-2: #26301c;
    --color-surface-dynamic: #2c3820;
    --color-divider: #2a331f;
    --color-border: #38442a;
    --color-text: #ece6d3;
    --color-text-muted: #a9af9c;
    --color-text-faint: #6e7563;
    --color-text-inverse: #12170f;
    --color-primary: #86b989;
    --color-primary-hover: #9ecaa0;
    --color-primary-active: #6ba26e;
    --color-primary-highlight: #263524;
  }
}

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ============================================================
   Base
   ============================================================ */

body {
  overflow-x: hidden;
}

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

.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--wide {
  max-width: var(--content-wide);
}
.container--narrow {
  max-width: var(--content-narrow);
}

section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h2.section-title {
  font-size: var(--text-xl);
  max-width: 24ch;
  margin-bottom: var(--space-4);
}

.section-lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-bottom: var(--space-10);
}

.section-head {
  margin-bottom: var(--space-10);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  z-index: 200;
  transition: top var(--transition-interactive);
}
.skip-link:focus {
  top: var(--space-4);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  min-height: 48px;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}
.btn-primary:active {
  background: var(--color-primary-active);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: oklch(from var(--color-text) l c h / 0.22);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-cream {
  background: var(--hero-btn-bg);
  color: var(--hero-btn-text);
}
.btn-cream:hover {
  background: var(--hero-btn-bg-hover);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 40px;
  padding: var(--space-3) var(--space-5);
}

/* ============================================================
   Header
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-word {
  line-height: 1.05;
}
.brand-word span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.nav {
  display: none;
}
.nav-list {
  display: flex;
  gap: var(--space-5);
}
.nav-list a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.nav-list a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}
.theme-toggle svg {
  width: 19px;
  height: 19px;
}

.call-pill {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.call-pill svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
.hamburger svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 1140px) {
  .nav {
    display: block;
  }
  .call-pill {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 150;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
.mobile-nav-close svg {
  width: 24px;
  height: 24px;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mobile-nav-list a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (min-width: 1140px) {
  .mobile-nav {
    display: none;
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  color: var(--hero-fg);
  overflow: hidden;
  padding-block: clamp(var(--space-16), 12vw, var(--space-32)) clamp(var(--space-16), 10vw, var(--space-24));
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    oklch(0.25 0.05 145 / 0.94) 0%,
    oklch(0.25 0.05 145 / 0.86) 38%,
    oklch(0.25 0.05 145 / 0.55) 68%,
    oklch(0.25 0.05 145 / 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-tagline {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--hero-fg);
  opacity: 0.85;
  margin-bottom: var(--space-5);
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: normal;
  color: var(--hero-accent);
}

.hero-sub {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--hero-fg-muted);
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--hero-fg);
  font-weight: 600;
}
.hero-call .icon-ring {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid oklch(1 0 0 / 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-call .icon-ring svg {
  width: 20px;
  height: 20px;
}
.hero-call-label {
  font-size: var(--text-xs);
  font-weight: 500;
  opacity: 0.75;
  display: block;
}
.hero-call-number {
  font-size: var(--text-lg);
  font-family: var(--font-display);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid oklch(1 0 0 / 0.18);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--hero-fg-faint);
}
.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--hero-accent);
  flex-shrink: 0;
}

/* ============================================================
   Services
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 800px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  display: flex;
  flex-direction: column;
}
.service-card--dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.service-card--dark .service-tag,
.service-card--dark > p {
  color: oklch(from var(--color-text-inverse) l c h / 0.82) !important;
}
.service-card--dark li {
  border-color: oklch(from var(--color-text-inverse) l c h / 0.18);
}
.service-card--dark li svg {
  color: var(--color-text-inverse);
  opacity: 0.7;
}

.service-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.service-card--dark .service-tag {
  color: oklch(from var(--color-text-inverse) l c h / 0.7) !important;
}

.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.service-card > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-2);
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-sm);
}
.service-list li:first-child {
  border-top: none;
}
.service-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   How it works
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  position: relative;
}
@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      var(--color-border) 0 10px,
      transparent 10px 18px
    );
  }
}

.step {
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  background: var(--color-surface);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.step p {
  color: var(--color-text-muted);
  max-width: 34ch;
}

/* ============================================================
   Pricing
   ============================================================ */

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}
@media (min-width: 900px) {
  .pricing-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-14, var(--space-12));
  }
}

.pricing-copy p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  max-width: 52ch;
}
.pricing-copy p:last-child {
  margin-bottom: 0;
}
.pricing-copy strong {
  color: var(--color-text);
}

.price-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-8));
}
.price-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}
.price-list {
  display: flex;
  flex-direction: column;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-sm);
}
.price-list li:first-child {
  border-top: none;
}
.price-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card .btn {
  margin-top: var(--space-6);
}

/* ============================================================
   What we take
   ============================================================ */

.take-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 800px) {
  .take-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.take-card {
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-8));
}
.take-card--yes {
  background: var(--color-primary-highlight);
}
.take-card--no {
  background: var(--color-surface-offset);
}
.take-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.take-card > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  max-width: 46ch;
}
.take-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.take-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 500;
}
.take-card--no .take-tag {
  background: transparent;
}
.take-note {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   Why us
   ============================================================ */

.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 900px) {
  .why-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: var(--space-14, var(--space-12));
  }
}
.why-layout--single {
  grid-template-columns: 1fr;
}
.why-layout--single > div {
  width: 100%;
  max-width: 62ch;
  justify-self: start;
}
.why-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.why-list {
  display: flex;
  flex-direction: column;
}
.why-item {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-5);
  border-top: 1px solid var(--color-divider);
}
.why-item:first-child {
  border-top: none;
  padding-top: 0;
}
.why-item-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-primary);
  flex-shrink: 0;
  width: 2ch;
  padding-top: 2px;
}
.why-item h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.why-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 48ch;
}

/* ============================================================
   Final CTA / Contact
   ============================================================ */

.cta-section {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 900px) {
  .cta-layout {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.cta-section .eyebrow {
  color: oklch(from var(--color-text-inverse) l c h / 0.75) !important;
}
.cta-section h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
  max-width: 14ch;
}
.cta-section .section-lede {
  color: oklch(from var(--color-text-inverse) l c h / 0.85) !important;
}

.big-call {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.big-call .icon-ring {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: oklch(1 0 0 / 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.big-call .icon-ring svg {
  width: 24px;
  height: 24px;
}
.big-call-label {
  display: block;
  font-size: var(--text-sm);
  opacity: 0.8;
  margin-bottom: var(--space-1);
}
.big-call-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.area-chip {
  border: 1px solid oklch(1 0 0 / 0.28);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 500;
}

.form-card {
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.form-card > p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (min-width: 560px) {
  .form-row--split {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.field input,
.field textarea {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field-file {
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.field-file:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}
.field-file svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.field-file input[type='file'] {
  display: none;
}
.field-file-name {
  font-size: var(--text-xs);
  color: var(--color-primary);
  margin-top: var(--space-2);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.form-success.is-visible {
  display: block;
}
.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  margin-inline: auto;
  margin-bottom: var(--space-4);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.form-success p {
  color: var(--color-text-muted);
  max-width: 40ch;
  margin-inline: auto;
}
.form-fields.is-hidden {
  display: none;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--color-surface-offset-2);
  padding-block: var(--space-12) calc(var(--space-12) + 64px);
}
@media (min-width: 900px) {
  .footer {
    padding-block: var(--space-16);
  }
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
}
.footer-brand svg {
  width: 32px;
  height: 32px;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10) var(--space-16);
}
.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
}
.footer-col a,
.footer-col span {
  color: var(--color-text);
}
.footer-col a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   Mobile sticky action bar
   ============================================================ */

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  padding-bottom: max(var(--space-2), env(safe-area-inset-bottom));
  background: oklch(from var(--color-bg) l c h / 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.08);
}
.mobile-bar .btn {
  flex: 1;
}
@media (min-width: 900px) {
  .mobile-bar {
    display: none;
  }
}

/* ============================================================
   Utility
   ============================================================ */

.visually-hidden-mobile {
  display: none;
}
@media (min-width: 1140px) {
  .visually-hidden-mobile {
    display: initial;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
