:root {
  --color-primary: #6B1F2E;
  --color-secondary: #F2E8D8;
  --color-accent: #3D5A47;
  --color-neutral-dark: #1A0F12;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --maxw: 1180px;
  --radius: 8px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-neutral-dark); margin: 0 0 1rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(26, 15, 18, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid rgba(26, 15, 18, 0.18);
  border-radius: 6px;
  cursor: pointer;
  padding: 9px;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
.primary-nav { display: none; }
.primary-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.5rem; border-bottom: 1px solid rgba(26, 15, 18, 0.08); }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.primary-nav a { color: var(--color-neutral-dark); text-decoration: none; font-weight: 500; font-size: 1rem; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav a:hover { color: var(--color-primary); }

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

/* === Hero (stacked) === */
.hero-stacked {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 2rem) 2rem;
  text-align: left;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.hero-stacked h1 { margin-bottom: 2rem; max-width: 22ch; }
.hero-image { margin: 0 0 2rem; }
.hero-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }
.hero-sub { font-size: 1.15rem; color: rgba(26,15,18,0.78); max-width: 56ch; margin-bottom: 1.75rem; }
.hero-cta { margin: 0; }

@media (min-width: 768px) {
  .hero-stacked { padding-block: 5rem 3rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { background: #511522; }
.btn-light { background: var(--color-neutral-light); color: var(--color-primary); }
.btn-light:hover { background: #fff; }

/* === Sections === */
.section { padding: 3.5rem clamp(1rem, 4vw, 2rem); max-width: var(--maxw); margin: 0 auto; }
.section-narrow { max-width: 720px; }
.section-band { background: var(--color-secondary); max-width: none; margin-inline: 0; }
.section-band > * { max-width: var(--maxw); margin-inline: auto; }
.section-quote { max-width: 800px; }

@media (min-width: 768px) {
  .section { padding-block: 5rem; }
}

/* === Grid === */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Cards === */
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(26,15,18,0.10);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.section-band .card { background: #fff; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-neutral-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.6rem; color: var(--color-primary); }
.card p { margin: 0; font-size: 0.97rem; color: rgba(26,15,18,0.82); }

/* === Team === */
.team-card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(26,15,18,0.10);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-card figure { margin: 0; }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.team-card h3 { padding: 1.25rem 1.25rem 0.4rem; font-size: 1.05rem; color: var(--color-primary); }
.team-card p { padding: 0 1.25rem 1.5rem; margin: 0; font-size: 0.95rem; color: rgba(26,15,18,0.8); }

/* === Quote === */
.section-quote blockquote {
  margin: 0;
  padding: 2rem 0;
  position: relative;
  text-align: center;
}
.section-quote blockquote::before {
  content: "“";
  display: block;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section-quote blockquote p { font-size: 1.15rem; line-height: 1.65; font-style: italic; max-width: 60ch; margin: 0 auto 1.25rem; color: var(--color-neutral-dark); }
.section-quote cite { font-style: normal; font-size: 0.92rem; color: rgba(26,15,18,0.7); letter-spacing: 0.04em; }

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 3.5rem clamp(1rem, 4vw, 2rem);
  text-align: center;
}
.cta-band h2 { color: var(--color-neutral-light); max-width: 28ch; margin-inline: auto; }
.cta-band p { max-width: 56ch; margin: 0 auto 1.5rem; color: rgba(251,245,232,0.88); }
.cta-band p:last-child { margin-bottom: 0; }

/* === FAQ === */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid rgba(26,15,18,0.12);
  padding: 1.1rem 0;
}
.faq details:first-child { border-top: 1px solid rgba(26,15,18,0.12); }
.faq summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.02rem;
  color: var(--color-neutral-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--color-primary); font-size: 1.5rem; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 0.85rem; color: rgba(26,15,18,0.82); font-size: 0.98rem; }

/* === Contact === */
.contact-grid { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--color-secondary);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-card h3 { color: var(--color-primary); margin-bottom: 0.75rem; }
.contact-card address { font-style: normal; line-height: 1.8; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 0.45rem 0; border-bottom: 1px solid rgba(26,15,18,0.10); font-weight: 400; }
.hours th { color: rgba(26,15,18,0.78); font-weight: 500; }

.contact-form { max-width: 620px; margin: 0 auto; background: var(--color-neutral-light); border: 1px solid rgba(26,15,18,0.10); border-radius: var(--radius); padding: 2rem; }
.contact-form h3 { color: var(--color-primary); margin-bottom: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-row label { font-size: 0.9rem; font-weight: 500; color: rgba(26,15,18,0.8); }
.form-row input, .form-row textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(26,15,18,0.18);
  border-radius: 4px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }
.form-row button { align-self: flex-start; cursor: pointer; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(251,245,232,0.85);
  padding: 3rem clamp(1rem, 4vw, 2.5rem) 2rem;
  margin-top: 2rem;
}
.footer-grid { display: grid; gap: 2rem; max-width: var(--maxw); margin: 0 auto 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.footer-col h3 { color: var(--color-neutral-light); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.footer-brand { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--color-neutral-light); margin-bottom: 0.4rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(251,245,232,0.78); text-decoration: none; }
.footer-col a:hover { color: var(--color-neutral-light); text-decoration: underline; }
.footer-col address { font-style: normal; line-height: 1.8; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem !important; font-size: 0.88rem; }
.copyright { text-align: center; font-size: 0.85rem; color: rgba(251,245,232,0.55); border-top: 1px solid rgba(251,245,232,0.10); padding-top: 1.5rem; max-width: var(--maxw); margin: 0 auto; }

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 100;
  font-size: 0.92rem;
}
.cookie-banner p { margin: 0; }
.cookie-banner button {
  align-self: flex-start;
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: 0;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}
.cookie-banner button:hover { background: #2f4838; }
body.cookies-accepted .cookie-banner { display: none; }

@media (min-width: 640px) {
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner button { align-self: center; flex-shrink: 0; }
}
