: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: 12px;
  --shadow: 0 20px 50px -30px rgba(42, 31, 24, 0.3);
}

/* === 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: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-neutral-dark); margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

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

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

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .site-nav { display: flex; flex-direction: row; gap: 1.75rem; width: auto; padding: 0; }
}

/* === Hero — split === */
.hero { padding: 3rem 0 2rem; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero__text .eyebrow { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; }
.hero__text .lede { font-size: 1.15rem; color: rgba(42, 31, 24, 0.78); margin-bottom: 1.75rem; max-width: 52ch; }
.hero__media img { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

@media (min-width: 768px) {
  .hero { padding: 5rem 0 4rem; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.eyebrow { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-accent); font-weight: 600; }

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

/* === Sections === */
.section { padding: 3.5rem 0; }
.section--muted { background: var(--color-secondary); }
.section__head { text-align: center; margin: 0 auto 2.5rem; max-width: 60ch; }
.section__sub { color: rgba(42, 31, 24, 0.75); font-size: 1.05rem; }

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

/* === Prose === */
.prose { max-width: 68ch; margin: 0 auto; }
.prose h2 { margin-bottom: 1.25rem; }
.prose p { font-size: 1.05rem; }

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

/* === Cards === */
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(42, 31, 24, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card .icon { width: 32px; height: 32px; color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: rgba(42, 31, 24, 0.8); font-size: 0.98rem; margin: 0; }
a.card-link { color: inherit; display: block; }
a.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }

/* === Split section === */
.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.split__media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* === Quote === */
.quote {
  max-width: 60ch; margin: 0 auto; text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
  position: relative; padding: 1rem 0;
}
.quote::before { content: "“"; font-size: 4rem; color: var(--color-primary); line-height: 0.2; display: block; margin-bottom: 1.5rem; }
.quote cite { display: block; margin-top: 1.25rem; font-family: var(--font-body); font-size: 0.95rem; font-style: normal; color: var(--color-accent); font-weight: 500; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: var(--color-neutral-light); padding: 3rem 0; }
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(251, 245, 232, 0.85); margin: 0; }
.cta-band__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* === Contact card & form === */
.contact-card { background: var(--color-secondary); border-radius: var(--radius); padding: 2.5rem; }
.contact-form { max-width: 640px; margin: 0 auto; background: var(--color-neutral-light); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form h2 { margin-bottom: 1.5rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 500; margin-bottom: 0.4rem; font-size: 0.95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 1px solid rgba(42, 31, 24, 0.2);
  border-radius: 8px; font-family: inherit; font-size: 1rem;
  background: var(--color-neutral-light); color: var(--color-neutral-dark);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; margin: 1rem 0 1.5rem; flex-wrap: wrap; }
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 3.5rem 0 1.5rem; margin-top: 3rem; }
.site-footer p, .site-footer a { color: rgba(251, 245, 232, 0.85); }
.site-footer a:hover { color: var(--color-neutral-light); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.logo--footer img { filter: brightness(0) invert(1); height: 64px; }
.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__contact { font-style: normal; line-height: 1.9; }
.footer__legal { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.9rem; }
.footer__base { border-top: 1px solid rgba(251, 245, 232, 0.12); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.9rem; }
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; }
  .footer__legal { flex-direction: row; gap: 1.25rem; }
}

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