:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --max-w: 1180px;
  --radius: 12px;
}

/* === 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: 1rem;
}
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
  line-height: 1.2;
  margin: 0 0 .75rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -.005em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 232, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
}
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; vertical-align: middle; }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--color-neutral-dark);
  color: var(--color-neutral-dark);
  padding: .5rem .85rem;
  border-radius: 6px;
  font: 600 .875rem var(--font-body);
  cursor: pointer;
}
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem; border-bottom: 1px solid rgba(42, 31, 24, 0.08); }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 600; padding: .5rem 0; display: inline-block; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

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

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .85rem 1.65rem;
  border-radius: 8px;
  font: 600 1rem var(--font-body);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease;
  cursor: pointer;
  border: 0;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(0,0,0,.3); }
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-light { background: var(--color-neutral-light); color: var(--color-neutral-dark); }

/* === Hero (fullscreen) === */
.hero-fullscreen {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-neutral-light);
  text-align: center;
  padding: 4rem 1.5rem;
}
.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(42, 31, 24, 0.45), rgba(42, 31, 24, 0.7));
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-inner h1 { color: var(--color-neutral-light); max-width: 22ch; margin-inline: auto; }
.hero-sub {
  color: var(--color-secondary);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 50ch;
  margin: 1.25rem auto 2rem;
}
.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

/* === Sections === */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-narrow { max-width: 760px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-sub { color: var(--color-accent); font-size: 1.1rem; margin-bottom: 1.5rem; }

@media (min-width: 768px) {
  .section { padding: 6rem 2rem; }
}

/* === Split layout === */
.section-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split-figure img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (min-width: 900px) {
  .section-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .section-split-reverse .split-text { order: 2; }
  .section-split-reverse .split-figure { order: 1; }
}

/* === Cards grid === */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .cards-4, .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff;
  border: 1px solid rgba(42, 31, 24, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -22px rgba(42, 31, 24, .3); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.card h3 { color: var(--color-neutral-dark); margin-bottom: .5rem; }
.card p { color: rgba(42, 31, 24, 0.85); font-size: .98rem; }

/* === Quote === */
.section-quote {
  background: var(--color-secondary);
  max-width: none;
  text-align: center;
}
.section-quote blockquote {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
  font-weight: 500;
}
.section-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: var(--color-secondary); max-width: 50ch; margin: 0 auto 1.75rem; }

/* === FAQ === */
.faq details {
  border: 1px solid rgba(42, 31, 24, 0.12);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  background: #fff;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-neutral-dark);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--color-primary); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: .75rem; color: rgba(42, 31, 24, 0.85); }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; font-size: .95rem; }
.field input, .field textarea {
  font: 400 1rem var(--font-body);
  padding: .75rem .9rem;
  border: 1px solid rgba(42, 31, 24, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: var(--color-primary); }

/* === Hours table === */
.hours { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: .95rem; }
.hours caption { text-align: left; font-family: var(--font-heading); font-weight: 600; margin-bottom: .5rem; color: var(--color-neutral-dark); }
.hours th, .hours td { padding: .5rem .25rem; border-bottom: 1px solid rgba(42, 31, 24, 0.1); text-align: left; }
.hours th { font-weight: 600; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-secondary);
  padding: 3.5rem 1.5rem 1.5rem;
  margin-top: 2rem;
}
.footer-cols {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-cols { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; } }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.site-footer a { color: var(--color-secondary); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.logo-footer img { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(.95); }
.tagline { font-style: italic; color: var(--color-secondary); }
.legal-links { flex-direction: row; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: .9rem; }
.vat { font-size: .85rem; opacity: .7; margin-top: .75rem; }
.copyright {
  text-align: center;
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 224, 192, 0.15);
  font-size: .85rem;
  opacity: .75;
}

/* === 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: 10px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-banner p { margin: 0; font-size: .92rem; flex: 1 1 240px; }
.cookie-banner button {
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: 0;
  padding: .6rem 1.2rem;
  border-radius: 6px;
  font: 600 .9rem var(--font-body);
  cursor: pointer;
}
.cookie-banner button:hover { background: var(--color-primary); }
body.cookies-accepted .cookie-banner { display: none; }

@media (min-width: 600px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 480px; }
}
