:root {
  --bg: #FBF6EE;
  --surface: #F1E8D4;
  --text: #2B1D0E;
  --muted: #57432A;
  --primary: #4A3318;
  --accent: #CBB18A;
  --cta-bg: #7C5A30;
  --cta-text: #FBF6EE;
  --header-bg: #FBF6EE;
  --header-text: #4A3318;
  --footer-bg: #2B1D0E;
  --footer-text: #E5D4AF;
  --link: #7C5A30;
  --border: #DBC7A0;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --font-h: "Space Grotesk", system-ui, sans-serif;
  --font-b: "Inter", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--font-b); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); }
h1,h2,h3 { font-family: var(--font-h); line-height: 1.2; margin: 0 0 0.6rem; }
.skip { position: absolute; left: -999px; top: 0; background: var(--cta-bg); color: var(--cta-text); padding: 0.6rem 1rem; }
.skip:focus { left: 1rem; top: 1rem; z-index: 20; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.7rem 1.15rem; border-radius: 999px; text-decoration: none; font-weight: 700; border: 0; cursor: pointer; font-family: var(--font-h); }
.btn-primary { background: var(--cta-bg); color: var(--cta-text); }
.btn-ghost { background: transparent; color: var(--header-text); box-shadow: inset 0 0 0 2px currentColor; }
.btn-primary:hover { transform: translateY(-1px); }
.site-header { background: var(--header-bg); color: var(--header-text); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 8; }
.header-inner, .header-split, .header-center { display: flex; gap: 1rem; align-items: center; justify-content: space-between; padding: 0.85rem 0; }
.header-center { flex-direction: column; }
.brand { display: flex; gap: 0.7rem; align-items: center; text-decoration: none; color: inherit; font-family: var(--font-h); font-weight: 800; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
nav ul { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; list-style: none; margin: 0; padding: 0; }
nav a { color: inherit; text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.topbar { font-size: 0.9rem; padding: 0.4rem 0; color: var(--muted); }
.hero { padding: 3.2rem 0 2.4rem; }
.hero-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; }
.hero-stack { display: grid; gap: 1.5rem; }
.hero-band { position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden; }
.hero-band img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-card { position: relative; background: color-mix(in srgb, var(--bg) 92%, transparent); padding: 1.6rem; margin: 2rem; border-radius: var(--radius); max-width: 36rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--muted); font-weight: 700; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.3rem); }
.hero p { color: var(--muted); font-size: 1.08rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.hero img, .card img, .prose img { border-radius: calc(var(--radius) - 6px); }
section { padding: 3rem 0; }
.section-alt { background: var(--surface); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.card h3 a { text-decoration: none; color: inherit; }
.muted { color: var(--muted); }
.prose { max-width: 46rem; }
.prose p { margin: 0 0 1rem; }
.page-hero { padding: 2.2rem 0 1rem; }
.hours { display: grid; gap: 0.25rem; }
.form { display: grid; gap: 0.8rem; max-width: 36rem; }
label { font-weight: 700; font-size: 0.92rem; }
input, select, textarea { width: 100%; min-height: 48px; padding: 0.7rem 0.85rem; border: 1px solid var(--border); border-radius: 12px; font: inherit; }
textarea { min-height: 140px; }
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.map-frame { width: 100%; min-height: 280px; border: 0; border-radius: var(--radius); }
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 2.4rem 0 5.5rem; }
.site-footer a { color: var(--footer-text); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 1.2rem; }
.legal-row { display: flex; flex-wrap: wrap; gap: 0.7rem 1rem; margin-top: 1.4rem; font-size: 0.9rem; }
.sticky-call { position: fixed; right: 1rem; bottom: 1rem; z-index: 9; }
.faq details { border-bottom: 1px solid var(--border); padding: 0.8rem 0; }
.search-box { display: flex; gap: 0.5rem; }
@media (max-width: 800px) {
  .hero-split, .footer-grid { grid-template-columns: 1fr; }
  nav ul { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
