:root {
  --color-primary: #7A2E1F;
  --color-secondary: #E8D9B2;
  --color-accent: #1F3A2E;
  --color-neutral-dark: #1B1B1B;
  --color-neutral-light: #FAF6EE;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --max: 1160px;
  --narrow: 720px;
  --radius: 10px;
}

/* === Base === */
*, *::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.65;
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { text-decoration: none; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-neutral-dark); margin: 0 0 .6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.container { max-width: var(--max); margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: var(--narrow); margin-inline: auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }
.lede { font-size: 1.15rem; color: #4a4340; margin-bottom: 1.5rem; }

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(27,27,27,.08);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .75rem;
  gap: 1rem;
}
.logo { display: inline-block; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
.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; width: 100%; }
.primary-nav.is-open { display: block; }
.primary-nav ul { list-style: none; padding: 0; margin: .5rem 0 0; display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a {
  display: block; padding: .65rem .25rem; text-decoration: none;
  color: var(--color-neutral-dark); font-weight: 600;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .header-inner { flex-wrap: nowrap; }
  .primary-nav { display: block; width: auto; }
  .primary-nav ul { flex-direction: row; gap: 1.5rem; margin: 0; }
  .primary-nav a { padding: .25rem 0; }
  .primary-nav a:hover { color: var(--color-primary); }
}

/* === Hero (centered) === */
.hero {
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-neutral-light) 100%);
  padding-block: 4rem;
  text-align: center;
}
.hero .container { display: flex; flex-direction: column; align-items: center; }
.hero h1 { max-width: 28ch; }
.hero-sub { max-width: 52ch; font-size: 1.15rem; color: #3a332f; margin: 0 auto 1.75rem; }
.hero-cta { margin: 0 0 2.5rem; }
.hero-figure { width: 100%; margin: 2rem 0 0; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 25px 60px -30px rgba(122,46,31,.35);
}
@media (min-width: 768px) {
  .hero { padding-block: 6rem; }
}

/* === Buttons === */
.btn {
  display: inline-block; text-decoration: none;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-family: var(--font-body);
  border: 2px solid transparent; cursor: pointer;
  font-size: 1rem; line-height: 1;
  transition: transform .15s ease, background .15s ease;
}
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { background: #601f14; }
.btn-secondary { background: var(--color-neutral-light); color: var(--color-primary); border-color: var(--color-primary); }
.btn-secondary:hover { background: var(--color-secondary); }

/* === Sections === */
.section { padding-block: 4rem; }
.section.alt { background: var(--color-secondary); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.section.intro .narrow { text-align: left; }
.section.intro h2 { text-align: left; }

/* === Highlights grid === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(27,27,27,.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card h3 { margin-top: .5rem; }
.card p { margin-bottom: 0; }
.card .icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 8px; background: var(--color-secondary); color: var(--color-primary); }
a.card-link { display: block; text-decoration: none; color: inherit; }
a.card-link:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -25px rgba(27,27,27,.35); }
a.card-link h3 { color: var(--color-primary); }

/* === Testimonial === */
.section.testimonial { background: var(--color-secondary); text-align: center; }
.section.testimonial blockquote {
  margin: 0 auto; max-width: 60ch;
  font-family: var(--font-heading);
  font-size: 1.35rem; line-height: 1.5; font-style: italic;
  color: var(--color-neutral-dark);
}
.section.testimonial cite {
  display: block; margin-top: 1.25rem;
  font-family: var(--font-body); font-style: normal;
  font-size: .95rem; font-weight: 600; color: var(--color-accent);
  letter-spacing: .04em; text-transform: uppercase;
}

/* === CTA band === */
.cta-band { background: var(--color-primary); color: var(--color-neutral-light); text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { max-width: 55ch; margin-inline: auto; }
.cta-band .btn-secondary { background: var(--color-neutral-light); color: var(--color-primary); border-color: var(--color-neutral-light); }
.cta-band .btn-secondary:hover { background: var(--color-secondary); border-color: var(--color-secondary); }

/* === Contact band === */
.contact-band { background: var(--color-neutral-light); text-align: center; }
.contact-band .contact-line { font-size: 1.05rem; margin: 1.5rem 0 2rem; }
.hours { max-width: 420px; margin: 2.5rem auto 0; text-align: left; }
.hours h3 { text-align: center; }
.hours table { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: .55rem .5rem; border-bottom: 1px solid rgba(27,27,27,.1); }
.hours th { text-align: left; font-weight: 600; }
.hours td { text-align: right; }

/* === Article detail === */
.article-detail { max-width: 65ch; margin: 3rem auto 4rem; padding-inline: 1.25rem; }
.article-head .eyebrow { color: var(--color-accent); }
.article-detail h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.article-sub { font-size: 1.25rem; color: #4a4340; margin: 0 0 2rem; }
.article-figure { margin: 0 0 2rem; }
.article-figure img { aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); width: 100%; }
.article-detail 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 rgba(27,27,27,.12); }
.back-link { font-weight: 600; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

/* === Contact form === */
.form-section { background: var(--color-secondary); }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; font-size: .95rem; }
.field input, .field textarea {
  font: inherit; padding: .75rem .9rem;
  border: 1px solid rgba(27,27,27,.2); border-radius: 8px;
  background: var(--color-neutral-light); color: inherit;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; line-height: 1.5; }
.form-consent input { margin-top: .25rem; }
.contact-form button { align-self: flex-start; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 2rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; }
.legal-links a { font-size: .9rem; opacity: .85; }
.logo--footer img { height: 60px; }
.tagline { color: rgba(250,246,238,.75); font-size: .95rem; }
.copyright { border-top: 1px solid rgba(250,246,238,.15); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .85rem; color: rgba(250,246,238,.7); }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; gap: 3rem; }
}

/* === 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.4rem; border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.5);
  max-width: 640px; margin-inline: auto;
  font-size: .95rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button {
  font: inherit; padding: .55rem 1rem; border-radius: 6px;
  border: 1px solid rgba(250,246,238,.35);
  background: transparent; color: var(--color-neutral-light); cursor: pointer;
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner [data-cookie-accept]:hover { background: #163024; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.cookie-banner__prefs label { display: flex; gap: .5rem; align-items: center; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: .5rem; background: var(--color-primary); border-color: var(--color-primary); }
