:root {
  --color-primary: #18181B;
  --color-secondary: #27272A;
  --color-accent: #F8FAFC;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --color-muted: #52525B;
  --color-border: rgba(9, 9, 11, 0.10);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-rest: 0 2px 20px rgba(9, 9, 11, 0.06);
  --shadow-lift: 0 20px 60px -20px rgba(9, 9, 11, 0.25);
}

/* === 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-neutral-dark); background: var(--color-neutral-light); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { 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: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 780px; }
.section { padding-block: 4rem; }
.section-tinted { background: var(--color-accent); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; font-weight: 600; color: var(--color-muted); margin: 0 0 1rem; }

/* === Header / Nav === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 250, 250, 0.75); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid var(--color-border); transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.site-header.scrolled { background: rgba(250, 250, 250, 0.92); box-shadow: 0 4px 24px -12px rgba(9, 9, 11, 0.15); }
.site-header__inner { max-width: 1160px; margin-inline: auto; padding: 0.75rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.logo:hover { text-decoration: none; }
.primary-nav { display: none; }
.primary-nav a { display: block; padding: 0.5rem 0; color: var(--color-secondary); font-weight: 500; font-size: 0.95rem; position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.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); }
.nav-toggle { background: transparent; border: 1px solid var(--color-border); border-radius: 10px; padding: 0.5rem; color: var(--color-neutral-dark); display: inline-flex; }
.primary-nav.is-open { display: flex; flex-direction: column; gap: 0.25rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-rest); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .primary-nav { display: flex; gap: 2rem; }
  .nav-toggle { display: none; }
}

/* === Hero card === */
.hero { padding: 3rem 1.25rem; position: relative; overflow: hidden; background: radial-gradient(circle at 20% 10%, rgba(24, 24, 27, 0.06), transparent 60%), radial-gradient(circle at 90% 90%, rgba(24, 24, 27, 0.04), transparent 60%); }
.hero-card { display: flex; justify-content: center; }
.hero-card__card { width: 100%; max-width: 880px; margin-inline: auto; padding: 2.5rem 1.5rem; border-radius: var(--radius-lg); background: var(--color-neutral-light); box-shadow: var(--shadow-lift); border: 1px solid var(--color-border); text-align: left; }
.hero-card__card h1 { max-width: 22ch; }
.hero-sub { font-size: 1.125rem; color: var(--color-muted); max-width: 52ch; margin-bottom: 1.75rem; }
.hero-card__image { margin-top: 2rem; border-radius: var(--radius-md); overflow: hidden; }
.hero-card__image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

@media (min-width: 768px) {
  .hero { padding: 5rem 1.25rem; }
  .hero-card__card { padding: 4rem; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease); border: 1px solid transparent; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: var(--color-neutral-light); box-shadow: 0 8px 24px -8px rgba(9, 9, 11, 0.4); }
.btn-primary:hover { box-shadow: 0 14px 32px -8px rgba(9, 9, 11, 0.55); }

/* === Grid cards === */
.grid-3, .grid-4 { 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: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-rest); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); font-size: 0.95rem; margin: 0; }
.card-link { color: inherit; display: block; }
.card-link:hover { text-decoration: none; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--color-accent); color: var(--color-primary); margin-bottom: 1rem; }

/* === Testimonial === */
.testimonial { text-align: center; border: none; padding: 2rem 1rem; margin: 0; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 500; line-height: 1.5; color: var(--color-neutral-dark); }
.testimonial cite { display: block; margin-top: 1.25rem; font-style: normal; font-size: 0.9rem; color: var(--color-muted); letter-spacing: 0.02em; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: var(--color-neutral-light); padding: 4rem 1.25rem; text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250, 250, 250, 0.8); max-width: 55ch; margin-inline: auto; margin-bottom: 1.75rem; }
.cta-band .btn-primary { background: var(--color-neutral-light); color: var(--color-neutral-dark); box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.5); }

/* === FAQ === */
.faq details { border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 0.75rem; background: var(--color-neutral-light); transition: box-shadow 0.2s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-rest); }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); list-style: none; padding-right: 1.5rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 1.5rem; font-weight: 400; transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; } }
.contact-card { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; }
.hours { list-style: none; padding: 0; margin: 0.5rem 0 0; }
.hours li { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.hours li:last-child { border-bottom: none; }

.contact-form { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-rest); }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 500; margin: 0.9rem 0 0.35rem; color: var(--color-secondary); }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-neutral-light); font: inherit; color: var(--color-neutral-dark); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.1); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 1.25rem; width: 100%; }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--color-muted); margin-top: 1rem !important; font-weight: 400 !important; }
.form-consent input { width: auto !important; margin-top: 0.2rem; }

/* === Footer === */
.site-footer { background: var(--color-primary); color: rgba(250, 250, 250, 0.75); padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h3 { color: var(--color-neutral-light); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer a { color: rgba(250, 250, 250, 0.8); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; }
.copyright { border-top: 1px solid rgba(250, 250, 250, 0.1); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.85rem; color: rgba(250, 250, 250, 0.5); }
.logo--footer img { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1); }

/* === 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-md); box-shadow: 0 20px 60px -10px rgba(0,0,0,0.5); max-width: 640px; margin-inline: auto; font-size: 0.9rem; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; color: rgba(250,250,250,0.85); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button { border: 1px solid rgba(250,250,250,0.2); background: transparent; color: var(--color-neutral-light); padding: 0.55rem 1rem; border-radius: 999px; font-size: 0.85rem; }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); color: var(--color-neutral-dark); border-color: var(--color-accent); font-weight: 600; }
.cookie-banner__actions button:hover { background: rgba(250,250,250,0.1); }
.cookie-banner__actions button[data-cookie-accept]:hover { background: var(--color-neutral-light); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; background: var(--color-accent); color: var(--color-neutral-dark); border: none; padding: 0.5rem 1rem; border-radius: 999px; font-weight: 600; font-size: 0.85rem; }

/* === Reveal === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.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; } }

/* === Focus === */
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }
