:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
}

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

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}
.logo img { height: 72px; width: auto; display: block; }
.logo:hover { text-decoration: none; }
.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-neutral-light);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
}
.site-nav.open { display: flex; }
.site-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(42, 31, 24, 0.06);
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-neutral-dark);
}

@media (min-width: 900px) {
  .site-header { padding: 1.25rem 2.5rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 2.5rem;
    padding: 0;
    background: transparent;
    border: none;
  }
  .site-nav a {
    padding: 0;
    border: none;
    font-size: 1rem;
  }
  .site-nav a:hover { color: var(--color-primary); text-decoration: none; }
}

/* === Hero (fullscreen) === */
.hero--full {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(42, 31, 24, 0.45), rgba(42, 31, 24, 0.65));
  z-index: -1;
}
.hero__inner {
  max-width: 760px;
  color: var(--color-neutral-light);
}
.hero__inner h1 { color: var(--color-neutral-light); margin-bottom: 1.25rem; }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(251, 245, 232, 0.92);
  max-width: 56ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: transparent;
  color: var(--color-neutral-light);
  text-decoration: none;
  border-color: var(--color-neutral-light);
}

/* === Sections === */
.section {
  padding: 4.5rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.section--narrow { max-width: 760px; }
.section__head { margin-bottom: 2.5rem; text-align: center; }
.section__sub { color: rgba(42, 31, 24, 0.7); max-width: 56ch; margin: 0 auto; }

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

/* === Intro === */
.intro { text-align: center; }
.intro p { font-size: 1.0625rem; line-height: 1.85; color: rgba(42, 31, 24, 0.88); }

/* === Grids === */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
}

/* === Cards === */
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(42, 31, 24, 0.1);
  border-left: 3px solid var(--color-primary);
  padding: 1.75rem 1.5rem;
}
.card h3 { margin-bottom: 0.75rem; color: var(--color-neutral-dark); }
.card p { margin: 0; font-size: 0.98rem; line-height: 1.7; color: rgba(42, 31, 24, 0.85); }
.card--service { padding: 2rem 1.75rem; }

/* === Testimonial === */
.testimonial { text-align: center; max-width: 820px; }
.testimonial blockquote {
  margin: 0;
  padding: 2rem 0;
  position: relative;
}
.testimonial blockquote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: -1rem;
  opacity: 0.6;
}
.testimonial blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-neutral-dark);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(42, 31, 24, 0.65);
}

/* === CTA band === */
.cta-band {
  position: relative;
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-neutral-light);
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(160, 74, 46, 0.85), rgba(42, 31, 24, 0.88));
  z-index: -1;
}
.cta-band--solid {
  background: var(--color-primary);
}
.cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 1rem; }
.cta-band p { color: rgba(251, 245, 232, 0.92); margin-bottom: 2rem; font-size: 1.05rem; }

/* === Stats === */
.stats__grid { gap: 1.5rem; }
.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 2px solid var(--color-primary);
}
.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.stat__label {
  display: block;
  font-size: 0.92rem;
  color: rgba(42, 31, 24, 0.75);
  line-height: 1.5;
}

/* === FAQ === */
.faq { max-width: 820px; }
.faq__list { margin-top: 1rem; }
.faq details {
  border-bottom: 1px solid rgba(42, 31, 24, 0.12);
  padding: 1.25rem 0;
}
.faq details:first-child { border-top: 1px solid rgba(42, 31, 24, 0.12); }
.faq summary {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding-right: 2rem;
  position: relative;
  list-style: none;
  color: var(--color-neutral-dark);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin: 1rem 0 0;
  color: rgba(42, 31, 24, 0.82);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-secondary);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}
.site-footer__cols {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer { padding: 5rem 2rem 2rem; }
  .site-footer__cols { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; }
}
.site-footer h3 {
  color: var(--color-neutral-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.logo--footer img {
  height: 64px;
  filter: brightness(0) invert(1) opacity(0.95);
}
.tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: rgba(240, 224, 192, 0.85);
  margin-top: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a, .footer-contact a {
  color: var(--color-secondary);
  font-size: 0.95rem;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--color-neutral-light); }
.footer-contact p { font-size: 0.95rem; color: rgba(240, 224, 192, 0.85); line-height: 1.7; }
.legal-links { font-size: 0.85rem; margin-top: 1.5rem; }
.legal-links a { color: rgba(240, 224, 192, 0.7); }
.copyright {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(240, 224, 192, 0.55);
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 224, 192, 0.15);
  margin: 0;
}

/* === 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: 4px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
  max-width: 560px;
  margin-left: auto;
}
.cookie-banner p { margin: 0; font-size: 0.92rem; line-height: 1.55; }
.cookie-banner button {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  border: none;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  align-self: flex-start;
}
.cookie-banner button:hover { background: var(--color-accent); }
body.cookies-accepted .cookie-banner { display: none; }

@media (min-width: 600px) {
  .cookie-banner { flex-direction: row; align-items: center; left: auto; right: 1.5rem; bottom: 1.5rem; }
  .cookie-banner button { align-self: auto; }
}
