:root {
  --color-primary: #1E3A8A;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E40AF;
  --color-neutral-light: #EFF6FF;
  --color-ink: #0F1F4A;
  --color-muted: #4B5B7E;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 2px 6px -2px rgba(30, 58, 138, 0.15);
  --shadow-md: 0 20px 40px -24px rgba(30, 58, 138, 0.35);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: #FDFEFF;
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.2; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }
p { margin: 0 0 1rem; }
blockquote { margin: 0; }

/* === Layout: sidebar-nav === */
.layout { display: block; }
.sidebar {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(30, 58, 138, 0.12);
  padding: 1.25rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  backdrop-filter: blur(8px);
}
.sidebar .logo { display: inline-flex; align-items: center; text-decoration: none; }
.sidebar .logo img { height: 72px; width: auto; display: block; }
.sidebar__foot { display: none; margin: 0; font-size: .8rem; color: var(--color-muted); }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: transparent; border: 1px solid rgba(30, 58, 138, 0.2);
  border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-primary); border-radius: 2px; }
.primary-nav { flex-basis: 100%; display: none; }
.primary-nav.is-open { display: block; }
.primary-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a {
  display: block; padding: .75rem .5rem;
  font-family: var(--font-heading); font-size: 1.05rem;
  color: var(--color-primary); text-decoration: none;
  border-radius: 6px;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] {
  background: rgba(59, 130, 246, 0.1); color: var(--color-neutral-dark);
}
.content { padding: 2rem 1.25rem 3rem; max-width: 100%; }

@media (min-width: 900px) {
  .layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
  .sidebar {
    position: sticky; top: 0; height: 100vh;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 2.25rem 1.75rem; gap: 2rem;
    border-bottom: none; border-right: 1px solid rgba(30, 58, 138, 0.12);
  }
  .sidebar .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; flex-basis: auto; width: 100%; }
  .primary-nav ul { gap: .1rem; }
  .sidebar__foot { display: block; margin-top: auto; }
  .content { padding: 3.5rem 3rem 4rem; max-width: 1100px; }
}

/* === Hero === */
.hero { padding: 1rem 0 2.5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--color-secondary); font-weight: 600; margin: 0 0 .75rem; }
.hero h1 { max-width: 22ch; }
.hero__sub { font-size: 1.2rem; color: var(--color-muted); max-width: 52ch; margin-bottom: 1.75rem; }
.hero__cta { margin-bottom: 2rem; }
.hero__figure { margin: 2rem 0 0; }
.hero__figure img { aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* === Buttons === */
.btn { display: inline-block; padding: .85rem 1.6rem; border-radius: 999px; font-family: var(--font-body); font-weight: 600; font-size: 1rem; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; border: 1px solid transparent; cursor: pointer; }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-neutral-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #e5620a; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* === Sections === */
.section { padding: 2.5rem 0; border-top: 1px solid rgba(30, 58, 138, 0.08); }
.section--narrow { max-width: 65ch; }
.section--narrow p { font-size: 1.05rem; }
.section--split { display: grid; gap: 2rem; align-items: center; }
.split__figure img { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (min-width: 768px) {
  .section--split { grid-template-columns: 1.2fr 1fr; gap: 3.5rem; }
}

/* === Cards grid === */
.grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--cards { grid-template-columns: repeat(2, 1fr); } .grid--three { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border: 1px solid rgba(30, 58, 138, 0.1); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.card .icon { color: var(--color-secondary); margin-bottom: .75rem; }
.card h3 { color: var(--color-primary); }
.card p { color: var(--color-muted); font-size: .97rem; margin: 0; }

/* === Quote === */
.section--quote { text-align: center; padding: 3rem 0; }
.section--quote blockquote { max-width: 62ch; margin: 0 auto; }
.section--quote p { font-family: var(--font-heading); font-size: clamp(1.2rem, 2vw, 1.55rem); font-style: italic; color: var(--color-neutral-dark); line-height: 1.45; }
.section--quote cite { display: block; margin-top: 1rem; font-style: normal; font-size: .95rem; color: var(--color-muted); letter-spacing: .04em; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding: 3rem 1.5rem; border-radius: var(--radius); text-align: center; margin: 3rem 0; }
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 52ch; margin: 0 auto 1.5rem; }

/* === Contact band === */
.contact-band__grid { display: grid; gap: 1.5rem; align-items: center; }
.contact-band__grid figure { margin: 0; }
.contact-band__grid img { aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 768px) { .contact-band__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

/* === Form === */
.section--form { max-width: 640px; }
form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
label { font-weight: 500; font-size: .95rem; color: var(--color-primary); }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  font: inherit; padding: .75rem .9rem;
  border: 1px solid rgba(30, 58, 138, 0.25); border-radius: 8px;
  background: #fff; color: var(--color-ink);
}
input:focus, textarea:focus { outline: 2px solid var(--color-secondary); outline-offset: 1px; border-color: var(--color-secondary); }
textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--color-muted); font-weight: 400; flex-wrap: wrap; }
.form-consent input { margin-top: .25rem; }
form button[type="submit"] { align-self: flex-start; }

/* === Footer === */
.site-footer { margin-top: 3rem; padding: 2.5rem 0 1.5rem; border-top: 1px solid rgba(30, 58, 138, 0.15); color: var(--color-muted); font-size: .93rem; }
.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.3fr; gap: 2.5rem; } }
.site-footer__brand { font-family: var(--font-heading); font-size: 1.25rem; color: var(--color-primary); font-weight: 600; margin: 0 0 .35rem; }
.site-footer nav ul, .legal-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.site-footer nav a, .legal-links a { color: var(--color-muted); text-decoration: none; }
.site-footer nav a:hover, .legal-links a:hover { color: var(--color-primary); text-decoration: underline; }
.site-footer address { font-style: normal; margin-bottom: .75rem; }
.legal-links { margin-top: .5rem; font-size: .85rem; }
.copyright { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(30, 58, 138, 0.08); font-size: .82rem; text-align: center; color: var(--color-muted); }

/* === 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.4rem; border-radius: var(--radius);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.35);
  max-width: 640px; margin-left: auto; margin-right: auto;
  font-size: .93rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; color: var(--color-neutral-light); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button {
  font: inherit; padding: .55rem 1rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.35); background: transparent;
  color: var(--color-neutral-light); cursor: pointer;
}
.cookie-banner button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; font-weight: 600; }
.cookie-banner button[data-cookie-accept]:hover { background: #e5620a; border-color: #e5620a; }
.cookie-banner button:hover { background: rgba(255,255,255,0.1); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.cookie-banner__prefs label { color: var(--color-neutral-light); font-weight: 400; display: flex; align-items: center; gap: .5rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: .5rem; }
