/* === Tokens === */
:root {
  --color-primary: #3D5A3A;
  --color-secondary: #EFE9D9;
  --color-accent: #C09356;
  --color-neutral-dark: #1F1F1F;
  --color-neutral-light: #FAF7EF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --measure: 65ch;
  --radius: 12px;
  --shadow-soft: 0 18px 40px -28px rgba(31, 31, 31, 0.45);
}

/* === 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-neutral-dark);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration-color: rgba(61, 90, 58, 0.3); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.18; color: var(--color-neutral-dark); margin: 0 0 0.5em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); letter-spacing: -0.005em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
}
.nav-toggle {
  background: transparent;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-neutral-dark);
}
.primary-nav { display: none; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.primary-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-neutral-dark);
  padding: .25rem 0;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); border-bottom: 1px solid var(--color-accent); }
.primary-nav.is-open {
  display: block;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(31,31,31,0.08);
}
@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block; position: static; padding: 0; background: transparent; border: 0; }
  .primary-nav ul { flex-direction: row; gap: 2rem; }
}

/* === Hero (centered) === */
.hero--centered {
  text-align: center;
  padding: 3.5rem 1.25rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.hero--centered h1 {
  max-width: 22ch;
  margin: 0 auto 1.25rem;
}
.hero__sub {
  max-width: 52ch;
  margin: 0 auto 1.75rem;
  font-size: 1.15rem;
  color: rgba(31, 31, 31, 0.78);
}
.hero__cta { margin: 0 0 3rem; }
.hero__figure {
  margin: 2.5rem auto 0;
  max-width: 1100px;
}
.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .hero--centered { padding: 6rem 1.5rem 5rem; }
}

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

/* === Section === */
.section { padding: 3.5rem 1.25rem; }
.section__inner { max-width: 1100px; margin: 0 auto; }
.section__inner--narrow { max-width: 760px; }
.section__head { text-align: center; max-width: 56ch; margin: 0 auto 2.5rem; }
.section__sub { color: rgba(31, 31, 31, 0.7); font-size: 1.05rem; margin: 0; }
.section__figure { margin: 2rem 0 0; }
.section__figure img { aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.section--intro .section__inner { max-width: 720px; text-align: left; }
.section--intro h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
@media (min-width: 768px) {
  .section { padding: 5rem 1.5rem; }
}

/* === Highlights / cards === */
.section--highlights { background: var(--color-secondary); }
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(192, 147, 86, 0.15);
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card h3 { color: var(--color-primary); }
.card p { margin: 0; color: rgba(31, 31, 31, 0.85); }

/* === Quote === */
.section--quote { background: var(--color-neutral-light); }
.quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--color-neutral-dark);
  position: relative;
  padding: 1rem 0;
}
.quote p { margin: 0 0 1.25rem; font-style: italic; }
.quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

/* === 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(250, 247, 239, 0.85); margin-bottom: 1.5rem; }

/* === FAQ === */
.faq details {
  border-top: 1px solid rgba(31, 31, 31, 0.12);
  padding: 1.25rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid rgba(31, 31, 31, 0.12); }
.faq summary {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 1rem 0 0; color: rgba(31, 31, 31, 0.82); }

/* === Form === */
.contact-form { display: grid; gap: 1.25rem; }
.form-row { margin: 0; display: grid; gap: .4rem; }
.form-row label { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; }
.form-row input, .form-row textarea {
  font: inherit;
  font-family: var(--font-body);
  padding: .8rem 1rem;
  border: 1px solid rgba(31, 31, 31, 0.18);
  border-radius: 8px;
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-color: var(--color-accent);
}
.form-row--submit { justify-items: start; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 247, 239, 0.82);
  padding: 3.5rem 1.25rem 1.5rem;
  margin-top: 2rem;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.site-footer h2 {
  color: var(--color-neutral-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a { color: var(--color-neutral-light); text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1.25rem; }
.legal-links { font-size: 0.9rem; }
.logo--footer img { height: 64px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.site-footer__base {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 239, 0.12);
  font-size: 0.85rem;
  color: rgba(250, 247, 239, 0.6);
}
@media (min-width: 800px) {
  .site-footer__inner { grid-template-columns: 1.2fr 1fr 1.4fr; }
}

/* === 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.55);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  z-index: 100;
  font-size: 0.92rem;
}
  align-self: flex-start;
  background: var(--color-accent);
  color: var(--color-neutral-dark);
  border: 0;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}




:root{--brand-shift:23;--site-accent:hsl(265 44% 38%);--site-warm:hsl(355 36% 92%);}
.logo{min-width:0;max-width:calc(100% - 64px);overflow:hidden;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;}
.logo img{max-width:min(252px,100%);height:auto;object-fit:contain;}
.site-header,.legal-header{overflow-x:clip;}
.nav-list,.primary-nav ul{min-width:0;}
.contact-form input,.contact-form textarea,button,a{overflow-wrap:anywhere;}
@media (max-width: 720px){
  body{overflow-x:hidden;}
  .logo img{max-width:min(218px,70vw);}
  .hero,.hero-card,.site-header,.site-footer,main,section{max-width:100%;}
}
