:root {
  --color-primary: #171717;
  --color-secondary: #404040;
  --color-accent: #D4AF37;
  --color-neutral-dark: #171717;
  --color-neutral-light: #FFFFFF;
  --color-surface: #FAFAF7;
  --color-border: rgba(23,23,23,0.10);
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 32px -12px rgba(0,0,0,0.18);
  --shadow-lg: 0 30px 60px -30px rgba(0,0,0,0.35);
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-primary);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; 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: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--color-primary);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--color-secondary); }
ul { padding-left: 1.1rem; }
.container { max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1.25rem;
}
.visually-quiet { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #2a2a2a);
  color: var(--color-neutral-light);
  box-shadow: 0 12px 28px -12px rgba(23,23,23,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(23,23,23,0.6); color: var(--color-neutral-light); }
.btn-primary.btn-on-dark {
  background: linear-gradient(135deg, var(--color-accent), #b8942e);
  color: var(--color-primary);
  box-shadow: 0 12px 28px -12px rgba(212,175,55,0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); }

/* === Header / nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,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(255,255,255,0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 6px 20px -12px rgba(0,0,0,0.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.9rem; gap: 1rem; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.logo-footer img { height: 72px; }
.primary-nav { display: none; gap: 1.75rem; align-items: center; }
.primary-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary);
  position: relative;
  padding: 0.25rem 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; 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); }
.nav-toggle {
  background: transparent; border: 1px solid var(--color-border);
  color: var(--color-primary); padding: 0.5rem; border-radius: 10px; cursor: pointer;
}
@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
}
.primary-nav.is-open {
  display: flex; flex-direction: column; align-items: flex-start;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1.25rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  gap: 0.75rem;
}

/* === Hero === */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6rem);
  background: linear-gradient(180deg, #FAFAF7 0%, #FFFFFF 60%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: -20% 0 auto 0; height: 60%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(212,175,55,0.16), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.hero-inner h1 { max-width: 22ch; margin-inline: auto; }
.hero-inner .lede {
  max-width: 56ch; margin: 1rem auto 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--color-secondary);
}
.hero-ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-figure {
  margin: 0 auto; max-width: 1080px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* === Sections === */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-tinted { background: var(--color-surface); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-sub { color: var(--color-secondary); font-size: 1.05rem; }

/* === Grids / cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid.grid-3, .grid.grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid.grid-3 { grid-template-columns: repeat(3, 1fr); } .grid.grid-4 { grid-template-columns: repeat(4, 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 .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 0.5rem; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(212,175,55,0.14);
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.person-card { text-align: left; }
.person-photo { margin: 0 0 1.25rem; border-radius: 12px; overflow: hidden; aspect-ratio: 1/1; background: var(--color-surface); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; }

/* === Quote === */
.pull-quote {
  margin: 0; padding: 2rem 1.5rem; text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.pull-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.45;
  margin-bottom: 1rem;
}
.pull-quote cite { font-style: normal; color: var(--color-secondary); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, #171717 0%, #2a2a2a 100%);
  color: var(--color-neutral-light);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 80% 30%, rgba(212,175,55,0.22), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

/* === FAQ === */
.faq details {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-weight: 600;
  color: var(--color-primary); font-size: 1.02rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::after { content: "+"; color: var(--color-accent); font-size: 1.4rem; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 0.75rem; }

/* === Contact === */
.contact-band {
  display: grid; gap: 1.5rem;
  padding: 2rem; border-radius: var(--radius-lg);
  background: var(--color-surface); border: 1px solid var(--color-border);
  align-items: center;
}
@media (min-width: 768px) { .contact-band { grid-template-columns: 2fr 1fr; } }
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-address { font-style: normal; margin-bottom: 1.5rem; }
.contact-address strong { color: var(--color-primary); font-family: var(--font-heading); }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours caption { text-align: left; font-family: var(--font-heading); font-weight: 600; margin-bottom: 0.5rem; color: var(--color-primary); }
.hours th, .hours td { padding: 0.55rem 0; border-bottom: 1px solid var(--color-border); text-align: left; color: var(--color-secondary); font-weight: 400; }
.hours th { color: var(--color-primary); font-weight: 500; }

/* === Form === */
.contact-form {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1rem; display: flex; flex-direction: column; }
.form-row label { font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem; margin-bottom: 0.35rem; }
.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: 10px;
  background: var(--color-neutral-light); color: var(--color-primary);
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}
.form-consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--color-secondary);
  margin: 1rem 0 1.5rem; line-height: 1.5;
}
.form-consent input { margin-top: 0.25rem; flex-shrink: 0; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }

/* === Footer === */
.site-footer { background: #F5F5F0; padding-block: 3rem 1.5rem; margin-top: 3rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.site-footer h3 { font-size: 0.95rem; font-family: var(--font-heading); font-weight: 600; margin-bottom: 0.85rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: var(--color-secondary); font-size: 0.95rem; }
.site-footer a:hover { color: var(--color-primary); }
.site-footer address { font-style: normal; color: var(--color-secondary); font-size: 0.95rem; margin-bottom: 1rem; }
.muted { color: var(--color-secondary); font-size: 0.95rem; }
.legal-links { margin-top: 1rem; }
.copyright { margin-top: 2.5rem; border-top: 1px solid var(--color-border); padding-top: 1.25rem; }
.copyright p { font-size: 0.85rem; color: var(--color-secondary); margin: 0; }

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

/* === 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);
  box-shadow: 0 30px 60px -20px 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 { color: rgba(255,255,255,0.85); margin: 0 0 0.9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem;
  padding: 0.55rem 1rem; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent; color: var(--color-neutral-light);
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent);
}
.cookie-banner__actions button:hover { opacity: 0.9; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-banner__prefs label { font-size: 0.9rem; display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs button {
  margin-top: 0.5rem; align-self: flex-start;
  background: var(--color-accent); color: var(--color-primary); border: none;
  padding: 0.55rem 1rem; border-radius: 999px; cursor: pointer;
  font-family: var(--font-heading); font-weight: 600;
}
