:root {
  --color-primary: #18181B;
  --color-secondary: #27272A;
  --color-accent: #F8FAFC;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --color-border: rgba(9,9,11,0.10);
  --color-muted: #52525B;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 20px rgba(9,9,11,0.06);
  --shadow-md: 0 12px 40px -12px rgba(9,9,11,0.18);
  --shadow-lg: 0 30px 60px -30px rgba(9,9,11,0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === 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;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* === Header / nav (glass) === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease-hover), border-color .3s var(--ease-hover), box-shadow .3s var(--ease-hover);
}
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 24px -18px rgba(9,9,11,0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.primary-nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}
.primary-nav a {
  font-size: 0.95rem; font-weight: 500; color: var(--color-secondary);
  position: relative; padding: 0.25rem 0;
  transition: color .2s var(--ease-hover);
}
.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-hover);
}
.primary-nav a:hover { color: var(--color-primary); }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta {
  background: var(--color-primary); color: var(--color-neutral-light);
  padding: 0.55rem 1.1rem; border-radius: 999px;
}
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { color: var(--color-neutral-light); background: var(--color-secondary); }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 42px; height: 42px; padding: 10px; background: transparent; border: 1px solid var(--color-border);
  border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-primary); border-radius: 2px; transition: transform .3s; }
.site-header.nav-open .primary-nav {
  display: flex; flex-direction: column;
  position: absolute; left: 0; right: 0; top: 100%;
  padding: 1.5rem 1.25rem; background: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-border);
  gap: 1rem;
}
@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s var(--ease-hover);
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  box-shadow: 0 8px 24px -10px rgba(9,9,11,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(9,9,11,0.65); }
.btn-ghost {
  background: transparent; border-color: var(--color-border); color: var(--color-primary);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--color-primary); }
.btn:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

/* === Hero split === */
.hero {
  position: relative;
  padding: 3rem 1.25rem 4rem;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 20% 20%, rgba(24,24,27,0.05), transparent 60%),
              radial-gradient(45% 55% at 80% 10%, rgba(39,39,42,0.06), transparent 60%);
  z-index: 0; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  align-items: center;
}
.hero-text .eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; font-weight: 600; color: var(--color-muted);
  margin-bottom: 1rem;
}
.hero-text h1 { max-width: 18ch; }
.hero-text .lede {
  font-size: 1.15rem; color: var(--color-secondary); max-width: 46ch; margin-block: 1.25rem 1.75rem;
}
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-visual img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) {
  .hero { padding: 5rem 1.5rem 6rem; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* === Sections === */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 1.25rem;
}
.section.narrow { max-width: 780px; }
.section.narrow h2 { max-width: 24ch; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }

/* === Grid cards === */
.grid-4 {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .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;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover), border-color .25s var(--ease-hover);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(9,9,11,0.18); }
.card-icon {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--color-primary); color: var(--color-neutral-light);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; color: var(--color-secondary); margin: 0; }

/* === Split section === */
.split-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
@media (min-width: 900px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.split-visual img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}

/* === Testimonial === */
.testimonial-section { max-width: 900px; }
.testimonial {
  text-align: center; padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(24,24,27,0.02), rgba(39,39,42,0.05));
  border-radius: var(--radius-lg); border: 1px solid var(--color-border);
  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-primary);
  margin-bottom: 1.25rem;
}
.testimonial cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  margin: 0 auto; padding: 4rem 1.25rem;
  max-width: 1200px;
}
.cta-inner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 80% 20%, rgba(248,250,252,0.14), transparent 60%);
  pointer-events: none;
}
.cta-inner h2, .cta-inner p { color: var(--color-neutral-light); position: relative; }
.cta-inner p { color: rgba(250,250,250,0.8); max-width: 52ch; margin: 0 auto 1.75rem; }
.cta-inner .btn-primary {
  background: var(--color-neutral-light); color: var(--color-primary);
  position: relative;
}
.cta-inner .btn-primary:hover { background: #fff; }

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-list details {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  transition: box-shadow .2s var(--ease-hover);
}
.faq-list details[open] { box-shadow: var(--shadow-sm); }
.faq-list summary {
  cursor: pointer; font-family: var(--font-heading); font-weight: 600;
  font-size: 1.05rem; color: var(--color-primary); list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; font-size: 1.5rem; color: var(--color-muted); transition: transform .2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: 0.75rem 0 0; color: var(--color-secondary); font-size: 0.98rem; }

/* === Contact === */
.contact-inner {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) { .contact-inner { grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: start; } }
.contact-info address {
  font-style: normal; line-height: 1.7; color: var(--color-secondary);
  margin-bottom: 1.5rem;
}
.contact-info a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.muted { color: var(--color-muted); font-size: 0.98rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.95rem; }
.hours caption { font-family: var(--font-heading); font-weight: 600; text-align: left; color: var(--color-primary); margin-bottom: 0.5rem; }
.hours th, .hours td { padding: 0.5rem 0; text-align: left; border-bottom: 1px solid var(--color-border); }
.hours th { font-weight: 500; color: var(--color-secondary); }
.hours td { color: var(--color-muted); }
.contact-form {
  background: #fff; border: 1px solid var(--color-border);
  padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-size: 1.5rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.field label { font-size: 0.9rem; font-weight: 500; color: var(--color-secondary); margin-bottom: 0.35rem; }
.field input, .field textarea {
  font: inherit; padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border); border-radius: 10px;
  background: var(--color-neutral-light); color: var(--color-primary);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--color-muted); margin: 0.75rem 0 1.25rem; }
.form-consent input { margin-top: 0.25rem; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }
.contact-band .contact-line { text-align: center; max-width: 760px; margin: 0 auto; color: var(--color-secondary); }
.contact-band .contact-line a { color: var(--color-primary); text-decoration: underline; }

/* === Footer === */
.site-footer {
  background: var(--color-primary);
  color: rgba(250,250,250,0.75);
  padding: 4rem 1.25rem 2rem;
  margin-top: 4rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; } }
.site-footer .logo img { height: 72px; filter: invert(1) brightness(1.4); }
.site-footer .tagline { margin-top: 1rem; max-width: 30ch; font-size: 0.95rem; }
.site-footer h4 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: 1rem; }
.site-footer nav { display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer nav a { color: rgba(250,250,250,0.75); font-size: 0.95rem; transition: color .2s; }
.site-footer nav a:hover { color: var(--color-neutral-light); }
.site-footer address { font-style: normal; line-height: 1.7; font-size: 0.95rem; }
.site-footer address a { color: rgba(250,250,250,0.85); }
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.legal-links a { font-size: 0.85rem; text-decoration: underline; color: rgba(250,250,250,0.7); }
.copyright {
  max-width: 1200px; margin: 3rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(250,250,250,0.12);
  font-size: 0.85rem; color: rgba(250,250,250,0.6);
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  display: none; z-index: 9999;
  max-width: 640px; margin-left: auto;
  background: var(--color-neutral-dark); color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem; border-radius: var(--radius-md);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  border: 1px solid rgba(250,250,250,0.1);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner__actions button {
  font: inherit; cursor: pointer; padding: 0.55rem 1rem;
  border-radius: 999px; border: 1px solid rgba(250,250,250,0.25);
  background: transparent; color: var(--color-neutral-light); font-size: 0.88rem;
  transition: background .2s;
}
.cookie-banner__actions button:hover { background: rgba(250,250,250,0.1); }
.cookie-banner__actions [data-cookie-accept] {
  background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); font-weight: 600;
}
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs [data-cookie-save] {
  align-self: flex-start; margin-top: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid rgba(250,250,250,0.25);
  background: transparent; color: var(--color-neutral-light); cursor: pointer;
}

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