:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --sidebar-w: 240px;
  --border-soft: rgba(42, 31, 24, 0.12);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -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 { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

/* === Layout === */
.layout { display: block; }
.main { padding: 0 1.25rem 3rem; }

/* === Sidebar === */
.sidebar {
  background: var(--color-neutral-dark);
  color: var(--color-secondary);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar__brand { display: flex; flex-direction: column; gap: .5rem; }
.logo img { height: 72px; width: auto; display: block; }
.sidebar__tagline { font-size: .85rem; color: rgba(240,224,192,0.75); margin: 0; letter-spacing: .02em; }
.sidebar__foot { margin-top: auto; font-size: .8rem; color: rgba(240,224,192,0.55); }
.sidebar__foot p { margin: 0; }

.nav-toggle {
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid rgba(240,224,192,0.3);
  padding: .55rem .9rem;
  border-radius: 4px;
  font: inherit;
  cursor: pointer;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: none;
  flex-direction: column;
  gap: .25rem;
}
.nav-list.is-open { display: flex; }
.nav-list a {
  display: block;
  padding: .6rem .25rem;
  color: var(--color-secondary);
  border-bottom: 1px solid rgba(240,224,192,0.08);
  font-size: .95rem;
  letter-spacing: .02em;
}
.nav-list a:hover { color: var(--color-neutral-light); text-decoration: none; }
.nav-list a[aria-current="page"] { color: var(--color-neutral-light); border-bottom-color: var(--color-primary); }

/* === Hero === */
.hero {
  padding: 2.5rem 0 2rem;
  max-width: 900px;
}
.hero--compact { padding: 3rem 0 1rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: .78rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 1rem;
}
.hero h1 { margin-bottom: 1.25rem; max-width: 22ch; }
.hero__sub { font-size: 1.15rem; max-width: 55ch; color: rgba(42,31,24,0.82); margin-bottom: 1.75rem; }
.hero__cta { margin: 0 0 2.5rem; }
.hero__figure { margin: 0; }
.hero__figure img { border-radius: 10px; aspect-ratio: 16/9; object-fit: cover; box-shadow: 0 20px 50px -30px rgba(42,31,24,0.4); }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: #8a3f28; text-decoration: none; }
.btn--accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn--accent:hover { background: #324a3b; text-decoration: none; }

/* === Sections === */
.section { padding: 3rem 0; max-width: 1100px; }
.section--narrow { max-width: 720px; }
.section__title { margin-bottom: 2rem; }

/* === Grid / Cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 1.75rem;
}
.card h3 { margin: .75rem 0 .5rem; }
.card p { margin: 0; color: rgba(42,31,24,0.78); font-size: .95rem; }
.icon { color: var(--color-primary); }

/* === Quote === */
.quote-section { max-width: 780px; }
.quote {
  margin: 0;
  padding: 2.25rem;
  background: var(--color-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: 6px;
}
.quote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-neutral-dark);
}
.quote cite {
  display: block;
  margin-top: 1rem;
  font-size: .9rem;
  font-style: normal;
  color: rgba(42,31,24,0.7);
  letter-spacing: .02em;
}

/* === CTA band === */
.cta-band {
  margin: 3rem 0;
  padding: 3rem 2rem;
  background: var(--color-primary);
  color: var(--color-neutral-light);
  border-radius: 10px;
  max-width: 1100px;
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: .5rem; }
.cta-band p { color: rgba(251,245,232,0.9); margin-bottom: 1.5rem; max-width: 55ch; }

/* === Contact band === */
.contact-band {
  background: var(--color-secondary);
  border-radius: 8px;
  padding: 2rem 2rem;
  max-width: 900px;
}
.contact-band h2 { margin-bottom: .75rem; }

/* === Form === */
.form-section { max-width: 640px; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 500; }
.field input, .field textarea {
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: rgba(42,31,24,0.8); line-height: 1.5; }
.form-consent input { margin-top: .2rem; }

/* === Footer === */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-soft);
  max-width: 1100px;
}
.site-footer__cols { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-brand { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin: 0 0 .25rem; }
.footer-nav, .footer-legal { list-style: none; padding: 0; margin: 0; }
.footer-nav li, .footer-legal li { margin: .25rem 0; }
.footer-legal { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-soft); }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer-copy { margin-top: 2rem; font-size: .85rem; color: rgba(42,31,24,0.6); }

/* === 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: 8px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button {
  font: inherit;
  padding: .55rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(251,245,232,0.3);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner__actions 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: .5rem; }
.cookie-banner__prefs label { font-size: .85rem; display: flex; align-items: center; gap: .5rem; }
.cookie-banner__prefs button {
  align-self: flex-start;
  margin-top: .5rem;
  font: inherit;
  padding: .5rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(251,245,232,0.3);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}

/* === Desktop === */
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__cols { grid-template-columns: 1.2fr 1fr 1.3fr; }
  .main { padding: 0 2.5rem 4rem; }
}

@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .layout {
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    min-height: 100vh;
  }
  .sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 2.25rem 1.75rem;
  }
  .nav-toggle { display: none; }
  .nav-list { display: flex; margin-top: 1.5rem; }
  .main { padding: 3rem 3.5rem 3rem; }
  .hero { padding-top: 1rem; }
}
