:root {
  --color-primary: #212840;
  --color-secondary: #F2E2D6;
  --color-accent: #D66B52;
  --color-neutral-dark: #141826;
  --color-neutral-light: #FBF3EB;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1180px;
}

/* === Reset === */
*, *::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%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.15; font-weight: 600; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 760px; }

/* === Header === */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}
.logo img { height: 72px; width: auto; display: block; }
.primary-nav ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.primary-nav a { color: var(--color-neutral-light); font-weight: 500; font-size: 0.95rem; }
.primary-nav a:hover { color: var(--color-accent); text-decoration: none; }

/* === Hero (fullscreen) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.25rem 4rem;
  overflow: hidden;
  background: var(--color-neutral-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20,24,38,0.55), rgba(33,40,64,0.75));
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  color: var(--color-neutral-light);
}
.hero__inner h1 { color: var(--color-neutral-light); max-width: 22ch; margin-inline: auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--color-secondary);
  max-width: 52ch;
  margin: 1.5rem auto 2rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--color-accent); color: var(--color-neutral-light); }
.btn--primary:hover { background: #c25c45; }
.btn--accent { background: var(--color-neutral-light); color: var(--color-primary); }
.btn--accent:hover { background: var(--color-secondary); }

/* === Intro === */
.intro { padding: 5rem 0; }
.intro--alt { background: var(--color-secondary); }
.intro h2 { text-align: left; }
.intro p { font-size: 1.05rem; color: #2d3349; }

/* === Section head === */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head p { color: #4a5168; }

/* === Highlights / cards === */
.highlights { padding: 5rem 0; background: var(--color-neutral-light); }
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(33,40,64,0.08);
  box-shadow: 0 8px 24px -18px rgba(20,24,38,0.5);
}
.card__icon { font-size: 1.8rem; display: block; margin-bottom: 0.75rem; }
.card p { color: #3a4159; font-size: 0.97rem; margin: 0; }

/* === Testimonial === */
.testimonial { background: var(--color-primary); color: var(--color-neutral-light); padding: 5rem 0; }
.testimonial--alt { background: var(--color-neutral-dark); }
.testimonial blockquote { margin: 0; text-align: center; }
.testimonial blockquote p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.45; color: var(--color-neutral-light); }
.testimonial cite { display: block; margin-top: 1.5rem; color: var(--color-accent); font-style: normal; letter-spacing: 0.05em; font-size: 0.9rem; }

/* === CTA band === */
.cta-band { background: var(--color-accent); color: var(--color-neutral-light); padding: 4.5rem 0; text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: var(--color-neutral-light); opacity: 0.95; max-width: 50ch; margin-inline: auto; }
.cta-band__inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }

/* === Stats === */
.stats { padding: 5rem 0; background: var(--color-secondary); text-align: center; }
.stats h2 { margin-bottom: 2.5rem; }
.stats__grid li { background: var(--color-neutral-light); padding: 2rem 1.5rem; border-radius: 10px; }
.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.stats__grid p { color: #3a4159; font-size: 0.95rem; margin: 0; }

/* === FAQ === */
.faq { padding: 5rem 0; background: var(--color-neutral-light); }
.faq h2 { text-align: center; margin-bottom: 2.5rem; }
.faq details {
  border-bottom: 1px solid rgba(33,40,64,0.15);
  padding: 1.25rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: #3a4159; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-secondary); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer__brand { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-neutral-light); margin: 0 0 0.25rem; }
.footer__tagline { color: var(--color-accent); margin: 0; }
.site-footer nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { color: var(--color-secondary); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer address { font-style: normal; }
.footer__legal { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.9rem; }
.footer__copy { text-align: center; margin: 3rem 0 0; font-size: 0.85rem; color: rgba(242,226,214,0.6); }

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.cookie-banner p { margin: 0; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner button {
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: none;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
}
.cookie-banner button:hover { background: #c25c45; }
body.cookies-accepted .cookie-banner { display: none; }

/* === Responsive === */
@media (min-width: 640px) {
  .cookie-banner { flex-direction: row; align-items: center; max-width: 640px; }
}
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .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; }
  .hero { padding: 8rem 1.5rem 5rem; }
  .intro, .highlights, .stats, .faq, .testimonial { padding: 6rem 0; }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
