/* === Tokens === */
: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;
  --maxw: 1120px;
  --maxw-narrow: 720px;
}

/* === 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; }

/* === Type === */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: .8rem; color: var(--color-primary); font-weight: 600; margin: 0 0 1rem; }

/* === Layout === */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.section { padding-block: 4rem; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-sub { max-width: 52ch; margin-inline: auto; color: rgba(42,31,24,0.75); }

/* === Header === */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(42,31,24,0.08);
  background: var(--color-neutral-light);
  position: sticky; top: 0; z-index: 20;
}
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.site-nav { position: relative; }
.nav-toggle { background: none; border: 0; color: var(--color-neutral-dark); cursor: pointer; padding: .25rem; }
.nav-list {
  list-style: none; margin: 0; padding: 1rem 1.25rem;
  display: none;
  position: absolute; right: 0; top: 100%;
  background: var(--color-neutral-light);
  border: 1px solid rgba(42,31,24,0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -20px rgba(42,31,24,0.25);
  min-width: 220px;
}
.nav-list.is-open { display: block; }
.nav-list li + li { margin-top: .5rem; }
.nav-list a { color: var(--color-neutral-dark); font-weight: 500; }
.nav-list a[aria-current="page"] { color: var(--color-primary); }
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-list {
    display: flex; position: static; background: none; border: 0; box-shadow: none;
    padding: 0; gap: 2rem; min-width: 0;
  }
  .nav-list li + li { margin-top: 0; }
}

/* === Hero centered === */
.hero.hero-centered {
  text-align: center;
  padding: 4rem 1.25rem 3rem;
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-neutral-light) 100%);
}
@media (min-width: 768px) { .hero.hero-centered { padding-block: 6rem 4rem; } }
.hero h1 { max-width: 22ch; margin-inline: auto; font-weight: 600; }
.hero__sub { max-width: 52ch; margin: 1.25rem auto 2rem; font-size: 1.125rem; color: rgba(42,31,24,0.8); }
.hero__figure { max-width: var(--maxw); margin: 3rem auto 0; }
.hero__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }

/* === Buttons === */
.btn {
  display: inline-block; padding: .95rem 1.75rem; border-radius: 999px;
  font-weight: 600; font-family: var(--font-body); font-size: 1rem;
  letter-spacing: 0.01em; border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(42,31,24,0.35); }
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-light); }

/* === Intro === */
.section-intro { text-align: center; }
.section-intro p { font-size: 1.075rem; text-align: left; }
@media (min-width: 768px) { .section-intro p { font-size: 1.125rem; } }

/* === Cards grid === */
.cards-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }
.cards-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(42,31,24,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.card__icon { color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .95rem; margin: 0; color: rgba(42,31,24,0.8); }

/* === Testimonial === */
.section-testimonial { background: var(--color-secondary); }
.testimonial { margin: 0; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.4; margin-bottom: 1.25rem; color: var(--color-neutral-dark); }
.testimonial cite { font-style: normal; font-weight: 500; color: var(--color-primary); }

/* === Before/After === */
.beforeafter { margin: 0; }
.beforeafter img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  text-align: center;
  padding: 4rem 1.25rem;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(251,245,232,0.9); max-width: 52ch; margin: 0 auto 1.75rem; }
.cta-band .btn-accent:hover { box-shadow: 0 10px 24px -10px rgba(0,0,0,0.4); }

/* === Form === */
.contact-form { display: grid; gap: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-weight: 500; font-size: .95rem; }
.form-row input, .form-row textarea {
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid rgba(42,31,24,0.2);
  border-radius: 8px;
  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; }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: rgba(42,31,24,0.85); }
.form-consent input { margin-top: .25rem; }
.contact-form button[type="submit"] { justify-self: start; }

/* === FAQ === */
.faq details {
  border: 1px solid rgba(42,31,24,0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  background: var(--color-neutral-light);
  margin-bottom: .75rem;
}
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); font-size: 1.075rem; }
.faq details[open] summary { color: var(--color-primary); margin-bottom: .75rem; }
.faq p { margin: 0; color: rgba(42,31,24,0.85); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(251,245,232,0.85);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.footer-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: .95rem; margin-top: 1rem; color: rgba(251,245,232,0.75); }
.footer-heading { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-neutral-light); margin-bottom: .75rem; }
.footer-nav, .footer-legal { list-style: none; margin: 0; padding: 0; }
.footer-nav li, .footer-legal li { margin-bottom: .4rem; }
.footer-nav a, .footer-legal a, .site-footer address a { color: rgba(251,245,232,0.85); }
.footer-legal { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(251,245,232,0.15); }
.site-footer address { font-style: normal; line-height: 1.7; font-size: .95rem; }
.footer-copyright { text-align: center; margin: 2.5rem 0 0; font-size: .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);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  max-width: 560px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button {
  font: inherit; cursor: pointer; padding: .55rem 1rem; border-radius: 999px; border: 1px solid rgba(251,245,232,0.3);
  background: transparent; color: var(--color-neutral-light);
}
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs button { margin-top: .5rem; justify-self: start; font: inherit; cursor: pointer; padding: .5rem 1rem; border-radius: 999px; border: 0; background: var(--color-accent); color: var(--color-neutral-light); }
