:root {
  --color-primary: #7A2E1F;
  --color-secondary: #E8D9B2;
  --color-accent: #1F3A2E;
  --color-neutral-dark: #1B1B1B;
  --color-neutral-light: #FAF6EE;
  --border: rgba(27,27,27,0.12);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  --sidebar-w: 240px;
}

/* === Base === */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
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-accent); }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; margin: 0 0 .8rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: .78rem;
  color: var(--color-primary);
  margin: 0 0 1rem;
  font-weight: 700;
}
.lede { font-size: 1.15rem; color: #4a4642; margin-bottom: 1.25rem; }

.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; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .85rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: var(--color-accent); color: var(--color-neutral-light); }
.btn--light { background: var(--color-neutral-light); color: var(--color-primary); }
.btn--light:hover { background: var(--color-secondary); }

/* === Sidebar layout === */
.layout-sidebar { min-height: 100vh; }
.sidebar {
  background: var(--color-neutral-dark);
  color: var(--color-secondary);
  padding: 1rem 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
}
.sidebar__nav { display: none; width: 100%; }
.sidebar__nav.is-open { display: block; }
.sidebar__nav ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.sidebar__nav li { margin: 0; }
.sidebar__nav a {
  display: block;
  padding: .75rem 0;
  color: var(--color-secondary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  border-bottom: 1px solid rgba(232,217,178,0.15);
}
.sidebar__nav a[aria-current="page"] { color: var(--color-neutral-light); }
.sidebar__nav a:hover { color: var(--color-neutral-light); }
.sidebar__foot { display: none; font-size: .8rem; color: rgba(232,217,178,0.6); margin: 1.5rem 0 0; }
.nav-toggle {
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid rgba(232,217,178,0.4);
  border-radius: 2px;
  padding: .4rem;
  cursor: pointer;
  display: inline-flex;
}

.content {
  padding: 2rem 1.25rem 0;
  max-width: 100%;
}

/* === Hero === */
.hero {
  padding: 1.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.hero__sub {
  font-size: 1.2rem;
  color: #4a4642;
  max-width: 55ch;
  margin-bottom: 1.75rem;
}
.hero__cta { margin: 0 0 2.5rem; }
.hero__figure { margin: 0; }
.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

/* === Intro === */
.intro {
  max-width: 68ch;
  margin: 0 0 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.intro p { font-size: 1.05rem; line-height: 1.75; }

/* === Section head === */
.section-head { margin-bottom: 2rem; max-width: 60ch; }

/* === Highlights grid === */
.grid-section { margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3 { margin-bottom: .5rem; color: var(--color-primary); }
.card p { font-size: .98rem; color: #3a3634; margin: 0; }
.card__icon { color: var(--color-primary); margin-bottom: .75rem; }
.card__more { display: inline-block; margin-top: 1rem; color: var(--color-primary); font-weight: 700; font-size: .9rem; letter-spacing: .02em; }
.card-link { display: block; text-decoration: none; color: inherit; }
.card-link:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -20px rgba(0,0,0,0.25); border-color: var(--color-primary); }

/* === Testimonial === */
.testimonial {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  text-align: center;
}
.testimonial h2 { margin-bottom: 1.5rem; }
.testimonial blockquote { margin: 0 auto; max-width: 60ch; }
.testimonial blockquote p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--color-neutral-dark);
}
.testimonial cite { display: block; font-style: normal; font-size: .9rem; color: #6b6560; letter-spacing: .04em; }

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 4px;
  margin: 3rem 0;
}
.cta-band h2 { color: var(--color-secondary); }
.cta-band p { max-width: 55ch; margin-left: auto; margin-right: auto; }

/* === Contact band === */
.contact-band {
  background: var(--color-secondary);
  padding: 2.5rem 1.5rem;
  border-radius: 4px;
  margin: 3rem 0;
}
.contact-band h2 { color: var(--color-primary); }

/* === Contact grid & form === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-info p { font-size: .98rem; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-bottom: 1px solid var(--border); font-weight: 400; }
.hours th { color: #4a4642; }

.contact-form label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .35rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--color-neutral-light);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-neutral-dark);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; font-weight: 400; margin: 1rem 0; }
.form-consent input { width: auto; margin-top: .25rem; }

/* === FAQ === */
.faq { margin-bottom: 3rem; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-neutral-dark);
  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;
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: .75rem; color: #3a3634; }

/* === Article === */
.article {
  max-width: 65ch;
  margin: 0 auto 3rem;
  padding: 1rem 0;
}
.article h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.article__sub { font-size: 1.2rem; color: #4a4642; margin-bottom: 1.5rem; }
.article__figure { margin: 2rem 0; }
.article__figure img { aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; }
.article > p { font-size: 1.125rem; line-height: 1.75; margin-block: 1.25rem; }
.article__foot { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.back-link { font-weight: 700; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

/* === Footer === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
  color: #4a4642;
  font-size: .92rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer__brand { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-primary); margin: 0 0 .5rem; font-weight: 600; }
.site-footer nav ul { list-style: none; margin: 0; padding: 0; }
.site-footer nav li { margin-bottom: .4rem; }
.site-footer nav a { color: var(--color-neutral-dark); text-decoration: none; }
.site-footer nav a:hover { color: var(--color-primary); }
.site-footer address { font-style: normal; }
.site-footer address a { color: var(--color-neutral-dark); }
.legal-links { margin-top: 1rem; font-size: .85rem; }
.site-footer__copy {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: .82rem;
  color: #7a7570;
}

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

/* === Desktop === */
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 2fr 1fr 2fr; }
}

@media (min-width: 900px) {
  body.layout-sidebar { display: grid; grid-template-columns: var(--sidebar-w) 1fr; }
  .sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem 1.5rem;
    gap: 0;
  }
  .logo img { height: 60px; }
  .sidebar__nav { display: block !important; margin-top: 2rem; flex: 1; }
  .sidebar__nav ul { margin: 0; }
  .sidebar__nav a { font-size: 1.15rem; padding: .55rem 0; }
  .sidebar__foot { display: block; margin-top: auto; }
  .nav-toggle { display: none; }
  .content { padding: 3rem 3rem 0; max-width: 1100px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards--two { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 2rem 0 4rem; }
  .hero__figure img { aspect-ratio: 21 / 9; }
}

@media (min-width: 1100px) {
  .content { padding: 4rem 4rem 0; }
}
