:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --shadow-sm: 0 2px 12px -6px rgba(42,31,24,0.15);
  --shadow-md: 0 12px 32px -18px 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);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-neutral-dark);
  margin: 0 0 1rem;
}
p { margin: 0 0 1rem; }
ul { padding: 0; margin: 0; list-style: none; }

/* === Layout === */
.layout { display: block; }

.sidebar {
  background: var(--color-secondary);
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(42,31,24,0.1);
}
.sidebar__head { display: flex; justify-content: space-between; align-items: center; }
.sidebar__nav { margin-top: 1rem; }
.sidebar__foot { display: none; }
.sidebar__foot p { margin: 0; font-size: 0.8rem; color: rgba(42,31,24,0.6); }

.logo img { height: 72px; width: auto; display: block; }

.nav-toggle {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--color-neutral-dark);
  color: var(--color-neutral-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-list {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.nav-list.is-open { display: flex; }
.nav-list li a {
  display: block;
  padding: 0.6rem 0.25rem;
  color: var(--color-neutral-dark);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(42,31,24,0.08);
}
.nav-list li a[aria-current="page"] { color: var(--color-primary); }

.main { padding: 0 1.25rem 3rem; }

@media (min-width: 900px) {
  .layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
  }
  .sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    border-bottom: none;
    border-right: 1px solid rgba(42,31,24,0.1);
  }
  .sidebar__head { display: block; }
  .logo img { height: 96px; }
  .sidebar__nav { flex: 1; margin-top: 2.5rem; }
  .nav-toggle { display: none; }
  .nav-list {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }
  .nav-list li a { border-bottom: none; padding: 0.5rem 0; }
  .sidebar__foot { display: block; margin-top: auto; padding-top: 2rem; }
  .main { padding: 0 3rem 4rem; }
}

/* === Hero === */
.hero {
  padding: 3rem 0 2.5rem;
  max-width: 780px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.01em;
  max-width: 20ch;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(42,31,24,0.75);
  max-width: 55ch;
  margin-bottom: 1.75rem;
}
.hero__cta { margin-bottom: 2rem; }
.hero__figure { margin: 2rem 0 0; }
.hero__figure img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 900px) {
  .hero { padding: 4.5rem 0 3.5rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: #8a3f27; color: var(--color-neutral-light); }
.btn--accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn--accent:hover { background: #2f473a; color: var(--color-neutral-light); }

/* === Section === */
.section {
  padding: 3rem 0;
  border-top: 1px solid rgba(42,31,24,0.08);
}
.section__head { max-width: 720px; margin-bottom: 2.5rem; }
.section__head h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.section__sub { color: rgba(42,31,24,0.7); font-size: 1.05rem; }
.section--narrow { max-width: 720px; }
.section--narrow h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.section--narrow p { font-size: 1.08rem; line-height: 1.75; }

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

.card {
  background: #fff;
  border: 1px solid rgba(42,31,24,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.card p { font-size: 0.98rem; color: rgba(42,31,24,0.8); margin: 0; }
.icon { color: var(--color-accent); margin-bottom: 0.75rem; }

/* === Quote === */
.section--quote {
  padding: 3.5rem 0;
  max-width: 780px;
}
.section--quote blockquote {
  margin: 0;
  padding: 0 0 0 1.5rem;
  border-left: 3px solid var(--color-primary);
}
.section--quote blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--color-neutral-dark);
}
.section--quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(42,31,24,0.65);
  margin-top: 0.75rem;
}

/* === Split === */
.section--split { padding: 3rem 0; }
.split { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.split__figure img {
  border-radius: 12px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* === CTA band === */
.cta-band {
  margin: 3rem 0;
  padding: 2.5rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-neutral-light);
  border-radius: 12px;
  text-align: center;
}
.cta-band h2 {
  color: var(--color-neutral-light);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 0.75rem;
}
.cta-band p { color: rgba(251,245,232,0.9); max-width: 60ch; margin: 0 auto 1.5rem; }
@media (min-width: 900px) {
  .cta-band { padding: 3.5rem 2rem; }
}

/* === Form === */
.contact-form { max-width: 640px; }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-neutral-dark);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-neutral-dark);
  background: #fff;
  border: 1px solid rgba(42,31,24,0.2);
  border-radius: var(--radius);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(42,31,24,0.85);
  margin: 0 0 1.5rem;
  flex-wrap: wrap;
}
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer {
  border-top: 1px solid rgba(42,31,24,0.1);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  color: rgba(42,31,24,0.85);
  font-size: 0.95rem;
}
.site-footer__cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .site-footer__cols { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.site-footer__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-neutral-dark);
}
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.site-footer a { color: var(--color-neutral-dark); }
.site-footer a:hover { color: var(--color-primary); }
.footer-nav li a { display: inline-block; padding: 0.25rem 0; }
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.site-footer__copy {
  border-top: 1px solid rgba(42,31,24,0.08);
  padding-top: 1.25rem;
  margin-top: 2rem;
  font-size: 0.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: 12px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  max-width: 640px;
  margin-inline: auto;
  font-size: 0.9rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-banner button {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(251,245,232,0.4);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(251,245,232,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cookie-banner__prefs label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
}
.cookie-banner__prefs [data-cookie-save] {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--color-accent);
  border-color: var(--color-accent);
}
