:root {
  --color-primary: #15803D;
  --color-secondary: #22C55E;
  --color-accent: #EC4899;
  --color-neutral-dark: #14532D;
  --color-neutral-light: #F0FDF4;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  --border-soft: rgba(20, 83, 45, 0.12);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--color-neutral-dark); background: var(--color-neutral-light); line-height: 1.6; font-size: 17px; }
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-neutral-dark); }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); margin: 0 0 1rem; max-width: 22ch; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0 0 1rem; }
h3 { font-size: 1.35rem; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.25rem; }

/* === Accessibility === */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: .5rem 1rem; z-index: 10000; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* === Logo === */
.logo { display: inline-block; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }

/* === Layout: sidebar-nav === */
.layout { display: block; }
.sidebar { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 1.25rem 1.5rem; }
.sidebar__brand { margin-bottom: 1rem; }
.sidebar__brand .logo img { filter: brightness(1.2); background: var(--color-neutral-light); padding: .5rem .75rem; border-radius: 6px; }
.sidebar__nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.sidebar__nav a { color: var(--color-neutral-light); text-decoration: none; font-size: .95rem; padding: .35rem 0; display: inline-block; border-bottom: 1px solid transparent; }
.sidebar__nav a:hover, .sidebar__nav a[aria-current="page"] { border-bottom-color: var(--color-secondary); color: #fff; }
.sidebar__foot { display: none; }

@media (min-width: 900px) {
  .layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
  .sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 2rem 1.5rem; overflow-y: auto; }
  .sidebar__brand { margin-bottom: 2.5rem; }
  .sidebar__brand .logo img { background: var(--color-neutral-light); padding: .75rem 1rem; border-radius: 8px; }
  .sidebar__nav { flex: 1; }
  .sidebar__nav ul { display: flex; flex-direction: column; gap: .25rem; }
  .sidebar__nav a { display: block; padding: .5rem .75rem; border-radius: 6px; border-bottom: none; }
  .sidebar__nav a:hover, .sidebar__nav a[aria-current="page"] { background: rgba(240, 253, 244, 0.08); color: #fff; }
  .sidebar__foot { display: block; font-size: .8rem; opacity: .65; padding-top: 1.5rem; border-top: 1px solid rgba(240, 253, 244, 0.12); }
}

.main { padding: 2rem 1.25rem; max-width: 1100px; margin: 0 auto; width: 100%; }
@media (min-width: 900px) { .main { padding: 3rem 3rem; } }

/* === Hero === */
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: .78rem; color: var(--color-primary); font-weight: 700; margin: 0 0 .75rem; }
.hero { padding-block: 1rem 3rem; border-bottom: 1px solid var(--border-soft); margin-bottom: 3rem; }
.hero__sub { font-size: 1.15rem; color: var(--color-neutral-dark); opacity: .85; max-width: 48ch; margin-bottom: 1.5rem; }
.hero__cta { margin-bottom: 2rem; }
.hero__figure { margin: 2rem 0 0; }
.hero__figure img { aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; width: 100%; }

/* === Buttons === */
.btn { display: inline-block; padding: .85rem 1.75rem; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: .95rem; letter-spacing: 0.02em; transition: transform .15s ease, background .15s ease; border: none; cursor: pointer; font-family: var(--font-body); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-neutral-dark); color: #fff; }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #be1c6d; color: #fff; }

/* === Sections === */
.section { padding-block: 3rem; }
.section--narrow { max-width: 68ch; margin: 0 auto; }
.section--narrow p { font-size: 1.08rem; line-height: 1.75; }

/* === Grid === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .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); }
}

/* === Cards === */
.card { background: #fff; border: 1px solid var(--border-soft); border-radius: 10px; padding: 1.5rem; }
.card .icon { width: 32px; height: 32px; color: var(--color-primary); margin-bottom: .75rem; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .97rem; margin: 0; }
a.card-link { display: block; text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease; }
a.card-link:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -18px rgba(20, 83, 45, 0.35); }

/* === Split section === */
.section--split { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; padding-block: 3rem; }
@media (min-width: 900px) { .section--split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.split__figure img { border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* === Quote === */
.section--quote { padding-block: 3rem; }
.section--quote blockquote { margin: 0; max-width: 60ch; margin-inline: auto; text-align: center; }
.section--quote blockquote p { font-family: var(--font-heading); font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.45; font-style: italic; color: var(--color-neutral-dark); }
.section--quote cite { display: block; margin-top: 1rem; font-size: .95rem; font-style: normal; color: var(--color-primary); font-weight: 700; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding: 3rem 1.5rem; border-radius: 12px; text-align: center; margin: 3rem 0; }
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band p { max-width: 55ch; margin: 0 auto 1.5rem; opacity: .95; }
.cta-band .btn--accent { background: var(--color-accent); }

/* === Contact grid / form === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; } }
.contact-card { background: #fff; border: 1px solid var(--border-soft); border-radius: 12px; padding: 1.75rem; }
.contact-card h2 { margin-top: 0; font-size: 1.5rem; }
.contact-card h3 { margin-top: 1.5rem; font-size: 1.15rem; }
.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px dotted var(--border-soft); font-size: .95rem; }
.hours li:last-child { border-bottom: none; }

.contact-form { background: #fff; border: 1px solid var(--border-soft); border-radius: 12px; padding: 1.75rem; display: flex; flex-direction: column; gap: .5rem; }
.contact-form h2 { margin-top: 0; font-size: 1.5rem; }
.contact-form label { font-size: .9rem; font-weight: 700; margin-top: .5rem; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea { padding: .7rem .85rem; border: 1px solid var(--border-soft); border-radius: 6px; font-family: var(--font-body); font-size: 1rem; background: var(--color-neutral-light); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; background: #fff; }
.contact-form button { margin-top: 1rem; align-self: flex-start; }
.form-consent { display: flex; gap: .5rem; align-items: flex-start; font-size: .85rem; font-weight: 400; margin-top: 1rem; }
.form-consent input { margin-top: 3px; }

/* === Footer === */
.page-foot { margin-top: 4rem; padding: 2.5rem 0 1.5rem; border-top: 1px solid var(--border-soft); }
.foot__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .foot__grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; } }
.foot__brand { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin: 0 0 .35rem; }
.page-foot nav ul, .foot__legal { list-style: none; padding: 0; margin: 0; }
.page-foot nav li, .foot__legal li { padding: .2rem 0; }
.page-foot nav a, .foot__legal a { color: var(--color-neutral-dark); text-decoration: none; font-size: .95rem; }
.page-foot nav a:hover, .foot__legal a:hover { color: var(--color-primary); text-decoration: underline; }
.foot__legal { margin-top: 1rem; padding-top: 1rem; border-top: 1px dotted var(--border-soft); }
.foot__copy { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-soft); font-size: .85rem; color: var(--color-neutral-dark); opacity: .7; }

/* === 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.25rem; border-radius: 10px; max-width: 640px; margin-inline: auto; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5); }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button { padding: .55rem 1rem; border: 1px solid var(--color-neutral-light); background: transparent; color: var(--color-neutral-light); border-radius: 4px; font-size: .88rem; cursor: pointer; font-family: var(--font-body); }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; font-weight: 700; }
.cookie-banner__actions button:hover { background: rgba(240,253,244,0.12); }
.cookie-banner__actions button[data-cookie-accept]:hover { background: #be1c6d; }
.cookie-banner__prefs { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(240,253,244,0.2); display: flex; flex-direction: column; gap: .5rem; }
.cookie-banner__prefs label { font-size: .88rem; display: flex; gap: .5rem; align-items: center; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: .5rem; padding: .5rem 1rem; background: var(--color-primary); color: #fff; border: none; border-radius: 4px; cursor: pointer; font-family: var(--font-body); font-weight: 700; }
