:root {
  --color-primary: #2F4A2C;
  --color-secondary: #E8E2D4;
  --color-accent: #A87B3D;
  --color-neutral-dark: #1A1F1A;
  --color-neutral-light: #F7F4ED;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1180px;
  --radius: 12px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
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-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1rem; }
ul { padding-left: 1.2rem; }

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container--narrow { max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(26, 31, 26, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }

.nav-toggle {
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-neutral-dark);
}
.primary-nav {
  display: none;
  width: 100%;
  order: 3;
}
.primary-nav[data-open="true"] { display: block; }
.primary-nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.primary-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--color-neutral-dark);
}
.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; width: auto; order: initial; }
  .primary-nav ul { flex-direction: row; gap: 2rem; margin: 0; }
}

/* === Hero (centered) === */
.hero {
  text-align: center;
  padding-block: 3.5rem 2rem;
  background: var(--color-secondary);
}
.hero h1 {
  max-width: 22ch;
  margin: 0.5rem auto 1.25rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--color-primary);
}
.hero__sub {
  max-width: 48ch;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: rgba(26, 31, 26, 0.78);
}
.hero__cta { margin-bottom: 3rem; }
.hero__image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px -28px rgba(26, 31, 26, 0.4);
}
.hero__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero { padding-block: 6rem 3rem; }
}

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

/* === Section === */
.section { padding-block: 3.5rem; }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.section__header h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.section__sub {
  max-width: 56ch;
  margin: 0.75rem auto 0;
  color: rgba(26, 31, 26, 0.72);
}
.section--intro { text-align: left; }
.section--intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-primary);
}
.section--intro p { font-size: 1.075rem; }

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

/* === Grid / Cards === */
.grid { display: grid; gap: 1.5rem; }
.grid--cards { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--cards { grid-template-columns: repeat(3, 1fr); }
  .grid--cards-2 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(26, 31, 26, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(26, 31, 26, 0.35);
}
.card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-primary);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
}
.card--profile { padding-top: 0; overflow: hidden; }
.card__portrait {
  margin: 0 -1.75rem 1.5rem;
}
.card__portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* === Testimonial === */
.section--testimonial { background: var(--color-secondary); }
.testimonial {
  margin: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
}
.testimonial p { margin-bottom: 1.25rem; font-weight: 500; }
.testimonial cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding-block: 4rem;
  text-align: center;
}
.cta-band h2 {
  color: var(--color-neutral-light);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  max-width: 24ch;
  margin-inline: auto;
}
.cta-band p { max-width: 52ch; margin-inline: auto; opacity: 0.9; }
.cta-band p:last-of-type { margin-top: 1.5rem; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid rgba(26, 31, 26, 0.12);
  padding-block: 1.1rem;
}
.faq details:first-child { border-top: 1px solid rgba(26, 31, 26, 0.12); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.05rem;
  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;
  line-height: 1;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: rgba(26, 31, 26, 0.82); }

/* === Contact card === */
.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  background: var(--color-neutral-light);
  border: 1px solid rgba(26, 31, 26, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
}
@media (min-width: 800px) {
  .contact-card { grid-template-columns: 1fr 1fr; padding: 3rem; gap: 3.5rem; }
}
.contact-card h2 { font-size: 1.4rem; color: var(--color-primary); }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(26, 31, 26, 0.08);
  font-weight: 400;
}
.hours th { color: var(--color-neutral-dark); font-weight: 500; }
.hours td { text-align: right; color: rgba(26, 31, 26, 0.72); }

.contact-form p { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.contact-form label { font-weight: 500; font-size: 0.92rem; }
.contact-form input, .contact-form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(26, 31, 26, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

/* === Map block === */
.map-block {
  background: var(--color-secondary);
  border-radius: var(--radius);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-align: center;
  padding: 2rem;
}
.map-block__pin { font-size: 2rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(247, 244, 237, 0.85);
  padding-block: 3rem 1.5rem;
  margin-top: 2rem;
}
.site-footer h3 {
  color: var(--color-neutral-light);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a { color: var(--color-neutral-light); text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; }
}
.logo--footer img { height: 60px; filter: brightness(0) invert(1); }
.site-footer__tagline { margin-top: 1rem; opacity: 0.75; max-width: 32ch; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1.25rem; }
.site-footer__legal { margin-top: 1.25rem; font-size: 0.9rem; opacity: 0.85; }
.site-footer__bottom {
  border-top: 1px solid rgba(247, 244, 237, 0.12);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
}

/* === 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 -20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 100;
  font-size: 0.9rem;
  max-width: 520px;
  margin-inline: auto;
}
.cookie-banner p { margin: 0; }
.cookie-banner button {
  align-self: flex-start;
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: 0;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner button:hover { background: #8d6531; }
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; flex-shrink: 0; }
}
