:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --shadow-soft: 0 20px 60px -30px rgba(42, 31, 24, 0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); font-weight: 600; line-height: 1.2; margin: 0 0 1rem; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-neutral-dark);
}
.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-neutral-light);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.5rem 0;
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }

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

/* === Hero fullscreen === */
.hero--full {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.25rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(42,31,24,0.55), rgba(42,31,24,0.75));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  color: var(--color-neutral-light);
}
.hero__content h1 { color: var(--color-neutral-light); max-width: 22ch; margin-inline: auto; }
.hero__sub {
  font-size: 1.15rem;
  max-width: 55ch;
  margin: 1.25rem auto 2rem;
  color: rgba(251, 245, 232, 0.92);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 0 1rem;
}
.hero__content .eyebrow { color: var(--color-secondary); }

@media (min-width: 768px) {
  .hero--full { min-height: 88vh; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: #8a3d24; text-decoration: none; transform: translateY(-1px); }
.btn--accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn--accent:hover { background: #2f4738; text-decoration: none; transform: translateY(-1px); }

/* === Sections === */
.section {
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section--narrow { max-width: 780px; }
.section--center { text-align: center; }
.section--center .eyebrow { color: var(--color-primary); }
.section--tinted {
  max-width: none;
  background: var(--color-secondary);
}
.section--tinted > * { max-width: 1200px; margin-inline: auto; }
.section--tall { min-height: 55vh; display: flex; flex-direction: column; justify-content: center; }
.section__head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section__head .section__sub, .section__sub { color: rgba(42,31,24,0.75); font-size: 1.05rem; }
.lede { font-size: 1.1rem; color: rgba(42,31,24,0.85); }
.section--narrow p { max-width: 62ch; margin-inline: auto; }
.section--narrow.section--center h2 { max-width: 28ch; margin-inline: auto; }

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

/* === Grid + cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(42,31,24,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.card__icon { color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; color: var(--color-neutral-dark); font-family: var(--font-heading); }
.card p { color: rgba(42,31,24,0.8); margin-bottom: 0.5rem; }
a.card-link { color: inherit; text-decoration: none; }
a.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); text-decoration: none; }
.card__more { color: var(--color-primary); font-weight: 600; font-size: 0.95rem; }

/* === Quote === */
.quote {
  margin: 0 auto;
  max-width: 42rem;
  padding: 2rem 1rem;
  text-align: center;
}
.quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-neutral-dark);
}
.quote cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(42,31,24,0.7);
  letter-spacing: 0.02em;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 4rem 1.25rem;
}
.cta-band__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(251, 245, 232, 0.9); max-width: 55ch; margin: 0 auto 1.5rem; }

/* === Stats === */
.stats {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat__num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1;
}
.stat__label { color: rgba(42,31,24,0.8); font-size: 0.98rem; }

/* === Article detail === */
.article {
  max-width: 65ch;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.article__header { margin-bottom: 2rem; }
.article__header .eyebrow { color: var(--color-primary); }
.article__header h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.article__sub { font-size: 1.2rem; color: rgba(42,31,24,0.75); font-family: var(--font-heading); font-style: italic; }
.article__hero { aspect-ratio: 16/9; object-fit: cover; width: 100%; margin: 2rem 0; border-radius: 8px; }
.article h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.article p { font-size: 1.125rem; line-height: 1.75; margin-bottom: 1.5rem; color: var(--color-neutral-dark); }
.article__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(42,31,24,0.1); }
.back-link { color: var(--color-primary); font-weight: 600; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid rgba(42,31,24,0.1);
  padding: 1.25rem 0;
}
.faq summary {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--color-neutral-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 1rem; color: rgba(42,31,24,0.85); }

/* === Contact form === */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-weight: 600; font-size: 0.95rem; }
.form-row input, .form-row textarea {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(42,31,24,0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: transparent;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(42,31,24,0.85);
}
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3.5rem 1.25rem 1.5rem;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 1.2fr 1fr 1.4fr; }
}
.site-footer h4 {
  color: var(--color-secondary);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-secondary); }
.site-footer address { font-style: normal; color: rgba(251,245,232,0.85); margin-bottom: 1rem; line-height: 1.7; }
.legal-links { border-top: 1px solid rgba(251,245,232,0.15); padding-top: 1rem; margin-top: 1rem; font-size: 0.9rem; }
.logo--footer img { height: 60px; }
.site-footer__copy {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251,245,232,0.12);
  color: rgba(251,245,232,0.6);
  font-size: 0.85rem;
  text-align: center;
}

/* === 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);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  max-width: 640px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  border: 1px solid rgba(251,245,232,0.3);
  background: transparent;
  color: var(--color-neutral-light);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
}
.cookie-banner button[data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.cookie-banner__prefs {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }

@media (min-width: 640px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; }
}
