:root {
  --color-primary: #262626;
  --color-secondary: #F5EFE0;
  --color-accent: #C9A961;
  --color-neutral-dark: #0F0F0F;
  --color-neutral-light: #FAFAFA;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 20px rgba(15, 15, 15, 0.06);
  --shadow-md: 0 10px 40px -12px rgba(15, 15, 15, 0.18);
  --shadow-lg: 0 30px 80px -30px rgba(15, 15, 15, 0.35);
}

/* === Reset === */
*, *::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 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 1rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.section { padding-block: 4rem; }
.section--tint { background: var(--color-secondary); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section__head p { color: #555; font-size: 1.05rem; }
.eyebrow { font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; }

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

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.7);
  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: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { background: rgba(250, 250, 250, 0.92); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(15,15,15,0.15);
  border-radius: 10px; padding: 0.5rem; cursor: pointer; color: var(--color-neutral-dark);
}
.primary-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--color-neutral-light);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(15,15,15,0.08);
  flex-direction: column; gap: 0.75rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  font-family: var(--font-heading); font-weight: 500; font-size: 0.98rem;
  padding: 0.4rem 0; position: relative;
}
.primary-nav a[aria-current="page"] { color: var(--color-accent); }
.nav-cta {
  background: var(--color-primary); color: var(--color-neutral-light) !important;
  padding: 0.6rem 1.1rem !important; border-radius: 999px; text-align: center;
}
.nav-cta:hover { background: var(--color-accent); color: var(--color-neutral-dark) !important; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex; position: static; flex-direction: row; align-items: center;
    padding: 0; background: transparent; border: none; gap: 2rem;
  }
  .primary-nav a:not(.nav-cta)::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:not(.nav-cta):hover::after,
  .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem;
  padding: 0.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--primary {
  background: linear-gradient(135deg, var(--color-primary), #3a3a3a);
  color: var(--color-neutral-light);
  box-shadow: 0 8px 24px -10px rgba(38, 38, 38, 0.5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(201, 169, 97, 0.5); color: var(--color-neutral-light); background: linear-gradient(135deg, var(--color-accent), #b8964e); }
.btn--ghost {
  background: transparent; color: var(--color-primary);
  border-color: rgba(15,15,15,0.18);
}
.btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.88rem; }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* === Hero === */
.hero { position: relative; padding-block: 3rem 2rem; overflow: hidden; }
.hero--spotlight { background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-neutral-light) 100%); }
.hero--inner { padding-block: 2rem 1rem; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 20%, rgba(201, 169, 97, 0.18), transparent 60%);
}
.hero__inner { position: relative; text-align: center; max-width: 880px; margin-inline: auto; }
.hero h1 { max-width: 22ch; margin-inline: auto; font-weight: 700; }
.hero__sub { font-size: 1.15rem; color: #444; max-width: 56ch; margin: 1.25rem auto 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.hero__visual { margin: 2.5rem 0 0; }
.hero__visual img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9; object-fit: cover; width: 100%;
}
.hero__proof { margin-top: 2rem; font-size: 0.9rem; color: #666; letter-spacing: 0.02em; }

@media (min-width: 768px) {
  .hero { padding-block: 5rem 3rem; }
  .hero--inner { padding-block: 3.5rem 2rem; }
}

/* === 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 {
  background: var(--color-neutral-light);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 15, 15, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201, 169, 97, 0.4); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201, 169, 97, 0.14); color: var(--color-accent);
  margin-bottom: 1rem;
}
.card p { color: #555; font-size: 0.98rem; margin: 0; }

/* === Quote === */
.quote {
  margin: 0; padding: 2.5rem 1rem; text-align: center;
  border-top: 1px solid rgba(15,15,15,0.08); border-bottom: 1px solid rgba(15,15,15,0.08);
}
.quote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; color: var(--color-neutral-dark); font-weight: 500; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.92rem; color: var(--color-accent); letter-spacing: 0.05em; text-transform: uppercase; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); padding-block: 4rem; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(201, 169, 97, 0.2), transparent 55%);
  pointer-events: none;
}
.cta-band__inner { position: relative; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(250,250,250,0.75); margin: 0; }
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-band__inner > div { max-width: 640px; }
}

/* === Contact page === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3.5rem; } }
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid rgba(15,15,15,0.08); font-weight: 400; }
.hours th { font-family: var(--font-heading); font-weight: 500; }

.contact-form {
  background: var(--color-neutral-light); padding: 2rem; border-radius: var(--radius-md);
  border: 1px solid rgba(15,15,15,0.08); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form h2 { margin: 0 0 0.5rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.9rem; font-weight: 500; }
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 1rem;
  padding: 0.75rem 0.9rem; border: 1px solid rgba(15,15,15,0.15);
  border-radius: 10px; background: #fff; color: var(--color-neutral-dark);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}
.form-consent { flex-direction: row !important; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: #555; font-weight: 400; }
.form-consent input { margin-top: 0.2rem; }
.contact-card { background: var(--color-neutral-light); padding: 1.75rem; border-radius: var(--radius-md); border: 1px solid rgba(15,15,15,0.08); display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 0.5rem; }
.faq details {
  background: var(--color-neutral-light); border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details[open] { border-color: rgba(201,169,97,0.4); box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--color-accent); font-size: 1.4rem; line-height: 1; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0.75rem 0 0; color: #555; font-size: 0.98rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250,250,250,0.75); padding-block: 4rem 2rem; margin-top: 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1.2fr; } }
.site-footer h3 { color: var(--color-neutral-light); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.site-footer a { color: rgba(250,250,250,0.75); }
.site-footer a:hover { color: var(--color-accent); }
.logo--footer img { height: 64px; }
.footer__tagline { font-size: 0.95rem; margin-top: 0.75rem; max-width: 32ch; }
.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a { display: inline-block; }
.footer__contact p { margin-bottom: 0.75rem; font-size: 0.95rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: 0.85rem; }
.footer__base { border-top: 1px solid rgba(250,250,250,0.1); margin-top: 3rem; padding-top: 1.5rem; }
.footer__base p { font-size: 0.85rem; color: rgba(250,250,250,0.55); margin: 0; }

/* === 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: var(--radius-md);
  box-shadow: var(--shadow-lg); max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; color: rgba(250,250,250,0.85); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__prefs { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(250,250,250,0.15); display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; color: rgba(250,250,250,0.85); }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }

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