:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Lora', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius: 10px;
  --shadow-soft: 0 20px 45px -25px rgba(42, 31, 24, 0.35);
}

/* === Reset === */
*, *::before, *::after { 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%; display: block; }
a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 .6em; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.25rem;
  background: rgba(251, 245, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  background: transparent; border: 0; color: var(--color-neutral-dark);
  padding: .4rem; cursor: pointer; display: inline-flex;
}
.primary-nav {
  display: none; flex-direction: column; gap: .5rem;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  text-decoration: none; color: var(--color-neutral-dark);
  font-weight: 500; padding: .5rem 0;
  border-bottom: 1px solid rgba(42, 31, 24, 0.06);
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .site-header { padding: 1rem 2.5rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex; flex-direction: row; gap: 2rem;
    position: static; padding: 0; background: transparent; border: 0;
  }
  .primary-nav a { border: 0; padding: 0; }
}

/* === Hero (fullscreen) === */
.hero--full {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-neutral-light);
  overflow: hidden;
  padding: 4rem 1.25rem;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(42, 31, 24, 0.45), rgba(42, 31, 24, 0.7));
  z-index: 1;
}
.hero__inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 780px;
}
.hero__inner h1 { color: var(--color-neutral-light); margin-bottom: .3em; }
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--color-secondary);
  max-width: 52ch; margin: 0 auto 2rem;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .15em;
  font-size: .78rem; font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  padding: .95rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 0; cursor: pointer;
  font-size: 1rem;
  transition: transform .15s ease, background .2s ease;
}
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: #8a3d24; color: var(--color-neutral-light); transform: translateY(-1px); }
.btn--accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn--accent:hover { background: #2e4636; color: var(--color-neutral-light); transform: translateY(-1px); }

/* === Sections === */
.section {
  padding: 4.5rem 1.25rem;
  max-width: 1160px; margin: 0 auto;
}
.section--narrow {
  max-width: 720px; margin: 0 auto;
  padding: 4rem 1.25rem;
}
.section--narrow h2 { text-align: center; }
.section--narrow p { font-size: 1.1rem; line-height: 1.75; }
.section--tinted { background: var(--color-secondary); max-width: none; }
.section--tinted > * { max-width: 1160px; margin-left: auto; margin-right: auto; }
.section--quote { max-width: 820px; padding: 3rem 1.25rem; }
.section__title { text-align: center; margin-bottom: 2.5rem; }
.section__lede { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; color: rgba(42, 31, 24, 0.75); }

/* === Cards grid === */
.grid { display: grid; gap: 1.5rem; }
.grid--cards { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid--cards { grid-template-columns: repeat(4, 1fr); }
  .grid--two { grid-template-columns: repeat(2, 1fr); }
  .grid--three { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--color-neutral-light);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(42, 31, 24, 0.1);
  box-shadow: var(--shadow-soft);
}
.card h3 { margin-bottom: .5em; }
.card p { margin-bottom: 0; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-secondary); color: var(--color-accent);
  margin-bottom: 1rem;
}
.card-link {
  display: block; text-decoration: none; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(42, 31, 24, 0.5);
  color: inherit;
}
.card-link h3 { color: var(--color-primary); }

/* === Quote === */
.quote {
  margin: 0; text-align: center;
  padding: 2rem 1rem;
  font-family: var(--font-heading);
}
.quote p {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  max-width: 52ch; margin: 0 auto 1.25rem;
}
.quote cite {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-accent);
  font-size: .95rem;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 4rem 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: var(--color-secondary); margin-bottom: 1.75rem; }

/* === Article detail === */
.article {
  max-width: 65ch; margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}
.article__header { margin-bottom: 2rem; }
.article__header .eyebrow { color: var(--color-primary); margin-bottom: .75rem; }
.article__lede {
  font-size: 1.25rem; line-height: 1.55;
  color: rgba(42, 31, 24, 0.75);
}
.article__hero {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 8px; margin: 2rem 0;
}
.article h2 {
  margin-top: 2.5rem; margin-bottom: 1rem;
  font-size: 1.6rem;
}
.article p {
  font-size: 1.125rem; line-height: 1.75;
  margin-block: 1.25rem;
}
.article__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(42, 31, 24, 0.15); }
.back-link {
  font-weight: 600; text-decoration: none;
  color: var(--color-primary);
}
.back-link:hover { color: var(--color-accent); }

/* === Hours === */
.hours { max-width: 560px; margin: 3rem auto 0; }
.hours h3 { text-align: center; margin-bottom: 1.25rem; }
.hours dl { margin: 0; padding: 0; }
.hours dl > div {
  display: flex; justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(42, 31, 24, 0.1);
}
.hours dt { font-weight: 600; }
.hours dd { margin: 0; color: rgba(42, 31, 24, 0.75); }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: .5rem; }
.contact-form label { font-weight: 600; margin-top: .75rem; font-size: .95rem; }
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(42, 31, 24, 0.2);
  border-radius: var(--radius);
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-primary); outline-offset: 1px;
  border-color: var(--color-primary);
}
.form-consent {
  display: flex; align-items: flex-start; gap: .6rem;
  font-weight: 400; font-size: .9rem;
  margin: 1rem 0; line-height: 1.5;
}
.form-consent input { margin-top: .25rem; flex: 0 0 auto; }
.contact-form .btn { align-self: flex-start; margin-top: .5rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3.5rem 1.25rem 1.5rem;
  margin-top: 2rem;
}
.site-footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  max-width: 1160px; margin: 0 auto 2rem;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.4fr; }
}
.site-footer h3 {
  color: var(--color-secondary);
  font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: var(--color-neutral-light); text-decoration: none; }
.site-footer a:hover { color: var(--color-secondary); }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.logo--footer img { height: 64px; filter: brightness(1) invert(0); }
.tagline { color: var(--color-secondary); font-family: var(--font-heading); font-style: italic; }
.legal-links { margin-top: 1rem; font-size: .9rem; }
.copyright {
  text-align: center;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 245, 232, 0.1);
  color: rgba(251, 245, 232, 0.7);
  font-size: .9rem;
}

/* === 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: var(--radius);
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.5);
  max-width: 640px;
}
@media (min-width: 720px) { .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; } }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .95rem; line-height: 1.5; }
.cookie-banner__actions {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.cookie-banner__actions button,
.cookie-banner__prefs button {
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  padding: .55rem 1rem; border-radius: 8px;
  border: 1px solid rgba(251, 245, 232, 0.25);
  background: transparent; color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-primary); border-color: var(--color-primary);
}
.cookie-banner__actions button:hover { background: rgba(251, 245, 232, 0.1); }
.cookie-banner__actions button[data-cookie-accept]:hover { background: #8a3d24; }
.cookie-banner__prefs {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(251, 245, 232, 0.15);
  display: flex; flex-direction: column; gap: .6rem;
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs button[data-cookie-save] {
  align-self: flex-start; margin-top: .5rem;
  background: var(--color-accent); border-color: var(--color-accent);
}
