:root {
  --color-primary: #0EA5E9;
  --color-secondary: #38BDF8;
  --color-accent: #FBBF24;
  --color-neutral-dark: #0C4A6E;
  --color-neutral-light: #F0F9FF;
  --color-text: #0C4A6E;
  --color-muted: #476b83;
  --color-line: rgba(12, 74, 110, 0.12);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 20px rgba(12, 74, 110, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(12, 74, 110, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(12, 74, 110, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.015em; line-height: 1.2; margin: 0 0 0.75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 760px; }

/* === Header / nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240, 249, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-line);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,0.9); box-shadow: 0 6px 24px -18px rgba(12,74,110,0.35); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 1.25rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.site-nav { display: none; align-items: center; gap: 1.5rem; }
.site-nav a { color: var(--color-neutral-dark); font-weight: 500; font-size: 0.95rem; position: relative; padding: 0.25rem 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .nav-cta { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; padding: 0.55rem 1.1rem; border-radius: 999px; }
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { color: #fff; transform: translateY(-1px); }
.nav-toggle { background: transparent; border: 1px solid var(--color-line); color: var(--color-neutral-dark); border-radius: 10px; padding: 0.4rem; cursor: pointer; }
.site-nav.is-open { display: flex; }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 899px) {
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 1rem 1.25rem; gap: 0.5rem; border-bottom: 1px solid var(--color-line); box-shadow: var(--shadow-md); }
  .site-nav:not(.is-open) { display: none; }
  .site-nav a { padding: 0.6rem 0; }
}

/* === Buttons === */
.btn { display: inline-block; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; padding: 0.85rem 1.5rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s; text-align: center; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 10px 30px -10px rgba(14, 165, 233, 0.55); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(14, 165, 233, 0.7); color: #fff; }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-line); }
.btn--ghost:hover { border-color: var(--color-neutral-dark); transform: translateY(-2px); }
.btn--sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Hero === */
.hero { position: relative; padding: 3.5rem 0 4rem; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(1200px 500px at 80% -10%, rgba(251,191,36,0.14), transparent 60%), linear-gradient(180deg, var(--color-neutral-light), #ffffff 85%); z-index: -1; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero__text .eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--color-primary); font-weight: 600; margin: 0 0 1rem; }
.hero__sub { font-size: 1.15rem; color: var(--color-muted); max-width: 56ch; margin-bottom: 1.75rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero__center { text-align: center; }
.hero__center .eyebrow { margin-left: auto; margin-right: auto; }
.hero--compact { padding: 2.75rem 0 3rem; }

@media (min-width: 900px) {
  .hero { padding: 5rem 0 5.5rem; }
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* === Sections === */
.section { padding: 4rem 0; }
.section--alt { background: var(--color-neutral-light); }
.section--intro { text-align: center; }
.section__head { text-align: center; max-width: 62ch; margin: 0 auto 2.5rem; }
.section__head--left { text-align: left; margin-left: 0; }
.section__head p { color: var(--color-muted); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--color-primary); font-weight: 600; margin: 0 0 0.5rem; }

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

.card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s; display: block; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(14,165,233,0.35); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(14,165,233,0.14), rgba(56,189,248,0.14)); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { color: inherit; }

/* === Quote === */
.section--quote { background: linear-gradient(180deg, #fff, var(--color-neutral-light)); }
.quote { margin: 0; text-align: center; }
.quote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; color: var(--color-neutral-dark); font-weight: 500; margin-bottom: 1.25rem; }
.quote cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; padding: 3.5rem 0; }
.cta-band__inner { text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(240,249,255,0.85); margin-bottom: 1.5rem; }
.cta-band .btn--primary { background: var(--color-accent); color: var(--color-neutral-dark); box-shadow: 0 10px 30px -10px rgba(251,191,36,0.6); }
.cta-band .btn--primary:hover { color: var(--color-neutral-dark); box-shadow: 0 16px 40px -12px rgba(251,191,36,0.75); }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq details { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: 1rem 1.25rem; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); cursor: pointer; list-style: none; padding-right: 1.5rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--color-primary); transition: transform 0.2s; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* === Contact === */
.contact-card { display: grid; grid-template-columns: 1fr; gap: 2rem; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
@media (min-width: 780px) { .contact-card { grid-template-columns: 1fr 1fr; } }
.contact-card address { font-style: normal; color: var(--color-muted); line-height: 1.8; }
.contact-card__cta { align-self: center; }
.hours { border-collapse: collapse; width: 100%; }
.hours th, .hours td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid var(--color-line); font-weight: 500; }
.hours th { color: var(--color-neutral-dark); }
.hours td { color: var(--color-muted); }

/* === Form === */
.form { display: flex; flex-direction: column; gap: 1rem; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.form__row { display: flex; flex-direction: column; gap: 0.4rem; }
.form label { font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem; color: var(--color-neutral-dark); }
.form input, .form textarea { font: inherit; padding: 0.75rem 0.9rem; border: 1px solid var(--color-line); border-radius: 10px; background: #fff; color: var(--color-text); transition: border-color 0.2s, box-shadow 0.2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.18); }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--color-muted); line-height: 1.5; font-weight: 400; }
.form-consent input { margin-top: 0.2rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: #cbe4f2; padding: 3rem 0 1.5rem; margin-top: 4rem; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.75rem; }
.site-footer a { color: #cbe4f2; }
.site-footer a:hover { color: #fff; }
.site-footer .logo img { filter: brightness(0) invert(1); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 800px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.footer__tagline { color: rgba(203,228,242,0.85); font-size: 0.95rem; margin-top: 0.75rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-legal { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; font-size: 0.9rem; }
.site-footer address { font-style: normal; line-height: 1.7; font-size: 0.95rem; }
.site-footer__base { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.25rem; margin-top: 2rem; font-size: 0.85rem; color: rgba(203,228,242,0.7); }

/* === 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; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.cookie-banner .btn--ghost:hover { border-color: #fff; }
.cookie-banner .btn--primary { background: var(--color-accent); color: var(--color-neutral-dark); }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }
@media (min-width: 640px) { .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; } }

/* === Reveal animation === */
.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; }
}
