:root {
  --color-primary: #7A2E1F;
  --color-secondary: #E8D9B2;
  --color-accent: #1F3A2E;
  --color-neutral-dark: #1B1B1B;
  --color-neutral-light: #FAF6EE;
  --font-heading: 'Cormorant Infant', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1180px;
  --radius: 12px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); background: var(--color-neutral-light); color: var(--color-neutral-dark); line-height: 1.6; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; color: var(--color-neutral-dark); }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

/* === Header === */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.25rem;
  max-width: var(--max-width); margin: 0 auto;
  gap: 1rem;
}
.logo img { height: 72px; width: auto; display: block; }
.primary-nav { position: relative; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: transparent; border: 1px solid var(--color-neutral-dark);
  border-radius: 6px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
.nav-list {
  display: none; flex-direction: column; gap: 0.5rem;
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--color-neutral-light); border: 1px solid rgba(0,0,0,0.08);
  padding: 1rem 1.5rem; border-radius: var(--radius); min-width: 200px;
  box-shadow: 0 14px 40px -16px rgba(0,0,0,0.2);
}
.nav-list.is-open { display: flex; }
.nav-list a { color: var(--color-neutral-dark); font-weight: 500; }
.nav-list a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .nav-list { display: flex; flex-direction: row; position: static; background: transparent; border: none; padding: 0; box-shadow: none; gap: 2rem; }
}

/* === Buttons === */
.btn {
  display: inline-block; padding: 0.9rem 1.75rem;
  border-radius: 999px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { box-shadow: 0 10px 24px -10px rgba(122,46,31,.6); }
.btn-light { background: var(--color-neutral-light); color: var(--color-primary); }

/* === Hero (centered) === */
.hero {
  max-width: var(--max-width); margin: 0 auto;
  text-align: center; padding: 3rem 1.25rem 4rem;
}
.eyebrow {
  font-family: var(--font-body); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 500;
  color: var(--color-primary); margin-bottom: 1rem;
}
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero-sub { max-width: 48ch; margin-inline: auto; font-size: 1.125rem; color: #444; margin-top: 0.5rem; }
.hero-cta { margin-top: 2rem; }
.hero-figure { margin: 3rem 0 0; }
.hero-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); }

@media (min-width: 768px) {
  .hero { padding: 5rem 2rem 6rem; }
  .hero-figure { margin-top: 4rem; }
}

/* === Sections === */
.section { max-width: var(--max-width); margin: 0 auto; padding: 3rem 1.25rem; }
@media (min-width: 768px) { .section { padding: 5rem 2rem; } }
.section-head { text-align: center; max-width: 56ch; margin: 0 auto 2.5rem; }
.section-head p { color: #444; }

/* === Cards grid === */
.cards-3, .cards-4 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -22px rgba(0,0,0,0.18); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-secondary); color: var(--color-primary);
  font-size: 1.25rem; margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; color: var(--color-primary); }
.card p { font-size: 0.97rem; color: #333; margin: 0; }

/* === Testimonial === */
.testimonial { text-align: center; }
.testimonial blockquote {
  max-width: 60ch; margin: 0 auto; padding: 0 1rem;
  font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.4; color: var(--color-neutral-dark);
}
.testimonial cite {
  display: block; margin-top: 1.5rem; font-style: normal;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--color-primary); letter-spacing: 0.04em;
}

/* === CTA band === */
.cta-band { max-width: none; padding: 0; }
.cta-inner {
  background: var(--color-primary); color: var(--color-neutral-light);
  text-align: center; padding: 3.5rem 1.5rem;
}
.cta-inner h2 { color: var(--color-neutral-light); }
.cta-inner p { color: rgba(250,246,238,0.9); max-width: 50ch; margin-inline: auto; }
@media (min-width: 768px) { .cta-inner { padding: 5rem 2rem; } }

/* === Editorial === */
.editorial-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .editorial-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }
.editorial-text h2 { margin-bottom: 1rem; }
.editorial-text p { font-size: 1.0625rem; color: #2a2a2a; }
.editorial-figure img { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); width: 100%; }
.editorial-narrow { max-width: 64ch; margin: 0 auto; }
.editorial-narrow h2 { margin-bottom: 1rem; }
.editorial-narrow p { font-size: 1.0625rem; color: #2a2a2a; }

/* === Stats === */
.stats-band { padding: 5rem 1.25rem; background: var(--color-secondary); max-width: none; }
@media (min-width: 768px) { .stats-band { padding: 7rem 2rem; } }
.stats-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; text-align: center;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem 2rem; } }
.stat-num {
  display: block; font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.5rem); color: var(--color-primary);
  line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { display: block; font-size: 0.95rem; color: var(--color-neutral-dark); max-width: 22ch; margin-inline: auto; }

/* === FAQ === */
.faq-list { max-width: 64ch; margin: 0 auto; }
.faq-list details {
  border-top: 1px solid rgba(0,0,0,0.1); padding: 1.25rem 0;
}
.faq-list details:last-of-type { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-list summary {
  cursor: pointer; font-weight: 600; font-size: 1.05rem;
  color: var(--color-neutral-dark); list-style: none; padding-right: 2rem;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  color: var(--color-primary); font-size: 1.5rem; line-height: 1; transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 1rem 0 0; color: #333; }

/* === Contact card === */
.contact-card {
  display: grid; gap: 2.5rem; grid-template-columns: 1fr;
  background: #fff; border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(0,0,0,0.06);
}
@media (min-width: 768px) { .contact-card { grid-template-columns: 1fr 1fr; padding: 3rem; } }
.contact-card h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.hours th, .hours td { text-align: left; padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-weight: 400; }
.hours th { color: var(--color-neutral-dark); font-weight: 500; }

/* === Form === */
.contact-form { max-width: 560px; margin: 0 auto; display: grid; gap: 1.25rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 500; font-size: 0.95rem; }
.field input, .field textarea {
  font: inherit; padding: 0.75rem 0.9rem; border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.18); background: #fff;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: var(--color-primary); }
.contact-form .btn { justify-self: start; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark); color: var(--color-neutral-light);
  padding: 3.5rem 1.25rem 2rem; margin-top: 2rem;
}
.footer-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; gap: 2.5rem; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; } }
.footer-brand { font-family: var(--font-heading); font-size: 1.5rem; margin: 0 0 0.25rem; color: var(--color-secondary); }
.footer-tag { color: rgba(250,246,238,0.75); margin: 0; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a, .footer-contact a { color: var(--color-neutral-light); }
.footer-contact p { color: rgba(250,246,238,0.85); margin-bottom: 1rem; }
.footer-legal { margin-top: 1rem; }
.footer-legal li { margin-bottom: 0.4rem; }
.footer-legal a { color: rgba(250,246,238,0.7); font-size: 0.9rem; }
.copyright {
  max-width: var(--max-width); margin: 3rem auto 0;
  border-top: 1px solid rgba(250,246,238,0.15); padding-top: 1.5rem;
  color: rgba(250,246,238,0.6); font-size: 0.85rem; text-align: center;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  background: var(--color-neutral-dark); color: var(--color-neutral-light);
  padding: 1rem 1.25rem; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 0.75rem;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.45);
  z-index: 999; max-width: 560px; margin-left: auto;
}
.cookie-banner p { margin: 0; font-size: 0.92rem; line-height: 1.5; }
.cookie-banner button {
  align-self: flex-start; font: inherit; cursor: pointer;
  background: var(--color-primary); color: var(--color-neutral-light);
  border: none; padding: 0.6rem 1.25rem; border-radius: 999px; font-weight: 600;
}
body.cookies-accepted .cookie-banner { display: none; }
@media (min-width: 600px) {
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; }
}
