:root {
  --color-primary: #6B1F2E;
  --color-secondary: #F2E8D8;
  --color-accent: #3D5A47;
  --color-neutral-dark: #1A0F12;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow-lg: 0 30px 60px -30px rgba(26, 15, 18, 0.35);
  --shadow-sm: 0 6px 20px -10px rgba(26, 15, 18, 0.25);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
  line-height: 1.2;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(26, 15, 18, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
}
.nav-toggle {
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-neutral-dark);
  border-radius: 2px;
}
.primary-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  padding-top: 1rem;
  gap: .75rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: .5rem 0;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .site-header { padding: 1.25rem 3rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    padding-top: 0;
    gap: 2rem;
  }
}

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

/* === Hero card === */
.hero {
  padding: 3rem 1rem 4rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(107,31,46,0.08), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(61,90,71,0.08), transparent 50%),
    var(--color-secondary);
}
.hero-card__inner {
  max-width: 880px;
  margin-inline: auto;
  background: var(--color-neutral-light);
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero__sub {
  max-width: 52ch;
  margin: 1.25rem auto 1.75rem;
  font-size: 1.1rem;
  color: rgba(26, 15, 18, 0.75);
}
.hero-card__img {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero { padding: 5rem 2rem 6rem; }
  .hero-card__inner { padding: 4rem; }
}

/* === Intro === */
.intro {
  max-width: 760px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}
.intro p { font-size: 1.05rem; text-align: left; }
.intro p.section-sub { text-align: center; }
.section-sub {
  font-size: 1.1rem;
  color: rgba(26, 15, 18, 0.7);
  margin-bottom: 2rem;
}
.intro__cta { text-align: center; margin-top: 2rem; }
.intro--with-image {
  max-width: 1100px;
  display: grid;
  gap: 2.5rem;
  text-align: left;
}
.intro--with-image .intro__text p { text-align: left; }
.intro__img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 900px) {
  .intro--with-image {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }
}

/* === Highlights / cards === */
.highlights {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: .75rem; }
.section-banner {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid--four { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--color-neutral-light);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 15, 18, 0.08);
  box-shadow: var(--shadow-sm);
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-neutral-light);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card h3 { color: var(--color-primary); }
.card p { font-size: .98rem; margin: 0; }

/* === Testimonial === */
.testimonial {
  max-width: 800px;
  margin: 5rem auto;
  padding: 0 1.5rem;
  text-align: center;
}
.testimonial blockquote {
  margin: 0;
  padding: 2.5rem 1.5rem;
  background: var(--color-neutral-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-neutral-dark);
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: .95rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 1rem;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  text-align: center;
  padding: 4rem 1.5rem;
  margin: 5rem 0 0;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(251, 245, 232, 0.85); max-width: 50ch; margin: 0 auto 1.75rem; font-size: 1.1rem; }

/* === FAQ === */
.faq { max-width: 800px; margin: 4rem auto; padding: 0 1.5rem; }
.faq details {
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(26, 15, 18, 0.08);
}
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--color-primary); font-weight: 700; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 1rem; }

/* === Contact === */
.contact-block {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .contact-block { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { padding: .5rem 0; border-bottom: 1px solid rgba(26,15,18,.08); }
.hours {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hours caption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 1rem;
  text-align: left;
  background: var(--color-primary);
  color: var(--color-neutral-light);
}
.hours th, .hours td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid rgba(26,15,18,.06); }
.hours th { font-weight: 500; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

/* === Form === */
.contact-form-section {
  max-width: 720px;
  margin: 4rem auto;
  padding: 2.5rem 1.5rem;
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-form-section h2 { text-align: center; }
.contact-form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 500; font-size: .95rem; }
.field input, .field textarea {
  font: inherit;
  padding: .75rem .9rem;
  border-radius: 8px;
  border: 1px solid rgba(26, 15, 18, 0.15);
  background: var(--color-secondary);
  color: var(--color-neutral-dark);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 4rem 1.5rem 2rem;
  margin-top: 0;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
}
.site-footer h4 {
  color: var(--color-neutral-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.site-footer a { color: var(--color-secondary); display: block; padding: .25rem 0; }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.site-footer address a { display: inline; }
.legal-links { margin-top: .5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.legal-links a { display: inline; font-size: .9rem; opacity: .8; }
.logo--footer img { height: 64px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.copyright {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 245, 232, 0.15);
  font-size: .85rem;
  color: rgba(251, 245, 232, 0.6);
  text-align: center;
}

/* === Cookie banner === */
.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);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin: 0 auto;
}
.cookie-banner p { margin: 0; font-size: .92rem; flex: 1 1 200px; }
.cookie-banner button {
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: 0;
  padding: .6rem 1.25rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
body.cookies-accepted .cookie-banner { display: none; }
