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

/* === Base === */
*, *::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;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
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; }
.container.narrow { max-width: 780px; }
.eyebrow { font-family: var(--font-heading); font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--color-accent); margin: 0 0 1rem; }

/* === Header (glass 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.06);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(248,248,248,0.92); box-shadow: 0 8px 30px -20px rgba(0,0,0,0.25); }
.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; display: block; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(31,31,31,0.15); border-radius: 10px; padding: .5rem; color: var(--color-primary); cursor: pointer; }
.nav-toggle:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.primary-nav { display: none; flex-direction: column; gap: .25rem; width: 100%; padding-top: .75rem; }
.primary-nav.is-open { display: flex; }
.primary-nav a {
  position: relative;
  font-family: var(--font-heading); font-weight: 600; font-size: .95rem;
  padding: .65rem .25rem; color: var(--color-primary);
}
.primary-nav a[aria-current="page"] { color: var(--color-accent); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; gap: 2rem; width: auto; padding-top: 0; }
  .primary-nav a { padding: .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); }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  padding: .95rem 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);
}
.btn-primary {
  color: var(--color-neutral-light);
  background: linear-gradient(135deg, var(--color-primary), #3a3a3a);
  box-shadow: 0 10px 24px -12px rgba(31,31,31,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(31,31,31,0.7); color: var(--color-neutral-light); }
.btn-accent {
  color: var(--color-neutral-dark);
  background: linear-gradient(135deg, var(--color-accent), #e8cf98);
  box-shadow: 0 10px 24px -12px rgba(212,182,117,0.7);
}
.btn-accent:hover { transform: translateY(-2px); color: var(--color-neutral-dark); }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* === Hero (centered) === */
.hero { position: relative; padding-block: 4rem 3rem; text-align: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% 10% auto 10%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(212,182,117,0.22), transparent 65%);
  z-index: -1; pointer-events: none;
}
.hero h1 { max-width: 20ch; margin-inline: auto; }
.hero-sub { max-width: 52ch; margin: 0 auto 2rem; font-size: 1.15rem; color: #444; }
.hero-cta { margin-bottom: 3rem; }
.hero-figure { margin: 3rem auto 0; max-width: 1080px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
@media (min-width: 768px) { .hero { padding-block: 6rem 4rem; } }

/* === Sections === */
.section { padding-block: 3.5rem; }
@media (min-width: 768px) { .section { padding-block: 5.5rem; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: #555; font-size: 1.05rem; }
.intro-section { text-align: center; }
.intro-section h2 { max-width: 28ch; margin-inline: auto; }
.intro-section p { max-width: 60ch; margin-inline: auto; color: #333; font-size: 1.05rem; }
.intro-section.alt { background: var(--color-secondary); }

/* === Highlights grid === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: #fff; border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid rgba(31,31,31,0.06); 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: linear-gradient(135deg, rgba(212,182,117,0.2), rgba(212,182,117,0.05));
  color: var(--color-accent); margin-bottom: 1rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.card p { color: #444; font-size: .98rem; margin: 0; }

/* === Testimonial === */
.testimonial-section { background: var(--color-primary); color: var(--color-neutral-light); }
.testimonial { margin: 0; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 500; line-height: 1.45; margin-bottom: 1.5rem; color: var(--color-neutral-light); }
.testimonial cite { font-style: normal; color: var(--color-accent); font-size: .95rem; letter-spacing: .05em; }

/* === CTA band === */
.cta-band {
  text-align: center; color: var(--color-neutral-light);
  background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary));
  border-radius: var(--radius-lg);
  margin-inline: 1.25rem; padding: 3.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: auto -20% -50% -20%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(212,182,117,0.35), transparent 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--color-neutral-light); max-width: 28ch; margin: 0 auto 1rem; }
.cta-band p { color: rgba(248,248,248,0.85); max-width: 52ch; margin: 0 auto 1.75rem; }
@media (min-width: 900px) { .cta-band { margin-inline: auto; max-width: 1080px; padding: 4.5rem 2rem; } }

/* === Contact band === */
.contact-band { text-align: center; background: var(--color-secondary); border-radius: var(--radius); padding: 3rem 1.5rem; }
.contact-band .lede { color: #333; font-size: 1.05rem; }
.contact-band p { max-width: 60ch; margin-inline: auto; }

/* === FAQ === */
.faq-section { background: var(--color-secondary); }
.faq {
  background: #fff; border-radius: var(--radius); border: 1px solid rgba(31,31,31,0.06);
  padding: 1.1rem 1.25rem; margin-bottom: .85rem; box-shadow: var(--shadow-sm);
}
.faq summary { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; cursor: pointer; list-style: none; 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.5rem; color: var(--color-accent); transition: transform .2s var(--ease); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 1rem 0 0; color: #444; }

/* === Form === */
.form-section { }
.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(31,31,31,0.06); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; font: inherit; padding: .8rem 1rem;
  border: 1px solid rgba(31,31,31,0.15); border-radius: 10px;
  background: var(--color-neutral-light); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(212,182,117,0.25); }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: #444; margin: 1rem 0 1.5rem; line-height: 1.5; }
.form-consent input { margin-top: .2rem; flex-shrink: 0; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3.5rem 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; } }
.site-footer .logo img { filter: brightness(1.05); height: 64px; }
.footer-tag { color: rgba(248,248,248,0.65); margin-top: .75rem; }
.footer-nav h4, .footer-contact h4 { font-size: .95rem; color: var(--color-accent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-nav { display: flex; flex-direction: column; }
.footer-nav a { color: rgba(248,248,248,0.85); padding: .3rem 0; }
.footer-nav a:hover { color: var(--color-accent); }
.footer-contact p { color: rgba(248,248,248,0.85); margin-bottom: .4rem; }
.footer-contact a { color: rgba(248,248,248,0.9); }
.footer-contact a:hover { color: var(--color-accent); }
.footer-legal { margin-top: 1.25rem; font-size: .88rem; color: rgba(248,248,248,0.6); }
.footer-legal a { color: rgba(248,248,248,0.75); }
.copyright { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(248,248,248,0.1); font-size: .85rem; color: rgba(248,248,248,0.55); text-align: center; }

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

/* === 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; } .site-header, .btn, .card { transition: none; } }
