:root {
  --color-primary: #1C1917;
  --color-secondary: #44403C;
  --color-accent: #CA8A04;
  --color-neutral-dark: #0C0A09;
  --color-neutral-light: #FAFAF9;
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --maxw: 1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-primary);
  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-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; color: var(--color-primary); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.1; margin: 0 0 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; margin: 0 0 1rem; }
h3 { font-size: 1.25rem; line-height: 1.3; margin: 0 0 .6rem; }
p { margin: 0 0 1.1rem; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,249,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12,10,9,0.08);
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 72px; width: auto; display: block; }
.logo { text-decoration: none; display: inline-block; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-primary); border-radius: 2px; }
.primary-nav { display: none; width: 100%; }
.primary-nav.is-open { display: block; }
.primary-nav ul { list-style: none; padding: 1rem 0 .5rem; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.primary-nav a { text-decoration: none; font-weight: 500; font-size: .98rem; padding: .5rem 0; display: block; }
.primary-nav a[aria-current="page"] { color: var(--color-accent); }

@media (min-width: 900px) {
  .site-header__inner { padding: 1.25rem 2rem; flex-wrap: nowrap; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: block; width: auto; }
  .primary-nav ul { flex-direction: row; gap: 1.75rem; padding: 0; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .95rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.btn--accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn--accent:hover { background: #a67304; color: var(--color-neutral-light); }
.btn--light { background: var(--color-neutral-light); color: var(--color-primary); }
.btn--light:hover { background: var(--color-accent); color: var(--color-neutral-light); }

/* === Hero fullscreen === */
.hero-fullscreen {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-neutral-light);
  padding: 6rem 1.25rem;
}
.hero-fullscreen__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-fullscreen__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(12,10,9,0.45), rgba(12,10,9,0.65));
  z-index: 1;
}
.hero-fullscreen__overlay--solid { background: var(--color-primary); }
.hero-fullscreen--plain { min-height: 55vh; }
.hero-fullscreen__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}
.hero-fullscreen h1 { color: var(--color-neutral-light); max-width: 22ch; margin-inline: auto; }
.hero-fullscreen .lede { color: rgba(250,250,249,0.9); font-size: 1.15rem; max-width: 52ch; margin: 0 auto 2rem; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 1.25rem;
}

/* === Sections === */
.section { max-width: var(--maxw); margin: 0 auto; padding: 5rem 1.25rem; }
.section--narrow { max-width: 760px; }
.section--tinted { max-width: none; background: #f4f2ef; }
.section--tinted > * { max-width: var(--maxw); margin-inline: auto; }
.section--tinted.section--narrow > * { max-width: 760px; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section__sub { color: var(--color-secondary); font-size: 1.05rem; }
.centered { text-align: center; }

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

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

/* === Cards === */
.card {
  background: var(--color-neutral-light);
  padding: 2rem;
  border: 1px solid rgba(12,10,9,0.08);
  border-radius: 4px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card__icon { color: var(--color-accent); margin-bottom: 1rem; }
.card p { color: var(--color-secondary); margin: 0; }
a.card-link { text-decoration: none; color: inherit; display: block; }
a.card-link:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -14px rgba(12,10,9,0.25); border-color: var(--color-accent); }
a.card-link:hover h3 { color: var(--color-accent); }

/* === Testimonial === */
.testimonial {
  margin: 0 auto;
  max-width: 640px;
  padding: 2rem 0;
  text-align: center;
  border: none;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .95rem;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === Stats === */
.stats .stat { text-align: center; padding: 1rem; }
.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: .75rem;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 5rem 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,250,249,0.85); margin-bottom: 2rem; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid rgba(12,10,9,0.12);
  padding: 1.25rem 0;
}
.faq details:first-child { border-top: 1px solid rgba(12,10,9,0.12); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  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: '+'; color: var(--color-accent); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 1rem; color: var(--color-secondary); }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-weight: 600; font-size: .95rem; }
.form-row input, .form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(12,10,9,0.2);
  border-radius: 2px;
  background: var(--color-neutral-light);
  color: var(--color-primary);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}
.form-consent {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--color-secondary);
}
.form-consent input { margin-top: .25rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250,250,249,0.8);
  padding: 4rem 1.25rem 2rem;
}
.site-footer a { color: rgba(250,250,249,0.85); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer__grid {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer .logo--footer img { height: 60px; filter: invert(1) brightness(1.2); margin-bottom: 1rem; }
.tagline { color: rgba(250,250,249,0.65); font-size: .95rem; }
.site-footer address { font-style: normal; margin-bottom: 1.25rem; line-height: 1.8; }
.legal-links { display: flex; flex-direction: row !important; gap: 1.25rem; font-size: .9rem; }
.copyright {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  font-size: .85rem;
  color: rgba(250,250,249,0.5);
  border-top: 1px solid rgba(250,250,249,0.1);
  padding-top: 1.5rem;
}

/* === 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.5rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  max-width: 520px;
  margin-inline: auto;
  font-size: .92rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; }
.cookie-banner a { color: var(--color-accent); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button {
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .6rem 1rem;
  border: 1px solid rgba(250,250,249,0.25);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
  border-radius: 2px;
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-neutral-light); }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(250,250,249,0.15); }
.cookie-banner__prefs label { display: flex; gap: .5rem; align-items: center; font-size: .9rem; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: .5rem; }
