:root {
  --color-primary: #0369A1;
  --color-secondary: #0EA5E9;
  --color-accent: #22C55E;
  --color-neutral-dark: #0C4A6E;
  --color-neutral-light: #F0F9FF;
  --color-text: #0C4A6E;
  --color-muted: #475569;
  --color-border: rgba(12,74,110,0.12);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1180px;
}

/* === 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: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 1rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  background: transparent; border: 0; padding: .5rem;
  display: flex; flex-direction: column; gap: 4px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); }
.site-nav { display: none; }
.site-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--color-border); }
.site-nav ul { list-style: none; margin: 0; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.site-nav a { color: var(--color-neutral-dark); font-weight: 500; }
.site-nav [aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; position: static; border: 0; }
  .site-nav ul { flex-direction: row; padding: 0; gap: 1.5rem; }
  .logo img { height: 96px; }
}

/* === Hero (stacked) === */
.hero { padding: 3rem 0 2rem; }
.hero .container { max-width: 780px; }
.eyebrow {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--color-secondary); margin: 0 0 1rem;
  font-weight: 600;
}
.hero h1 { margin-bottom: 2rem; }
.hero-image { margin: 0 0 2rem; }
.hero-image img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: 8px;
}
.hero-sub { font-size: 1.15rem; color: var(--color-muted); margin-bottom: 2rem; }

@media (min-width: 768px) {
  .hero { padding: 5rem 0 3rem; }
}

/* === Buttons === */
.btn {
  display: inline-block; padding: .9rem 1.75rem;
  border-radius: 4px; font-weight: 500; font-size: 1rem;
  transition: background .2s, transform .2s;
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-neutral-dark); text-decoration: none; }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: #16a34a; text-decoration: none; }

/* === Sections === */
.section { padding: 4rem 0; }
.section-narrow .container { max-width: 760px; }
.section-alt { background: var(--color-neutral-light); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head p { color: var(--color-muted); }

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

/* === Cards === */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform .2s, box-shadow .2s;
  color: var(--color-text);
  display: block;
}
.card .icon { color: var(--color-secondary); margin-bottom: 1rem; }
.card h3 { color: var(--color-neutral-dark); }
.card p { color: var(--color-muted); margin: 0; }
a.card-link { text-decoration: none; }
a.card-link:hover { transform: translateY(-3px); box-shadow: 0 12px 30px -18px rgba(12,74,110,0.35); text-decoration: none; }

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-light); }
.testimonial {
  max-width: 720px; margin: 0 auto; text-align: center;
  font-family: var(--font-heading);
  padding: 0 1rem;
}
.testimonial p {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.5; color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-family: var(--font-body); font-style: normal;
  font-size: .95rem; color: var(--color-muted);
}

/* === CTA Band === */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-inner { max-width: 720px; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer; font-weight: 500; color: var(--color-neutral-dark);
  font-size: 1.05rem; list-style: none;
  padding-right: 1.5rem; position: relative;
}
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  font-size: 1.5rem; color: var(--color-secondary); line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--color-muted); margin: .75rem 0 0; }

/* === Form === */
.form-wrap { max-width: 640px; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 500; color: var(--color-neutral-dark); font-size: .95rem; }
.form-row input, .form-row select, .form-row textarea {
  font: inherit; color: var(--color-text);
  padding: .75rem 1rem;
  border: 1px solid var(--color-border); border-radius: 4px;
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--color-secondary); outline-offset: 1px; border-color: var(--color-secondary);
}
.form-consent { display: flex; gap: .5rem; align-items: flex-start; font-size: .9rem; color: var(--color-muted); }
.form-consent input { margin-top: .2rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 1.5rem;
  margin-top: 3rem;
}
.site-footer h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-body); font-weight: 600; }
.footer-grid {
  display: grid; gap: 2.5rem; grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.site-footer .logo img { height: 64px; filter: brightness(0) invert(1); }
.site-footer .tagline { color: rgba(255,255,255,0.7); font-size: .95rem; margin-top: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; font-size: .95rem; line-height: 1.7; }
.legal-links { margin-top: 1.25rem; font-size: .9rem; }
.copyright { text-align: center; padding-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,0.6); }

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.3fr; }
}

/* === 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: 8px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.35);
  max-width: 640px;
  margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button {
  font: inherit; padding: .55rem 1rem; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3); background: transparent; color: #fff;
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner [data-cookie-accept]:hover { background: #16a34a; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs label { display: flex; gap: .5rem; align-items: center; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: .5rem; background: var(--color-primary); border-color: var(--color-primary); }
