: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: 12px;
  --shadow-sm: 0 8px 24px -12px rgba(42, 31, 24, 0.18);
  --shadow-md: 0 20px 48px -24px rgba(42, 31, 24, 0.28);
}

/* === 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: 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 0.75rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul { padding: 0; margin: 0; list-style: none; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }
.section { padding-block: 4rem; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: rgba(42, 31, 24, 0.7); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; font-weight: 600; color: var(--color-primary); margin-bottom: 0.75rem; }

/* === 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;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
.primary-nav ul { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; font-size: 0.95rem; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); }

/* === Hero split === */
.hero-split { padding-block: 3rem; background: var(--color-neutral-light); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero-copy .sub { font-size: 1.15rem; color: rgba(42, 31, 24, 0.75); max-width: 52ch; margin-bottom: 1.75rem; }
.hero-media img { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* === Buttons === */
.btn { display: inline-block; padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; font-family: var(--font-body); }
.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-accent { background: var(--color-accent); color: var(--color-neutral-light); }

/* === Intro === */
.intro { background: var(--color-neutral-light); }
.intro h2 { text-align: center; margin-bottom: 1.5rem; }
.intro p { font-size: 1.05rem; }

/* === Highlights / services grid === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(42, 31, 24, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.card .icon { color: var(--color-primary); margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: rgba(42, 31, 24, 0.8); font-size: 0.98rem; margin-bottom: 0; }

.highlights { background: var(--color-secondary); }
.services { background: var(--color-neutral-light); }

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-light); }
.testimonial {
  border-left: 3px solid var(--color-primary);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 0;
  font-family: var(--font-heading);
}
.testimonial p { font-size: 1.25rem; line-height: 1.55; font-style: italic; color: var(--color-neutral-dark); }
.testimonial cite { display: block; margin-top: 1rem; font-family: var(--font-body); font-style: normal; font-size: 0.9rem; color: rgba(42, 31, 24, 0.7); }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: var(--color-neutral-light); padding-block: 4rem; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(251, 245, 232, 0.9); margin-bottom: 1.75rem; }
.cta-band .cta-band-meta { font-size: 0.9rem; margin-bottom: 1.5rem; }
.cta-band .btn-accent { background: var(--color-neutral-light); color: var(--color-primary); }

/* === FAQ === */
.faq { background: var(--color-secondary); }
.faq details {
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(42, 31, 24, 0.06);
}
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); font-size: 1.05rem; }
.faq details[open] summary { margin-bottom: 0.6rem; }
.faq p { margin-bottom: 0; color: rgba(42, 31, 24, 0.8); }

/* === Form === */
.form-section { background: var(--color-neutral-light); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 500; font-size: 0.9rem; }
.field input, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(42, 31, 24, 0.2);
  border-radius: 8px;
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: var(--color-primary); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: rgba(42, 31, 24, 0.8); flex-wrap: wrap; }
.form-consent input { margin-top: 0.2rem; }
.contact-form .btn { align-self: flex-start; }

/* === Contact band === */
.contact-band { background: var(--color-secondary); }
.contact-band p { font-size: 1rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 2rem; }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.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.25rem; margin-bottom: 2rem; }
.footer-grid .logo img { height: 60px; filter: brightness(0) invert(1) sepia(0.1); }
.footer-tag { color: rgba(251, 245, 232, 0.7); font-size: 0.9rem; margin-top: 0.75rem; }
.footer-grid nav ul li { margin-bottom: 0.45rem; }
.footer-grid address { font-style: normal; font-size: 0.92rem; color: rgba(251, 245, 232, 0.85); margin-bottom: 1rem; line-height: 1.7; }
.legal-links li { margin-bottom: 0.35rem; font-size: 0.88rem; }
.copyright { border-top: 1px solid rgba(251, 245, 232, 0.15); padding-top: 1.25rem; font-size: 0.85rem; color: rgba(251, 245, 232, 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;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  max-width: 560px;
  font-size: 0.9rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; color: rgba(251, 245, 232, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(251, 245, 232, 0.25);
  background: transparent;
  color: var(--color-neutral-light);
  border-radius: 999px;
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(251, 245, 232, 0.15); }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }

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

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .site-header { padding-block: 0.25rem; }
  .hero-split { padding-block: 5rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .section { padding-block: 5.5rem; }
  .footer-grid .logo img { height: 72px; }
}

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

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-neutral-light);
    border-bottom: 1px solid rgba(42, 31, 24, 0.08);
    padding: 1rem 1.25rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .site-header { position: relative; }
}
