:root {
  --color-primary: #7A2E1F;
  --color-secondary: #E8D9B2;
  --color-accent: #1F3A2E;
  --color-neutral-dark: #1B1B1B;
  --color-neutral-light: #FAF6EE;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(27,27,27,0.05);
  --shadow-md: 0 12px 30px -18px rgba(27,27,27,0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
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%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { text-decoration: none; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
button { font: inherit; cursor: pointer; }

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(27,27,27,0.08);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 64px; }

.nav-toggle {
  background: transparent;
  border: 0;
  padding: 0.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--color-neutral-dark); }
.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(27,27,27,0.08);
  padding: 1rem 1.25rem;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  text-decoration: none;
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.5rem 0;
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }

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

/* === Hero (fullscreen) === */
.hero-full {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-neutral-light);
  padding: 4rem 1.25rem;
}
.hero-full__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65));
  z-index: 1;
}
.hero-full__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}
.hero-full__content h1 { color: var(--color-neutral-light); margin-bottom: 1.25rem; }
.hero-full__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(250,246,238,0.9);
  max-width: 56ch;
  margin: 0 auto 1.75rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-neutral-light);
}
.btn--primary:hover { background: #661f13; }
.btn--light {
  background: var(--color-neutral-light);
  color: var(--color-primary);
}
.btn--light:hover { background: var(--color-secondary); }

/* === Sections === */
.section {
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section--narrow { max-width: 720px; }
.section--top { padding-top: 6rem; }
.section--tinted {
  background: var(--color-secondary);
  max-width: none;
  margin: 0;
}
.section--tinted > * { max-width: 1200px; margin-inline: auto; }
.section--tinted.section--narrow > * { max-width: 720px; }
.section__head { text-align: center; margin-bottom: 2.5rem; max-width: 640px; margin-inline: auto; }
.section__lede { font-size: 1.125rem; color: rgba(27,27,27,0.72); margin-bottom: 1.25rem; }

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

/* === Grid & cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(27,27,27,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.card__icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; color: var(--color-neutral-dark); }
.card p { color: rgba(27,27,27,0.78); margin: 0; }

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover .card { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card--article h3 { color: var(--color-primary); }

/* === Testimonial === */
.testimonial-section { text-align: center; }
.testimonial {
  margin: 2rem auto 0;
  max-width: 640px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--color-accent);
  padding: 0 1rem;
}
.testimonial p { font-style: italic; margin-bottom: 1rem; }
.testimonial cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(27,27,27,0.6);
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 4rem 1.25rem;
  text-align: center;
}
.cta-band__inner { max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250,246,238,0.9); margin-bottom: 1.75rem; }
.cta-band__address {
  font-style: normal;
  margin: 1.5rem 0;
  color: rgba(250,246,238,0.9);
  line-height: 1.8;
}
.cta-band__address a { color: var(--color-neutral-light); }

/* === Contact form === */
.contact-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(27,27,27,0.2);
  border-radius: var(--radius);
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.92rem;
  color: rgba(27,27,27,0.75);
  flex-wrap: wrap;
}
.form-consent input { margin-top: 0.25rem; }
.contact-form .btn { justify-self: start; }

/* === Article layout === */
.article {
  max-width: 65ch;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.article > header { margin-bottom: 1.5rem; }
.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.article h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1.25rem; }
.article__sub { font-size: 1.2rem; color: rgba(27,27,27,0.7); }
.article__hero {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
  margin: 2rem 0;
}
.article p { font-size: 1.125rem; line-height: 1.75; margin: 1.5rem 0; }
.article__footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(27,27,27,0.1); }
.back-link { text-decoration: none; font-weight: 600; }
.back-link:hover { text-decoration: underline; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250,246,238,0.85);
  padding: 3.5rem 1.25rem 1.5rem;
}
.site-footer a { color: rgba(250,246,238,0.85); }
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-neutral-light);
  margin-bottom: 0.75rem;
}
.site-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.site-footer__tag { color: rgba(250,246,238,0.7); }
.site-footer__nav { display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer__nav a { text-decoration: none; }
.site-footer__nav a:hover { text-decoration: underline; }
.site-footer__contact address { font-style: normal; margin-bottom: 0.75rem; line-height: 1.6; }
.site-footer__legal { font-size: 0.9rem; margin-top: 1rem; }
.site-footer__copy {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,246,238,0.15);
  font-size: 0.85rem;
  color: rgba(250,246,238,0.6);
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.4fr; }
}

/* === 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: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.95rem; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-banner__actions button {
  padding: 0.55rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(250,246,238,0.3);
  background: transparent;
  color: var(--color-neutral-light);
  font-size: 0.9rem;
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250,246,238,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cookie-banner__prefs label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
}
.cookie-banner__prefs button {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 0;
  background: var(--color-primary);
  color: var(--color-neutral-light);
}
