: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.10);
  --color-muted: #78716C;
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 20px rgba(12, 10, 9, 0.06);
  --shadow-md: 0 12px 32px -12px rgba(12, 10, 9, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(12, 10, 9, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1120px;
}

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

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(250, 250, 249, 0.72);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .25s var(--ease-hover), background .25s var(--ease-hover);
}
.site-header.scrolled {
  background: rgba(250, 250, 249, 0.92);
  box-shadow: 0 6px 24px -18px rgba(12,10,9,0.25);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 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; }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  color: var(--color-primary);
  cursor: pointer;
}
.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  padding: 0.75rem 0 0.5rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  position: relative;
  font-weight: 500;
  padding: 0.55rem 0;
  color: var(--color-secondary);
  transition: color .2s var(--ease-hover);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .site-header__inner { padding: 1rem 2rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 2rem;
    padding: 0;
  }
  .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-hover);
  }
  .primary-nav a:hover::after,
  .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
}

/* === Hero card === */
.hero-card-wrap {
  padding: 3rem 1rem 2rem;
  background:
    radial-gradient(1000px 500px at 15% 0%, rgba(202, 138, 4, 0.10), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, rgba(28, 25, 23, 0.06), transparent 60%),
    var(--color-neutral-light);
}
.hero-card {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin: 0 0 1rem;
  font-weight: 600;
}
.hero-card .lede {
  font-size: 1.15rem;
  color: var(--color-secondary);
  max-width: 60ch;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.hero-card__figure {
  margin: 2rem 0 0;
}
.hero-card__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero-card--slim { padding-bottom: 2rem; }
@media (min-width: 768px) {
  .hero-card-wrap { padding: 5rem 2rem 3rem; }
  .hero-card { padding: 4rem; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s var(--ease-hover);
}
.btn:focus-visible { outline: 3px solid rgba(202, 138, 4, 0.4); outline-offset: 2px; }
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  box-shadow: 0 10px 30px -12px rgba(12, 10, 9, 0.5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(12,10,9,0.55); }
.btn--accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 30px -12px rgba(202,138,4,0.55);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(202,138,4,0.65); }
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--ghost:hover { background: rgba(28, 25, 23, 0.04); transform: translateY(-2px); }

/* === Sections === */
main > section { padding: 3.5rem 1rem; }
@media (min-width: 768px) {
  main > section { padding: 5rem 2rem; }
}
.intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.intro p { color: var(--color-secondary); font-size: 1.05rem; }
.section-head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-head p { color: var(--color-secondary); }

/* === Cards grid === */
.cards {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .cards--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 .2s var(--ease-hover), box-shadow .2s var(--ease-hover);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.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.12), rgba(202,138,4,0.02));
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-secondary); font-size: 0.98rem; margin: 0; }

/* === Testimonial === */
.testimonial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote {
  margin: 0;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-primary);
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* === CTA band === */
.cta-band {
  padding: 0 1rem;
}
@media (min-width: 768px) { .cta-band { padding: 0 2rem; } }
.cta-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  border-radius: var(--radius-xl);
  padding: 3rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__inner::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(202,138,4,0.35), transparent 70%);
  pointer-events: none;
}
.cta-band__inner h2 { color: var(--color-neutral-light); position: relative; }
.cta-band__inner p { color: rgba(250,250,249,0.8); max-width: 60ch; margin-inline: auto; position: relative; }
.cta-band__inner .btn { position: relative; margin-top: 0.75rem; }

/* === FAQ === */
.faq { max-width: 820px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease-hover);
}
.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.4rem;
  color: var(--color-accent);
  transition: transform .2s var(--ease-hover);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--color-secondary); margin-top: 0.75rem; margin-bottom: 0; }

/* === Contact form === */
.contact-form-section { max-width: 720px; margin: 0 auto; }
.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
@media (min-width: 640px) { .contact-form { padding: 2.5rem; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 500; font-size: 0.9rem; color: var(--color-secondary); }
.field input, .field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-neutral-light);
  color: var(--color-primary);
  transition: border-color .2s var(--ease-hover), box-shadow .2s var(--ease-hover);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.2);
}
.contact-form .btn { align-self: flex-start; }

/* === Hours table === */
.hours { max-width: 640px; margin: 0 auto; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.98rem;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table th { font-weight: 600; color: var(--color-primary); width: 45%; }
.hours-table td { color: var(--color-secondary); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 250, 249, 0.75);
  padding: 3.5rem 1.25rem 2rem;
  margin-top: 2rem;
}
.site-footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h3 {
  color: var(--color-neutral-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(250,250,249,0.75); transition: color .2s var(--ease-hover); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; }
.tagline { color: rgba(250,250,249,0.65); margin-top: 0.75rem; }
.logo--footer img { height: 60px; filter: brightness(0) invert(1); }
.legal-links { margin-top: 1rem; font-size: 0.9rem; }
.copyright {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 250, 249, 0.08);
  font-size: 0.85rem;
  color: rgba(250,250,249,0.55);
  text-align: center;
}

/* === 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.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  max-width: 640px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.95rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font: inherit;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 249, 0.2);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background .2s var(--ease-hover);
}
.cookie-banner button:hover { background: rgba(250,250,249,0.08); }
.cookie-banner [data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.cookie-banner [data-cookie-accept]:hover { background: #b47804; }
.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.12);
}
.cookie-banner__prefs label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs [data-cookie-save] {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

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