:root {
  --color-primary: #1A1F2E;
  --color-secondary: #F5E8DD;
  --color-accent: #E07A5F;
  --color-neutral-dark: #0F1320;
  --color-neutral-light: #FAF0E8;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --maxw: 1180px;
  --radius: 14px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-primary); margin: 0 0 0.6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

/* === 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(250, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 31, 46, 0.08);
}
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-primary);
  transition: transform 0.2s ease;
}
.primary-nav { display: none; }
.primary-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem; border-bottom: 1px solid rgba(26, 31, 46, 0.08); }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.primary-nav a {
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.primary-nav a[aria-current="page"] { color: var(--color-accent); }

@media (min-width: 900px) {
  .site-header { padding: 1.25rem 2.5rem; }
  .nav-toggle { display: none; }
  .primary-nav { display: block; position: static; padding: 0; background: transparent; border: 0; }
  .primary-nav ul { flex-direction: row; gap: 2.25rem; }
  .logo img { height: 96px; }
}

/* === Layout === */
main { display: block; }
.section { padding: 4rem 1.25rem; max-width: var(--maxw); margin-inline: auto; }
.section__header { text-align: center; max-width: 56ch; margin: 0 auto 2.5rem; }
.section__header p { color: rgba(26, 31, 46, 0.7); }
@media (min-width: 900px) {
  .section { padding: 6rem 2.5rem; }
}

/* === Hero (centered) === */
.hero-centered {
  text-align: center;
  padding: 4rem 1.25rem 3rem;
  max-width: var(--maxw);
  margin-inline: auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 1.25rem;
}
.hero-centered h1 {
  max-width: 28ch;
  margin: 0 auto 1.25rem;
}
.hero__sub {
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: rgba(26, 31, 46, 0.72);
}
.hero__cta { margin: 0 0 3rem; }
.hero__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15, 19, 32, 0.35);
}
.hero__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
@media (min-width: 900px) {
  .hero-centered { padding: 6rem 2.5rem 4rem; }
}

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

/* === Intro section === */
.intro { max-width: 62ch; margin: 0 auto; text-align: center; }
.intro h2 { margin-bottom: 1.25rem; }
.intro p { font-size: 1.07rem; color: rgba(26, 31, 46, 0.78); }
.intro__media { margin: 2.5rem auto 0; max-width: 880px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 50px -28px rgba(15, 19, 32, 0.3); }
.intro__media img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

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

/* === Cards === */
.card {
  background: #ffffff;
  border: 1px solid rgba(26, 31, 46, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -24px rgba(15, 19, 32, 0.25); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(224, 122, 95, 0.12);
  color: var(--color-accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.6rem; color: var(--color-primary); }
.card p { margin: 0; color: rgba(26, 31, 46, 0.78); font-size: 0.98rem; }

/* === Testimonial === */
.testimonial {
  max-width: 60ch;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  text-align: center;
  position: relative;
}
.testimonial::before {
  content: "\201E";
  display: block;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.testimonial p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(26, 31, 46, 0.7);
  letter-spacing: 0.02em;
}

/* === CTA band === */
.cta-band { padding: 0; max-width: none; }
.cta-band__inner {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  text-align: center;
  padding: 4.5rem 1.5rem;
  max-width: var(--maxw);
  margin: 4rem auto;
  border-radius: var(--radius);
}
.cta-band__inner h2 { color: var(--color-neutral-light); max-width: 30ch; margin-inline: auto; margin-bottom: 1rem; }
.cta-band__inner p { color: rgba(250, 240, 232, 0.82); max-width: 50ch; margin-inline: auto; margin-bottom: 2rem; }
@media (min-width: 900px) {
  .cta-band__inner { padding: 5.5rem 3rem; margin: 5rem auto; }
}

/* === FAQ === */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(26, 31, 46, 0.12);
  padding: 1.25rem 0;
}
.faq details:first-of-type { border-top: 1px solid rgba(26, 31, 46, 0.12); }
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  color: var(--color-primary);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p {
  margin-top: 0.75rem;
  color: rgba(26, 31, 46, 0.78);
}

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid rgba(26, 31, 46, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-card h2 { font-size: 1.4rem; }
.contact-card address { font-style: normal; line-height: 1.8; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: 0.55rem 0; text-align: left; border-bottom: 1px solid rgba(26, 31, 46, 0.08); font-weight: 400; }
.hours th { font-weight: 600; color: var(--color-primary); }
.hours td { color: rgba(26, 31, 46, 0.78); }

/* === Form === */
.form-wrap { max-width: 640px; margin: 0 auto; }
.contact-form { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--color-primary); }
.field input, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(26, 31, 46, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--color-neutral-dark);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.18);
}

/* === Map === */
.map-block {
  background: var(--color-secondary);
  border-radius: var(--radius);
  padding: 3.5rem 1.5rem;
  text-align: center;
  border: 1px dashed rgba(26, 31, 46, 0.18);
}
.map-pin {
  font-size: 2.4rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.map-block p { margin: 0; font-weight: 500; color: var(--color-primary); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 240, 232, 0.78);
  padding: 4rem 1.25rem 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  max-width: var(--maxw);
  margin: 0 auto 2.5rem;
}
.site-footer h4 { color: var(--color-neutral-light); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { color: rgba(250, 240, 232, 0.78); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer .tagline { margin-top: 1rem; color: rgba(250, 240, 232, 0.65); max-width: 28ch; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; font-size: 0.92rem; }
.logo--footer img { height: 64px; }
.copyright {
  border-top: 1px solid rgba(250, 240, 232, 0.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 240, 232, 0.55);
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; }
  .site-footer { padding: 5rem 2.5rem 2rem; }
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  z-index: 100;
  font-size: 0.92rem;
}
.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.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}
.cookie-banner button:hover { background: #c96249; }
body.cookies-accepted .cookie-banner { display: none; }
@media (min-width: 720px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 560px;
  }
  .cookie-banner button { align-self: auto; flex-shrink: 0; }
}
