:root {
  --color-primary: #1C1917;
  --color-secondary: #44403C;
  --color-accent: #CA8A04;
  --color-neutral-dark: #0C0A09;
  --color-neutral-light: #FAFAF9;
  --color-border: rgba(28, 25, 23, 0.12);
  --color-muted: rgba(28, 25, 23, 0.65);
  --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-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 2px 20px rgba(12, 10, 9, 0.06);
  --shadow-lift: 0 20px 60px -20px rgba(12, 10, 9, 0.25);
}

/* === 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;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 600;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.lede { font-size: 1.125rem; color: var(--color-secondary); max-width: 60ch; }
.center { text-align: center; margin-inline: auto; }

/* === Header / Glass 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 .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 250, 249, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 6px 24px -18px rgba(12, 10, 9, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.primary-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  background: var(--color-neutral-light);
  padding: 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.75rem;
  display: none;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}
.primary-nav a.is-active { color: var(--color-accent); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .primary-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    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.is-active::after { transform: scaleX(1); }
  .logo img { height: 96px; }
}

/* === Hero === */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 4rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(202, 138, 4, 0.06), rgba(28, 25, 23, 0.02));
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(202, 138, 4, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero-sub {
  max-width: 52ch;
  margin: 1.25rem auto 2rem;
  color: var(--color-secondary);
  font-size: 1.125rem;
}
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-image {
  margin-inline: auto;
  max-width: 1000px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hero-compact { padding-block: 4rem 2rem; }

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

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  color: var(--color-neutral-light);
}
.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-primary);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-neutral-light);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(202, 138, 4, 0.6);
  color: var(--color-neutral-light);
}

/* === Sections === */
.section { padding-block: 4rem; }
.section-alt { background: #F5F5F4; }
.section-head { text-align: center; margin-inline: auto; margin-bottom: 3rem; max-width: 720px; }
.section-head .lede { margin-inline: auto; }
@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}

/* === Grids & Cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .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-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.card h3 { margin-top: 0.75rem; }
.card p { color: var(--color-secondary); margin-bottom: 0; }
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(202, 138, 4, 0.14), rgba(202, 138, 4, 0.04));
  color: var(--color-accent);
}

/* === Stats === */
.stats .stat { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

/* === Testimonial === */
.testimonial {
  margin: 0;
  padding: 2rem;
  background: var(--color-neutral-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-soft);
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary);
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-top: 1rem;
}

/* === CTA Band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: var(--color-neutral-light);
  padding-block: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(202, 138, 4, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250, 250, 249, 0.8); max-width: 60ch; margin-inline: auto; }
.cta-detail { font-size: 0.9375rem; margin-bottom: 1.5rem; }

/* === FAQ === */
.faq details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  background: var(--color-neutral-light);
  margin-bottom: 0.75rem;
  transition: box-shadow .2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-soft); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.0625rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--color-accent);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0.75rem 0 0; color: var(--color-secondary); }

/* === Contact Form === */
.contact-form {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
}
.form-row input, .form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-primary);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.18);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-secondary);
}
.form-consent input { margin-top: 0.25rem; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }

/* === Contact info === */
.contact-grid { align-items: center; }
.contact-info p { color: var(--color-secondary); }
.hours {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--color-border);
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}
.hours li span:first-child { font-family: var(--font-heading); font-weight: 500; }
.contact-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 250, 249, 0.8);
  padding-block: 3rem 1.5rem;
  margin-top: 0;
}
.site-footer a { color: rgba(250, 250, 249, 0.8); }
.site-footer a:hover { color: var(--color-accent); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 250, 249, 0.1);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; }
}
.footer-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.tagline { color: rgba(250, 250, 249, 0.7); margin-top: 0.75rem; }
.site-footer h4 {
  color: var(--color-neutral-light);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.legal-links { margin-top: 1rem; font-size: 0.875rem; }
.copyright {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(250, 250, 249, 0.55);
}

/* === 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: var(--shadow-lift);
  max-width: 640px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9375rem; }
.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 249, 0.3);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
  transition: background .2s var(--ease);
}
.cookie-banner button:hover { background: rgba(250, 250, 249, 0.1); }
.cookie-banner [data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.cookie-banner [data-cookie-accept]:hover { background: #E09B0A; }
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 250, 249, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cookie-banner__prefs label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.cookie-banner__prefs [data-cookie-save] {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--color-neutral-light);
  color: var(--color-primary);
  border-color: var(--color-neutral-light);
}

/* === 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; }
}
