:root {
  --color-primary: #262626;
  --color-secondary: #F5EFE0;
  --color-accent: #C9A961;
  --color-neutral-dark: #0F0F0F;
  --color-neutral-light: #FAFAFA;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(15,15,15,0.06);
  --shadow-md: 0 12px 40px -12px rgba(15,15,15,0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15,15,15,0.25);
  --border-hair: 1px solid rgba(38,38,38,0.10);
}

/* === Base === */
* { box-sizing: border-box; }
html { 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%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; letter-spacing: -0.02em; color: var(--color-neutral-dark); line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 500; color: var(--color-accent); margin: 0 0 1rem; }
.lede { font-size: 1.15rem; color: rgba(38,38,38,0.75); max-width: 52ch; }

/* === Header === */
.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 rgba(38,38,38,0.06);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(250,250,250,0.92); box-shadow: 0 6px 24px -18px rgba(0,0,0,0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  background: transparent; border: none; color: var(--color-primary);
  padding: 0.5rem; cursor: pointer; display: inline-flex;
}
.primary-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(38,38,38,0.08);
  padding: 1rem 1.25rem 1.5rem; flex-direction: column; gap: 0.25rem;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
}
.primary-nav.is-open { display: flex; }
.primary-nav a { padding: 0.65rem 0; font-weight: 500; }
.primary-nav a[aria-current="page"] { color: var(--color-accent); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; position: static; padding: 0; background: transparent; border: none; box-shadow: none; gap: 1.75rem; }
  .primary-nav a { padding: 0.25rem 0; position: relative; }
  .primary-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .primary-nav a:not(.btn):hover::after, .primary-nav a[aria-current="page"]:not(.btn)::after { transform: scaleX(1); }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.4rem; border-radius: 999px; font-weight: 500;
  font-family: var(--font-body); font-size: 0.98rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-decoration: none; line-height: 1;
}
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(15,15,15,0.5); color: var(--color-neutral-light); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-dark); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(201,169,97,0.6); color: var(--color-neutral-dark); }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: rgba(38,38,38,0.2); }
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* === Hero (split) === */
.hero { padding-block: 3rem 4rem; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, rgba(201,169,97,0.16), transparent 60%);
  z-index: 0; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero-content { max-width: 600px; }
.hero-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

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

/* === Thank-you hero === */
.hero-thankyou { padding-block: 4rem 3rem; }
.thankyou-card { max-width: 640px; margin-inline: auto; text-align: center; background: var(--color-neutral-light); border: var(--border-hair); border-radius: var(--radius-lg); padding: 3rem 2rem; box-shadow: var(--shadow-md); }
.thankyou-card .card-icon.success { background: var(--color-accent); color: var(--color-neutral-dark); width: 64px; height: 64px; }

/* === Sections === */
.section { padding-block: 4rem; }
.section-narrow .container { max-width: 780px; }
.section-narrow p { font-size: 1.075rem; }
.section-tinted { background: var(--color-secondary); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: rgba(38,38,38,0.7); }

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

/* === Grids & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2, .grid-3, .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: var(--border-hair);
  border-radius: var(--radius);
  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 h3 { margin-bottom: 0.6rem; }
.card p { color: rgba(38,38,38,0.78); margin: 0; font-size: 0.98rem; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201,169,97,0.15); color: var(--color-accent);
  margin-bottom: 1rem;
}

/* === Team === */
.team-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; margin-bottom: 1.25rem; }

/* === Stats === */
.stats-section { background: var(--color-primary); color: var(--color-neutral-light); }
.stats-section h2, .stats-section h3 { color: var(--color-neutral-light); }
.stat { padding: 1.5rem 0; }
.stat-value { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; color: var(--color-accent); margin: 0 0 0.5rem; letter-spacing: -0.01em; }
.stat p { color: rgba(250,250,250,0.75); margin: 0; }

/* === Quote === */
.section-quote { background: var(--color-secondary); }
.pull-quote { max-width: 780px; margin: 0 auto; text-align: center; padding: 0 1rem; }
.pull-quote p { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 1.85rem); line-height: 1.35; color: var(--color-neutral-dark); margin-bottom: 1.25rem; }
.pull-quote cite { display: block; font-style: normal; color: var(--color-accent); font-weight: 500; letter-spacing: 0.02em; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); padding: 3.5rem 0; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; left: -10%; bottom: -60%;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(201,169,97,0.22), transparent 60%);
  pointer-events: none;
}
.cta-band h2, .cta-band p { color: var(--color-neutral-light); position: relative; }
.cta-band p { color: rgba(250,250,250,0.8); margin: 0; }
.cta-band-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; position: relative; z-index: 1; }
.cta-band-inner .btn { align-self: flex-start; }
@media (min-width: 768px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-band-inner .btn { flex-shrink: 0; }
}

/* === FAQ === */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--color-neutral-light);
  border: var(--border-hair);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease);
}
.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; align-items: center; gap: 1rem; color: var(--color-neutral-dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--color-accent); transition: transform .2s var(--ease); font-weight: 400; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0.75rem 0 0; color: rgba(38,38,38,0.78); }

/* === Info card === */
.info-card { max-width: 720px; margin: 0 auto; background: var(--color-neutral-light); border: var(--border-hair); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); text-align: center; }

/* === Contact === */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1.4fr 1fr; gap: 3.5rem; align-items: start; } }
.contact-form { background: var(--color-neutral-light); border: var(--border-hair); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--color-primary); }
.field input, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 1px solid rgba(38,38,38,0.15);
  border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--color-primary);
  background: var(--color-neutral-light);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 4px rgba(201,169,97,0.15); }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: rgba(38,38,38,0.75); margin: 1rem 0 1.25rem; line-height: 1.5; }
.form-consent input { margin-top: 0.2rem; flex-shrink: 0; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }

.contact-info h3 { margin-bottom: 0.75rem; }
.contact-info h4 { margin-top: 1.75rem; margin-bottom: 0.75rem; color: var(--color-accent); }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { padding: 0.55rem 0; border-bottom: 1px dashed rgba(38,38,38,0.12); text-align: left; }
.hours th { font-weight: 500; }
.hours td { color: rgba(38,38,38,0.75); text-align: right; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250,250,250,0.75); padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.site-footer h4 { color: var(--color-neutral-light); margin-bottom: 1rem; font-size: 0.85rem; letter-spacing: 0.08em; }
.site-footer a { color: rgba(250,250,250,0.75); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer .logo img { height: 64px; margin-bottom: 1rem; }
.site-footer .tagline { font-size: 0.95rem; max-width: 32ch; color: rgba(250,250,250,0.65); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(250,250,250,0.08); }
.footer-grid ul, .footer-grid .legal-links { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem !important; font-size: 0.88rem; }
.footer-bottom { padding-top: 1.5rem; font-size: 0.85rem; color: rgba(250,250,250,0.5); }
.footer-bottom p { margin: 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }

/* === 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);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.5);
  max-width: 640px; margin-inline: auto;
  font-size: 0.92rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; color: rgba(250,250,250,0.85); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button {
  padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid rgba(250,250,250,0.2);
  background: transparent; color: var(--color-neutral-light); font-family: inherit; font-size: 0.88rem;
  cursor: pointer; transition: background .2s var(--ease);
}
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); color: var(--color-neutral-dark); border-color: var(--color-accent); font-weight: 500; }
.cookie-banner__actions button:hover { background: rgba(250,250,250,0.1); }
.cookie-banner__actions button[data-cookie-accept]:hover { background: #d9b872; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(250,250,250,0.12); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid var(--color-accent); background: var(--color-accent); color: var(--color-neutral-dark); font-family: inherit; cursor: pointer; }

/* === 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; } .site-header { transition: none; } }
