:root {
  --color-primary: #1C1917;
  --color-secondary: #44403C;
  --color-accent: #CA8A04;
  --color-neutral-dark: #0C0A09;
  --color-neutral-light: #FAFAF9;
  --color-border: rgba(12, 10, 9, 0.08);
  --color-muted: rgba(68, 64, 60, 0.85);
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --shadow-sm: 0 2px 20px rgba(12, 10, 9, 0.06);
  --shadow-md: 0 20px 40px -20px rgba(12, 10, 9, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(12, 10, 9, 0.28);
}

/* === Base === */
*, *::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-primary);
  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: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 1rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding-block: 4rem; }
.section__head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section__head p { color: var(--color-muted); font-size: 1.05rem; }
.eyebrow { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent); margin: 0 0 1rem; }

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

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  box-shadow: 0 10px 25px -12px rgba(12, 10, 9, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(12, 10, 9, 0.7); color: var(--color-neutral-light); }
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--ghost:hover { background: var(--color-primary); color: var(--color-neutral-light); border-color: var(--color-primary); }

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
  background: rgba(250, 250, 249, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
}
.logo--footer img { height: 64px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.5rem;
  color: var(--color-primary);
  cursor: pointer;
}
.primary-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.6rem 0.25rem;
  position: relative;
}
.primary-nav a[aria-current="page"] { color: var(--color-accent); }
.nav-cta { background: var(--color-primary); color: var(--color-neutral-light) !important; padding: 0.7rem 1.25rem !important; border-radius: 999px; text-align: center; margin-top: 0.5rem; }
.nav-cta:hover { background: var(--color-accent); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 1.75rem;
  }
  .primary-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    height: 2px; width: 100%;
    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); }
  .nav-cta { margin-top: 0; }
  .nav-cta::after { display: none; }
}

/* === Hero (split) === */
.hero {
  position: relative;
  padding-block: 3.5rem 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(202, 138, 4, 0.10), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(28, 25, 23, 0.06), transparent 60%),
    var(--color-neutral-light);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero__text .hero__sub {
  color: var(--color-muted);
  font-size: 1.15rem;
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__proof {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.hero__proof strong { color: var(--color-primary); font-family: var(--font-heading); font-size: 1.4rem; display: block; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .hero { padding-block: 6rem 5rem; }
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  .hero__text h1 { font-weight: 700; }
}

/* === Intro === */
.intro__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.intro__inner p { color: var(--color-muted); font-size: 1.1rem; }

.intro-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.intro-split__grid p { color: var(--color-muted); font-size: 1.05rem; }
.intro-split__media img { border-radius: 20px; box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
@media (min-width: 900px) {
  .intro-split__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

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

.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(202, 138, 4, 0.35); }
.card p { color: var(--color-muted); font-size: 0.98rem; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(202, 138, 4, 0.15), rgba(202, 138, 4, 0.05));
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* === Stats === */
.stats .stat { text-align: left; }
.stat__num {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.75rem;
}
.stat h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.stat p { color: var(--color-muted); font-size: 0.95rem; }

/* === Testimonial === */
.testimonial-section { background: var(--color-primary); color: var(--color-neutral-light); }
.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-neutral-light);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-style: normal;
  color: rgba(250, 250, 249, 0.7);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  padding-block: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 138, 4, 0.25), transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(250, 250, 249, 0.8); max-width: 60ch; }
.cta-band .btn--primary {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
}
.cta-band .btn--primary:hover { background: var(--color-neutral-light); }
@media (min-width: 768px) {
  .cta-band { padding-block: 4rem; }
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* === FAQ === */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Contact form === */
.form__wrap { max-width: 780px; margin: 0 auto; }
.form {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-secondary);
}
.form input, .form textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  color: var(--color-primary);
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.15);
}
.form__consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.form__consent input { width: auto; margin-top: 0.2rem; }
.form__consent a { color: var(--color-accent); text-decoration: underline; }
.form button[type="submit"] { align-self: flex-start; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 250, 249, 0.75);
  padding-block: 3.5rem 1.5rem;
  margin-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 3rem; }
}
.site-footer h4 { color: var(--color-neutral-light); font-family: var(--font-heading); font-size: 1rem; margin-bottom: 1rem; }
.footer__tag { color: rgba(250, 250, 249, 0.6); font-size: 0.95rem; margin-top: 0.75rem; }
.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a, .footer__contact a { color: rgba(250, 250, 249, 0.75); font-size: 0.95rem; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--color-accent); }
.footer__contact address { font-style: normal; line-height: 1.7; font-size: 0.95rem; }
.footer__legal { margin-top: 1rem; font-size: 0.9rem; }
.footer__legal a { color: rgba(250, 250, 249, 0.6); }
.footer__base { border-top: 1px solid rgba(250, 250, 249, 0.1); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.85rem; color: rgba(250, 250, 249, 0.5); }

/* === 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: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  max-width: 620px;
  margin-left: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 0.92rem; color: rgba(250, 250, 249, 0.85); margin-bottom: 1rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.55rem 1rem; font-size: 0.85rem; }
.cookie-banner__actions .btn--primary { background: var(--color-accent); color: var(--color-neutral-dark); box-shadow: none; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(250, 250, 249, 0.25); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(250, 250, 249, 0.1); color: var(--color-neutral-light); border-color: rgba(250, 250, 249, 0.4); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(250, 250, 249, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(250, 250, 249, 0.9); }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: 0.5rem; }

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