:root {
  --color-primary: #1C1917;
  --color-secondary: #44403C;
  --color-accent: #CA8A04;
  --color-neutral-dark: #0C0A09;
  --color-neutral-light: #FAFAF9;
  --color-border: rgba(12, 10, 9, 0.12);
  --color-muted: #78716C;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(12, 10, 9, 0.06);
  --shadow-md: 0 10px 40px -12px rgba(12, 10, 9, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(12, 10, 9, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-primary);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-primary); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 1rem; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 780px; }

/* === Header / nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 250, 249, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 24px -18px rgba(12,10,9,0.25);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.25rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 60px; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.primary-nav { display: none; align-items: center; gap: 2rem; }
.primary-nav a {
  position: relative;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover, .primary-nav a.is-active { color: var(--color-primary); }
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
@media (min-width: 900px) { .primary-nav { display: flex; } .nav-toggle { display: none; } }

.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0; border: 1px solid var(--color-border); background: transparent; border-radius: 8px; cursor: pointer; }
.nav-toggle__bar { display: block; width: 20px; height: 2px; background: var(--color-primary); margin: 0 auto; transition: transform .2s; }
.primary-nav[data-open] { display: flex; }
@media (max-width: 899px) {
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-neutral-light);
    border-bottom: 1px solid var(--color-border);
    padding: .5rem 1.25rem 1rem;
  }
  .primary-nav a { padding: .85rem 0; border-bottom: 1px solid var(--color-border); }
  .primary-nav a:last-child { border-bottom: 0; }
}

/* === Buttons === */
.btn { display: inline-block; padding: .85rem 1.4rem; border-radius: 999px; font-family: var(--font-body); font-weight: 600; font-size: .95rem; line-height: 1; cursor: pointer; border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; }
.btn--primary { background: linear-gradient(135deg, var(--color-accent), #A16207); color: var(--color-neutral-light); box-shadow: 0 8px 24px -10px rgba(202, 138, 4, 0.55); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(202, 138, 4, 0.65); color: var(--color-neutral-light); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.btn--sm { padding: .55rem .9rem; font-size: .85rem; }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* === Hero card === */
.hero-card-section { padding: 3rem 0 2rem; position: relative; overflow: hidden; }
.hero-card-section::before {
  content: "";
  position: absolute;
  inset: -20% 40% 40% -20%;
  background: radial-gradient(circle at center, rgba(202, 138, 4, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-card-section::after {
  content: "";
  position: absolute;
  inset: 30% -20% -20% 40%;
  background: radial-gradient(circle at center, rgba(28, 25, 23, 0.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-card {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.75rem;
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: left;
}
@media (min-width: 768px) { .hero-card { padding: 4rem 3.5rem; } }
.hero-card--compact { text-align: center; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.14em; font-size: .78rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }
.hero-card h1 { margin-bottom: 1.25rem; max-width: 22ch; }
.hero-card--compact h1 { margin-inline: auto; }
.lede { font-size: 1.1rem; color: var(--color-secondary); max-width: 58ch; margin-bottom: 2rem; }
.hero-card--compact .lede { margin-inline: auto; }
.hero-card__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-card__figure { margin: 0; }
.hero-card__figure img { border-radius: var(--radius-md); aspect-ratio: 16/9; object-fit: cover; box-shadow: var(--shadow-md); }

/* === Sections === */
.section { padding: 4rem 0; }
.section--narrow .container { max-width: 780px; }
.section--muted { background: #F5F5F4; }
.section__header { max-width: 640px; margin-bottom: 2.5rem; }
.section__header--center { margin-inline: auto; text-align: center; }
.section__header p { color: var(--color-secondary); font-size: 1.05rem; margin: 0; }

/* === Grid + cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  color: var(--color-primary);
  display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(202, 138, 4, 0.35); }
.card-link { text-decoration: none; }
.card-link:hover { color: var(--color-primary); }
.card__icon { width: 40px; height: 40px; padding: 8px; border-radius: 10px; background: rgba(202, 138, 4, 0.12); color: var(--color-accent); margin-bottom: 1rem; }
.card p { color: var(--color-secondary); font-size: .95rem; margin: 0; }

/* === Testimonial === */
.testimonial { margin: 0; padding: 2rem 0; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 500; line-height: 1.5; color: var(--color-primary); }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; color: var(--color-muted); font-size: .95rem; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: var(--color-neutral-light); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 60%; height: 200%; background: radial-gradient(circle, rgba(202,138,4,0.25), transparent 70%); pointer-events: none; }
.cta-band h2 { color: var(--color-neutral-light); position: relative; }
.cta-band p { color: rgba(250, 250, 249, 0.8); max-width: 55ch; margin-inline: auto; position: relative; }
.cta-band .btn { position: relative; }

/* === FAQ === */
.faq details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  background: var(--color-neutral-light);
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-heading); font-weight: 600; cursor: pointer; list-style: none; padding-right: 1.5rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; font-size: 1.4rem; color: var(--color-accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: .75rem 0 0; color: var(--color-secondary); font-size: .95rem; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; } }
.contact-form { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-form label { display: block; margin-bottom: 1rem; font-size: .9rem; font-weight: 500; color: var(--color-primary); }
.contact-form label span { display: block; margin-bottom: .35rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--color-primary); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.15); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; font-weight: 400; color: var(--color-secondary); margin-bottom: 1.25rem !important; }
.form-consent input { width: auto; margin-top: .25rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-bottom: 1px solid var(--color-border); font-size: .9rem; font-weight: 400; }
.hours th { color: var(--color-primary); font-weight: 500; }
.hours td { color: var(--color-secondary); }
.contact-card { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); }

/* === Footer === */
.site-footer { background: var(--color-primary); color: rgba(250, 250, 249, 0.75); padding: 3rem 0 2rem; margin-top: 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: .75rem; }
.footer__tagline { font-size: .9rem; color: rgba(250, 250, 249, 0.65); margin-top: .5rem; }
.footer__list, .footer__legal { list-style: none; padding: 0; margin: 0; }
.footer__list li, .footer__legal li { margin-bottom: .4rem; }
.site-footer a { color: rgba(250, 250, 249, 0.75); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer address { font-style: normal; font-size: .9rem; margin-bottom: 1rem; color: rgba(250, 250, 249, 0.7); line-height: 1.7; }
.footer__legal { margin-top: 1rem; font-size: .85rem; }
.footer__copy { text-align: center; font-size: .8rem; color: rgba(250, 250, 249, 0.5); border-top: 1px solid rgba(250, 250, 249, 0.1); padding-top: 1.5rem; margin: 0; }
.site-footer .logo--footer img { filter: brightness(0) invert(1); }

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  z-index: 9999;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.55);
  max-width: 480px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: .9rem; margin: 0 0 1rem; color: rgba(250, 250, 249, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner .btn--ghost { color: var(--color-neutral-light); border-color: rgba(250, 250, 249, 0.3); }
.cookie-banner .btn--ghost:hover { border-color: var(--color-neutral-light); }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; }
.cookie-banner__prefs button { margin-top: .5rem; justify-self: start; }

/* === Reveal motion === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
