:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1180px;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
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;
  -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 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0 0 1rem; }
h3 { font-size: 1.25rem; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

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

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-neutral-dark);
  border-radius: 2px;
}

.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); border-bottom: 1px solid rgba(42, 31, 24, 0.08); }
.primary-nav ul { list-style: none; margin: 0; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a { display: block; padding: .6rem .5rem; color: var(--color-neutral-dark); font-weight: 500; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; position: static; background: transparent; border: 0; }
  .primary-nav ul { flex-direction: row; padding: 0; gap: 1.5rem; }
  .primary-nav a { padding: .5rem 0; }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: #8a3e26; }
.btn--accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn--accent:hover { background: #33493a; }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-neutral-dark); }
.btn--ghost:hover { background: var(--color-neutral-dark); color: var(--color-neutral-light); }
.btn--sm { padding: .5rem .9rem; font-size: 0.85rem; }

/* === Hero (fullscreen) === */
.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-neutral-light);
  text-align: center;
  padding-block: 4rem;
}
.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.35), rgba(42, 31, 24, 0.65));
  z-index: 1;
}
.hero__solid {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  z-index: 0;
}
.hero--soft .hero__solid { background: linear-gradient(135deg, var(--color-secondary), var(--color-neutral-light)); }
.hero--soft { color: var(--color-neutral-dark); }
.hero--soft h1, .hero--soft .eyebrow, .hero--soft .hero__sub { color: inherit; }
.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero__content h1 { color: inherit; }
.hero__content .eyebrow { color: var(--color-secondary); }
.hero--soft .hero__content .eyebrow { color: var(--color-primary); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 56ch; margin-inline: auto; margin-bottom: 2rem; opacity: 0.95; }
.hero__cta { margin-top: 1.5rem; }
.hero__content a { color: inherit; text-decoration: underline; }
.hero__cta a { text-decoration: none; }

/* === Sections === */
.section { padding-block: 4.5rem; }
.section--narrow { padding-block: 4.5rem; }
.section--narrow .container { max-width: 780px; }
.section--tinted { background: var(--color-secondary); }
.section--quote { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 4rem; }
.section--quote h2, .section--quote cite { color: inherit; }
.section__header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__sub { color: rgba(42, 31, 24, 0.75); font-size: 1.1rem; margin-bottom: 1.5rem; }
.section--quote .section__sub { color: rgba(251, 245, 232, 0.85); }
.prose { font-size: 1.05rem; line-height: 1.75; }

/* === Grid & cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(42, 31, 24, 0.1);
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.section--tinted .card { background: var(--color-neutral-light); }
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -18px rgba(42, 31, 24, 0.35); }
.card .icon { color: var(--color-accent); margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: rgba(42, 31, 24, 0.85); font-size: 0.98rem; margin: 0; }

/* === Quote === */
blockquote {
  margin: 0;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.25rem;
}
blockquote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding-block: 3.5rem;
}
.cta-band h2, .cta-band a { color: inherit; }
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.cta-band__inner p { opacity: 0.92; max-width: 60ch; margin: 0; }
.cta-band__inner h2 { margin-bottom: .5rem; }
.cta-band__cta { margin: 0; }
.contact-line { font-size: 0.95rem; margin-top: .75rem; }
@media (min-width: 800px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

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

/* === Gallery === */
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: 6px; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid rgba(42, 31, 24, 0.12);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: .75rem; color: rgba(42, 31, 24, 0.85); }

/* === Contact === */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; } }
.contact-info address { font-style: normal; line-height: 1.8; margin-bottom: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-bottom: 1px solid rgba(42, 31, 24, 0.1); font-weight: 400; }
.hours th { font-weight: 500; }

.contact-form { background: var(--color-neutral-light); padding: 2rem; border-radius: 8px; border: 1px solid rgba(42, 31, 24, 0.1); }
.contact-form h2 { margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 500; margin-bottom: .35rem; font-size: 0.92rem; }
.field input, .field textarea {
  width: 100%;
  padding: .75rem .85rem;
  font: inherit;
  border: 1px solid rgba(42, 31, 24, 0.2);
  border-radius: 4px;
  background: #fff;
  color: inherit;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }
.field textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; gap: .5rem; align-items: flex-start; font-size: 0.88rem; margin-bottom: 1.25rem; line-height: 1.5; }
.form-consent input { margin-top: .2rem; flex-shrink: 0; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  margin-top: 0;
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer h3 { color: var(--color-secondary); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }
.site-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(251, 245, 232, 0.12); }
@media (min-width: 800px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.4fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .5rem; }
.site-footer address { font-style: normal; line-height: 1.8; margin-bottom: 1rem; opacity: 0.9; }
.footer-tagline { font-family: var(--font-heading); font-style: italic; opacity: 0.85; }
.footer-legal { margin-top: 1rem; font-size: 0.88rem; }
.footer-legal a { opacity: 0.8; }
.logo--footer img { filter: brightness(0) invert(1); }
.site-footer__copy { padding-top: 1.5rem; font-size: 0.85rem; opacity: 0.7; text-align: center; }
.site-footer__copy p { margin: 0; }

/* === 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: 8px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
  max-width: 640px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner a { color: var(--color-secondary); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(251, 245, 232, 0.4); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(251, 245, 232, 0.12); color: var(--color-neutral-light); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(251, 245, 232, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: 0.9rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: .5rem; }
