:root {
  --color-primary: #171717;
  --color-secondary: #404040;
  --color-accent: #D4AF37;
  --color-neutral-dark: #171717;
  --color-neutral-light: #FFFFFF;
  --color-bg: #FAFAF7;
  --color-tint: #F4F1EA;
  --color-border: rgba(23,23,23,0.10);
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --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 { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-neutral-dark);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-neutral-dark); 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; line-height: 1.2; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 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; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }
.muted { color: var(--color-secondary); }
.eyebrow { font-family: var(--font-heading); font-size: .8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); margin: 0 0 1rem; }
.section { padding-block: 4rem; }
.section-sub { color: var(--color-secondary); font-size: 1.0625rem; margin-bottom: 1.5rem; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-tint { background: var(--color-tint); }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 10000; }

/* === Header (glass 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 .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,0.92); box-shadow: 0 8px 24px -18px rgba(0,0,0,0.35); border-bottom-color: var(--color-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--color-border);
  color: var(--color-neutral-dark); padding: .5rem; border-radius: 10px; cursor: pointer;
}
.primary-nav { display: none; }
.primary-nav a {
  position: relative; font-weight: 500; padding: .5rem .25rem; color: var(--color-neutral-dark);
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; 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-current::after { transform: scaleX(1); }
.primary-nav.is-open {
  display: flex; flex-direction: column; gap: .25rem;
  position: absolute; left: 1rem; right: 1rem; top: 100%;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 1rem; box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; gap: 1.75rem; align-items: center; }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  padding: .9rem 1.5rem; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid rgba(212,175,55,0.5); outline-offset: 2px; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-neutral-dark), #2a2a2a);
  color: var(--color-neutral-light);
  box-shadow: 0 10px 24px -12px rgba(23,23,23,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(23,23,23,0.55); color: var(--color-neutral-light); }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--color-neutral-dark); transform: translateY(-2px); }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }

/* === Hero card === */
.hero-card-wrap {
  position: relative; padding-block: 3.5rem 2rem;
  background:
    radial-gradient(1000px 400px at 15% 0%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(23,23,23,0.06), transparent 60%),
    var(--color-bg);
  overflow: hidden;
}
.hero-card {
  max-width: 880px; margin-inline: auto;
  padding: 2.5rem 1.5rem; border-radius: 24px;
  background: var(--color-neutral-light);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  text-align: center;
}
.hero-card h1 { max-width: 22ch; margin-inline: auto; }
.hero-card .lead { color: var(--color-secondary); font-size: 1.15rem; max-width: 52ch; margin: 1rem auto 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin: 0 0 2rem; }
.hero-card__figure { margin: 1.5rem 0 0; }
.hero-card__figure img { border-radius: 16px; aspect-ratio: 16/9; object-fit: cover; box-shadow: var(--shadow-md); }
@media (min-width: 768px) {
  .hero-card-wrap { padding-block: 5.5rem 3rem; }
  .hero-card { padding: 4rem; }
}

/* === Grids === */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.align-center { align-items: center; }
.align-start { align-items: start; }

/* === Cards === */
.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  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 .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(212,175,55,0.14); color: var(--color-neutral-dark);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-secondary); margin: 0; }

.person .portrait {
  margin: 0 0 1.25rem; aspect-ratio: 1/1; border-radius: 14px; overflow: hidden;
}
.person .portrait img { width: 100%; height: 100%; object-fit: cover; }

/* === Framed image === */
.framed { margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.framed img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
@media (min-width: 720px) {
  .framed img { aspect-ratio: 4/3; }
}

/* === Testimonial === */
.testimonial {
  position: relative; margin: 0 auto; padding: 2rem 1.25rem;
  text-align: center; max-width: 720px;
}
.testimonial .quote-mark { color: var(--color-accent); opacity: .6; margin: 0 auto .5rem; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.5; color: var(--color-neutral-dark); }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; color: var(--color-secondary); font-size: .95rem; }

/* === CTA band === */
.cta-band {
  padding: 3.5rem 1.25rem; text-align: center;
  background: linear-gradient(135deg, var(--color-neutral-dark), #2b2b2b);
  color: var(--color-neutral-light);
}
.cta-band .container { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.cta-band h2 { color: var(--color-neutral-light); max-width: 24ch; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 52ch; margin: 0 0 1rem; }
.cta-band .btn-primary { background: var(--color-accent); color: var(--color-neutral-dark); }
.cta-band .btn-primary:hover { background: #e6c14a; color: var(--color-neutral-dark); }

/* === FAQ === */
.faq details {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-bottom: .75rem;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-family: var(--font-heading); font-weight: 600;
  font-size: 1.05rem; list-style: none; padding-right: 2rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--color-accent); line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: .75rem 0 0; color: var(--color-secondary); }

/* === Contact === */
.contact-card { background: var(--color-neutral-light); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
address { font-style: normal; line-height: 1.75; color: var(--color-secondary); margin: 0 0 1rem; }
.hours { border-collapse: collapse; width: 100%; margin-top: 1rem; font-size: .95rem; }
.hours caption { text-align: left; font-family: var(--font-heading); font-weight: 600; margin-bottom: .5rem; color: var(--color-neutral-dark); caption-side: top; }
.hours th, .hours td { padding: .55rem .5rem; text-align: left; border-bottom: 1px solid var(--color-border); }
.hours th { font-weight: 500; color: var(--color-neutral-dark); }
.hours td { color: var(--color-secondary); text-align: right; }

.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); display: flex; flex-direction: column; gap: 1rem; }
.contact-form h2 { margin-bottom: .5rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-weight: 500; font-size: .95rem; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea {
  font: inherit; font-weight: 400; color: var(--color-neutral-dark);
  background: var(--color-bg); border: 1px solid var(--color-border);
  padding: .75rem .9rem; border-radius: 10px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}
.form-consent { flex-direction: row !important; align-items: flex-start; gap: .6rem; font-weight: 400; font-size: .875rem; color: var(--color-secondary); line-height: 1.5; }
.form-consent input { width: auto; margin-top: .2rem; }
.form-consent a { color: var(--color-neutral-dark); text-decoration: underline; }

.map-block {
  margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--color-border); background: #eee;
}
.map-block img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(255,255,255,0.75); padding: 3.5rem 0 1.5rem; margin-top: 3rem; }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer address { color: rgba(255,255,255,0.7); }
.footer-grid { gap: 2rem; }
.foot-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.foot-legal { margin-top: 1rem; }
.logo-footer img { height: 60px; margin-bottom: .5rem; filter: brightness(0) invert(1); }
.copyline { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .85rem; color: rgba(255,255,255,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 1.25rem; border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  max-width: 560px; margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .9rem; font-size: .9rem; line-height: 1.55; color: rgba(255,255,255,0.85); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner .btn-ghost { color: var(--color-neutral-light); border-color: rgba(255,255,255,0.25); }
.cookie-banner .btn-ghost:hover { border-color: var(--color-neutral-light); color: var(--color-neutral-light); }
.cookie-banner .btn-primary { background: var(--color-accent); color: var(--color-neutral-dark); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; }

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