:root {
  --color-primary: #3D5A3A;
  --color-secondary: #EFE9D9;
  --color-accent: #C09356;
  --color-neutral-dark: #1F1F1F;
  --color-neutral-light: #FAF7EF;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --maxw: 1180px;
}

/* === 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.6;
  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; color: var(--color-neutral-dark); letter-spacing: -0.01em; }
h1 { line-height: 1.12; }
h2 { line-height: 1.2; }
h3 { line-height: 1.3; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.2rem; margin: 0 0 1rem; }

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
  flex-wrap: wrap;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .site-header { padding: 1.75rem 2rem; }
}
.primary-nav { display: flex; align-items: center; }
.nav-toggle {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.5rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 4px;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.nav-list.open { display: flex; }
.nav-list a {
  display: inline-block;
  padding: 0.4rem 0;
  color: var(--color-neutral-dark);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-list a[aria-current="page"] { color: var(--color-primary); border-bottom: 2px solid var(--color-accent); }
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-list {
    display: flex;
    flex-direction: row;
    width: auto;
    gap: 2rem;
    margin-top: 0;
  }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { background: #2f4a2c; }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-dark); }
.btn-accent:hover { background: #a87d44; color: var(--color-neutral-light); }

/* === Hero (centered) === */
.hero-centered {
  text-align: center;
  padding: 3rem 1.25rem 4rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero-centered h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  max-width: 28ch;
  margin: 0 auto 1.25rem;
  font-weight: 600;
}
.hero-sub {
  max-width: 52ch;
  margin: 0 auto 1.75rem;
  font-size: 1.15rem;
  color: #44443d;
}
.hero-cta { margin: 0 0 3rem; }
.hero-figure {
  margin: 0;
  max-width: 100%;
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .hero-centered { padding: 5rem 2rem 6rem; }
}

/* === Sections === */
.section {
  padding: 4rem 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section { padding: 6rem 2rem; }
}
.section-head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 3rem;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
}
.section-head p {
  color: #54544c;
}

/* === Intro === */
.intro-text {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}
.intro-text-wide { max-width: 70ch; }
.intro-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 1.25rem;
}
.intro-text p { font-size: 1.075rem; color: #44443d; line-height: 1.75; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.intro-grid .intro-text { text-align: left; margin: 0; }
.intro-figure { margin: 0; }
.intro-figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
}
@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

/* === Card grid === */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--color-secondary);
  padding: 2rem 1.75rem;
  border-radius: 6px;
  border: 1px solid rgba(31,31,31,0.06);
}
.card h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.25rem;
  color: var(--color-primary);
}
.card p { color: #3a3a33; font-size: 0.98rem; line-height: 1.6; margin: 0; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-neutral-light);
  font-size: 1.2rem;
}

/* === Testimonial === */
.section-testimonial { padding-top: 2rem; padding-bottom: 2rem; }
.testimonial {
  max-width: 64ch;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
  position: relative;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
  font-style: italic;
  margin: 0 0 1.5rem;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 4rem 1.25rem;
}
.cta-band-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-band h2 {
  color: var(--color-neutral-light);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}
.cta-band p {
  color: rgba(250,247,239,0.85);
  margin: 0 auto 1.75rem;
  max-width: 56ch;
  font-size: 1.075rem;
}
@media (min-width: 768px) {
  .cta-band { padding: 5rem 2rem; }
}

/* === FAQ === */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details {
  border-bottom: 1px solid rgba(31,31,31,0.12);
  padding: 1.25rem 0;
}
.faq-list summary {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  color: var(--color-neutral-dark);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 0.75rem 0 0;
  color: #44443d;
  line-height: 1.65;
}

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250,247,239,0.82);
  padding: 4rem 1.25rem 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-col h2 {
  color: var(--color-neutral-light);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(250,247,239,0.78); }
.footer-col a:hover { color: var(--color-accent); }
.footer-col address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.logo-footer img { height: 64px; filter: brightness(0) invert(1) opacity(0.92); }
.legal-links { margin-top: 1rem !important; font-size: 0.92rem; }
.copyright {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,247,239,0.12);
  font-size: 0.88rem;
  color: rgba(250,247,239,0.6);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; }
  .site-footer { padding: 5rem 2rem 2rem; }
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 50;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cookie-banner p { margin: 0; font-size: 0.95rem; line-height: 1.5; }
.cookie-banner button {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
  border: none;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  cursor: pointer;
  align-self: flex-start;
}
.cookie-banner button:hover { background: #a87d44; color: var(--color-neutral-light); }
body.cookies-accepted .cookie-banner { display: none; }
@media (min-width: 640px) {
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner button { align-self: auto; }
}
