:root {
  --color-primary: #2563EB;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E293B;
  --color-neutral-light: #F8FAFC;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(15,23,42,0.06);
  --shadow-md: 0 12px 40px -12px rgba(15,23,42,0.18);
  --shadow-lg: 0 30px 60px -30px rgba(15,23,42,0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
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); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.section { padding-block: 4rem; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: #475569; }
@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(30,41,59,0.08);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(248,250,252,0.94); box-shadow: 0 6px 30px -20px rgba(15,23,42,0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(30,41,59,0.15); color: var(--color-neutral-dark); border-radius: 10px; padding: .5rem; cursor: pointer; }
.primary-nav { display: none; }
.primary-nav.is-open { display: flex; }
.primary-nav {
  position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column;
  background: var(--color-neutral-light);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(30,41,59,0.08);
  gap: 0.25rem;
}
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: .6rem 0; position: relative; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; position: static; padding: 0; background: transparent; border: 0; gap: 1.75rem; }
  .primary-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 .25s var(--ease); }
  .primary-nav a:hover { text-decoration: none; }
  .primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.4rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 700; font-size: .95rem; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 10px 24px -12px rgba(37,99,235,0.6); }
.btn-primary:hover { box-shadow: 0 16px 32px -14px rgba(37,99,235,0.7); }
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(249,115,22,0.6); }
.btn-accent:hover { background: #ea6a10; }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border-color: rgba(30,41,59,0.2); }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-link { background: transparent; color: var(--color-primary); padding: .5rem .75rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

/* === Hero (hero-card) === */
.hero {
  padding: 3rem 0 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(249,115,22,0.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 100%, rgba(59,130,246,0.15), transparent 60%),
    linear-gradient(180deg, #EEF3FB 0%, var(--color-neutral-light) 100%);
}
@media (min-width: 768px) { .hero { padding: 5rem 0 6rem; } }
.hero-card__panel {
  max-width: 880px;
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30,41,59,0.05);
}
@media (min-width: 768px) { .hero-card__panel { padding: 4rem; } }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: .8rem; font-weight: 600; color: var(--color-primary); margin-bottom: 1rem; }
.lede { font-size: 1.15rem; color: #475569; max-width: 60ch; }
.hero-card__image { margin: 2rem 0 0; }
.hero-card__image img { border-radius: 14px; aspect-ratio: 16/9; object-fit: cover; box-shadow: var(--shadow-md); }

/* === Highlights / Cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.align-center { align-items: center; }
.align-start { align-items: start; }

.card {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(30,41,59,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-lg { padding: 2rem; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(59,130,246,0.18));
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: #475569; margin: 0; }

/* === Intro split === */
.intro-split .media img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-md); }
@media (min-width: 700px) {
  .intro-split .grid-2 { gap: 3.5rem; }
}

/* === Testimonial === */
.testimonial blockquote {
  margin: 0;
  text-align: center;
  padding: 2rem 1rem;
}
.testimonial .quote-mark { color: var(--color-accent); opacity: .6; margin: 0 auto 1rem; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2.2vw, 1.6rem); font-weight: 500; color: var(--color-neutral-dark); max-width: 60ch; margin: 0 auto 1.25rem; line-height: 1.4; }
.testimonial cite { font-style: normal; color: #64748b; font-size: .95rem; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), #1D4ED8);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 60% at 90% 100%, rgba(249,115,22,0.35), transparent 60%);
  pointer-events: none;
}
.cta-band__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; position: relative; }
.cta-band h2 { color: #fff; margin: 0 0 .5rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
@media (min-width: 800px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
  .cta-band { padding: 4rem 0; }
}

/* === FAQ === */
.faq-list details {
  background: #fff;
  border: 1px solid rgba(30,41,59,0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease);
}
.faq-list details[open] { box-shadow: var(--shadow-md); }
.faq-list summary { font-family: var(--font-heading); font-weight: 700; cursor: pointer; list-style: none; padding: .25rem 0; position: relative; padding-right: 2rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 0; font-size: 1.5rem; color: var(--color-primary); transition: transform .2s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: .75rem 0 .25rem; color: #475569; }

/* === Contact page === */
.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(30,41,59,0.06); }
.form-row { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-weight: 600; font-size: .9rem; }
.form-row input, .form-row textarea {
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid rgba(30,41,59,0.18);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.form-consent { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: #475569; margin: 0 0 1.25rem; flex-wrap: wrap; }
.form-consent input { margin-top: .25rem; }
.contact-card { background: #fff; padding: 1.75rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(30,41,59,0.06); }
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours caption { text-align: left; font-weight: 700; padding-bottom: .5rem; font-family: var(--font-heading); }
.hours th, .hours td { padding: .5rem 0; border-bottom: 1px solid rgba(30,41,59,0.08); text-align: left; font-weight: 400; }
.hours th { color: #475569; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: #cbd5e1; padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; } }
.site-footer h4 { color: #fff; margin-bottom: 1rem; font-family: var(--font-heading); }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.footer-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.footer-logo { margin-bottom: 1rem; display: inline-flex; }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.legal-links { margin-top: 1rem; font-size: .9rem; }
.copyright { border-top: 1px solid rgba(203,213,225,0.12); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .875rem; color: #94a3b8; }

/* === 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;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  max-width: 560px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .9rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn-ghost { color: var(--color-neutral-light); border-color: rgba(248,250,252,0.3); }
.cookie-banner__actions .btn-link { color: var(--color-neutral-light); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: .5rem; }

/* === Scroll reveal === */
.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; }
}
