: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);
  --color-muted: rgba(30, 41, 59, 0.65);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(30, 41, 59, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(30, 41, 59, 0.18);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  -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);
  font-weight: 600;
  color: var(--color-neutral-dark);
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  line-height: 1.2;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); }
p { margin: 0 0 1rem; }
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-secondary);
  margin: 0 0 1rem;
}
.lede { font-size: 1.075rem; color: var(--color-neutral-dark); }

.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.logo:hover { text-decoration: none; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); }
.primary-nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--color-primary); text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.primary-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  gap: 0.75rem;
  align-items: flex-start;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { background: #1D4ED8; color: var(--color-neutral-light); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn-accent:hover { background: #EA6A0A; color: var(--color-neutral-light); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--color-neutral-light); border-color: rgba(248,250,252,0.5); }
.btn-ghost:hover { background: rgba(248,250,252,0.1); color: var(--color-neutral-light); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }

/* === Hero (split) === */
.hero { padding-block: 3rem; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.hero__text h1 { margin-bottom: 1.25rem; }
.hero__sub { font-size: 1.15rem; color: var(--color-muted); max-width: 52ch; margin-bottom: 1.75rem; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* === Sections === */
.section { padding-block: 3.5rem; }
.section--narrow .container > * { max-width: 68ch; }
.section--narrow h2 { max-width: 26ch; }
.section--tinted { background: #EFF6FF; }
.section--pad-lg { padding-block: 5rem; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--color-muted); }

/* === Grid / Cards === */
.grid { display: grid; gap: 1.25rem; }
.grid--cards { grid-template-columns: 1fr; }
.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card .icon { color: var(--color-primary); margin-bottom: 0.9rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); font-size: 0.98rem; margin: 0; }

/* === Testimonial === */
.section--quote { background: var(--color-neutral-light); }
.testimonial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
  border: 0;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: var(--color-neutral-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  padding-block: 3.5rem;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(248,250,252,0.9); margin: 0; max-width: 52ch; }

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info address { font-style: normal; line-height: 1.75; margin-bottom: 1.5rem; }
.contact-info strong { color: var(--color-neutral-dark); }
.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 1rem;
}
.hours caption {
  text-align: left;
  font-weight: 600;
  padding-bottom: 0.5rem;
  color: var(--color-neutral-dark);
}
.hours th, .hours td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}
.hours th { font-weight: 500; color: var(--color-muted); }

/* === Form === */
.contact-form {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { margin-top: 0; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--color-neutral-dark);
}
.field input, .field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
  color: var(--color-neutral-dark);
  background: #fff;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
  border-color: var(--color-secondary);
}
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 1rem 0 1.25rem;
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(248, 250, 252, 0.85);
  padding-block: 3rem 1.5rem;
  margin-top: 2rem;
}
.site-footer h4 { color: var(--color-neutral-light); margin-bottom: 0.85rem; }
.site-footer a { color: rgba(248, 250, 252, 0.85); }
.site-footer a:hover { color: var(--color-neutral-light); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(248, 250, 252, 0.12);
}
.footer__grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer__tag { color: rgba(248, 250, 252, 0.7); font-size: 0.95rem; margin-top: 0.5rem; }
.footer__legal { margin-top: 1rem !important; font-size: 0.88rem; }
.footer__base { padding-top: 1.25rem; font-size: 0.85rem; color: rgba(248, 250, 252, 0.6); }
.logo--footer img { height: 60px; }
.site-footer address { font-style: normal; line-height: 1.75; font-size: 0.95rem; }

/* === 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;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.35);
  max-width: 560px;
  margin-left: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.92rem; line-height: 1.55; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(248, 250, 252, 0.15);
  display: grid;
  gap: 0.6rem;
}
.cookie-banner__prefs label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs button { justify-self: start; margin-top: 0.4rem; }

/* === Responsive === */
@media (min-width: 768px) {
  body { font-size: 18px; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
  .hero { padding-block: 5rem; }
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  .section { padding-block: 5rem; }
  .grid--cards { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.3fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
}
@media (min-width: 1024px) {
  .grid--cards { grid-template-columns: repeat(3, 1fr); }
  .hero__media img { aspect-ratio: 4/5; }
}
@media (min-width: 1200px) {
  .grid--cards { grid-template-columns: repeat(4, 1fr); }
}
