:root {
  --color-primary: #2563EB;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E40AF;
  --color-neutral-light: #EFF6FF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --shadow-lg: 0 30px 60px -30px rgba(30, 64, 175, 0.35);
  --shadow-sm: 0 6px 20px -10px rgba(30, 64, 175, 0.25);
}

/* === Base === */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: #0f172a;
  background: #ffffff;
  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);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.container { max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0 0 1rem;
}
.lede { font-size: 1.0625rem; color: #334155; }

/* === Header / Nav === */
.site-header {
  border-bottom: 1px solid rgba(30, 64, 175, 0.08);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.nav-toggle {
  background: none;
  border: 1px solid rgba(30, 64, 175, 0.15);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-neutral-dark);
  display: inline-flex;
}
.site-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(30, 64, 175, 0.1);
  padding: 1rem 1.25rem;
  gap: 0.75rem;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.25rem 0;
}
.site-nav a[aria-current="page"] { color: var(--color-accent); }
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    position: static;
    padding: 0;
    border: none;
    gap: 1.75rem;
    align-items: center;
  }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  font-family: var(--font-body);
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-neutral-dark); text-decoration: none; transform: translateY(-1px); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #ea580c; text-decoration: none; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--color-neutral-light); border-color: rgba(239, 246, 255, 0.4); }
.btn--ghost:hover { background: rgba(239, 246, 255, 0.1); text-decoration: none; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* === Hero card === */
.hero {
  padding-block: 3rem;
  background:
    radial-gradient(circle at 15% 10%, rgba(59, 130, 246, 0.12), transparent 50%),
    radial-gradient(circle at 85% 90%, rgba(249, 115, 22, 0.08), transparent 55%),
    var(--color-neutral-light);
}
.hero-card__panel {
  max-width: 880px;
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.hero-card__panel h1 { max-width: 22ch; }
.hero__sub { font-size: 1.125rem; color: #334155; max-width: 52ch; margin-bottom: 1.75rem; }
.hero-card__figure {
  margin: 2rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.hero-card__figure img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .hero { padding-block: 5rem; }
  .hero-card__panel { padding: 4rem; }
}

/* === Section === */
.section { padding-block: 4rem; }
.section--top { padding-top: 4rem; }
.section--tint { background: var(--color-neutral-light); }
.section--narrow .container { max-width: 780px; }
.section__title { text-align: center; margin-bottom: 2.5rem; }

/* === Grid & Cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 64, 175, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -20px rgba(30, 64, 175, 0.25); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: #334155; margin: 0; font-size: 0.95rem; }
.icon {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* === Testimonial === */
.testimonial blockquote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--color-neutral-dark);
  line-height: 1.5;
}
.testimonial cite {
  display: block;
  margin-top: 1.25rem;
  color: var(--color-secondary);
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding-block: 4rem;
}
.cta-band__inner { text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(239, 246, 255, 0.9); margin-bottom: 1.75rem; }

/* === FAQ === */
.faq details {
  border: 1px solid rgba(30, 64, 175, 0.12);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: #fff;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-neutral-dark);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; color: var(--color-accent); font-weight: 700; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: #334155; }

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.95rem; }
.hours caption { text-align: left; font-weight: 600; padding-bottom: 0.5rem; color: var(--color-neutral-dark); }
.hours th, .hours td { padding: 0.5rem 0; border-bottom: 1px dashed rgba(30, 64, 175, 0.15); text-align: left; }
.hours td { text-align: right; color: #334155; }
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-form label {
  display: block;
  margin: 0.75rem 0 0.35rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-neutral-dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(30, 64, 175, 0.2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: #0f172a;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--color-secondary); outline-offset: 1px; }
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 1rem 0 1.25rem;
  font-size: 0.85rem;
  color: #334155;
  font-weight: 400;
}
.form-consent input { width: auto; margin-top: 0.2rem; }
.contact-band { text-align: center; max-width: 780px; margin-inline: auto; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(239, 246, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer a { color: rgba(239, 246, 255, 0.85); display: block; margin-bottom: 0.4rem; }
.site-footer a:hover { color: var(--color-accent); text-decoration: none; }
.site-footer address { font-style: normal; line-height: 1.7; }
.legal-links { margin-top: 1rem; font-size: 0.85rem; }
.legal-links a { display: inline; margin: 0 0.25rem; }
.logo--footer img { height: 64px; filter: brightness(0) invert(1); }
.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(239, 246, 255, 0.6);
  margin: 2rem 0 0;
  border-top: 1px solid rgba(239, 246, 255, 0.1);
  padding-top: 1.5rem;
}

/* === 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: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.35);
  max-width: 640px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.9rem; }
.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(239, 246, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs button { align-self: flex-start; background: var(--color-accent); color: #fff; border: none; }
