/* === Reset & base === */
*, *::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; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; margin: 0 0 1rem; color: var(--color-neutral-dark); }
p { margin: 0 0 1rem; }

:root {
  --color-primary: #7A2A38;
  --color-secondary: #EFE3D0;
  --color-accent: #4A6A55;
  --color-neutral-dark: #211418;
  --color-neutral-light: #FAF3E5;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --maxw: 1180px;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-primary); margin: 0 0 1rem; }

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

/* === Header === */
.site-header { background: var(--color-neutral-light); border-bottom: 1px solid rgba(33,20,24,0.08); position: sticky; top: 0; z-index: 50; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; gap: 1rem; }
.logo img { height: 72px; width: auto; display: block; }
.logo:hover { text-decoration: none; }
.primary-nav { position: relative; }
.primary-nav__list { display: none; flex-direction: column; gap: 0.5rem; position: absolute; right: 0; top: calc(100% + 0.75rem); background: var(--color-neutral-light); border: 1px solid rgba(33,20,24,0.1); border-radius: var(--radius); padding: 1rem 1.25rem; min-width: 200px; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2); }
.primary-nav__list a { color: var(--color-neutral-dark); font-weight: 500; }
.primary-nav__list a:hover { color: var(--color-primary); text-decoration: none; }
.primary-nav.is-open .primary-nav__list { display: flex; }
.nav-toggle { background: transparent; border: 0; padding: 0.5rem; display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle__bar { display: block; width: 26px; height: 2px; background: var(--color-neutral-dark); }

/* === Hero (split) === */
.hero { padding-block: 3rem; background: linear-gradient(180deg, var(--color-neutral-light) 0%, var(--color-secondary) 100%); }
.hero__grid { display: grid; gap: 2.5rem; align-items: center; }
.hero__title { font-size: clamp(2.25rem, 6vw, 3.75rem); font-weight: 600; max-width: 18ch; }
.hero__sub { font-size: 1.125rem; max-width: 48ch; color: rgba(33,20,24,0.78); margin-bottom: 1.75rem; }
.hero__media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(122,42,56,0.45); }

/* === Section base === */
.section { padding-block: 4rem; }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.section__head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.section__sub { color: rgba(33,20,24,0.7); font-size: 1.0625rem; }

/* === Cards grid === */
.grid { display: grid; gap: 1.5rem; }
.grid--cards { grid-template-columns: 1fr; }
.card { background: var(--color-neutral-light); border: 1px solid rgba(33,20,24,0.08); border-radius: var(--radius); padding: 1.75rem; transition: transform .2s ease, box-shadow .2s ease; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--color-primary); }
.card p { margin: 0; color: rgba(33,20,24,0.78); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--color-secondary); margin-bottom: 1rem; font-size: 1.25rem; }
.card-link { display: block; color: inherit; }
.card-link:hover { text-decoration: none; }
.card:has(.card-link:hover), .card-link:hover ~ * { }
.card-link:hover h3 { color: var(--color-primary); }
li.card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -25px rgba(0,0,0,0.25); }

/* === Quote === */
.section--quote { background: var(--color-secondary); }
.quote { max-width: 760px; margin: 0 auto; text-align: center; font-family: var(--font-heading); }
.quote p { font-size: clamp(1.25rem, 2.4vw, 1.625rem); font-weight: 500; line-height: 1.45; color: var(--color-neutral-dark); margin-bottom: 1rem; }
.quote cite { font-style: normal; font-weight: 600; color: var(--color-primary); font-size: 0.9375rem; letter-spacing: 0.04em; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: var(--color-neutral-light); padding-block: 3.5rem; }
.cta-band--alt { background: var(--color-accent); }
.cta-band__inner { display: grid; gap: 1.5rem; align-items: center; }
.cta-band h2 { color: var(--color-neutral-light); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(250,243,229,0.85); margin: 0; }

/* === Intro split === */
.intro__grid { display: grid; gap: 2.5rem; align-items: center; }
.intro__media img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); width: 100%; }
.intro__copy h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
.intro__copy p { font-size: 1.0625rem; color: rgba(33,20,24,0.82); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 2rem; }
.site-footer a { color: var(--color-secondary); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer__grid { display: grid; gap: 2rem; }
.site-footer__heading { font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-secondary); margin-bottom: 1rem; }
.site-footer__col ul li { margin-bottom: 0.5rem; }
.site-footer__legal { margin-top: 1.25rem; font-size: 0.875rem; }
.site-footer__vat { font-size: 0.8125rem; color: rgba(239,227,208,0.6); margin-top: 1rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 0; }
.site-footer__bottom { border-top: 1px solid rgba(239,227,208,0.15); margin-top: 2rem; padding-top: 1.5rem; font-size: 0.875rem; color: rgba(239,227,208,0.6); text-align: center; }
.logo--footer img { height: 56px; margin-bottom: 1rem; }

/* === Cookie banner === */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 1.25rem 1.5rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.875rem; align-items: flex-start; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5); z-index: 100; max-width: 560px; margin-inline: auto; }
.cookie-banner p { margin: 0; font-size: 0.9375rem; }
.cookie-banner button { background: var(--color-accent); color: var(--color-neutral-light); border: 0; padding: 0.625rem 1.25rem; border-radius: 999px; font-weight: 600; cursor: pointer; font-family: inherit; }
.cookie-banner button:hover { background: #3d5a48; }
body.cookies-accepted .cookie-banner { display: none; }

/* === Responsive === */
@media (min-width: 640px) {
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { grid-template-columns: 1fr auto; gap: 2.5rem; }
}
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .logo--footer img { height: 64px; }
  .hero { padding-block: 5rem; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .intro__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .intro__grid > .intro__media { order: 2; }
  .section { padding-block: 5.5rem; }
  .nav-toggle { display: none; }
  .primary-nav__list { display: flex; flex-direction: row; gap: 2rem; position: static; background: transparent; border: 0; box-shadow: none; padding: 0; }
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.4fr; }
}
@media (min-width: 1024px) {
  .grid--cards { grid-template-columns: repeat(3, 1fr); }
  .grid--two { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 4rem; }
}
