:root {
  --color-primary: #0369A1;
  --color-secondary: #0EA5E9;
  --color-accent: #F97316;
  --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', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 30px 60px -30px rgba(12, 74, 110, 0.25);
  --shadow-card: 0 10px 30px -20px rgba(12, 74, 110, 0.35);
}

/* === Reset === */
*, *::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-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; }

/* === Typography === */
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0 0 1rem; }
h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }
p { margin: 0 0 1rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0 0 1rem;
}

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}
.logo { display: inline-flex; }
.logo img { height: 72px; width: auto; }
.primary-nav { display: none; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}
.primary-nav a:hover { background: var(--color-neutral-light); text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-toggle {
  border: 1px solid var(--color-border);
  background: #fff;
  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 { display: block; width: 20px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
.primary-nav.is-open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .site-header__inner { padding: 1rem 2rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; align-items: center; gap: 0.25rem; }
}

/* === Hero-card === */
.hero {
  padding: 3rem 1.25rem 4rem;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% auto auto;
  width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14), transparent 70%);
  z-index: 0;
}
.hero-card__inner {
  position: relative; z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.25rem 1.5rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  text-align: center;
}
.hero__sub {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 auto 1.75rem;
}
.hero__cta { margin: 0 0 2rem; }
.hero-card__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-neutral-light);
}
.hero-card__figure img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 768px) {
  .hero { padding: 5rem 2rem 6rem; }
  .hero-card__inner { padding: 4rem 3.5rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(12, 74, 110, 0.4); }
.btn--primary { background: var(--color-primary); color: #ffffff; }
.btn--primary:hover { background: var(--color-neutral-dark); color: #ffffff; }
.btn--accent { background: var(--color-accent); color: #ffffff; }
.btn--accent:hover { background: #ea6a10; color: #ffffff; }

/* === Sections === */
.section { padding: 3.5rem 1.25rem; max-width: 1200px; margin: 0 auto; }
.section--narrow { max-width: 780px; }
.section--narrow > p { color: var(--color-muted); font-size: 1.075rem; }
.section--tint {
  max-width: none;
  background: var(--color-neutral-light);
  padding-left: 1.25rem; padding-right: 1.25rem;
}
.section--tint > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section__sub { color: var(--color-muted); font-size: 1.05rem; margin: 0; }

@media (min-width: 768px) {
  .section { padding: 5rem 2rem; }
  .section--tint { padding-left: 2rem; padding-right: 2rem; }
}

/* === Grid + cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.card .icon {
  width: 32px; height: 32px;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { color: var(--color-neutral-dark); }
.card p { color: var(--color-muted); margin: 0; font-size: 0.98rem; }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { text-decoration: none; transform: translateY(-3px); box-shadow: 0 20px 40px -25px rgba(12, 74, 110, 0.45); }
.card-link:hover h3 { color: var(--color-primary); }

/* === Testimonial === */
.testimonial { text-align: center; }
.testimonial blockquote {
  margin: 0;
  padding: 2rem 1rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--color-neutral-dark);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0 auto 1.25rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #ffffff;
  padding: 4rem 1.25rem;
  text-align: center;
}
.cta-band__inner { max-width: 780px; margin: 0 auto; }
.cta-band h2 { color: #ffffff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 1.075rem; }
.cta-band .btn { margin-top: 0.5rem; }

@media (min-width: 768px) { .cta-band { padding: 5.5rem 2rem; } }

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

/* === Contact === */
.contact-block { text-align: center; }
.contact-address {
  font-style: normal;
  font-size: 1.05rem;
  color: var(--color-neutral-dark);
  line-height: 1.8;
  margin: 1.5rem auto;
}
.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-weight: 600; font-size: 0.92rem; color: var(--color-neutral-dark); }
.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--color-text);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
  border-color: var(--color-secondary);
}
.form-consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--color-muted);
  flex-wrap: wrap;
}
.form-consent input { margin-top: 0.25rem; }
.contact-form .btn { justify-self: start; margin-top: 0.5rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 1.25rem 1.5rem;
  margin-top: 3rem;
}
.site-footer__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
}
.site-footer h3 {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  font-weight: 600;
}
.site-footer a { color: rgba(255, 255, 255, 0.82); }
.site-footer a:hover { color: #ffffff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.tagline { font-family: var(--font-heading); font-style: italic; color: rgba(255,255,255,0.75); }
.logo--footer img { height: 64px; background: #ffffff; padding: 0.4rem 0.75rem; border-radius: 8px; }
.legal-links { margin-top: 0.5rem !important; font-size: 0.9rem; }
.copyright {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer { padding: 5rem 2rem 2rem; }
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1.2fr; 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.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.4);
  max-width: 640px;
  margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner__actions [data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}
.cookie-banner__actions button:hover { background: rgba(255,255,255,0.1); }
.cookie-banner__actions [data-cookie-accept]:hover { background: #ea6a10; }
.cookie-banner__prefs {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cookie-banner__prefs label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs [data-cookie-save] {
  margin-top: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: var(--color-secondary);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  justify-self: start;
}
