/* === Tokens === */
:root {
  --color-primary: #2563EB;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E293B;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(30, 41, 59, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --shadow-soft: 0 10px 30px -18px rgba(30, 41, 59, 0.35);
}

/* === 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: 16px;
}
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; margin: 0 0 0.75rem; font-weight: 600; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

/* === Layout: sidebar + main === */
.layout { display: block; }
.sidebar {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.25rem 1rem;
}
.sidebar__brand { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.sidebar__tagline { font-size: 0.85rem; opacity: 0.75; margin: 0; max-width: 24ch; }
.logo img { height: 72px; width: auto; display: block; }
.sidebar__nav { margin-top: 1rem; }
.nav-toggle {
  display: inline-block;
  background: transparent;
  color: var(--color-neutral-light);
  border: 1px solid rgba(248, 250, 252, 0.35);
  padding: 0.5rem 0.85rem;
  font: inherit;
  border-radius: 6px;
  cursor: pointer;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
}
.nav-list.is-open { display: flex; }
.nav-list a {
  display: block;
  padding: 0.55rem 0.65rem;
  color: var(--color-neutral-light);
  border-radius: 6px;
  font-weight: 500;
}
.nav-list a:hover { background: rgba(248, 250, 252, 0.08); text-decoration: none; }
.nav-list a[aria-current="page"] { background: var(--color-primary); color: #fff; }
.sidebar__foot { display: none; margin-top: auto; font-size: 0.8rem; opacity: 0.6; }
.main { padding: 2rem 1.25rem 3rem; max-width: 1100px; }

@media (min-width: 900px) {
  .layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
  .sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
  .sidebar__brand { flex-direction: column; align-items: flex-start; }
  .nav-toggle { display: none; }
  .nav-list { display: flex !important; margin-top: 1.5rem; }
  .sidebar__foot { display: block; }
  .logo img { height: 96px; }
  .main { padding: 3rem 3rem 4rem; }
}

/* === Hero === */
.hero { margin-bottom: 3.5rem; }
.hero .eyebrow, .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin: 0 0 1rem;
}
.hero__sub { font-size: 1.15rem; max-width: 58ch; color: #475569; margin-bottom: 1.75rem; }
.hero__cta { margin-bottom: 2rem; }
.hero__figure { margin: 0; }
.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hero--compact .hero__sub { margin-bottom: 0; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: #1d4ed8; text-decoration: none; transform: translateY(-1px); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #ea6a0a; text-decoration: none; transform: translateY(-1px); }

/* === Sections === */
.section { margin-bottom: 3.5rem; }
.section__title { margin-bottom: 1.75rem; }
.section--intro .intro {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.intro__figure img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-soft); }
.intro--wide { max-width: 68ch; }
.intro--wide p { font-size: 1.05rem; }
@media (min-width: 780px) {
  .section--intro .intro:not(.intro--wide) { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}

/* === Cards grid === */
.cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } .cards--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; font-family: var(--font-heading); font-weight: 600; }
.card p { margin: 0; color: #475569; font-size: 0.97rem; }

/* === Testimonial === */
.testimonial { text-align: center; padding: 2rem 0; }
.testimonial blockquote {
  margin: 0 auto;
  max-width: 62ch;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--color-neutral-dark);
  line-height: 1.5;
  position: relative;
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-bottom: 3.5rem;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 55ch; margin-left: auto; margin-right: auto; }
.cta-band .btn { margin-top: 0.5rem; }

/* === Contact === */
.contact-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.contact-card h2 { font-size: 1.35rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }

/* === Form === */
.contact-form { max-width: 640px; display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field input, .field textarea {
  font: inherit;
  color: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-consent { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.88rem; color: #475569; }
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-foot {
  border-top: 1px solid var(--color-border);
  padding-top: 2.5rem;
  margin-top: 3rem;
  color: #475569;
  font-size: 0.93rem;
}
.site-foot__cols { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .site-foot__cols { grid-template-columns: repeat(3, 1fr); } }
.site-foot__brand { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-neutral-dark); font-weight: 600; margin: 0 0 0.35rem; }
.site-foot nav ul, .legal-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.site-foot a { color: #334155; }
.legal-links { margin-top: 0.75rem; font-size: 0.85rem; }
.site-foot address { font-style: normal; }
.site-foot__copy { margin-top: 2rem; font-size: 0.85rem; color: #64748b; text-align: center; border-top: 1px solid var(--color-border); padding-top: 1.25rem; }

/* === 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);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 15px 40px -15px rgba(0,0,0,0.45);
  max-width: 640px;
  margin-left: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.85rem; font-size: 0.9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font: inherit;
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(248, 250, 252, 0.3);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-accept]:hover { background: #ea6a0a; }
.cookie-banner__prefs { margin-top: 0.85rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.88rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: 0.4rem; background: var(--color-primary); border-color: var(--color-primary); }
