:root {
  --color-primary: #0F172A;
  --color-secondary: #334155;
  --color-accent: #0369A1;
  --color-neutral-dark: #020617;
  --color-neutral-light: #F8FAFC;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 20px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 20px 60px -20px rgba(2, 6, 23, 0.25);
  --shadow-lg: 0 30px 70px -30px rgba(2, 6, 23, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -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 { font-family: var(--font-heading); color: var(--color-primary); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; margin-inline: auto; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: var(--color-accent); font-weight: 600; margin: 0 0 1rem; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), #0284C7);
  color: var(--color-neutral-light);
  box-shadow: 0 10px 30px -10px rgba(3, 105, 161, 0.6);
}
.btn--primary:hover { box-shadow: 0 16px 40px -12px rgba(3, 105, 161, 0.7); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: rgba(15, 23, 42, 0.15); }
.btn--ghost:hover { background: rgba(15, 23, 42, 0.04); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Header / Glass nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(248, 250, 252, 0.92); box-shadow: 0 4px 20px -12px rgba(2, 6, 23, 0.2); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid rgba(15, 23, 42, 0.12); border-radius: 10px;
  color: var(--color-primary); cursor: pointer;
}
.primary-nav { display: none; }
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; left: 1rem; right: 1rem; top: calc(100% + 8px); background: var(--color-neutral-light); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 1rem; gap: 0.25rem; }
.primary-nav a { position: relative; padding: 0.6rem 0.4rem; font-family: var(--font-heading); font-weight: 500; color: var(--color-primary); }
.primary-nav a[aria-current="page"] { color: var(--color-accent); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; gap: 1.75rem; position: static; background: transparent; box-shadow: none; padding: 0; }
  .primary-nav a { padding: 0.4rem 0; }
  .primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-hover); }
  .primary-nav a:hover { text-decoration: none; }
  .primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .logo img { height: 96px; }
}

/* === Hero (split) === */
.hero {
  position: relative;
  padding-block: 3.5rem 4rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(3, 105, 161, 0.12), transparent 60%),
    linear-gradient(180deg, #EEF3F8 0%, var(--color-neutral-light) 100%);
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero__text { max-width: 640px; }
.hero__sub { font-size: 1.15rem; color: var(--color-secondary); margin: 1rem 0 1.75rem; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .hero { padding-block: 6rem 6.5rem; }
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* === Sections === */
.section { padding-block: 4rem; }
.section--tint { background: linear-gradient(180deg, #F1F5F9 0%, var(--color-neutral-light) 100%); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--color-secondary); font-size: 1.05rem; }

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

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

.card {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.12), rgba(3, 105, 161, 0.04));
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.card p { color: var(--color-secondary); margin-bottom: 0; }

/* === Quote === */
.quote { margin: 0; padding: 2.5rem 1.5rem; text-align: center; border-left: 3px solid var(--color-accent); background: var(--color-neutral-light); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.quote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; color: var(--color-primary); font-weight: 500; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.95rem; color: var(--color-secondary); }

/* === CTA band === */
.cta-band {
  padding-block: 4rem;
  background: linear-gradient(135deg, var(--color-primary), #1E293B 60%, var(--color-accent));
  color: var(--color-neutral-light);
}
.cta-band__inner { display: grid; gap: 1.5rem; align-items: center; grid-template-columns: 1fr; }
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(248, 250, 252, 0.82); margin: 0; }
.cta-band .btn--primary { background: var(--color-neutral-light); color: var(--color-primary); box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.4); }
@media (min-width: 800px) {
  .cta-band__inner { grid-template-columns: 1fr auto; gap: 2rem; }
}

/* === FAQ === */
.faq details { background: var(--color-neutral-light); border: 1px solid rgba(15, 23, 42, 0.08); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin-bottom: 0.75rem; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--color-primary); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 1rem; color: var(--color-secondary); }

/* === Contact card / hours === */
.contact-card { display: grid; grid-template-columns: 1fr; gap: 2rem; background: var(--color-neutral-light); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(15, 23, 42, 0.06); }
@media (min-width: 800px) { .contact-card { grid-template-columns: 1.2fr 1fr; } }
.hours { width: 100%; border-collapse: collapse; }
.hours caption { text-align: left; font-family: var(--font-heading); font-weight: 600; margin-bottom: 0.75rem; color: var(--color-primary); }
.hours th, .hours td { padding: 0.6rem 0; text-align: left; border-bottom: 1px solid rgba(15, 23, 42, 0.08); font-weight: 400; }
.hours th { color: var(--color-secondary); }

/* === Contact form === */
.contact-form { display: grid; gap: 1.25rem; background: var(--color-neutral-light); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(15, 23, 42, 0.06); }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-heading); font-weight: 500; font-size: 0.95rem; color: var(--color-primary); }
.field input, .field textarea { font: inherit; padding: 0.75rem 0.9rem; border: 1px solid rgba(15, 23, 42, 0.15); border-radius: 10px; background: #fff; color: var(--color-primary); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15); }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--color-secondary); }
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer { background: var(--color-primary); color: rgba(248, 250, 252, 0.75); padding-block: 3.5rem 1.5rem; margin-top: 4rem; }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(248, 250, 252, 0.75); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer .logo img { height: 64px; filter: brightness(0) invert(1); }
.site-footer .tagline { margin-top: 1rem; font-size: 0.95rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.site-footer__grid nav { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { font-size: 0.9rem; }
.site-footer__base { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(248, 250, 252, 0.12); font-size: 0.85rem; }
.site-footer__base p { margin: 0; }
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.4fr; gap: 3rem; }
}

/* === 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 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-banner button { font: inherit; padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid rgba(248, 250, 252, 0.2); background: transparent; color: var(--color-neutral-light); cursor: pointer; font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem; }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(248, 250, 252, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs [data-cookie-save] { justify-self: start; margin-top: 0.5rem; background: var(--color-neutral-light); color: var(--color-primary); border-color: var(--color-neutral-light); }

/* === Reveal motion === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
