:root {
  --color-primary: #171717;
  --color-secondary: #404040;
  --color-accent: #D4AF37;
  --color-neutral-dark: #171717;
  --color-neutral-light: #FFFFFF;
  --color-muted: #F4F4F2;
  --color-border: rgba(23, 23, 23, 0.12);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 40px -20px rgba(0,0,0,0.25);
  --shadow-lg: 0 30px 60px -30px rgba(0,0,0,0.35);
}

/* === Reset === */
*, *::before, *::after { 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; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* === Typography === */
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(2.25rem, 5vw, 4rem); font-weight: 700; max-width: 24ch; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--color-secondary); }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.16em; color: var(--color-accent); font-weight: 600; margin: 0 0 1.25rem; }
.lede { font-size: 1.15rem; color: var(--color-primary); }
.center { text-align: center; margin-inline: auto; }
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 760px; }

/* === Header === */
.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 .3s, border-color .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(255,255,255,0.92); border-bottom-color: var(--color-border); box-shadow: 0 4px 20px -12px rgba(0,0,0,0.12); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.9rem; }
.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); border-radius: 10px; padding: 0.5rem; color: var(--color-primary); }
.primary-nav { display: none; flex-direction: column; gap: 0.25rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.primary-nav.is-open { display: flex; }
.primary-nav a { font-family: var(--font-heading); font-weight: 500; padding: 0.6rem 0; color: var(--color-primary); position: relative; }
.primary-nav a.is-active { color: var(--color-accent); }

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

/* === Buttons === */
.btn { display: inline-block; padding: 0.85rem 1.6rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; letter-spacing: 0.01em; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; border: 1px solid transparent; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), #2a2a2a); color: var(--color-neutral-light); box-shadow: 0 10px 30px -12px rgba(23,23,23,0.5); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(23,23,23,0.6); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* === Hero (hero-centered) === */
.hero { position: relative; text-align: center; padding-block: 4rem 3rem; overflow: hidden; background: linear-gradient(180deg, #FBFAF7 0%, #FFFFFF 100%); }
.hero__glow { position: absolute; inset: -20% 20% auto 20%; height: 500px; background: radial-gradient(ellipse at center, rgba(212,175,55,0.16), transparent 60%); pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero h1 { margin-inline: auto; max-width: 22ch; }
.hero__sub { font-size: 1.15rem; max-width: 52ch; margin: 1rem auto 2rem; color: var(--color-secondary); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.hero__figure { margin: 0 auto; max-width: 1080px; }
.hero__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

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

/* === Sections === */
.section { padding-block: 4rem; }
.section--muted { background: var(--color-muted); }
.section__head { max-width: 720px; margin: 0 auto 3rem; }
@media (min-width: 768px) { .section { padding-block: 6rem; } }

/* === Grids & Cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .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: 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), border-color .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(212,175,55,0.3); }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.97rem; margin-bottom: 0; }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05)); color: var(--color-accent); margin-bottom: 1rem; }

/* === Quote === */
.quote { margin: 0; padding: 2.5rem 1.5rem; text-align: center; position: relative; }
.quote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 500; line-height: 1.5; color: var(--color-primary); max-width: 44ch; margin: 0 auto 1.25rem; }
.quote cite { font-style: normal; font-size: 0.95rem; color: var(--color-secondary); }

/* === CTA band === */
.cta-band { padding-block: 4rem; background: linear-gradient(135deg, var(--color-primary), #2b2b2b); color: var(--color-neutral-light); text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 52ch; margin-inline: auto; }
.cta-band .btn--primary { background: linear-gradient(135deg, var(--color-accent), #b8942a); color: var(--color-primary); }
@media (min-width: 768px) { .cta-band { padding-block: 5.5rem; } }

/* === FAQ === */
.faq details { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 0.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; color: var(--color-primary); 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.4rem; color: var(--color-accent); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0.75rem 0 0; color: var(--color-secondary); }

/* === Contact form === */
.contact-form { background: var(--color-neutral-light); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.form-row { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.form-row label { font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem; color: var(--color-primary); }
.form-row input, .form-row textarea { font-family: inherit; font-size: 1rem; padding: 0.75rem 0.9rem; border: 1px solid var(--color-border); border-radius: 10px; background: var(--color-muted); color: var(--color-primary); transition: border-color .2s, background .2s; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-accent); background: var(--color-neutral-light); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--color-secondary); margin-bottom: 1.25rem; line-height: 1.5; }
.form-consent input { margin-top: 0.2rem; flex-shrink: 0; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,0.8); padding-block: 3.5rem 1.5rem; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.site-footer h3 { color: var(--color-neutral-light); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,0.8); transition: color .2s; }
.site-footer a:hover { color: var(--color-accent); }
.footer__nav { display: flex; flex-direction: column; }
.footer__nav a { padding: 0.3rem 0; }
.logo--footer img { height: 64px; filter: brightness(0) invert(1); }
.footer__tag { color: rgba(255,255,255,0.6); margin-top: 0.75rem; }
.footer__legal { margin-top: 1rem; font-size: 0.9rem; }
.footer__base { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,0.5); }
@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.4rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: 560px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { color: rgba(255,255,255,0.85); margin: 0 0 1rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button, .cookie-banner__prefs [data-cookie-save] { padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: var(--color-neutral-light); font-size: 0.88rem; font-weight: 500; font-family: var(--font-heading); }
.cookie-banner__actions [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-primary); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: 0.5rem; background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); }
@media (min-width: 640px) { .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; } }

/* === 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; } html { scroll-behavior: auto; } }
