:root {
  --color-primary: #1F1F1F;
  --color-secondary: #EFE8D6;
  --color-accent: #D4B675;
  --color-neutral-dark: #0A0A0A;
  --color-neutral-light: #F8F8F8;
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 20px;
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 40px -12px rgba(0,0,0,0.18);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.28);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 1rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

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

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 248, 248, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(31,31,31,0.08);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(248, 248, 248, 0.92); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 1.25rem; max-width: 1200px; margin-inline: auto; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.nav { display: none; align-items: center; gap: 1.75rem; }
.nav a { font-family: var(--font-heading); font-weight: 500; font-size: .95rem; position: relative; padding: .35rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .nav-cta { background: var(--color-primary); color: var(--color-neutral-light); padding: .55rem 1.1rem; border-radius: 999px; }
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--color-accent); color: var(--color-primary); }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 4px; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--color-primary); display: block; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}
[data-nav].is-open .nav { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.08); gap: 1rem; }

/* === 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: .85rem 1.6rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease); text-decoration: none; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), #3a3a3a); color: var(--color-neutral-light); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--color-neutral-light); }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: rgba(31,31,31,0.2); }
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-primary); transform: translateY(-2px); }
.btn-accent { background: var(--color-accent); color: var(--color-primary); }
.btn-accent:hover { background: #e2c789; color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* === Hero (hero-card) === */
.hero { padding: 3rem 1.25rem 2rem; position: relative; background: radial-gradient(circle at 20% 0%, rgba(212,182,117,0.18), transparent 55%), radial-gradient(circle at 90% 30%, rgba(239,232,214,0.55), transparent 60%), var(--color-neutral-light); }
.hero-card__inner {
  max-width: 940px; margin-inline: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
  border: 1px solid rgba(31,31,31,0.06);
  border-radius: 28px;
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-lg);
  text-align: left;
  backdrop-filter: blur(6px);
}
@media (min-width: 768px) { .hero { padding: 5rem 1.25rem 3rem; } .hero-card__inner { padding: 3.5rem 3rem; } }
.hero .eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: .8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; font-family: var(--font-heading); }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lede { font-size: 1.15rem; color: #444; max-width: 58ch; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-card__figure { margin: 2rem 0 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-card__figure img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* === Sections === */
.section { padding: 4rem 1.25rem; }
@media (min-width: 768px) { .section { padding: 5.5rem 1.25rem; } }
.section-tint { background: var(--color-secondary); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: #555; font-size: 1.05rem; }

/* === Grids === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* === Cards === */
.card {
  background: #fff;
  border: 1px solid rgba(31,31,31,0.06);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  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: .5rem; }
.card p { color: #4a4a4a; font-size: .97rem; margin: 0; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(212,182,117,0.18); color: var(--color-primary); margin-bottom: 1rem; }

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

/* === Quote === */
.quote { margin: 0; padding: 2rem 1.5rem; text-align: center; border-left: 3px solid var(--color-accent); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.quote p { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 500; color: var(--color-primary); line-height: 1.5; margin: 0 0 1rem; }
.quote cite { font-style: normal; font-size: .9rem; color: #666; letter-spacing: 0.04em; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary)); color: var(--color-neutral-light); padding: 4rem 1.25rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(212,182,117,0.25), transparent 55%); pointer-events: none; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(248,248,248,0.85); max-width: 55ch; margin: 0 auto 1.75rem; }
.cta-band .container { position: relative; }

/* === Stats === */
.stats { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat { padding: 1.75rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); text-align: center; border: 1px solid rgba(31,31,31,0.05); }
.stat-num { display: block; font-family: var(--font-heading); font-weight: 800; font-size: clamp(2rem, 4vw, 2.75rem); color: var(--color-accent); margin-bottom: .5rem; letter-spacing: -0.02em; }
.stat p { color: #555; font-size: .95rem; margin: 0; }

/* === FAQ === */
.faq details { background: #fff; border: 1px solid rgba(31,31,31,0.08); border-radius: 14px; padding: 1rem 1.25rem; margin-bottom: .75rem; 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: 1.5rem; position: relative; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; font-size: 1.5rem; color: var(--color-accent); transition: transform .2s var(--ease); }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 1rem 0 0; color: #4a4a4a; font-size: .97rem; }

/* === Contact === */
.contact-band { text-align: center; }
.contact-info-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .contact-info-grid { grid-template-columns: 1fr 1fr; } }
.hours { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.hours th, .hours td { text-align: left; padding: .7rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: .95rem; }
.hours th { font-family: var(--font-heading); font-weight: 600; width: 40%; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

.contact-form { display: grid; gap: 1rem; background: #fff; padding: 1.75rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(31,31,31,0.06); }
.contact-form label { display: grid; gap: .35rem; font-family: var(--font-heading); font-weight: 500; font-size: .92rem; }
.contact-form input, .contact-form textarea { font: inherit; font-family: var(--font-body); padding: .7rem .85rem; border: 1px solid rgba(31,31,31,0.15); border-radius: 10px; background: #fafafa; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(212,182,117,0.25); }
.form-consent { display: flex; flex-direction: row; align-items: flex-start; gap: .55rem; font-size: .85rem; font-weight: 400; color: #555; }
.form-consent input { margin-top: .2rem; }
.form-consent a { text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248,248,248,0.75); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; } }
.site-footer h4 { color: var(--color-neutral-light); font-size: .95rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: .8rem; }
.site-footer a { color: rgba(248,248,248,0.75); }
.site-footer a:hover { color: var(--color-accent); }
.logo-footer img { height: 64px; }
.tagline { font-size: .95rem; max-width: 30ch; margin-top: .75rem; }
.footer-nav { display: grid; gap: .5rem; }
.footer-contact p { margin: 0 0 .5rem; font-size: .93rem; }
.legal-links { font-size: .82rem; margin-top: 1rem; }
.copyright { padding-top: 1.5rem; font-size: .85rem; color: rgba(248,248,248,0.5); }

/* === 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: 16px; box-shadow: var(--shadow-lg); max-width: 640px; }
@media (min-width: 700px) { .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; } }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; color: rgba(248,248,248,0.85); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button { font: inherit; font-family: var(--font-heading); font-weight: 600; font-size: .88rem; padding: .55rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: var(--color-neutral-light); cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease); }
.cookie-banner button:hover { background: rgba(255,255,255,0.08); }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); }
.cookie-banner [data-cookie-accept]:hover { background: #e2c789; }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .55rem; font-size: .9rem; }
.cookie-banner__prefs [data-cookie-save] { margin-top: .5rem; justify-self: start; }

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