/* Marquee LA — design system */

:root {
  --bg-primary: #FAF7F2;
  --bg-surface: #F1EBE1;
  --bg-deep: #EDE4D4;
  --text-primary: #1F1B16;
  --text-muted: #6B5F52;
  --text-subtle: #9C8F7F;
  --accent: #B8925A;
  --accent-hover: #A07D48;
  --accent-soft: #E8D9BD;
  --cta: #2F5D4A;
  --cta-hover: #244A3A;
  --border: #E5DDD0;
  --shadow-sm: 0 2px 8px rgba(31, 27, 22, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 27, 22, 0.10);
  --shadow-lg: 0 20px 48px rgba(31, 27, 22, 0.14);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-h1: clamp(2.5rem, 5vw + 1rem, 4rem);
  --fs-h2: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  --fs-h3: 1.35rem;
  --fs-h4: 1.1rem;
  --fs-body: clamp(1rem, 0.5vw + 0.9rem, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.75rem;

  --fw-body: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --lh-tight: 1.15;
  --lh-body: 1.65;
  --ls-tight: -0.02em;
  --ls-eyebrow: 0.14em;

  --container: 1200px;
  --container-narrow: 820px;
  --container-wide: 1400px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 160ms;
  --dur-base: 240ms;
  --dur-slow: 400ms;

  --tap-target: 56px;
  --header-h: 72px;
  --sticky-cta-h: 68px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--cta); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--cta-hover); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
}
h1 { font-size: var(--fs-h1); margin-bottom: var(--space-sm); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--space-sm); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin-bottom: var(--space-xs); }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-semibold); margin-bottom: var(--space-xs); }
p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: var(--space-xs);
}
.lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.55; }
.small { font-size: var(--fs-small); color: var(--text-muted); }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section--tight { padding: clamp(2rem, 5vw, 4rem) 0; }
.section--surface { background: var(--bg-surface); }
.section--deep { background: var(--bg-deep); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 4rem); }
.section-head--left { text-align: left; margin-left: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
}
.logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  color: var(--text-primary); letter-spacing: var(--ls-tight);
  white-space: nowrap;
}
.logo .dot { color: var(--accent); }
.nav-primary { display: none; gap: var(--space-md); align-items: center; }
@media (min-width: 900px) { .nav-primary { display: flex; } }
.nav-primary a {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  padding: 0.4rem 0;
  position: relative;
}
.nav-primary a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.nav-primary a:hover::after, .nav-primary a.active::after { transform: scaleX(1); }
.header-actions { display: flex; gap: var(--space-sm); align-items: center; }
.tel-link {
  display: none; align-items: center; gap: 0.4rem;
  color: var(--text-primary); font-weight: var(--fw-semibold); font-size: 0.95rem;
  white-space: nowrap;
}
.tel-link:hover { color: var(--accent); }
@media (min-width: 700px) { .tel-link { display: inline-flex; } }
.menu-toggle {
  display: flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text-primary);
  position: relative; transition: transform var(--dur-base) var(--ease);
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px; background: var(--text-primary);
  transition: transform var(--dur-base) var(--ease);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* Mobile nav */
.nav-mobile {
  position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--bg-primary);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  z-index: 49;
  padding: var(--space-md);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.2rem; }
.nav-mobile a {
  display: block; padding: 1rem; font-size: 1.15rem; font-weight: var(--fw-medium);
  color: var(--text-primary); border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .nav-cta { margin-top: var(--space-md); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  border-radius: var(--radius-pill);
  min-height: 48px;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--cta); color: #fff; }
.btn--primary:hover { background: var(--cta-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: var(--accent); color: #fff; }
.btn--secondary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--text-primary); }
.btn--outline:hover { background: var(--text-primary); color: var(--bg-primary); }
.btn--ghost { background: transparent; color: var(--cta); }
.btn--ghost:hover { color: var(--cta-hover); background: var(--bg-surface); }
.btn--lg { padding: 1.1rem 2rem; min-height: 56px; font-size: 1rem; }
.btn--sm { padding: 0.6rem 1.2rem; min-height: 40px; font-size: 0.88rem; }
.btn--full { width: 100%; }

/* Hero */
.hero {
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1.1fr; } }
.hero-copy { order: 2; }
.hero-media { order: 1; }
@media (min-width: 900px) {
  .hero-copy { order: 1; }
  .hero-media { order: 2; }
}
.hero h1 { margin-bottom: var(--space-md); max-width: 15ch; }
.hero-lead { font-size: clamp(1.1rem, 1.5vw + 0.9rem, 1.35rem); color: var(--text-muted); margin-bottom: var(--space-md); max-width: 42ch; line-height: 1.5; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-md); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem;
  font-size: var(--fs-small); color: var(--text-muted);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.35rem; }
.hero-trust svg { flex-shrink: 0; color: var(--accent); }
.hero-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-deep) 60%, #3b2f20 100%);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-image-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--space-md);
}
.hero-image-placeholder .letters {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-shadow: 0 0 40px rgba(184, 146, 90, 0.5), 0 0 80px rgba(184, 146, 90, 0.3);
  line-height: 1;
  animation: glow 3s ease-in-out infinite alternate;
}
.hero-image-placeholder .caption {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(232, 217, 189, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: var(--space-md);
}

/* Hero SVG marquee-letter art (fallback) */
.hero-svg-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-svg-wrap svg {
  width: 100%; height: 100%;
  animation: bulb-pulse 4s ease-in-out infinite alternate;
}
@keyframes bulb-pulse {
  from { filter: brightness(0.92); }
  to { filter: brightness(1.08); }
}

/* Real event photo hero — used where we have real Alina Balloon photos */
.hero-real-photo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-real-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-real-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,27,22,0.55) 0%, rgba(31,27,22,0.15) 50%, rgba(31,27,22,0) 100%);
}
.hero-real-caption {
  position: absolute;
  bottom: var(--space-md); left: var(--space-md); right: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
@keyframes glow {
  from { text-shadow: 0 0 30px rgba(184, 146, 90, 0.4), 0 0 60px rgba(184, 146, 90, 0.2); }
  to { text-shadow: 0 0 50px rgba(184, 146, 90, 0.6), 0 0 100px rgba(184, 146, 90, 0.4); }
}

/* Cards */
.cards-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.cards-grid--3 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.card .eyebrow { color: var(--accent); }
.card h3 { margin-bottom: var(--space-xs); }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: var(--space-sm); }
.card-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--cta); font-weight: var(--fw-semibold); font-size: 0.9rem;
}
.card-link:hover { gap: 0.6rem; }

/* Event cards (with photo area) */
.event-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-deep));
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.event-card-image .word {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--accent);
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(184, 146, 90, 0.5);
}
.event-card-body { padding: var(--space-md); }
.event-card-body h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.event-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: var(--space-sm); }

/* Package cards */
.package-grid {
  display: grid; gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}
.package {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex; flex-direction: column; text-align: center;
  transition: all var(--dur-base) var(--ease);
}
.package.featured { border-color: var(--accent); box-shadow: var(--shadow-md); position: relative; }
.package.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 0.3rem 1rem; border-radius: var(--radius-pill);
  font-size: 0.7rem; font-weight: var(--fw-semibold);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.package h3 { font-size: 1.5rem; margin-bottom: var(--space-xs); }
.package .price {
  font-family: var(--font-display); font-size: 2.5rem; color: var(--text-primary);
  margin: var(--space-sm) 0;
  line-height: 1;
}
.package .price small { font-size: 0.9rem; color: var(--text-muted); display: block; font-family: var(--font-body); margin-top: 0.3rem; }
.package ul { text-align: left; margin: var(--space-sm) 0; flex-grow: 1; }
.package ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem; color: var(--text-muted);
  display: flex; gap: 0.6rem; align-items: baseline;
}
.package ul li::before {
  content: '✓'; color: var(--cta); font-weight: bold; flex-shrink: 0;
}
.package .btn { margin-top: var(--space-sm); }

/* How it works */
.steps {
  display: grid; gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.step { text-align: center; padding: var(--space-sm); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--accent);
  margin-bottom: var(--space-sm);
}
.step h3 { font-size: 1.25rem; margin-bottom: var(--space-xs); }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* FAQ */
.faq {
  max-width: var(--container-narrow); margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}
.faq details:last-child { border-bottom: none; }
.faq summary {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: var(--fw-medium);
  padding: 0.8rem 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-sm);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; width: 10px; height: 10px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p {
  color: var(--text-muted); line-height: 1.7;
  padding: 0 0 var(--space-sm) 0;
}

/* Gallery */
.gallery-grid {
  columns: 2;
  column-gap: 1rem;
}
@media (min-width: 700px) { .gallery-grid { columns: 3; } }
@media (min-width: 1100px) { .gallery-grid { columns: 4; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-surface);
  aspect-ratio: var(--ratio, 4/5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.gallery-item .placeholder {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Review card */
.review {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.review .stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 0.5rem; }
.review .quote {
  font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5;
  color: var(--text-primary); margin-bottom: var(--space-sm);
}
.review .meta { font-size: var(--fs-small); color: var(--text-muted); }
.review .meta strong { color: var(--text-primary); display: block; margin-bottom: 0.2rem; }

/* CTA band */
.cta-band {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
}
.cta-band h2 { color: var(--bg-primary); margin-bottom: var(--space-sm); }
.cta-band p { color: var(--bg-surface); max-width: 60ch; margin: 0 auto var(--space-md); }
.cta-band .btn--primary { background: var(--accent); }
.cta-band .btn--primary:hover { background: var(--accent-hover); }

/* Breadcrumbs */
.breadcrumbs {
  font-size: var(--fs-small); color: var(--text-muted);
  padding: var(--space-sm) 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--text-subtle); }

/* Footer */
.site-footer {
  background: var(--text-primary);
  color: var(--bg-surface);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-xl);
}
.footer-grid {
  display: grid; gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: var(--space-md);
}
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: var(--ls-eyebrow);
  color: var(--accent);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-semibold);
}
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col a { color: var(--bg-surface); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-brand .logo { color: var(--bg-primary); font-size: 1.8rem; margin-bottom: var(--space-sm); display: block; }
.footer-brand p { color: #c4b8a5; font-size: 0.9rem; line-height: 1.6; max-width: 30ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--space-sm);
  font-size: var(--fs-small); color: #a39585;
}
.footer-bottom a { color: #a39585; }
.footer-bottom a:hover { color: var(--accent); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(31, 27, 22, 0.6);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem) 1rem;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; animation: fadeIn var(--dur-base) var(--ease); }
.modal {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  max-width: 520px; width: 100%;
  padding: var(--space-md);
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp var(--dur-slow) var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--dur-fast) var(--ease);
}
.modal-close:hover { background: var(--bg-surface); color: var(--text-primary); }
.modal h2 { font-size: 1.75rem; margin-bottom: 0.4rem; }
.modal .small { margin-bottom: var(--space-md); }

/* Forms */
.form-field { margin-bottom: var(--space-sm); }
.form-field label {
  display: block; font-size: 0.85rem; font-weight: var(--fw-medium);
  color: var(--text-primary); margin-bottom: 0.35rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color var(--dur-fast) var(--ease);
  min-height: 48px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-grid { display: grid; gap: var(--space-sm); grid-template-columns: 1fr 1fr; }
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }
.form-status {
  padding: 1rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; margin-top: var(--space-sm);
  display: none;
}
.form-status.success { background: rgba(47, 93, 74, 0.1); color: var(--cta); display: block; }
.form-status.error { background: rgba(179, 62, 62, 0.1); color: #b33e3e; display: block; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.consent { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.6rem; }
.consent a { color: var(--text-muted); text-decoration: underline; }

/* Live estimate box in modal */
.estimate {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin: var(--space-sm) 0;
  font-size: 0.95rem;
}
.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.3rem 0;
  color: var(--text-muted);
}
.estimate-row span:last-child {
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.estimate-row.estimate-total {
  border-top: 1px solid var(--border);
  margin-top: 0.3rem;
  padding-top: 0.6rem;
  color: var(--text-primary);
}
.estimate-row.estimate-total span {
  font-size: 1.35rem;
  color: var(--cta);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 0.8rem 1rem;
  z-index: 45;
  display: flex; gap: 0.5rem;
  box-shadow: 0 -4px 16px rgba(31, 27, 22, 0.08);
  transform: translateY(100%);
  transition: transform var(--dur-base) var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
body.sticky-cta-active { padding-bottom: var(--sticky-cta-h); }

/* Content typography helpers */
.prose { max-width: 72ch; }
.prose h2 { margin-top: var(--space-lg); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--space-md); font-family: var(--font-display); font-weight: var(--fw-medium); }
.prose p { margin-bottom: var(--space-sm); }
.prose ul, .prose ol { margin-bottom: var(--space-sm); padding-left: 1.4rem; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 0.8rem; margin-bottom: 0.4rem; }
.prose ul li::before { content: '◆'; position: absolute; left: -0.4rem; color: var(--accent); font-size: 0.7em; top: 0.35em; }
.prose ol { list-style-position: outside; }
.prose ol li { margin-bottom: 0.4rem; padding-left: 0.3rem; }
.prose a { color: var(--cta); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-display); font-size: 1.2rem; font-style: italic;
  color: var(--text-primary); margin: var(--space-md) 0;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
}
.prose strong { color: var(--text-primary); font-weight: var(--fw-semibold); }
.prose .note {
  background: var(--bg-surface); border-left: 3px solid var(--cta);
  padding: var(--space-sm) var(--space-md); border-radius: var(--radius-sm);
  margin: var(--space-md) 0;
}

/* Utility */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.mt-md { margin-top: var(--space-md); }
.mb-md { margin-bottom: var(--space-md); }
.grid-2 { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 800px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Focus visible */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 100;
  padding: 0.6rem 1rem; background: var(--text-primary); color: var(--bg-primary);
  border-radius: var(--radius-sm); font-weight: var(--fw-semibold);
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--bg-primary); }

/* Print */
@media print {
  .site-header, .site-footer, .sticky-cta, .modal-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}
