: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: 18px;
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 20px 60px -25px rgba(0,0,0,0.25);
  --shadow-lg: 0 30px 70px -30px rgba(0,0,0,0.35);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-primary);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-primary); letter-spacing: -0.015em; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration-color: var(--color-accent); text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; padding-inline: 1.25rem; }
.center { text-align: center; }
.eyebrow { font-family: var(--font-heading); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1rem; }

/* === Buttons === */
.btn { display: inline-block; padding: .95rem 1.6rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), #333); color: var(--color-neutral-light); box-shadow: 0 10px 25px -12px rgba(0,0,0,0.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(0,0,0,0.55); }
.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); }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

/* === 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: box-shadow .25s, background .25s; }
.site-header.scrolled { background: rgba(248,248,248,0.92); box-shadow: 0 4px 24px -18px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .9rem; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 0; color: var(--color-primary); padding: .4rem; border-radius: 8px; cursor: pointer; }
.primary-nav { display: none; }
.primary-nav a { position: relative; text-decoration: none; font-family: var(--font-heading); font-weight: 500; padding: .35rem 0; color: var(--color-primary); }
.primary-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%; 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); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; gap: 2rem; align-items: center; }
  .logo img { height: 96px; }
}

.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.25rem 1.5rem 1.75rem; gap: .75rem; box-shadow: var(--shadow-md); border-bottom: 1px solid rgba(31,31,31,0.08); }

/* === Hero (split) === */
.hero { position: relative; padding-block: 3.5rem; overflow: hidden; background: linear-gradient(135deg, var(--color-secondary) 0%, #f6efdd 40%, var(--color-neutral-light) 100%); }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(212,182,117,0.22), transparent 60%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; position: relative; }
.hero-copy .lede { font-size: 1.2rem; color: #4a4a4a; max-width: 42ch; margin-block: 1rem 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-visual img { aspect-ratio: 4/5; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); width: 100%; }
.hero-proof { list-style: none; margin: 2.25rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.75rem; border-top: 1px solid rgba(31,31,31,0.1); padding-top: 1.5rem; }
.hero-proof li { display: flex; flex-direction: column; }
.hero-proof strong { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--color-primary); }
.hero-proof span { font-size: .85rem; color: #555; }

@media (min-width: 860px) {
  .hero { padding-block: 6rem; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; }
}

/* === Sections === */
.section { padding-block: 4rem; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.section-head p { color: #555; font-size: 1.05rem; }
.intro { background: var(--color-neutral-light); }
.intro .narrow { text-align: left; }
.intro h2 { margin-bottom: 1.25rem; }
.intro p { font-size: 1.075rem; color: #333; }

/* === Grids & cards === */
.grid-2, .grid-3 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card { background: #fff; border: 1px solid rgba(31,31,31,0.08); border-radius: var(--radius); padding: 2rem; 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: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--color-secondary), rgba(212,182,117,0.35)); color: var(--color-primary); margin-bottom: 1.1rem; }
.card h3 { margin-bottom: .6rem; }
.card p { color: #444; margin: 0; font-size: .98rem; }

/* === Testimonial === */
.testimonial { background: var(--color-secondary); }
.testimonial blockquote { margin: 0; text-align: center; }
.testimonial blockquote p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.65rem); font-weight: 500; line-height: 1.45; color: var(--color-primary); margin-bottom: 1.25rem; }
.testimonial cite { font-style: normal; font-size: .95rem; color: #555; letter-spacing: .04em; }
.testimonial-figure { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin: 0; }
.testimonial-portrait { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-neutral-dark), #262626); color: var(--color-neutral-light); padding-block: 4.5rem; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(212,182,117,0.22), transparent 55%); pointer-events: none; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(248,248,248,0.85); font-size: 1.1rem; max-width: 55ch; margin-inline: auto; }
.cta-band .btn-primary { background: linear-gradient(135deg, var(--color-accent), #b89557); color: var(--color-neutral-dark); }
.cta-band__meta { font-size: .95rem; margin-bottom: 1.5rem; }

/* === FAQ === */
.faq-list details { background: #fff; border: 1px solid rgba(31,31,31,0.08); border-radius: 14px; padding: 1.1rem 1.35rem; margin-bottom: .75rem; box-shadow: var(--shadow-sm); }
.faq-list summary { font-family: var(--font-heading); font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: .85rem; color: #444; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-info address { font-style: normal; line-height: 1.7; margin-bottom: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours caption { text-align: left; font-family: var(--font-heading); font-weight: 600; margin-bottom: .5rem; }
.hours th, .hours td { text-align: left; padding: .55rem .5rem; border-bottom: 1px solid rgba(31,31,31,0.08); font-size: .95rem; }
.hours th { font-weight: 500; color: #333; }

.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(31,31,31,0.08); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-family: var(--font-heading); font-weight: 500; font-size: .95rem; }
.contact-form input, .contact-form textarea { font: inherit; font-family: var(--font-body); padding: .75rem .85rem; border: 1px solid rgba(31,31,31,0.15); border-radius: 10px; background: var(--color-neutral-light); transition: border-color .2s; }
.contact-form input:focus, .contact-form 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 !important; flex-direction: row !important; align-items: flex-start; gap: .6rem; font-size: .85rem; font-weight: 400 !important; color: #444; line-height: 1.5; }
.form-consent input { margin-top: .2rem; }
.form-success { background: var(--color-secondary); border: 1px solid var(--color-accent); border-radius: 12px; padding: 1rem 1.2rem; margin-top: 1rem; font-weight: 500; }

/* === Thank you === */
.thanks { padding-block: 6rem 2rem; }
.thanks-icon { display: inline-flex; width: 96px; height: 96px; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, var(--color-secondary), rgba(212,182,117,0.5)); color: var(--color-primary); margin-bottom: 1.5rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248,248,248,0.8); padding-block: 3.5rem 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h3 { font-size: 1rem; color: var(--color-neutral-light); margin-bottom: .9rem; }
.site-footer a { color: rgba(248,248,248,0.8); text-decoration: none; display: block; padding: .2rem 0; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.logo--footer img { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.legal-nav { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.legal-nav a { padding: 0; font-size: .9rem; }
.copyright { padding-top: 1.25rem; 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); padding: 1.25rem 1.4rem; border-radius: 16px; box-shadow: var(--shadow-lg); max-width: 620px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner .btn-ghost { color: var(--color-neutral-light); border-color: rgba(248,248,248,0.3); }
.cookie-banner .btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .92rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: .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; } html { scroll-behavior: auto; } }
