: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: 22px;
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 40px -10px rgba(0,0,0,0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15,15,15,0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--color-primary); background: var(--color-neutral-light); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

/* === Typography === */
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; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--color-primary); }
p { margin: 0 0 1rem; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; color: var(--color-accent); margin-bottom: 1rem; font-weight: 500; }

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 780px; }
.section { padding: 4rem 0; }
.section-head { max-width: 680px; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { color: #555; font-size: 1.05rem; }
.alt-band { background: var(--color-secondary); }

/* === Header / Nav === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,250,250,0.75); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid rgba(15,15,15,0.06); transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.site-header.scrolled { background: rgba(250,250,250,0.94); box-shadow: 0 10px 30px -20px rgba(15,15,15,0.25); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 1280px; margin: 0 auto; padding: 0.75rem 1.25rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav { display: none; align-items: center; gap: 1.75rem; }
.primary-nav a { position: relative; font-size: 0.95rem; font-weight: 500; color: var(--color-primary); padding: 0.25rem 0; }
.primary-nav a::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:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 0.6rem 1.1rem; border-radius: 999px; }
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { background: var(--color-accent); color: var(--color-neutral-dark); }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--color-neutral-dark); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header.nav-open .primary-nav { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.5rem 1.25rem 2rem; gap: 1rem; box-shadow: var(--shadow-md); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
  .site-header.nav-open .primary-nav { position: static; flex-direction: row; padding: 0; box-shadow: none; }
}

/* === Hero === */
.hero { position: relative; overflow: hidden; padding: 5rem 0 3.5rem; background: linear-gradient(135deg, #FDFBF5 0%, #F5EFE0 100%); }
.hero-glow { position: absolute; inset: -20% -10% auto auto; width: 720px; height: 720px; background: radial-gradient(circle at center, rgba(201,169,97,0.28), transparent 60%); pointer-events: none; z-index: 0; }
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lede { font-size: 1.2rem; color: #444; max-width: 60ch; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-visual { position: relative; z-index: 1; margin-top: 3rem; }
.hero-visual img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.inner-hero { padding: 3.5rem 0 3rem; }
.proof-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 3rem; font-size: 0.9rem; color: #555; letter-spacing: 0.04em; }
.proof-strip span { font-weight: 500; }

@media (min-width: 900px) {
  .hero { padding: 7rem 0 4.5rem; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.6rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 500; font-size: 0.98rem; letter-spacing: 0.01em; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary)); color: var(--color-neutral-light); box-shadow: 0 8px 24px -10px rgba(15,15,15,0.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(15,15,15,0.55); background: linear-gradient(135deg, var(--color-accent), #B58F42); color: var(--color-neutral-dark); }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border: 1px solid rgba(15,15,15,0.18); }
.btn-ghost:hover { background: var(--color-neutral-dark); color: var(--color-neutral-light); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

/* === Intro band === */
.intro-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.intro-visual img { aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

/* === Grid / cards === */
.grid { display: grid; gap: 1.5rem; 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 { display: block; padding: 1.75rem; background: var(--color-neutral-light); border: 1px solid rgba(15,15,15,0.08); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.card h3 { margin-top: 0.5rem; }
.card p { color: #444; font-size: 0.98rem; margin-bottom: 0; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,169,97,0.4); }
.card-link { color: inherit; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(201,169,97,0.12); color: var(--color-accent); margin-bottom: 0.5rem; }

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-dark); color: var(--color-neutral-light); }
.testimonial { max-width: 780px; margin: 0 auto; text-align: center; padding: 0 1rem; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.5vw, 1.7rem); font-weight: 400; line-height: 1.45; color: var(--color-neutral-light); margin-bottom: 1.5rem; }
.testimonial cite { font-style: normal; color: var(--color-accent); font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-neutral-dark), #1E1E1E); color: var(--color-neutral-light); padding: 4.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: -30% auto auto 30%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,169,97,0.22), transparent 60%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 720px; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250,250,250,0.75); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-band .btn-primary { background: var(--color-accent); color: var(--color-neutral-dark); }
.cta-band .btn-primary:hover { background: var(--color-neutral-light); color: var(--color-neutral-dark); }

/* === FAQ === */
.faq details { border-top: 1px solid rgba(15,15,15,0.12); padding: 1.25rem 0; }
.faq details:last-child { border-bottom: 1px solid rgba(15,15,15,0.12); }
.faq summary { list-style: none; cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--color-neutral-dark); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--color-accent); transition: transform .25s var(--ease); }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: #444; }

/* === Contact form === */
.contact-form { display: grid; gap: 1.25rem; background: var(--color-neutral-light); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(15,15,15,0.06); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 500; color: var(--color-primary); }
.field input, .field textarea { font-family: inherit; font-size: 1rem; padding: 0.75rem 0.9rem; border: 1px solid rgba(15,15,15,0.14); border-radius: 10px; background: #fff; 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 3px rgba(201,169,97,0.18); }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: #444; line-height: 1.5; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }

/* === Hours table === */
.visually-heading { text-align: center; }
.hours { width: 100%; max-width: 560px; margin: 0 auto; border-collapse: collapse; font-size: 0.98rem; }
.hours th, .hours td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid rgba(15,15,15,0.08); }
.hours th { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250,250,250,0.8); padding: 4rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.site-footer .logo img { height: 72px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tag { margin-top: 1rem; color: rgba(250,250,250,0.6); font-size: 0.95rem; }
.site-footer h4 { color: var(--color-neutral-light); margin-bottom: 1rem; }
.site-footer nav { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer nav a, .site-footer address a { color: rgba(250,250,250,0.75); font-size: 0.95rem; transition: color .2s var(--ease); }
.site-footer nav a:hover, .site-footer address a:hover { color: var(--color-accent); }
.site-footer address { font-style: normal; line-height: 1.7; font-size: 0.95rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; font-size: 0.85rem; }
.legal-links a { color: rgba(250,250,250,0.65); }
.copyright { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(250,250,250,0.1); font-size: 0.85rem; color: rgba(250,250,250,0.55); text-align: center; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1.3fr; gap: 3rem; } }

/* === 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); border-radius: var(--radius); padding: 1.25rem 1.4rem; box-shadow: var(--shadow-lg); max-width: 640px; margin-inline: auto; border: 1px solid rgba(201,169,97,0.25); }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 0.92rem; color: rgba(250,250,250,0.85); margin-bottom: 1rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner .btn-primary { background: var(--color-accent); color: var(--color-neutral-dark); }
.cookie-banner .btn-ghost { color: var(--color-neutral-light); border-color: rgba(250,250,250,0.25); }
.cookie-banner__prefs { display: grid; gap: 0.6rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(250,250,250,0.12); font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.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; }
  html { scroll-behavior: auto; }
}
