:root {
  --color-primary: #262626;
  --color-secondary: #F5EFE0;
  --color-accent: #C9A961;
  --color-neutral-dark: #0F0F0F;
  --color-neutral-light: #FAFAFA;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(15, 15, 15, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 15, 15, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 15, 15, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1180px;
}

/* === 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-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

/* === Layout === */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 780px; }
.section { padding-block: 4rem; }
.section-tinted { 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; }

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.72);
  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 .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.site-header.scrolled { background: rgba(250, 250, 250, 0.92); box-shadow: 0 8px 30px -20px rgba(15, 15, 15, 0.35); }
.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; }
.primary-nav { display: none; align-items: center; gap: 1.5rem; }
.primary-nav a { font-weight: 500; font-size: .95rem; color: var(--color-primary); position: relative; padding: .35rem 0; transition: color .2s var(--ease-hover); }
.primary-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--color-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-hover);
}
.primary-nav a:not(.btn):hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-primary); transition: transform .25s var(--ease-hover), opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 899px) {
  .primary-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid rgba(15,15,15,0.06); box-shadow: var(--shadow-md); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: .75rem 0; border-bottom: 1px solid rgba(15,15,15,0.05); }
  .primary-nav .btn { margin-top: .75rem; text-align: center; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s;
  text-align: center; line-height: 1;
}
.btn-sm { padding: .55rem 1rem; font-size: .875rem; }
.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.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(38, 38, 38, 0.7); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-dark); box-shadow: 0 10px 30px -12px rgba(201, 169, 97, 0.7); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(201, 169, 97, 0.85); }
.btn-ghost { background: transparent; border-color: rgba(15,15,15,0.15); color: var(--color-primary); }
.btn-ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* === Hero === */
.hero { position: relative; padding: 3.5rem 0 4.5rem; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto auto;
  width: 640px; height: 640px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(201, 169, 97, 0.22), transparent 70%);
  filter: blur(10px); z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: .8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }
.hero-copy h1 { margin-bottom: 1.25rem; }
.lede { font-size: 1.15rem; color: #444; max-width: 52ch; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) {
  .hero { padding: 5.5rem 0 6rem; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* === Intro === */
.intro { text-align: center; }
.intro p { color: #4a4a4a; font-size: 1.05rem; }

/* === Grid / Cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .grid-2, .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);
  border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover), border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201, 169, 97, 0.4); }
.card h3 { margin-bottom: .6rem; }
.card p { color: #4a4a4a; font-size: .96rem; margin: 0; }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.18), rgba(201, 169, 97, 0.05));
  color: var(--color-accent); margin-bottom: 1rem;
}

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

/* === Testimonials === */
.testimonial-section { padding-block: 3.5rem; }
.testimonial { margin: 0; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; color: var(--color-primary); margin-bottom: 1rem; }
.testimonial cite { font-style: normal; font-size: .95rem; color: var(--color-accent); font-weight: 600; letter-spacing: 0.04em; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), #1a1a1a);
  color: var(--color-neutral-light);
  padding-block: 3.5rem;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: auto -10% -50% auto;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(201, 169, 97, 0.25), transparent 70%);
  pointer-events: none;
}
.cta-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: .5rem; }
.cta-band p { color: rgba(250, 250, 250, 0.78); margin: 0; }
@media (min-width: 800px) { .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-list details {
  background: var(--color-neutral-light);
  border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  transition: box-shadow .2s var(--ease-hover), border-color .2s;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); border-color: rgba(201, 169, 97, 0.4); }
.faq-list summary {
  cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem;
  color: var(--color-primary); list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-weight: 400; color: var(--color-accent); font-size: 1.5rem; line-height: 1; transition: transform .2s; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-top: .75rem; color: #4a4a4a; font-size: .96rem; }

/* === Contact === */
.contact-band { }
.contact-card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 720px) { .contact-card-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { color: var(--color-accent); font-size: .85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: .5rem; }
.contact-card address, .contact-card p { font-style: normal; color: var(--color-primary); font-size: 1rem; margin: 0; }
.contact-card a { color: var(--color-primary); border-bottom: 1px solid rgba(201, 169, 97, 0.4); }
.contact-card a:hover { color: var(--color-accent); }

/* === Form === */
.contact-form { display: flex; flex-direction: column; gap: 1.15rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 500; font-size: .92rem; color: var(--color-primary); }
.field input, .field textarea {
  font: inherit; padding: .85rem 1rem;
  border: 1px solid rgba(15,15,15,0.15);
  border-radius: 12px;
  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(201, 169, 97, 0.2);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: #555; }
.form-consent input { margin-top: .2rem; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }
.contact-form button[type="submit"] { align-self: flex-start; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250, 250, 250, 0.8); margin-top: 3rem; padding-top: 3.5rem; padding-bottom: 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-brand .logo img { height: 64px; }
.footer-brand p { margin-top: 1rem; color: rgba(250, 250, 250, 0.65); max-width: 30ch; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; }
.footer-nav h4, .footer-contact h4 { color: var(--color-neutral-light); font-size: .82rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1rem; }
.footer-nav a, .footer-contact a { color: rgba(250, 250, 250, 0.78); padding: .3rem 0; transition: color .2s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--color-accent); }
.footer-contact address { font-style: normal; color: rgba(250, 250, 250, 0.78); line-height: 1.7; }
.legal-nav { display: flex; gap: 1rem; margin-top: 1rem; font-size: .88rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(250,250,250,0.08); color: rgba(250, 250, 250, 0.5); font-size: .85rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.3fr; gap: 3rem; } }

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

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

.disclaimer-bar { position: relative; z-index: 1000; background: #fdf7e8; border-bottom: 2px solid #c9a227; color: #4a4335; padding: 0.875rem 1.5rem; }
.disclaimer-bar p { max-width: 68rem; margin: 0 auto; font-size: 0.8125rem; line-height: 1.6; text-align: center; }
.disclaimer-bar strong { text-transform: uppercase; letter-spacing: 0.04em; }
.disclaimer-bar__icon { font-size: 1rem; }
