:root {
  --color-primary: #4F46E5;
  --color-secondary: #818CF8;
  --color-accent: #F97316;
  --color-neutral-dark: #1E1B4B;
  --color-neutral-light: #EEF2FF;
  --color-text: #1E1B4B;
  --color-muted: #4B5375;
  --color-border: rgba(30, 27, 75, 0.10);
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 2px 20px rgba(30, 27, 75, 0.06);
  --shadow-lift: 0 20px 50px -20px rgba(30, 27, 75, 0.25);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  -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, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .75rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-heading);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.lede { font-size: 1.1rem; color: var(--color-muted); max-width: 60ch; }
.section-sub { color: var(--color-muted); max-width: 60ch; margin: 0 auto 1rem; }

/* === Header (glass nav) === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.92); box-shadow: 0 8px 24px -18px rgba(30, 27, 75, 0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; gap: 1rem; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.nav-toggle {
  background: transparent; border: 1px solid var(--color-border);
  color: var(--color-neutral-dark);
  border-radius: 10px; padding: .4rem .55rem;
  cursor: pointer;
}
.primary-nav { display: none; }
.primary-nav.is-open {
  display: flex; flex-direction: column;
  position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem);
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  gap: .5rem;
  box-shadow: var(--shadow-lift);
}
.primary-nav a {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  font-weight: 600;
  font-size: .95rem;
  padding: .5rem .25rem;
  position: relative;
}
.primary-nav a:hover { text-decoration: none; color: var(--color-primary); }
.primary-nav a.nav-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  padding: .55rem 1rem;
  border-radius: 999px;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; gap: 1.75rem; position: static; padding: 0; box-shadow: none; border: 0; background: transparent; }
  .primary-nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--color-primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .primary-nav a:not(.nav-cta):hover::after,
  .primary-nav a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); }
  .primary-nav a.nav-cta::after { display: none; }
}

/* === Hero card === */
.hero { position: relative; padding: 3rem 0 4rem; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 60% at 15% 20%, rgba(129, 140, 248, 0.28), transparent 60%),
    radial-gradient(50% 50% at 85% 30%, rgba(249, 115, 22, 0.15), transparent 60%),
    linear-gradient(180deg, var(--color-neutral-light), #ffffff);
  z-index: -1;
}
.hero-card__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 2rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.hero-card__inner h1 { margin-bottom: 1rem; }
.hero-card__figure {
  margin: 1.5rem 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--color-neutral-light);
}
.hero-card__figure img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .hero { padding: 5rem 0 6rem; }
  .hero-card__inner { padding: 3.5rem 3rem 3rem; }
}

/* === Buttons === */
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.4rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(79, 70, 229, 0.55);
}
.btn-primary:hover { box-shadow: 0 18px 34px -14px rgba(79, 70, 229, 0.7); }
.btn-ghost {
  background: transparent;
  color: var(--color-neutral-dark);
  border-color: var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(249, 115, 22, 0.55);
}
:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; border-radius: 4px; }

/* === Sections === */
.section { padding: 3.5rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2rem; }
.intro { text-align: center; }
.intro .container p { text-align: left; }
.intro h2 { margin-bottom: .5rem; }

/* === Grids & cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: var(--shadow-soft);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.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), #ffffff);
  color: var(--color-primary);
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
}

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-light); border-radius: var(--radius-lg); }
.testimonial {
  margin: 0; text-align: center; padding: 1rem 0;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--color-neutral-dark);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0 auto 1rem;
}
.testimonial cite {
  display: block; font-style: normal;
  color: var(--color-muted);
  font-size: .95rem;
  font-weight: 500;
}

/* === CTA band === */
.cta-band {
  margin: 2rem 1rem; padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 55ch; margin: 0 auto 1.5rem; }
.cta-band .contact-line { margin-bottom: 1.5rem; }
.cta-band a { color: #fff; text-decoration: underline; }
.cta-band .btn { text-decoration: none; }
@media (min-width: 768px) {
  .cta-band { margin: 4rem auto; max-width: 1120px; padding: 4rem 3rem; }
}

/* === FAQ === */
.faq-list details {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  transition: box-shadow .2s;
}
.faq-list details[open] { box-shadow: var(--shadow-soft); }
.faq-list summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-weight: 600;
  color: var(--color-neutral-dark);
  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;
  color: var(--color-primary); font-size: 1.4rem; line-height: 1;
  transition: transform .2s;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-top: .75rem; color: var(--color-muted); }

/* === Gallery === */
.gallery-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-grid figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.gallery-grid img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }

/* === Contact form === */
.contact-form { display: grid; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label {
  font-family: var(--font-heading); font-weight: 600;
  color: var(--color-neutral-dark); font-size: .92rem;
}
.form-row input, .form-row textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: .8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff; color: var(--color-text);
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus, .form-row 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: .88rem; color: var(--color-muted);
  line-height: 1.5;
}
.form-consent input { margin-top: .2rem; flex-shrink: 0; }

/* === Contact band === */
.contact-band { background: var(--color-neutral-light); }
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-grid address { font-style: normal; margin: .25rem 0 .5rem; }
.hours { border-collapse: collapse; width: 100%; }
.hours th, .hours td { text-align: left; padding: .45rem .5rem; border-bottom: 1px solid var(--color-border); font-weight: 500; }
.hours th { font-family: var(--font-heading); color: var(--color-neutral-dark); }
.hours td { color: var(--color-muted); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .02em; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.footer-logo img { height: 64px; filter: brightness(0) invert(1); }
.footer-tag { color: rgba(238, 242, 255, 0.7); margin-top: .75rem; font-size: .95rem; }
.footer-nav { display: flex; flex-direction: column; gap: .4rem; }
.footer-nav a, .footer-contact a { color: var(--color-neutral-light); text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--color-secondary); }
.footer-contact address { font-style: normal; color: rgba(238, 242, 255, 0.8); margin: 0 0 1rem; font-size: .95rem; line-height: 1.7; }
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .85rem; }
.legal-links a { color: rgba(238, 242, 255, 0.75); }
.copyright {
  border-top: 1px solid rgba(238, 242, 255, 0.15);
  padding-top: 1.25rem; margin-top: 2rem;
  font-size: .85rem;
  color: rgba(238, 242, 255, 0.6);
  text-align: center;
}

/* === 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);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .85rem; font-size: .92rem; color: rgba(238, 242, 255, 0.9); }
.cookie-banner p a { color: var(--color-secondary); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button {
  font-family: var(--font-heading); font-weight: 600; font-size: .88rem;
  padding: .55rem 1rem; border-radius: 999px;
  border: 1px solid rgba(238, 242, 255, 0.2);
  background: transparent; color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-accent); border-color: var(--color-accent); color: #fff;
}
.cookie-banner__actions button:hover { background: rgba(238, 242, 255, 0.1); }
.cookie-banner__actions button[data-cookie-accept]:hover { background: #ea6a10; }
.cookie-banner__prefs {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(238, 242, 255, 0.15);
  display: flex; flex-direction: column; gap: .6rem;
}
.cookie-banner__prefs label { font-size: .9rem; display: flex; align-items: center; gap: .5rem; }
.cookie-banner__prefs button {
  align-self: flex-start;
  font-family: var(--font-heading); font-weight: 600; font-size: .85rem;
  padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid rgba(238, 242, 255, 0.3);
  background: transparent; color: var(--color-neutral-light); cursor: pointer;
}

/* === 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; }
  html { scroll-behavior: auto; }
}
