:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --maxw: 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, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 780px; }
.center { text-align: center; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { background: var(--color-neutral-dark); }
.btn-light { background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.btn-light:hover { background: var(--color-secondary); }

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  background: none;
  border: none;
  color: var(--color-neutral-dark);
  cursor: pointer;
  padding: 0.5rem;
}
.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 0;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  font-weight: 500;
}
.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: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    gap: 2rem;
  }
  .primary-nav a { padding: 0; }
  .primary-nav a:hover { color: var(--color-primary); text-decoration: none; }
}

/* === Hero (centered) === */
.hero {
  padding: 3rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, var(--color-secondary) 100%);
}
.hero h1 {
  max-width: 22ch;
  margin: 0.75rem auto 1.25rem;
}
.hero-sub {
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: rgba(42, 31, 24, 0.75);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.hero-figure {
  margin: 3rem 0 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(42, 31, 24, 0.35);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero { padding: 5rem 0 6rem; }
}

/* === Sections === */
.section { padding: 4rem 0; }
.section-alt { background: var(--color-secondary); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head p { color: rgba(42, 31, 24, 0.7); font-size: 1.05rem; }

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

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

/* === Cards === */
.card {
  background: var(--color-neutral-light);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(42, 31, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section-alt .card { background: var(--color-neutral-light); }
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -15px rgba(42, 31, 24, 0.25); }
.card h3 { margin-top: 0.5rem; }
.card p { color: rgba(42, 31, 24, 0.8); font-size: 0.97rem; margin-bottom: 0; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.listing-card h3 { color: var(--color-primary); }

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-light); }
.testimonial {
  margin: 0;
  padding: 2rem 0;
  position: relative;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

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

/* === Contact band === */
.contact-band {
  background: var(--color-accent);
  color: var(--color-neutral-light);
  padding: 3.5rem 0;
  text-align: center;
}
.contact-band h2 { color: var(--color-neutral-light); }
.contact-band p { color: rgba(251, 245, 232, 0.9); }
.contact-line { font-weight: 500; margin-bottom: 1.5rem; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid rgba(42, 31, 24, 0.15);
  padding: 1.25rem 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  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: "+";
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 1rem; color: rgba(42, 31, 24, 0.8); }

/* === Contact page === */
.contact-layout { display: grid; gap: 3rem; }
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}
.contact-details h3 { margin-top: 1.5rem; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(42, 31, 24, 0.1);
  font-weight: 400;
}
.hours-table th { color: var(--color-neutral-dark); font-weight: 500; }

/* === Form === */
.contact-form {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(42, 31, 24, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-neutral-dark);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(42, 31, 24, 0.2);
  border-radius: 4px;
  background: #fff;
  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);
}
.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: rgba(42, 31, 24, 0.8);
  line-height: 1.4;
}
.form-consent input { margin-top: 0.2rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(251, 245, 232, 0.85);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}
.site-footer h4 {
  color: var(--color-neutral-light);
  margin-bottom: 1rem;
}
.site-footer a {
  color: rgba(251, 245, 232, 0.85);
  display: block;
  padding: 0.2rem 0;
  font-size: 0.95rem;
}
.site-footer a:hover { color: var(--color-secondary); }
.footer-logo img { height: 64px; filter: brightness(0) invert(1); }
.tagline { font-family: var(--font-heading); font-style: italic; font-size: 1.05rem; margin-top: 0.75rem; color: var(--color-secondary); }
.footer-contact address { font-style: normal; font-size: 0.95rem; line-height: 1.7; }
.footer-contact address a { display: inline; padding: 0; }
.legal-links { margin-top: 1rem; font-size: 0.85rem; }
.legal-links a { display: inline; padding: 0; }
.copyright {
  border-top: 1px solid rgba(251, 245, 232, 0.15);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(251, 245, 232, 0.6);
  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.5rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  max-width: 520px;
  margin-left: auto;
  font-size: 0.9rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; color: rgba(251, 245, 232, 0.9); }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-banner button {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(251, 245, 232, 0.3);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-banner__prefs {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(251, 245, 232, 0.15);
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: 0.5rem; background: var(--color-accent); border-color: var(--color-accent); }
