/* ================================================================
   THE ART OF BLONDES — Iconic Beauty Masterclass
   Stack: vanilla CSS, mobile-first
   Breakpoints: 640 / 960 / 1200 px
   ================================================================ */

/* ─── 1. Tokens ────────────────────────────────────────────────── */
:root {
  /* Dark palette (primary) */
  --ink:        #0E0C0B;
  --ink-rich:   #15110F;
  --ink-soft:   #1F1A17;
  --ink-card:   #221C18;

  /* Light palette */
  --bone:       #F5EDE3;
  --cream:      #FAF6F1;
  --sand:       #EBDFCD;
  --nude:       #D9C8B4;

  /* Brand */
  --gold:       #C9A66B;
  --gold-soft:  #E3C896;
  --gold-dk:    #A8854A;
  --gold-deep:  #8C6B36;

  /* Text on dark */
  --t-dark-1:   #F5EDE3;
  --t-dark-2:   rgba(245, 237, 227, 0.74);
  --t-dark-3:   rgba(245, 237, 227, 0.52);

  /* Text on light */
  --t-light-1:  #1A1714;
  --t-light-2:  #5A4F49;
  --t-light-3:  #8A7C72;

  /* Lines */
  --line-dark:  rgba(245, 237, 227, 0.10);
  --line-dark-strong: rgba(245, 237, 227, 0.20);
  --line-light: #E5DACB;

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;
  --space-3xl: 10rem;

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 960px;
  --container-tight: 720px;
  --header-h: 76px;

  /* Motion */
  --ease: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── 2. Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--ink);
  color: var(--t-dark-1);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.modal-open,
body.nav-open { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── 3. Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.05em; }

p { line-height: 1.75; }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--gold);
  opacity: 0.55;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── 4. Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--narrow { max-width: var(--container-narrow); }
.container--tight  { max-width: var(--container-tight); }

@media (min-width: 640px) {
  .container { padding-inline: 2rem; }
}
@media (min-width: 1200px) {
  .container { padding-inline: 2.5rem; }
}

.section {
  padding-block: var(--space-xl);
  position: relative;
}
@media (min-width: 960px) {
  .section { padding-block: var(--space-2xl); }
}

.section--light {
  background-color: var(--cream);
  color: var(--t-light-1);
}
.section--light p { color: var(--t-light-2); }

.section-head {
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}
.section-head--lead { margin-bottom: var(--space-xl); }
.section-head h2 { margin-bottom: 1rem; }
.section-head p {
  font-size: 1.05rem;
  color: inherit;
}
.section--light .section-head p { color: var(--t-light-2); }

/* ─── 5. Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 1px;
  border: 1px solid transparent;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background-color: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover {
  background-color: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn--ghost {
  background-color: transparent;
  color: var(--t-dark-1);
  border-color: var(--line-dark-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--dark {
  background-color: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn--dark:hover {
  background-color: var(--ink-soft);
  border-color: var(--ink-soft);
}

.btn--lg {
  padding: 1.3rem 2.6rem;
  font-size: 0.82rem;
}

/* ─── 6. Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background-color: transparent;
  transition: background-color var(--ease), border-color var(--ease), backdrop-filter var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background-color: rgba(14, 12, 11, 0.88);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
          backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-md);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex-shrink: 0;
}
.brand-main {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: var(--bone);
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Wrap nav + CTA so they hide together on mobile — fixes iOS leak */
.header-actions {
  display: none;
  align-items: center;
  gap: var(--space-md);
}
@media (min-width: 960px) {
  .header-actions { display: flex; }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-list a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-dark-2);
  transition: color var(--ease);
  position: relative;
  padding-block: 0.5rem;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--ease);
}
.nav-list a:hover { color: var(--bone); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 16px;
  padding: 0;
  flex-shrink: 0;
}
@media (min-width: 960px) {
  .nav-toggle { display: none; }
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 1.4px;
  background-color: var(--bone);
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.nav-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger-line:nth-child(2) { opacity: 0; }
.nav-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background-color: var(--ink);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateY(-100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  overflow-y: auto;
}
.mobile-nav[aria-hidden="false"] { transform: translateY(0); }
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-list a {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: var(--bone);
  border-bottom: 1px solid var(--line-dark);
  transition: color var(--ease), padding-left var(--ease);
}
.mobile-nav-list a:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-nav-cta { margin-top: var(--space-md); }

/* ─── 7. Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xl);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(15%) brightness(0.5) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(14,12,11,0.4) 0%, rgba(14,12,11,0.85) 75%, rgba(14,12,11,1) 100%),
    linear-gradient(180deg, rgba(14,12,11,0.5) 0%, rgba(14,12,11,0.45) 50%, rgba(14,12,11,0.95) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-title {
  font-family: var(--font-serif);
  margin-bottom: var(--space-md);
  line-height: 1;
}
.hero-title__italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  color: var(--t-dark-2);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.hero-title__caps {
  display: block;
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}

/* Banner-style subtitle — larger, editorial, single moment */
.hero-banner {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--bone);
  max-width: 760px;
  margin: var(--space-md) auto var(--space-lg);
  letter-spacing: 0.005em;
}
.hero-banner br { display: none; }
@media (min-width: 640px) {
  .hero-banner br { display: inline; }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 1.2rem;
  margin-bottom: var(--space-lg);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-dark-1);
}
.hero-meta li { position: relative; }
.hero-meta li + li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold);
  margin-right: 1.2rem;
  vertical-align: middle;
  transform: translateY(-2px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--t-dark-3);
  display: none;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background-color: var(--gold);
  margin: 0.6rem auto 0;
  opacity: 0.55;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50%      { transform: scaleY(1);   opacity: 0.7; }
}
@media (min-width: 960px) {
  .hero-scroll { display: block; }
}

/* ─── 8. Video — Meet Your Educator ───────────────────────────── */
.video-section { background-color: var(--cream); }

/* Force block-level so play-button positioning works */
.video-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--ink);
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(26, 23, 20, 0.4);
  margin-top: var(--space-md);
  cursor: pointer;
  padding: 0;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--ease), transform var(--ease-slow);
}
.video-card:hover img { opacity: 0.85; transform: scale(1.02); }
.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,12,11,0.4) 0%, rgba(14,12,11,0.1) 100%);
  z-index: 1;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(72px, 12vw, 108px);
  height: clamp(72px, 12vw, 108px);
  border-radius: 50%;
  background-color: rgba(245, 237, 227, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--ease), transform var(--ease);
}
.video-card:hover .video-play {
  background-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.05);
}
.video-play svg {
  width: 30%;
  height: 30%;
  fill: var(--ink);
  margin-left: 4px;
}

.video-caption {
  text-align: center;
  margin-top: var(--space-md);
  max-width: 56ch;
  margin-inline: auto;
  font-style: italic;
  color: var(--t-light-2);
  font-size: 1.02rem;
}

/* ─── 9. Audience cards ────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.audience-card {
  background-color: var(--ink-card);
  border: 1px solid var(--line-dark);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: border-color var(--ease), background-color var(--ease), transform var(--ease);
}
.audience-card:hover {
  border-color: var(--gold);
  background-color: var(--ink-soft);
  transform: translateY(-3px);
}
.audience-card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
  letter-spacing: 0.04em;
}
.audience-card-line {
  width: 28px;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.audience-card h3 {
  font-size: 1.3rem;
  color: var(--bone);
  font-weight: 500;
  line-height: 1.3;
}

.audience-card--quote {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
}
.audience-card--quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
  line-height: 1.5;
  margin: 0;
}

/* ─── 10. Curriculum grid (8 items) ─────────────────────────── */
.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
@media (min-width: 640px) {
  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .curriculum-grid { grid-template-columns: repeat(4, 1fr); }
}
.curriculum-item {
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background-color: var(--cream);
  transition: background-color var(--ease);
  min-height: 120px;
}
.curriculum-item:hover { background-color: var(--sand); }
.curriculum-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-dk);
  flex-shrink: 0;
  line-height: 1.5;
  min-width: 24px;
  letter-spacing: 0.04em;
}
.curriculum-text {
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--t-light-1);
  line-height: 1.45;
  font-family: var(--font-sans);
}

/* ─── 11. Two-day structure ─────────────────────────────────── */
.daygrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 960px) {
  .daygrid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.day-card {
  background-color: var(--ink-card);
  border: 1px solid var(--line-dark);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.day-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.day-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.day-display {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7vw, 5rem);
  line-height: 1;
  font-weight: 400;
  color: var(--bone);
  margin: -0.4rem 0 0.4rem;
  letter-spacing: -0.01em;
}
.day-display small {
  font-size: 0.5em;
  color: var(--gold);
  font-style: italic;
  vertical-align: super;
}
.day-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--bone);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
}
.day-desc {
  color: var(--t-dark-2);
  font-size: 0.985rem;
  line-height: 1.75;
}
.day-meta {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-dark-3);
}
.day-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.day-meta .dot { width: 5px; height: 5px; border-radius: 50%; background-color: var(--gold); }

/* ─── 12. Techniques ────────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 960px) {
  .tech-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.tech-card { display: flex; flex-direction: column; gap: 1.5rem; }
.tech-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.tech-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.tech-card:hover .tech-img img { transform: scale(1.04); }
.tech-body { padding: 0 0.5rem; text-align: center; }
.tech-name {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: var(--t-light-1);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ─── 13. Included chips (compact) ──────────────────────────── */
.included-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  max-width: 900px;
  margin: var(--space-md) auto 0;
}
.included-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  background-color: var(--ink-card);
  border: 1px solid var(--line-dark);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  transition: border-color var(--ease), background-color var(--ease);
}
.included-chips li:hover {
  border-color: var(--gold);
  background-color: var(--ink-soft);
}
.chip-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.chip-icon svg { width: 100%; height: 100%; stroke-width: 1.2; }

/* ─── 14. Why Different ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-xl);
    align-items: start;
  }
}
.why-lead h2 { margin-bottom: 1.4rem; }
.why-lead p {
  font-size: 1.05rem;
  color: var(--t-light-2);
  line-height: 1.8;
}
.why-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 640px) {
  .why-points { grid-template-columns: repeat(2, 1fr); }
}
.why-point {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  background-color: var(--bone);
  border: 1px solid var(--line-light);
  transition: border-color var(--ease), background-color var(--ease);
}
.why-point:hover {
  border-color: var(--gold);
  background-color: #FFFFFF;
}
.why-point-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-point-mark svg {
  width: 11px;
  height: 11px;
  stroke: var(--gold-dk);
  stroke-width: 2;
}
.why-point-text {
  font-size: 0.95rem;
  color: var(--t-light-1);
  font-weight: 500;
  line-height: 1.5;
}

/* ─── 15. Editorial Quote (full-bleed) ──────────────────────── */
.editorial-quote-section {
  background-color: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.editorial-quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,166,107,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.editorial-quote {
  position: relative;
  z-index: 2;
  padding-block: var(--space-md);
}
.editorial-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 4.2vw, 3.2rem);
  line-height: 1.35;
  color: var(--bone);
  font-weight: 400;
  margin-bottom: 2rem;
}
.editorial-quote em {
  font-style: italic;
  color: var(--gold-soft);
}
.editorial-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── 16. Client Reviews ───────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background-color: var(--bone);
  border: 1px solid var(--line-light);
  padding: 2.2rem 1.8rem;
  transition: border-color var(--ease), transform var(--ease);
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.3rem;
  color: var(--gold);
}
.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.review-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--t-light-1);
  margin-bottom: 1.4rem;
}
.review-card cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-light-3);
}

.video-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .video-reviews { grid-template-columns: repeat(3, 1fr); }
}
.video-review {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: var(--ink);
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.video-review img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity var(--ease), transform var(--ease-slow);
}
.video-review:hover img { opacity: 0.9; transform: scale(1.02); }
.video-review::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,12,11,0.75) 100%);
  z-index: 1;
}
.video-play-sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(245, 237, 227, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--ease);
}
.video-review:hover .video-play-sm { background-color: var(--gold); }
.video-play-sm svg {
  width: 32%;
  height: 32%;
  fill: var(--ink);
  margin-left: 2px;
}
.video-review-name {
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone);
}

/* ─── 17. Investment ─────────────────────────────────────────── */
.investment {
  text-align: center;
  background-color: var(--ink-rich);
  position: relative;
  overflow: hidden;
}
.investment::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201, 166, 107, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.investment-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}
.investment-rule {
  width: 36px;
  height: 1px;
  background-color: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.7;
}
.investment-price {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--bone);
  font-weight: 400;
  line-height: 1;
  margin: 1.4rem 0;
  letter-spacing: -0.02em;
  display: inline-block;
  position: relative;
}
.investment-price .euro {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--gold);
  margin-right: 0.05em;
  font-weight: 400;
}
.investment-per {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--t-dark-3);
  margin-bottom: 2.2rem;
}
.investment-note {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--t-dark-3);
}

/* ─── 18. Bonus minimal line ─────────────────────────────────── */
.bonus-minimal { padding-block: var(--space-xl); }
.bonus-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--t-light-1);
  font-weight: 400;
  margin-top: var(--space-sm);
}
.bonus-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .bonus-dot { display: none; }
}

/* ─── 19. Final CTA ──────────────────────────────────────────── */
.final-cta {
  text-align: center;
  background-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(201, 166, 107, 0.08), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201, 166, 107, 0.05), transparent 50%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}
.final-cta h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  margin-bottom: 1.2rem;
  color: var(--bone);
  font-weight: 500;
  font-style: italic;
}
.final-cta p {
  font-size: 1.05rem;
  color: var(--t-dark-2);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

/* ─── 20. FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item:first-of-type { border-top: 1px solid var(--line-light); }

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: var(--t-light-1);
  list-style: none;
  transition: color var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-dk); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  margin-top: 6px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--gold);
  transition: transform var(--ease), opacity var(--ease);
}
.faq-icon::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  padding: 0 0 1.8rem;
  color: var(--t-light-2);
  font-size: 0.98rem;
  max-width: 60ch;
  line-height: 1.75;
}

/* ─── 21. Footer ─────────────────────────────────────────────── */
.site-footer {
  background-color: #0A0908;
  color: var(--t-dark-2);
  padding-block: var(--space-xl) var(--space-md);
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--space-md); }
}
.footer-brand .brand-main { font-size: 1.25rem; }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--t-dark-3);
  max-width: 38ch;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col p,
.footer-col address {
  display: block;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--t-dark-2);
  line-height: 1.85;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--t-dark-3);
}

/* ─── 22. WhatsApp float ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: background-color var(--ease), transform var(--ease);
}
.wa-float:hover { background-color: #1ebe5d; transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; flex-shrink: 0; }
@media (min-width: 960px) {
  .wa-float { display: none; }
}

/* ─── 23. Modal / popups ─────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(14, 12, 11, 0.78);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
          backdrop-filter: saturate(140%) blur(8px);
}
.modal-content {
  position: relative;
  z-index: 2;
  background-color: var(--cream);
  color: var(--t-light-1);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(2rem, 5vw, 3.2rem);
  border-radius: 2px;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal[aria-hidden="false"] .modal-content { transform: translateY(0); }
.modal-content--exit {
  max-width: 460px;
  background-color: var(--bone);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-light-3);
  border-radius: 50%;
  transition: color var(--ease), background-color var(--ease);
  z-index: 3;
}
.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover {
  color: var(--gold-dk);
  background-color: var(--line-light);
}
.modal-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
  color: var(--t-light-1);
  font-weight: 500;
}
.modal-intro {
  font-size: 0.95rem;
  color: var(--t-light-2);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ─── 24. Lead form ──────────────────────────────────────────── */
.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}
@media (min-width: 520px) {
  .lead-form { grid-template-columns: 1fr 1fr; }
  .lead-form label.full { grid-column: 1 / -1; }
  .form-submit { grid-column: 1 / -1; margin-top: 0.5rem; }
}
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-light-3);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--t-light-1);
  background-color: #fff;
  border: 1px solid var(--line-light);
  padding: 0.85rem 1rem;
  border-radius: 1px;
  transition: border-color var(--ease);
  width: 100%;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.lead-form textarea { resize: vertical; min-height: 80px; }
.lead-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23A8854A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1 6 6 11 1'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.5rem; }

/* Modal thanks state (after submission) */
.modal-thanks {
  text-align: center;
  padding-block: 1rem;
}
.modal-thanks-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dk);
}
.modal-thanks-mark svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dk);
}
.modal-thanks h3 { margin-bottom: 0.8rem; }
.modal-thanks p {
  color: var(--t-light-2);
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

/* ─── 25. Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ─── 26. Anchor offset ──────────────────────────────────────── */
section[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
