:root {
  --color-primary: #7A2E1F;
  --color-secondary: #E8D9B2;
  --color-accent: #1F3A2E;
  --color-neutral-dark: #1B1B1B;
  --color-neutral-light: #FAF6EE;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --border-soft: rgba(27, 27, 27, 0.12);
}

/* === Reset & base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin: 0 0 1rem; }

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--color-neutral-light);
  position: relative;
  gap: 1rem;
  flex-wrap: wrap;
}
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-soft);
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-neutral-dark);
  margin: 0 10px;
  transition: opacity .2s;
}
.site-nav {
  display: none;
  width: 100%;
  flex-direction: column;
  padding: 0.5rem 0 1rem;
  gap: 0.25rem;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--color-neutral-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.6rem 0.25rem;
  border-bottom: 1px solid var(--border-soft);
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .site-header { padding: 1.5rem 3rem; flex-wrap: nowrap; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    gap: 1.75rem;
    align-items: center;
  }
  .site-nav a { padding: 0; border: none; }
  .site-nav a:hover { color: var(--color-primary); }
}

/* === Hero (centered) === */
.hero-centered {
  text-align: center;
  padding: 3.5rem 1.25rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-centered h1 {
  max-width: 22ch;
  margin: 0.5rem auto 1.25rem;
  font-weight: 600;
}
.hero__sub {
  max-width: 52ch;
  margin: 0 auto 1.75rem;
  color: #4a4642;
  font-size: 1.125rem;
}
.hero__cta { margin-bottom: 2.5rem; }
.hero__image {
  margin: 2rem auto 0;
  max-width: 1000px;
}
.hero__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .hero-centered { padding: 6rem 2rem 4rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { background: #62221a; color: var(--color-neutral-light); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn-accent:hover { background: #142820; color: var(--color-neutral-light); }

/* === Sections === */
.section {
  padding: 4rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 2.5rem;
}
.section-head p { color: #4a4642; }
.intro {
  max-width: 720px;
  text-align: center;
}
.intro h2 { margin-bottom: 1.25rem; }
.intro p { font-size: 1.0625rem; color: #333; }

@media (min-width: 768px) {
  .section { padding: 5.5rem 2rem; }
}

/* === Grid & cards === */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { 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); }
}
.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card .icon {
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { color: var(--color-neutral-dark); }
.card p { color: #4a4642; margin: 0; }
.card-link { text-decoration: none; color: inherit; }
.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -18px rgba(0,0,0,0.25);
  color: inherit;
}

/* === Testimonial === */
.testimonial { text-align: center; max-width: 780px; }
.testimonial blockquote {
  margin: 0;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial cite {
  font-style: normal;
  color: var(--color-primary);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250, 246, 238, 0.9); max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-accent { background: var(--color-secondary); color: var(--color-neutral-dark); }
.cta-band .btn-accent:hover { background: #dcc99a; color: var(--color-neutral-dark); }
.contact-band { background: var(--color-accent); }

/* === Contact card === */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.contact-grid address { font-style: normal; line-height: 1.9; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 0.6rem 0; border-bottom: 1px solid var(--border-soft); font-weight: 400; }
.hours th { font-weight: 500; }

/* === Contact form === */
.contact-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 500; font-size: 0.95rem; }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.field input:focus, .field 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: 0.6rem;
  font-size: 0.9rem;
  color: #4a4642;
  flex-wrap: wrap;
}
.form-consent input { margin-top: 3px; }
.contact-form .btn { align-self: flex-start; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3.5rem 1.5rem 1.5rem;
  margin-top: 3rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer-cols { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; }
}
.site-footer h3 { color: var(--color-neutral-light); font-family: var(--font-heading); font-size: 1.125rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer a { color: var(--color-secondary); text-decoration: none; }
.site-footer a:hover { color: var(--color-neutral-light); text-decoration: underline; }
.site-footer address { font-style: normal; line-height: 1.9; margin-bottom: 1rem; }
.logo--footer img { height: 72px; margin-bottom: 0.75rem; filter: brightness(0) invert(1); }
.tagline { color: var(--color-secondary); font-style: italic; }
.legal-links { margin-top: 1rem; font-size: 0.9rem; }
.copyright {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 217, 178, 0.2);
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.7);
  text-align: center;
}

/* === 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.25rem;
  border-radius: 12px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
  font-size: 0.9rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.75rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(250, 246, 238, 0.25);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] {
  background: var(--color-secondary);
  color: var(--color-neutral-dark);
  border-color: var(--color-secondary);
}
.cookie-banner [data-cookie-accept]:hover { background: #dcc99a; }
.cookie-banner__prefs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 246, 238, 0.15);
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs [data-cookie-save] {
  align-self: flex-start;
  background: var(--color-secondary);
  color: var(--color-neutral-dark);
  border-color: var(--color-secondary);
  margin-top: 0.25rem;
}
