: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;
  --maxw: 1180px;
  --maxw-narrow: 720px;
  --radius: 12px;
}

/* === Reset === */
*, *::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.65;
  -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;
  font-weight: 600;
  margin: 0 0 .75em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul { padding: 0; margin: 0; list-style: none; }

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--color-neutral-dark);
  color: var(--color-neutral-dark);
  padding: .5rem .9rem;
  border-radius: 6px;
  font-family: var(--font-body);
  cursor: pointer;
}
.primary-nav { display: none; width: 100%; }
.primary-nav.is-open { display: block; }
.primary-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a {
  display: block;
  padding: .65rem 0;
  color: var(--color-neutral-dark);
  font-weight: 500;
  border-bottom: 1px solid rgba(42, 31, 24, .08);
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; width: auto; }
  .primary-nav ul { flex-direction: row; gap: 2rem; }
  .primary-nav a { border: 0; padding: 0; }
}

/* === Hero (centered) === */
.hero-centered {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__inner { max-width: 760px; margin: 0 auto; }
.hero__title { max-width: 22ch; margin: 0 auto .75em; font-weight: 600; }
.hero__sub {
  max-width: 52ch;
  margin: 0 auto 1.75rem;
  font-size: 1.125rem;
  color: rgba(42, 31, 24, .8);
}
.hero__media {
  margin: 3rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero-centered { padding: 5rem 2rem 3rem; }
  .hero__media { margin-top: 4rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .9rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-neutral-light);
}
.btn-primary:hover {
  background: #8a3e25;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px rgba(160, 74, 46, .6);
}
.btn-light {
  background: var(--color-neutral-light);
  color: var(--color-primary);
}
.btn-light:hover { text-decoration: none; transform: translateY(-1px); }

/* === Sections === */
.section { padding: 4rem 1.5rem; }
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section__inner.narrow { max-width: var(--maxw-narrow); }
.section__lede {
  max-width: 60ch;
  margin: 0 0 2.5rem;
  font-size: 1.0625rem;
  color: rgba(42, 31, 24, .75);
}
.section-intro { background: var(--color-neutral-light); }
.section-intro .section__inner.narrow h2 { text-align: center; }
.section-intro .section__inner.narrow p {
  font-size: 1.0625rem;
  text-align: left;
}
.section__media {
  margin: 2.5rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.section__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.narrow-text { max-width: 60ch; }

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

/* === Highlights cards === */
.section-highlights { background: var(--color-secondary); }
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.card {
  background: var(--color-neutral-light);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(42, 31, 24, .08);
  box-shadow: 0 1px 2px rgba(42, 31, 24, .04);
}
.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);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.card h3 { font-size: 1.2rem; }
.card p { margin: 0; font-size: .98rem; color: rgba(42, 31, 24, .85); }
@media (min-width: 700px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* === Testimonial === */
.section-testimonial {
  background: var(--color-neutral-light);
  text-align: center;
}
.quote {
  margin: 0 auto;
  max-width: 56ch;
  position: relative;
}
.quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--color-neutral-dark);
  margin: 0 0 1.25rem;
}
.quote cite {
  font-style: normal;
  font-size: .95rem;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: .02em;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--color-neutral-light); max-width: 28ch; margin: 0 auto .75em; }
.cta-band p { color: rgba(251, 245, 232, .9); max-width: 52ch; margin: 0 auto 1.75rem; }
@media (min-width: 768px) {
  .cta-band { padding: 5rem 2rem; }
}

/* === FAQ === */
.faq details {
  border-top: 1px solid rgba(42, 31, 24, .15);
  padding: 1.25rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid rgba(42, 31, 24, .15); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-neutral-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  transition: transform .2s;
}
.faq details[open] summary::after { content: '–'; }
.faq details p { margin: 1rem 0 0; color: rgba(42, 31, 24, .85); }

/* === Contact === */
.section-contact { background: var(--color-secondary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.contact-card {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(42, 31, 24, .08);
}
.contact-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 1.25rem;
}
.contact-card h3:first-child { margin-top: 0; }
.contact-card address { font-style: normal; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(42, 31, 24, .08);
  font-size: .95rem;
}
.hours th { font-weight: 500; }
.hours td { color: rgba(42, 31, 24, .8); text-align: right; }
.contact-map {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(42, 31, 24, .08);
}
.contact-map img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === Form === */
.contact-form {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  border: 1px solid rgba(42, 31, 24, .08);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-neutral-dark);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0;
}
.form-row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 500; font-size: .95rem; color: var(--color-neutral-dark); }
.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .75rem .9rem;
  border: 1px solid rgba(42, 31, 24, .2);
  border-radius: 6px;
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}
.form-row input:focus,
.form-row textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer__cols {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer__col h3 {
  font-family: var(--font-body);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}
.footer__col p, .footer__col address { color: rgba(251, 245, 232, .8); font-style: normal; }
.footer__col a { color: var(--color-neutral-light); }
.footer__col a:hover { color: var(--color-secondary); }
.footer__col ul li { margin-bottom: .5rem; }
.logo--footer img { height: 64px; margin-bottom: 1rem; }
.footer__legal { margin-top: 1.25rem; font-size: .9rem; }
.footer__copy {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 245, 232, .12);
  font-size: .85rem;
  color: rgba(251, 245, 232, .6);
  text-align: center;
}
@media (min-width: 768px) {
  .footer__cols { grid-template-columns: 1.4fr 1fr 1.4fr; }
  .logo--footer img { height: 72px; }
}

/* === 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);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 50;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner p { margin: 0; flex: 1 1 220px; font-size: .92rem; color: rgba(251, 245, 232, .9); }
.cookie-banner button {
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: 0;
  padding: .65rem 1.1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner button:hover { background: #2f4738; }
body.cookies-accepted .cookie-banner { display: none; }
