: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: 20px;
  --shadow-card: 0 30px 60px -30px rgba(42, 31, 24, 0.28);
  --shadow-soft: 0 10px 30px -20px rgba(42, 31, 24, 0.25);
}

/* === Base === */
* { 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;
  font-size: 17px;
  -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;
  color: var(--color-neutral-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0 0 1rem; }
h3 { font-size: 1.25rem; margin: 0 0 .5rem; }
h4 { font-size: 1rem; margin: 0 0 .75rem; text-transform: uppercase; letter-spacing: .1em; }
p { margin: 0 0 1rem; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--color-accent);
  font-weight: 500;
  margin: 0 0 1rem;
}

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo img { height: 72px; width: auto; display: block; }
.logo:hover { text-decoration: none; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--color-neutral-dark);
  transition: transform .2s ease;
}
.site-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  gap: .25rem;
  padding: .5rem 0;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--color-neutral-dark);
  padding: .6rem .25rem;
  font-weight: 500;
  font-size: .98rem;
  border-bottom: 1px solid rgba(42, 31, 24, 0.06);
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }

/* === Hero card === */
.hero {
  padding: 2.5rem 1.25rem 3rem;
  background: linear-gradient(160deg, var(--color-secondary) 0%, var(--color-neutral-light) 70%);
}
.hero-card__inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--color-neutral-dark);
  opacity: .82;
  max-width: 52ch;
  margin: 0 auto 1.75rem;
}
.hero-card__figure {
  margin: 2rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-card__figure img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .9rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-neutral-light);
}
.btn--primary:hover {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--ghost-light {
  background: transparent;
  color: var(--color-neutral-light);
  border: 1.5px solid var(--color-neutral-light);
}
.btn--ghost-light:hover {
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
  text-decoration: none;
}

/* === Sections === */
.section {
  padding: 4rem 1.25rem;
}
.section--narrow {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.section--narrow h2 { text-align: left; }
.section--tinted {
  background: var(--color-secondary);
}
.section__head {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section__sub {
  color: var(--color-accent);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.section--narrow.section--tinted {
  max-width: none;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.section--narrow.section--tinted > * {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* === Grid + cards === */
.grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
.card {
  background: var(--color-neutral-light);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(42, 31, 24, 0.06);
}
.card .icon {
  width: 32px; height: 32px;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
}
.card p { margin: 0; font-size: .96rem; color: rgba(42, 31, 24, 0.82); }
.card-link {
  color: inherit;
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-link:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* === Quote === */
.section--quote {
  padding: 4rem 1.25rem;
  text-align: center;
}
.section--quote blockquote {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
.section--quote blockquote::before {
  content: "“";
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary);
  display: block;
  margin-bottom: -1rem;
}
.section--quote p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-neutral-dark);
}
.section--quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: var(--color-neutral-light); opacity: .9; margin-bottom: 1.75rem; }

/* === Contact band === */
.contact-band {
  background: var(--color-accent);
  color: var(--color-neutral-light);
  padding: 3rem 1.5rem;
}
.contact-band__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.contact-band h2 { color: var(--color-neutral-light); }
.contact-band .section__sub { color: var(--color-secondary); }
.contact-band a { color: var(--color-secondary); }

/* === FAQ === */
.faq details {
  border-top: 1px solid rgba(42, 31, 24, 0.14);
  padding: 1.1rem 0;
}
.faq details:last-child { border-bottom: 1px solid rgba(42, 31, 24, 0.14); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-neutral-dark);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-size: 1.4rem;
  color: var(--color-primary);
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: .75rem; color: rgba(42, 31, 24, 0.85); }

/* === Form === */
.section--form { background: var(--color-secondary); }
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-neutral-light);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.form-wrap form { display: flex; flex-direction: column; gap: 1rem; }
.form-wrap label {
  display: flex;
  flex-direction: column;
  font-size: .88rem;
  font-weight: 500;
  color: var(--color-neutral-dark);
  gap: .35rem;
}
.form-wrap input,
.form-wrap textarea,
.form-wrap select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .7rem .85rem;
  border: 1px solid rgba(42, 31, 24, 0.2);
  border-radius: 10px;
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}
.form-wrap input:focus,
.form-wrap textarea:focus,
.form-wrap select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: .6rem !important;
  font-weight: 400 !important;
  font-size: .85rem;
  color: rgba(42, 31, 24, 0.85);
  flex-wrap: wrap;
}
.form-consent input { width: auto; margin-top: .2rem; }
.form-wrap .btn { align-self: flex-start; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-secondary);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.site-footer h4 { color: var(--color-neutral-light); }
.site-footer p, .site-footer address { color: var(--color-secondary); font-style: normal; font-size: .92rem; }
.site-footer nav a {
  display: block;
  color: var(--color-secondary);
  padding: .25rem 0;
  font-size: .92rem;
}
.site-footer nav a:hover { color: var(--color-neutral-light); }
.site-footer address a { color: var(--color-secondary); }
.logo--footer img { height: 56px; }
.footer-legal a { color: var(--color-neutral-light); }
.copyright {
  max-width: 1140px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 224, 192, 0.15);
  font-size: .82rem;
  color: var(--color-secondary);
  opacity: .7;
  text-align: center;
}

/* === 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: 14px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.4);
  max-width: 640px;
  margin-left: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; color: var(--color-neutral-light); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button {
  font-family: var(--font-body);
  font-size: .88rem;
  padding: .55rem 1rem;
  border-radius: 8px;
  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; font-size: .88rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; }
.cookie-banner__prefs button {
  align-self: flex-start;
  margin-top: .5rem;
  padding: .5rem 1rem;
  background: var(--color-primary);
  color: var(--color-neutral-light);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* === Responsive === */
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    gap: 1.75rem;
    padding: 0;
  }
  .site-nav a { border: none; padding: .25rem 0; }
  .hero { padding: 4.5rem 2rem 5rem; }
  .hero-card__inner { padding: 4rem 3.5rem; }
  .section { padding: 5rem 2rem; }
  .section--narrow { padding: 5rem 2rem; }
  .grid { gap: 1.75rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 3rem; }
  .cta-band { padding: 4.5rem 2rem; }
}

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