:root {
  --color-primary: #2F4A2C;
  --color-secondary: #E8E2D4;
  --color-accent: #A87B3D;
  --color-neutral-dark: #1A1F1A;
  --color-neutral-light: #F7F4ED;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 30px 60px -30px rgba(26, 31, 26, 0.25);
  --shadow-soft: 0 10px 30px -20px rgba(26, 31, 26, 0.3);
}

/* === Base === */
* { 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-secondary);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-accent);
  margin: 0 0 1rem;
  font-weight: 600;
}

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(47, 74, 44, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo img { height: 72px; width: auto; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
}
.primary-nav {
  flex-basis: 100%;
  display: none;
  margin-top: 1rem;
}
.primary-nav.is-open { display: block; }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.primary-nav a {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-neutral-dark);
}
.primary-nav a[aria-current="page"] { color: var(--color-accent); }

/* === Hero card === */
.hero {
  padding: 3rem 1rem 2rem;
  background: var(--color-secondary);
  background-image: radial-gradient(circle at 20% 0%, rgba(168, 123, 61, 0.08), transparent 60%),
                    radial-gradient(circle at 90% 100%, rgba(47, 74, 44, 0.08), transparent 60%);
}
.hero-card__inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(26, 31, 26, 0.78);
  max-width: 56ch;
  margin-bottom: 1.5rem;
}
.hero-card__figure {
  margin: 2rem 0 0;
}
.hero-card__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { background: var(--color-accent); color: var(--color-neutral-light); transform: translateY(-1px); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn-accent:hover { background: var(--color-primary); color: var(--color-neutral-light); transform: translateY(-1px); }

/* === Sections === */
.section {
  padding: 3.5rem 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}
.section-narrow {
  max-width: 720px;
}
.section-narrow h2 { text-align: left; }
.section__title {
  text-align: center;
  margin-bottom: 2rem;
}

/* === Grid + cards === */
.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.card {
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card h3 { color: var(--color-primary); margin: 0.25rem 0 0.5rem; }
.card p { margin: 0; color: rgba(26, 31, 26, 0.85); }
.card__icon { font-size: 1.6rem; }
.card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(26, 31, 26, 0.4);
}

/* === Testimonial === */
.testimonial-section { text-align: center; }
.testimonial {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  text-align: left;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.95rem;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 3.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(247, 244, 237, 0.85); margin-bottom: 1.5rem; }

/* === Gallery === */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* === FAQ === */
.faq details {
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  float: right;
  color: var(--color-accent);
  font-weight: 400;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: rgba(26, 31, 26, 0.85); }

/* === Article detail === */
.article-detail {
  max-width: 65ch;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
}
.article-detail__header { margin-bottom: 1.5rem; }
.article-detail__sub {
  font-size: 1.2rem;
  color: rgba(26, 31, 26, 0.7);
  margin-bottom: 0;
}
.article-detail__hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-block: 2rem;
}
.article-detail p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-block: 1.25rem;
}
.article-detail h2 {
  margin-top: 2.5rem;
  font-size: 1.6rem;
}
.article-detail__footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(47, 74, 44, 0.18);
}
.back-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-accent);
}
.back-link:hover { color: var(--color-primary); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.site-footer h3 {
  color: var(--color-neutral-light);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: var(--color-secondary); text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer address { font-style: normal; color: var(--color-secondary); margin-bottom: 1rem; line-height: 1.7; }
.legal-links { margin-top: 1rem; font-size: 0.9rem; }
.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 244, 237, 0.12);
  color: rgba(247, 244, 237, 0.6);
  font-size: 0.85rem;
}
.site-footer .logo img { height: 56px; }

/* === 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: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 100;
  font-size: 0.92rem;
}
.cookie-banner p { margin: 0; }
.cookie-banner button {
  align-self: flex-start;
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: 0;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.cookie-banner button:hover { background: var(--color-primary); }
body.cookies-accepted .cookie-banner { display: none; }

/* === Responsive === */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; max-width: 720px; left: 50%; right: auto; transform: translateX(-50%); }
}
@media (min-width: 768px) {
  body { font-size: 18px; }
  .logo img { height: 96px; }
  .site-header { padding: 1.5rem 2.5rem; flex-wrap: nowrap; }
  .nav-toggle { display: none; }
  .primary-nav { display: block; flex-basis: auto; margin-top: 0; }
  .primary-nav ul { flex-direction: row; gap: 2rem; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .hero-card__inner { padding: 4rem 3.5rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 5rem 2rem; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
