:root {
  --color-primary: #7A2E1F;
  --color-secondary: #E8D9B2;
  --color-accent: #1F3A2E;
  --color-neutral-dark: #1B1B1B;
  --color-neutral-light: #FAF6EE;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --measure: 65ch;
  --radius: 10px;
  --shadow: 0 20px 60px -30px 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);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--color-neutral-dark);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h3 { font-size: 1.175rem; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 780px; }
.section { padding-block: 4rem; }
.section--tight { padding-block: 3rem; }
.section--muted { background: var(--color-secondary); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.section-head p { color: rgba(27, 27, 27, 0.72); }
.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-secondary);
  margin: 0 0 1rem;
  font-weight: 500;
}
.lede { font-size: 1.125rem; max-width: 52ch; margin: 0 0 1.75rem; }
.prose p { max-width: var(--measure); }
.prose h2 { margin-top: 2.25rem; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
}
.site-header__inner {
  max-width: 1180px; margin-inline: auto;
  padding: 0.9rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover { text-decoration: none; border-bottom-color: var(--color-primary); }
.primary-nav a[aria-current="page"] { border-bottom-color: var(--color-primary); }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--color-neutral-dark);
  transition: transform 0.2s;
}
.primary-nav.is-open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
  gap: 0.75rem;
}

/* === Hero fullscreen === */
.hero-fs {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 1.25rem;
  overflow: hidden;
  color: var(--color-neutral-light);
  background: var(--color-neutral-dark);
}
.hero-fs--short { min-height: 60vh; background: var(--color-primary); }
.hero-fs__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-fs__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(27, 27, 27, 0.45), rgba(27, 27, 27, 0.65));
  z-index: 1;
}
.hero-fs__overlay--solid { background: linear-gradient(rgba(122, 46, 31, 0.3), rgba(122, 46, 31, 0.6)); }
.hero-fs__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 780px;
}
.hero-fs__content h1 { color: var(--color-neutral-light); max-width: 20ch; margin-inline: auto; }
.hero-fs__content .lede { color: rgba(250, 246, 238, 0.88); margin-inline: auto; }
.hero-fs__content .eyebrow { color: var(--color-secondary); }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--accent { background: var(--color-secondary); color: var(--color-neutral-dark); }

/* === Cards grid === */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.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);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; color: rgba(27, 27, 27, 0.78); font-size: 0.98rem; }
.card-link {
  color: inherit; text-decoration: none;
  display: block;
}
.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }

/* === Quote === */
.quote {
  margin: 0 auto;
  text-align: center;
  max-width: 60ch;
  position: relative;
}
.quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
  font-weight: 500;
}
.quote cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* === Split (image + text) === */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.split__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.split__body h2 { margin-top: 0; }
.split__body p { color: rgba(27, 27, 27, 0.78); max-width: 55ch; }

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding-block: 4rem;
  text-align: center;
}
.cta-band h2 { color: var(--color-neutral-light); max-width: 28ch; margin: 0 auto 0.75rem; }
.cta-band p { color: rgba(250, 246, 238, 0.85); max-width: 55ch; margin: 0 auto 1.75rem; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid rgba(27, 27, 27, 0.12);
  padding: 1.25rem 0;
}
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem; font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: rgba(27, 27, 27, 0.78); }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-weight: 500; font-size: 0.92rem; }
.field input, .field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(27, 27, 27, 0.2);
  border-radius: 8px;
  background: var(--color-neutral-light);
  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);
}
.form-consent {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.88rem; color: rgba(27, 27, 27, 0.75);
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; flex-shrink: 0; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-block: 3.5rem 1.5rem;
  margin-top: 2rem;
}
.site-footer a { color: var(--color-secondary); }
.site-footer .logo img { filter: brightness(0) invert(1); height: 56px; margin-bottom: 0.75rem; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 246, 238, 0.14);
}
.site-footer h3 {
  color: var(--color-neutral-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; margin-bottom: 1rem; color: rgba(250, 246, 238, 0.8); line-height: 1.7; }
.tagline { color: rgba(250, 246, 238, 0.75); font-size: 0.95rem; }
.legal-links { margin-top: 1rem; font-size: 0.88rem; }
.site-footer__base { padding-top: 1.5rem; font-size: 0.85rem; color: rgba(250, 246, 238, 0.6); }

/* === 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 60px -20px rgba(0, 0, 0, 0.5);
  max-width: 640px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button {
  font: inherit; font-size: 0.88rem; font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 8px; cursor: pointer;
  border: 1px solid rgba(250, 246, 238, 0.25);
  background: transparent; color: var(--color-neutral-light);
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-secondary); color: var(--color-neutral-dark); border-color: var(--color-secondary);
}
.cookie-banner__actions button:hover { opacity: 0.9; }
.cookie-banner__prefs { margin-top: 1rem; 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 {
  margin-top: 0.5rem; align-self: flex-start;
  font: inherit; font-size: 0.88rem;
  padding: 0.5rem 1rem; border-radius: 8px;
  background: var(--color-secondary); color: var(--color-neutral-dark);
  border: 0; cursor: pointer;
}

/* === Responsive === */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  body { font-size: 18px; }
  .logo img { height: 96px; }
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
  .section { padding-block: 5.5rem; }
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .cta-band { padding-block: 5rem; }
}
@media (min-width: 1024px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
  .section-head h2 { font-size: 2.25rem; }
}
