:root {
  --color-primary: #4F46E5;
  --color-secondary: #818CF8;
  --color-accent: #22C55E;
  --color-neutral-dark: #312E81;
  --color-neutral-light: #EEF2FF;
  --color-text: #1E1B4B;
  --color-muted: #4C4A82;
  --color-white: #ffffff;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 20px rgba(49, 46, 129, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(49, 46, 129, 0.25);
  --shadow-lg: 0 20px 60px -20px rgba(49, 46, 129, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease-hover); }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.15; margin: 0 0 1rem; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; margin-inline: auto; }
.center { text-align: center; }
.eyebrow { font-size: .8rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--color-primary); margin-bottom: .75rem; }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .9rem 1.6rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-white); box-shadow: 0 8px 24px -8px rgba(79, 70, 229, 0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(79, 70, 229, 0.7); color: var(--color-white); }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border: 1.5px solid rgba(49, 46, 129, 0.2); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--color-primary); color: var(--color-primary); }
:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; border-radius: 6px; }

/* === Header / Nav === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(238, 242, 255, 0.72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid rgba(49, 46, 129, 0.08); transition: background .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(255, 255, 255, 0.88); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .75rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: transparent; border: none; width: 44px; height: 44px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 0; }
.nav-toggle span { width: 24px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; transition: transform .25s var(--ease-hover), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--color-white); border-bottom: 1px solid rgba(49, 46, 129, 0.1); box-shadow: var(--shadow-md); }
.primary-nav ul { list-style: none; margin: 0; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a { display: block; padding: .75rem .5rem; font-family: var(--font-heading); font-weight: 500; color: var(--color-neutral-dark); border-radius: 8px; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: var(--color-neutral-light); color: var(--color-primary); }
.nav-cta { background: var(--color-primary); color: var(--color-white) !important; }
.nav-cta:hover { background: var(--color-neutral-dark) !important; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; position: static; background: transparent; box-shadow: none; border: none; }
  .primary-nav ul { flex-direction: row; align-items: center; padding: 0; gap: .25rem; }
  .primary-nav a { position: relative; padding: .5rem .9rem; }
  .primary-nav a:not(.nav-cta)::after { content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .3rem; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-hover); }
  .primary-nav a:not(.nav-cta):hover::after, .primary-nav a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); }
  .primary-nav a:hover { background: transparent; }
  .nav-cta { padding: .55rem 1.15rem !important; border-radius: 999px; }
}
@media (min-width: 768px) {
  .logo img { height: 96px; }
}

/* === Hero (split) === */
.hero { position: relative; padding-block: 3rem 3.5rem; overflow: hidden; background: radial-gradient(ellipse at top right, rgba(34, 197, 94, 0.08), transparent 60%), linear-gradient(180deg, var(--color-neutral-light) 0%, var(--color-white) 100%); }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 30%, rgba(129, 140, 248, 0.18), transparent 50%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero-copy { order: 1; }
.hero-media { order: 2; }
.hero-media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.lede { font-size: 1.15rem; color: var(--color-muted); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero-meta { margin-top: 1.75rem; font-size: .9rem; color: var(--color-muted); }
.hero-thankyou { padding-block: 5rem 3rem; }

@media (min-width: 900px) {
  .hero { padding-block: 5.5rem 6rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; }
}

/* === Sections === */
.section { padding-block: 3.5rem; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }
.intro h2 { text-align: center; }
.intro p { color: var(--color-muted); font-size: 1.05rem; }

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

.card { background: var(--color-white); border: 1px solid rgba(49, 46, 129, 0.08); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover), border-color .25s; display: block; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(79, 70, 229, 0.25); }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { color: inherit; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--color-muted); margin-bottom: 0; }
.card .icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--color-neutral-light), rgba(129, 140, 248, 0.25)); color: var(--color-primary); margin-bottom: 1rem; }

/* === Testimonial === */
.testimonial-section { background: linear-gradient(135deg, var(--color-neutral-light), rgba(129, 140, 248, 0.15)); }
.testimonial { background: var(--color-white); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-md); margin: 0; position: relative; }
.testimonial::before { content: '\201E'; position: absolute; top: -.5rem; left: 1.25rem; font-family: var(--font-heading); font-size: 5rem; color: var(--color-secondary); opacity: .5; line-height: 1; }
.testimonial p { font-size: 1.1rem; color: var(--color-text); font-style: italic; margin-bottom: 1rem; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--color-neutral-dark); font-size: .95rem; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-white); border-radius: 0; }
.cta-band h2 { color: var(--color-white); }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.75rem; }
.cta-band .btn-primary { background: var(--color-accent); box-shadow: 0 10px 30px -8px rgba(34, 197, 94, 0.6); }
.cta-band .btn-primary:hover { background: #16a34a; }

/* === Contact === */
.contact-band .contact-line { font-size: 1rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-card { background: var(--color-neutral-light); border-radius: var(--radius-md); padding: 1.75rem; }
.contact-card address { font-style: normal; margin-bottom: 1.25rem; }
.contact-card h4 { margin-top: 1rem; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th { text-align: left; font-weight: 500; padding: .4rem 0; color: var(--color-neutral-dark); }
.hours td { text-align: right; padding: .4rem 0; color: var(--color-muted); }
.hours tr { border-bottom: 1px solid rgba(49, 46, 129, 0.08); }

/* === Form === */
.contact-form { background: var(--color-white); border: 1px solid rgba(49, 46, 129, 0.1); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 500; margin-bottom: .35rem; font-size: .95rem; color: var(--color-neutral-dark); }
.field input, .field textarea { width: 100%; padding: .75rem .9rem; border: 1px solid rgba(49, 46, 129, 0.18); border-radius: 10px; font-family: var(--font-body); font-size: 1rem; background: var(--color-white); color: var(--color-text); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15); }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--color-muted); margin: 1rem 0 1.25rem; flex-wrap: wrap; }
.form-consent input { margin-top: .2rem; }
.form-success { margin-top: 1rem; padding: 1rem; background: rgba(34, 197, 94, 0.12); color: #14532d; border-radius: 10px; }

/* === FAQ === */
.faq details { background: var(--color-white); border: 1px solid rgba(49, 46, 129, 0.1); border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-bottom: .75rem; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); cursor: pointer; list-style: none; padding-right: 2rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--color-primary); transition: transform .2s; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: .75rem 0 0; color: var(--color-muted); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(238, 242, 255, 0.85); padding: 3.5rem 0 1.5rem; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: var(--color-white); margin-bottom: 1rem; font-size: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer a { color: rgba(238, 242, 255, 0.85); }
.site-footer a:hover { color: var(--color-white); }
.site-footer address { font-style: normal; margin-bottom: 1rem; font-size: .95rem; }
.legal-links { margin-top: 1rem; font-size: .9rem; }
.logo-footer img { filter: brightness(0) invert(1); height: 56px; }
.copyright { border-top: 1px solid rgba(238, 242, 255, 0.12); padding-top: 1.25rem; font-size: .85rem; color: rgba(238, 242, 255, 0.6); }
.copyright p { margin: 0; }

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

/* === Cookie banner === */
.consent-panel { 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-md); box-shadow: var(--shadow-lg); max-width: 640px; margin-inline: auto; font-size: .9rem; }
.consent-panel.is-visible { display: block; }
.consent-panel p { margin: 0 0 1rem; color: rgba(238, 242, 255, 0.9); }
.consent-panel__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.consent-panel__actions button { background: rgba(238, 242, 255, 0.12); color: var(--color-white); border: none; padding: .55rem 1rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 500; cursor: pointer; font-size: .9rem; transition: background .2s; }
.consent-panel__actions button:hover { background: rgba(238, 242, 255, 0.22); }
.consent-panel__actions button[data-cookie-accept] { background: var(--color-accent); }
.consent-panel__actions button[data-cookie-accept]:hover { background: #16a34a; }
.consent-panel__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(238, 242, 255, 0.15); }
.consent-panel__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.consent-panel__prefs button { align-self: flex-start; background: var(--color-primary); color: var(--color-white); border: none; padding: .5rem 1rem; border-radius: 999px; cursor: pointer; margin-top: .5rem; font-family: var(--font-heading); font-weight: 500; }

.reveal,[data-reveal],.fade-in,.animate-in{opacity:1!important;transform:none!important;visibility:visible!important}
