:root {
  --color-primary: #64748B;
  --color-secondary: #94A3B8;
  --color-accent: #F97316;
  --color-neutral-dark: #334155;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(51, 65, 85, 0.12);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px -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 { scroll-behavior: smooth; -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-neutral-dark); text-decoration: none; }
a:hover { color: var(--color-accent); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 760px; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  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 transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(248, 250, 252, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.15);
}
.site-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: 0; padding: .5rem; display: inline-flex; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; transition: transform .2s, 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; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); border-bottom: 1px solid var(--color-border); }
.primary-nav.is-open { display: block; }
.primary-nav ul { list-style: none; margin: 0; padding: .75rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a { display: block; padding: .65rem .25rem; font-weight: 500; color: var(--color-neutral-dark); position: relative; }
.primary-nav a[aria-current="page"] { color: var(--color-accent); }
.primary-nav .nav-cta { color: var(--color-accent); font-weight: 600; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block; position: static; background: transparent; border: 0; }
  .primary-nav ul { flex-direction: row; align-items: center; padding: 0; gap: 1.75rem; }
  .primary-nav a { padding: .35rem 0; }
  .primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .primary-nav a:hover::after,
  .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .primary-nav .nav-cta { padding: .55rem 1.1rem; border-radius: 999px; background: var(--color-accent); color: #fff; }
  .primary-nav .nav-cta::after { display: none; }
  .primary-nav .nav-cta:hover { color: #fff; transform: translateY(-1px); }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem 1.6rem; border-radius: 999px; font-weight: 600; font-family: var(--font-heading); font-size: .98rem; line-height: 1; border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; text-decoration: none; }
.btn--primary { background: linear-gradient(135deg, var(--color-accent), #EA580C); color: #fff; box-shadow: 0 10px 24px -12px rgba(249, 115, 22, 0.65); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(249, 115, 22, 0.7); }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { color: var(--color-neutral-dark); border-color: var(--color-neutral-dark); transform: translateY(-2px); }

/* === Hero === */
.hero { position: relative; padding-block: 4rem 3rem; overflow: hidden; text-align: center; }
.hero__glow { position: absolute; inset: -20% 0 auto 0; height: 500px; background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.12), transparent 60%); pointer-events: none; z-index: 0; }
.hero__inner { position: relative; z-index: 1; max-width: 780px; }
.eyebrow { font-family: var(--font-heading); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent); margin-bottom: 1rem; }
.hero h1 { margin-inline: auto; max-width: 20ch; }
.hero__sub { max-width: 52ch; margin-inline: auto; font-size: 1.1rem; color: var(--color-primary); margin-block: 1.25rem 1.75rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.hero__media { max-width: 1080px; margin-top: 3rem; }
.hero__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); }

@media (min-width: 768px) {
  .hero { padding-block: 6rem 4rem; }
}

.proof-strip { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2.25rem; color: var(--color-primary); font-size: .9rem; font-weight: 500; }
.proof-strip span { position: relative; padding-left: 1.25rem; }
.proof-strip span::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }

/* === Sections === */
.section { padding-block: 4rem; }
.section--narrow .container { max-width: 760px; }
.section--narrow h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.section--tint { background: linear-gradient(180deg, rgba(100, 116, 139, 0.06), transparent); }
.section__head { text-align: center; margin-bottom: 2.5rem; max-width: 640px; margin-inline: auto; }
.lede { font-size: 1.1rem; color: var(--color-primary); }

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

.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; 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__icon { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(249, 115, 22, 0.12); color: var(--color-accent); margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; color: var(--color-primary); }

.card--step { position: relative; padding-top: 2.25rem; }
.card--step .step-num { position: absolute; top: 1.25rem; right: 1.5rem; font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem; color: var(--color-accent); opacity: .35; letter-spacing: -0.02em; }

/* === Quote === */
.quote { max-width: 780px; margin: 0 auto; text-align: center; padding: 1rem; }
.quote 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.4; }
.quote cite { display: block; margin-top: 1.25rem; font-style: normal; color: var(--color-primary); font-size: .95rem; }

/* === CTA band === */
.cta-band { margin: 4rem 1.25rem; }
.cta-band__inner { background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary)); color: #fff; border-radius: var(--radius-lg); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; box-shadow: var(--shadow-lg); }
.cta-band__inner h2 { color: #fff; margin: 0 0 .35rem; }
.cta-band__inner p { color: rgba(255,255,255,0.85); margin: 0; }
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 3rem 3.5rem; gap: 2.5rem; }
}

/* === Contact === */
.contact-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 1.15fr; gap: 3.5rem; } }
.contact-info h3 { margin-top: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .55rem 0; border-bottom: 1px solid var(--color-border); font-weight: 400; }
.hours th { font-weight: 500; color: var(--color-neutral-dark); }
.hours td { color: var(--color-primary); }

.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.contact-form h2 { margin-bottom: .5rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .92rem; font-weight: 500; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea { font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; background: var(--color-neutral-light); color: var(--color-neutral-dark); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15); }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: .55rem !important; font-weight: 400 !important; font-size: .85rem !important; color: var(--color-primary); }
.form-consent input { margin-top: .2rem; }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: .75rem; }
.faq details { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem 1.25rem; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem; color: var(--color-neutral-dark); list-style: none; position: relative; padding-right: 2rem; }
.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-accent); transition: transform .2s; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: .75rem 0 0; color: var(--color-primary); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(255,255,255,0.75); padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; line-height: 1.7; }
.logo--footer img { height: 64px; filter: brightness(0) invert(1); }
.footer-tagline { margin-top: .75rem; color: rgba(255,255,255,0.6); max-width: 28ch; }
.footer-legal { margin-top: 1rem; }
.site-footer__base { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,0.5); }

/* === Reveal on scroll === */
.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; }
}

/* === 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 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  margin-inline: auto;
  font-size: .9rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; color: rgba(248, 250, 252, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button { font-family: var(--font-heading); font-size: .85rem; font-weight: 600; padding: .55rem 1rem; border-radius: 999px; border: 1px solid rgba(248,250,252,0.25); background: transparent; color: var(--color-neutral-light); transition: background .2s, transform .2s; }
.cookie-banner button:hover { transform: translateY(-1px); }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-accept]:hover { background: #EA580C; border-color: #EA580C; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(248,250,252,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .55rem; font-size: .9rem; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: .5rem; background: var(--color-neutral-light); color: var(--color-neutral-dark); border-color: var(--color-neutral-light); }

:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }
