:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --max-w: 1200px;
}

/* === 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);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 .75rem; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.375rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 720px; margin-inline: auto; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 245, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .9rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 64px; }

.nav-toggle {
  background: none; 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); }
.site-nav { display: none; flex-direction: column; gap: .5rem; }
.site-nav.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid rgba(42, 31, 24, 0.08); }
.site-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: .4rem 0; }
.site-nav a[aria-current="page"] { color: var(--color-primary); }

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

/* === Buttons === */
.btn {
  display: inline-block; padding: .85rem 1.6rem;
  border-radius: 999px; font-weight: 500; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); border-color: var(--color-primary); }
.btn-primary:hover { background: #8a3e26; }
.btn-ghost-light { background: transparent; color: var(--color-neutral-light); border-color: var(--color-neutral-light); }
.btn-ghost-light:hover { background: var(--color-neutral-light); color: var(--color-primary); }

/* === Hero card === */
.hero-card-wrap {
  padding-block: 2.5rem 3rem;
  background:
    radial-gradient(ellipse at top left, rgba(160,74,46,0.10), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(61,90,71,0.08), transparent 55%),
    var(--color-secondary);
}
.hero-card {
  max-width: 880px; margin-inline: auto;
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 30px 60px -30px rgba(42, 31, 24, 0.25);
  text-align: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .15em;
  font-size: .78rem; color: var(--color-accent);
  font-weight: 500; margin-bottom: 1rem;
}
.hero-card h1 { margin-bottom: 1rem; max-width: 22ch; margin-inline: auto; }
.hero-card .lede { font-size: 1.15rem; color: rgba(42, 31, 24, 0.78); max-width: 52ch; margin-inline: auto 1.5rem; }
.hero-cta { margin: 1.5rem 0 2rem; }
.hero-card__figure { margin: 1.5rem -0.5rem 0; }
.hero-card__figure img { border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; width: 100%; }

@media (min-width: 768px) {
  .hero-card-wrap { padding-block: 4rem 4.5rem; }
  .hero-card { padding: 3.5rem 3.5rem 3rem; }
  .hero-card__figure { margin: 2rem 0 0; }
}

/* === Sections === */
.section { padding-block: 3.5rem; }
.section-alt { background: var(--color-secondary); }
.section-head { text-align: center; margin-bottom: 2.5rem; max-width: 720px; margin-inline: auto; }
.section-head p { color: rgba(42, 31, 24, 0.72); font-size: 1.05rem; }
.section-more { text-align: center; margin-top: 2rem; }
.link-arrow { font-weight: 500; }

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

/* === Two column === */
.two-col { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.two-col__figure img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* === Grid & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .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 rgba(42, 31, 24, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card .icon { color: var(--color-primary); margin-bottom: .9rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: rgba(42, 31, 24, 0.78); margin: 0; }
.card-link { display: block; color: inherit; text-decoration: none; }
.card-link:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -25px rgba(42, 31, 24, 0.35); border-color: rgba(160, 74, 46, 0.35); text-decoration: none; }
.card-link h3 { color: var(--color-primary); }

/* === Testimonial === */
.pull-quote {
  max-width: 780px; margin-inline: auto; text-align: center;
  padding: 2rem 1rem; position: relative;
}
.pull-quote::before {
  content: '“'; font-family: var(--font-heading);
  font-size: 5rem; line-height: 1; color: var(--color-primary);
  display: block; margin-bottom: -.5rem;
}
.pull-quote p {
  font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5; font-style: italic; color: var(--color-neutral-dark);
  margin: 0 0 1.25rem;
}
.pull-quote cite { font-style: normal; font-weight: 500; color: var(--color-accent); font-size: .95rem; }

/* === CTA band === */
.cta-band {
  background: var(--color-primary); color: var(--color-neutral-light);
  padding-block: 3rem;
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: .5rem; }
.cta-band p { color: rgba(251, 245, 232, 0.85); margin: 0; }
.cta-band__inner {
  display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start;
}
.cta-band__action { margin: 0; }
@media (min-width: 768px) {
  .cta-band { padding-block: 4rem; }
  .cta-band__inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 2.5rem; }
}

/* === Article === */
.article {
  max-width: 65ch; margin-inline: auto;
  padding: 2.5rem 1.25rem 3rem;
  font-size: 1.125rem; line-height: 1.75;
}
.article__head { margin-bottom: 1.5rem; }
.article__head h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.article__sub { font-size: 1.2rem; color: rgba(42, 31, 24, 0.7); }
.article__hero { margin-block: 2rem; }
.article__hero img { aspect-ratio: 16/9; object-fit: cover; width: 100%; border-radius: 12px; }
.article p { margin-block: 1.25rem; }
.article__foot { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(42, 31, 24, 0.12); }
.back-link { font-weight: 500; }

/* === Contact === */
.contact-band { text-align: center; }
.contact-form {
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(42, 31, 24, 0.08);
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form h3 { margin-bottom: .25rem; }
.contact-form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .95rem; font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  font: inherit; padding: .7rem .85rem;
  border: 1px solid rgba(42, 31, 24, 0.18);
  border-radius: 10px; background: white;
  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); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-consent {
  flex-direction: row !important; align-items: flex-start; gap: .6rem;
  font-weight: 400; font-size: .88rem; color: rgba(42, 31, 24, 0.78);
  flex-wrap: wrap;
}
.form-consent input { flex: 0 0 auto; margin-top: .2rem; }
.form-consent span { flex: 1; min-width: 0; }

.hours { width: 100%; border-collapse: collapse; margin-block: 1rem; font-size: .95rem; }
.hours caption { text-align: left; font-weight: 500; padding-bottom: .5rem; color: var(--color-accent); }
.hours th, .hours td { text-align: left; padding: .5rem .25rem; border-bottom: 1px solid rgba(42, 31, 24, 0.08); }
.hours th { font-weight: 500; color: var(--color-neutral-dark); }
.hours td { color: rgba(42, 31, 24, 0.72); }

/* === FAQ === */
.faq {
  border-bottom: 1px solid rgba(42, 31, 24, 0.12);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer; font-weight: 500; font-size: 1.05rem;
  list-style: none; position: relative; padding-right: 2rem;
  color: var(--color-neutral-dark);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem;
  color: var(--color-primary); transition: transform .2s ease;
}
.faq[open] summary::after { content: '−'; }
.faq p { margin-top: .75rem; color: rgba(42, 31, 24, 0.78); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(251, 245, 232, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.site-footer h4 { color: var(--color-neutral-light); font-family: var(--font-body); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a, .footer-legal a, .footer-contact a { color: rgba(251, 245, 232, 0.85); }
.footer-nav a:hover, .footer-legal a:hover, .footer-contact a:hover { color: var(--color-neutral-light); }
.footer-contact address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.footer-legal { flex-direction: row; flex-wrap: wrap; gap: 1rem; font-size: .9rem; opacity: .8; }
.tagline { color: rgba(251, 245, 232, 0.7); font-style: italic; margin-top: .5rem; }
.footer-copy {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 245, 232, 0.15);
  font-size: .85rem; color: rgba(251, 245, 232, 0.6);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; 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.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
  max-width: 640px; margin-inline: auto;
  font-size: .92rem; line-height: 1.5;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie-banner button {
  font: inherit; padding: .55rem 1rem;
  border-radius: 999px; border: 1px solid rgba(251, 245, 232, 0.3);
  background: transparent; color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-neutral-light); }
.cookie-banner button:hover { opacity: .9; }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(251, 245, 232, 0.15); }
.cookie-banner__prefs label { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: .5rem; background: var(--color-accent); border-color: var(--color-accent); }
