:root {
  --color-primary: #0369A1;
  --color-secondary: #38BDF8;
  --color-accent: #22C55E;
  --color-neutral-dark: #0C4A6E;
  --color-neutral-light: #F0F9FF;
  --color-text: #0C4A6E;
  --color-muted: #4b6b7f;
  --color-border: rgba(12, 74, 110, 0.12);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --maxw: 1160px;
  --maxw-narrow: 720px;
}

/* === Base === */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  font-size: 17px;
}
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;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.lede { color: var(--color-muted); font-size: 1.05rem; }
.visually-centered { text-align: center; }

/* === Layout === */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.section { padding-block: 3.5rem; }
.section-alt { background: var(--color-neutral-light); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo img { height: 72px; width: auto; display: block; }
.site-nav { display: none; gap: 1.5rem; align-items: center; }
.site-nav a { color: var(--color-neutral-dark); font-weight: 500; font-size: 0.95rem; }
.site-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-toggle {
  background: none; border: 1px solid var(--color-border);
  width: 44px; height: 44px; border-radius: 8px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--color-neutral-dark); display: block; }
.site-nav.is-open { display: flex; flex-direction: column; align-items: flex-start; padding: 1rem 0; gap: 0.75rem; width: 100%; }

/* === Hero (stacked) === */
.hero { padding-block: 3rem 2rem; }
.hero__inner { text-align: left; }
.hero__figure { margin: 2rem 0; }
.hero__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }
.hero__sub { font-size: 1.15rem; color: var(--color-muted); max-width: 55ch; margin-bottom: 1.5rem; }

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

/* === Grid & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card h3 { margin-top: 0.5rem; }
.card p { color: var(--color-muted); margin-bottom: 0; }
.card .icon { color: var(--color-primary); }
.card-link { display: block; color: inherit; text-decoration: none; }
.card-link:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 20px 40px -25px rgba(12, 74, 110, 0.4); }
.card__more { display: inline-block; margin-top: 0.75rem; color: var(--color-primary); font-weight: 600; }

/* === Quotes === */
.pullquote {
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.pullquote p { font-size: 1.2rem; font-style: italic; color: var(--color-neutral-dark); max-width: 55ch; margin: 0 auto 1rem; }
.pullquote cite { color: var(--color-muted); font-style: normal; font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: var(--color-neutral-light);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(240,249,255,0.85); max-width: 55ch; margin-inline: auto; }
.cta-band__meta { font-size: 0.9rem; color: rgba(240,249,255,0.75); }

/* === Stats === */
.stats { display: grid; gap: 2rem; grid-template-columns: 1fr; text-align: center; }
.stat__num { display: block; font-family: var(--font-heading); font-size: 2.75rem; font-weight: 700; color: var(--color-accent); line-height: 1; margin-bottom: 0.5rem; }
.stat__label { color: var(--color-muted); max-width: 30ch; margin-inline: auto; display: block; }

/* === Inline figures === */
.inline-figure { margin: 2rem 0; }
.inline-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }

/* === Article detail === */
.article-detail { max-width: 65ch; margin-inline: auto; padding: 2rem 1rem 3rem; }
.article-detail h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1.5rem; }
.article-sub { font-size: 1.2rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.article-hero { margin: 2rem 0; }
.article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; }
.article-detail h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.article-detail p { font-size: 1.075rem; line-height: 1.75; margin-block: 1.25rem; }
.article-cta {
  margin-top: 3rem; padding: 1.75rem; border-radius: var(--radius);
  background: var(--color-neutral-light); text-align: center;
}
.article-cta h3 { margin-top: 0; }
.back { margin-top: 2rem; text-align: left; }
.back-link { font-weight: 600; }

/* === Contact page === */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.contact-block { font-style: normal; line-height: 1.7; margin-bottom: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--color-border); }
.hours th { font-weight: 500; color: var(--color-neutral-dark); }
.hours td { color: var(--color-muted); }

/* === Forms === */
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: block; font-size: 0.9rem; color: var(--color-neutral-dark); font-weight: 500; }
.contact-form label span { display: block; margin-bottom: 0.35rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
  color: inherit;
  background: #fff;
}
.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; font-size: 0.88rem; color: var(--color-muted); font-weight: 400; }
.form-consent input { width: auto; margin-top: 0.25rem; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  color: var(--color-neutral-dark);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 0; top: 0;
  font-size: 1.4rem; color: var(--color-primary); font-weight: 400;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(240,249,255,0.85);
  padding-block: 3rem 1.5rem;
  margin-top: 2rem;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 0.75rem; }
.site-footer a { color: rgba(240,249,255,0.85); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer__nav { display: flex; flex-direction: column; gap: 0.35rem; }
.footer__tag { color: rgba(240,249,255,0.65); font-size: 0.95rem; }
.footer__legal { margin-top: 1rem; font-size: 0.88rem; color: rgba(240,249,255,0.7); }
.footer__copy { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(240,249,255,0.15); font-size: 0.85rem; color: rgba(240,249,255,0.6); }
.logo--footer img { height: 60px; }

/* === 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);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 0.92rem; color: rgba(240,249,255,0.9); margin-bottom: 1rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.6rem 1rem; font-size: 0.88rem; }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(240,249,255,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }

/* === Responsive === */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  body { font-size: 17px; }
  .logo img { height: 96px; }
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
  .section { padding-block: 5rem; }
  .hero { padding-block: 4rem 3rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .hero__figure img { aspect-ratio: 21/9; }
}

.risk-disclaimer { position: relative; z-index: 1000; background: #f7f4f0; border-bottom: 2px solid #a1887f; color: #4a423c; padding: 0.875rem 1.5rem; }
.risk-disclaimer p { max-width: 68rem; margin: 0 auto; font-size: 0.8125rem; line-height: 1.6; text-align: center; }
.risk-disclaimer strong { text-transform: uppercase; letter-spacing: 0.04em; }
.risk-disclaimer__icon { font-size: 1rem; }
