:root {
  --color-primary: #5C5A3D;
  --color-secondary: #E8DFC9;
  --color-accent: #A04A2E;
  --color-neutral-dark: #2A2818;
  --color-neutral-light: #F7F2E5;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --maxw: 1200px;
}

/* === 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.6; font-size: 17px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); 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; margin: 0 0 0.75em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: rgba(247, 242, 229, 0.96); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(42, 40, 24, 0.08); }
.logo img { height: 72px; width: auto; display: block; }
.logo-footer img { height: 64px; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--color-neutral-dark); display: block; }
.primary-nav { display: none; flex-direction: column; gap: 0.5rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.25rem; border-bottom: 1px solid rgba(42, 40, 24, 0.08); }
.primary-nav.is-open { display: flex; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: 0.5rem 0; }
.primary-nav a[aria-current="page"] { color: var(--color-accent); }

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

/* === Hero (fullscreen) === */
.hero-fullscreen { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 6rem 1.25rem; color: var(--color-neutral-light); }
.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(20, 18, 8, 0.45), rgba(20, 18, 8, 0.65)); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-content h1 { color: var(--color-neutral-light); margin-bottom: 1.25rem; }
.hero-content .eyebrow { color: var(--color-secondary); }
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--color-secondary); margin-bottom: 2rem; max-width: 58ch; margin-inline: auto; }

/* === Buttons === */
.btn { display: inline-block; padding: 0.95rem 1.85rem; font-weight: 600; font-family: var(--font-body); border: 2px solid transparent; border-radius: 4px; cursor: pointer; transition: transform 0.15s ease, background 0.2s ease; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-accent); color: var(--color-neutral-light); }
.btn-primary:hover { background: #8a3f27; }
.btn-accent { background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.btn-accent:hover { background: var(--color-secondary); }

/* === Sections === */
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { color: var(--color-primary); }

/* === Intro grid === */
.intro-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.intro-text p { font-size: 1.05rem; color: var(--color-neutral-dark); }
.intro-figure { margin: 0; border-radius: 12px; overflow: hidden; }
.intro-figure img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.intro-figure-compact img { aspect-ratio: 16/10; }
@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .intro-grid-reverse > .intro-figure { order: -1; }
}

/* === Grid === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .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, 40, 24, 0.1); border-radius: 12px; padding: 1.75rem; transition: transform 0.18s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -18px rgba(42, 40, 24, 0.35); }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 8px; background: var(--color-secondary); color: var(--color-primary); font-size: 1.4rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-neutral-dark); font-size: 0.98rem; margin: 0; }

.section-highlights { background: var(--color-secondary); }
.section-services { background: var(--color-neutral-light); }
.section-services .card { background: #fff; }

/* === Testimonial === */
.section-quote { background: var(--color-primary); color: var(--color-neutral-light); text-align: center; }
.section-quote blockquote { max-width: 760px; margin: 0 auto; font-family: var(--font-heading); }
.section-quote blockquote p { font-size: clamp(1.15rem, 2vw, 1.5rem); font-style: italic; line-height: 1.5; margin-bottom: 1.5rem; }
.section-quote cite { font-style: normal; font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.05em; color: var(--color-secondary); }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid rgba(42, 40, 24, 0.12); padding: 1.25rem 0; }
.faq-list summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); font-size: 1.1rem; list-style: none; position: relative; padding-right: 2rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--color-accent); }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin-top: 0.85rem; color: var(--color-primary); }

/* === 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: var(--color-secondary); max-width: 640px; margin-inline: auto; margin-bottom: 1.75rem; }
.cta-band-inner { display: flex; flex-direction: column; align-items: center; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-info p { font-size: 1.02rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.hours-table caption { text-align: left; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.hours-table th, .hours-table td { padding: 0.55rem 0; border-bottom: 1px solid rgba(42, 40, 24, 0.1); text-align: left; }
.hours-table th { font-weight: 500; color: var(--color-primary); }

.contact-form { background: #fff; border: 1px solid rgba(42, 40, 24, 0.1); border-radius: 12px; padding: 2rem; }
.contact-form h2 { margin-top: 0; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label { font-weight: 600; margin-bottom: 0.4rem; font-size: 0.95rem; }
.field input, .field textarea { font: inherit; padding: 0.7rem 0.85rem; border: 1px solid rgba(42, 40, 24, 0.2); border-radius: 6px; background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-secondary); padding: 4rem 0 2rem; margin-top: 0; }
.site-footer .logo-footer img { filter: brightness(0) invert(0.95); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; } }
.footer-col h3 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--color-secondary); }
.footer-col a:hover { color: var(--color-neutral-light); }
.footer-col address { font-style: normal; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { font-size: 0.9rem; }
.tagline { color: var(--color-secondary); margin-top: 1rem; max-width: 28ch; }
.footer-bottom { border-top: 1px solid rgba(247, 242, 229, 0.12); margin-top: 3rem; padding-top: 1.5rem; font-size: 0.85rem; color: rgba(232, 223, 201, 0.7); text-align: center; }

/* === Cookie banner === */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; max-width: 520px; margin-inline: auto; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 1.1rem 1.25rem; border-radius: 10px; box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.4); z-index: 200; display: flex; flex-direction: column; gap: 0.75rem; }
.cookie-banner p { margin: 0; font-size: 0.92rem; }
.cookie-banner button { background: var(--color-accent); color: var(--color-neutral-light); border: none; padding: 0.6rem 1.2rem; border-radius: 6px; font-weight: 600; cursor: pointer; align-self: flex-start; font: inherit; }
.cookie-banner button:hover { background: #8a3f27; }
body.cookies-accepted .cookie-banner { display: none; }
@media (min-width: 600px) { .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; } .cookie-banner button { align-self: auto; } }
