/* === Tokens === */
:root {
  --color-primary: #7A2A38;
  --color-secondary: #EFE3D0;
  --color-accent: #4A6A55;
  --color-neutral-dark: #211418;
  --color-neutral-light: #FAF3E5;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 18px 40px -28px rgba(33, 20, 24, 0.35);
  --shadow-hero: 0 30px 60px -30px rgba(33, 20, 24, 0.4);
  --maxw: 1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
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%; display: block; height: auto; }
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 .75rem; }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.2rem; }

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(33, 20, 24, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  background: transparent;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  justify-content: center;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); width: 26px; }
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); border-bottom: 1px solid rgba(33, 20, 24, 0.08); }
.primary-nav ul { list-style: none; margin: 0; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.primary-nav a { font-weight: 600; color: var(--color-neutral-dark); }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .site-header { padding: 1.25rem 2rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; position: static; background: transparent; border: 0; }
  .primary-nav ul { flex-direction: row; padding: 0; gap: 2rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: #621f2c; text-decoration: none; transform: translateY(-1px); }
.btn--light { background: var(--color-neutral-light); color: var(--color-primary); }
.btn--light:hover { background: #fff; text-decoration: none; }

/* === Hero (hero-card) === */
.hero {
  padding: 3rem 1rem;
  background: var(--color-secondary);
  background-image: radial-gradient(circle at 20% 0%, rgba(122, 42, 56, 0.08), transparent 50%), radial-gradient(circle at 80% 100%, rgba(74, 106, 85, 0.08), transparent 50%);
}
.hero-card__inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-hero);
  text-align: center;
}
.eyebrow { text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; color: var(--color-primary); font-weight: 600; margin-bottom: .75rem; }
.hero h1 { max-width: 22ch; margin: 0 auto 1.25rem; }
.hero__sub { max-width: 52ch; margin: 0 auto 1.75rem; font-size: 1.15rem; color: rgba(33, 20, 24, 0.78); }
.hero__cta { margin-bottom: 2rem; }
.hero-card__figure { margin: 0; border-radius: var(--radius); overflow: hidden; }
.hero-card__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

@media (min-width: 768px) {
  .hero { padding: 5rem 2rem; }
  .hero-card__inner { padding: 4rem 3.5rem; }
}

/* === Sections === */
main section { padding: 3.5rem 1.25rem; }
.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { color: rgba(33, 20, 24, 0.7); font-size: 1.05rem; }
@media (min-width: 768px) {
  main section { padding: 5rem 2rem; }
}

/* === Intro === */
.intro__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.intro__inner p { font-size: 1.1rem; }
.intro__figure { margin: 2rem 0 0; border-radius: var(--radius); overflow: hidden; }
.intro__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* === Grid + Cards === */
.grid { display: grid; gap: 1.25rem; max-width: var(--maxw); margin: 0 auto; grid-template-columns: 1fr; }
@media (min-width: 600px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(33, 20, 24, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card h3 { color: var(--color-primary); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card-link { color: inherit; text-decoration: none; display: block; }
.card-link:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 22px 44px -24px rgba(33, 20, 24, 0.4); }

/* === Testimonial === */
.testimonial { background: var(--color-secondary); }
.testimonial blockquote {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  font-family: var(--font-heading);
}
.testimonial p { font-size: 1.4rem; line-height: 1.5; color: var(--color-neutral-dark); margin-bottom: 1.5rem; }
.testimonial cite { font-style: normal; font-family: var(--font-body); font-size: .95rem; color: var(--color-primary); font-weight: 600; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: var(--color-neutral-light); }
.cta-band__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250, 243, 229, 0.85); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* === FAQ === */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--color-neutral-light);
  border: 1px solid rgba(33, 20, 24, 0.1);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  padding: 1rem 1.25rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  list-style: none;
  padding-right: 2rem;
  position: relative;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .75rem; margin-bottom: 0; }

/* === Contact form === */
.contact-form { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .95rem; }
.field input, .field textarea {
  font: inherit;
  padding: .75rem .9rem;
  border-radius: 10px;
  border: 1px solid rgba(33, 20, 24, 0.18);
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 3rem 1.25rem 1.5rem; }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.site-footer h2 { color: var(--color-neutral-light); font-size: 1.05rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .9rem; }
.site-footer__brand .logo img { height: 72px; filter: brightness(0) invert(1); }
.site-footer__brand p { color: rgba(250, 243, 229, 0.78); margin-top: 1rem; }
.site-footer a { color: rgba(250, 243, 229, 0.85); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer__nav ul, .site-footer__legal { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer address { font-style: normal; line-height: 1.7; color: rgba(250, 243, 229, 0.85); }
.site-footer__vat { font-size: .9rem; color: rgba(250, 243, 229, 0.65); margin-top: .75rem; }
.site-footer__legal { margin-top: 1rem; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
.site-footer__copy { max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(250, 243, 229, 0.12); font-size: .9rem; color: rgba(250, 243, 229, 0.6); text-align: center; }
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 3rem; }
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  z-index: 100;
  max-width: 480px;
  margin-left: auto;
}
.cookie-banner p { margin: 0; font-size: .95rem; line-height: 1.5; }
.cookie-banner button {
  align-self: flex-start;
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: 0;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  font: 600 .95rem var(--font-body);
  cursor: pointer;
}
.cookie-banner button:hover { filter: brightness(1.1); }
body.cookies-accepted .cookie-banner { display: none; }
@media (min-width: 600px) {
  .cookie-banner { flex-direction: row; align-items: center; }
  .cookie-banner button { align-self: center; flex-shrink: 0; }
}
