/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --bg: #F7F3ED;
  --bg-alt: #EDE8DF;
  --bg-warm: #E8E0D5;
  --bg-dark: #1C1816;
  --bg-dark-alt: #241F1C;
  --text: #2C2420;
  --text-muted: #7A6B62;
  --text-light: #A89990;
  --accent: #B5673A;
  --accent-hover: #9A5530;
  --accent-light: #D4956A;
  --accent-pale: #F0DDD1;
  --white: #FDFAF6;
  --border: #DDD5CC;
  --border-dark: #C8BDB5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;

  --nav-height: 80px;
  --container: 1120px;
  --container-sm: 740px;

  --shadow: 0 4px 24px rgba(26, 23, 20, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 23, 20, 0.18);
  --transition: 0.3s ease;
  --radius: 6px;
  --radius-lg: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.quote-text {
  font-family: var(--font-elegant);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.5;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
}
.container--sm {
  max-width: var(--container-sm);
  margin-inline: auto;
  padding-inline: 2rem;
}
section { padding-block: 6rem; }

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-header .desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 55ch;
  line-height: 1.7;
}
.section-header.centered .desc { margin-inline: auto; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition), box-shadow var(--transition);
}
.nav.hero-nav { background-color: transparent; }
.nav.nav-solid,
.nav.scrolled {
  background-color: rgba(247, 243, 237, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__logo-img--blanc { display: none; }
.nav.hero-nav:not(.scrolled) .nav__logo-img--color { display: none; }
.nav.hero-nav:not(.scrolled) .nav__logo-img--blanc { display: block; }

.footer__logo img { height: 52px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--accent); }
.nav__link.active { color: var(--accent); font-weight: 600; }
.nav.hero-nav:not(.scrolled) .nav__link { color: rgba(253, 250, 246, 0.82); }
.nav.hero-nav:not(.scrolled) .nav__link:hover { color: var(--white); }
.nav.hero-nav:not(.scrolled) .nav__link.active { color: var(--white); }

.nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white) !important;
  background-color: var(--accent);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  margin-left: 0.6rem;
  transition: background-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav__cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav.hero-nav:not(.scrolled) .nav__hamburger span { background-color: var(--white); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(253, 250, 246, 0.38);
}
.btn--outline-light:hover {
  border-color: var(--white);
  background-color: rgba(253, 250, 246, 0.1);
}
.btn--lg {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== HERO (Home) ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding-top: var(--nav-height);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 65%, rgba(181, 103, 58, 0.38) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 28%, rgba(212, 149, 106, 0.18) 0%, transparent 48%),
    linear-gradient(150deg, #1C1816 0%, #2D1E15 45%, #1C1816 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
  padding-block: 5rem 8rem;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--accent-light);
}
.hero__tagline {
  font-family: var(--font-elegant);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(253, 250, 246, 0.7);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.hero__desc {
  font-size: 1rem;
  color: rgba(253, 250, 246, 0.55);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(253, 250, 246, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bobble 2.4s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(253, 250, 246, 0.3), transparent);
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding-top: calc(var(--nav-height) + 4.5rem);
  padding-bottom: 4.5rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(181, 103, 58, 0.22) 0%, transparent 60%),
    linear-gradient(155deg, #1C1816 0%, #261F1B 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(253, 250, 246, 0.68); max-width: 52ch; }

/* ===== GEO TAG ===== */
.geo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.geo-tag::before { content: '◉'; color: var(--accent); }
.geo-tag--light { color: rgba(253, 250, 246, 0.5); }
.geo-tag--light::before { color: var(--accent-light); }

/* ===== FORMAT CARDS ===== */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.format-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.format-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.format-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.format-card:hover::after { transform: scaleX(1); }
.format-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.format-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.format-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col--60-40 { grid-template-columns: 1.4fr 1fr; }
.two-col--reversed .two-col__img { order: -1; }

/* ===== PHOTO BLOCKS ===== */
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #3D2A1E 0%, #5A3D2A 60%, #3A2318 100%);
  position: relative;
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 55%, rgba(181, 103, 58, 0.28) 0%, transparent 65%);
  pointer-events: none;
}
.photo-frame--portrait { aspect-ratio: 3/4; }
.photo-frame--landscape { aspect-ratio: 4/3; }
.photo-frame--wide { aspect-ratio: 16/9; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(253, 250, 246, 0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== PLATFORM LINKS ===== */
.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}
.platform-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.platform-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== SPOTIFY EMBED ===== */
.spotify-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
}

/* ===== VIDEO ===== */
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: var(--shadow-lg);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.video-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1C1816 0%, #2E2018 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(253, 250, 246, 0.55);
  font-size: 0.875rem;
  transition: background var(--transition);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.video-placeholder:hover {
  background: linear-gradient(135deg, #241F1C 0%, #3A2818 100%);
  color: rgba(253, 250, 246, 0.8);
}
.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(181, 103, 58, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.video-placeholder:hover .play-btn { transform: scale(1.1); background: var(--accent); }
.play-btn svg { width: 26px; height: 26px; fill: var(--white); margin-left: 4px; }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.video-card { display: flex; flex-direction: column; gap: 0.75rem; }
.video-card__title { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.video-card__label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== SOCIAL LINKS ===== */
.social-links { display: flex; gap: 0.875rem; align-items: center; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(181, 103, 58, 0.1);
  color: var(--accent);
  transition: all var(--transition);
}
.social-link:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.social-links--dark .social-link { background: rgba(253, 250, 246, 0.08); color: rgba(253, 250, 246, 0.65); }
.social-links--dark .social-link:hover { background: var(--accent); color: var(--white); }

/* ===== CONTACT FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
label { font-size: 0.875rem; font-weight: 500; color: var(--text); }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181, 103, 58, 0.12);
}
textarea { resize: vertical; min-height: 140px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237A6B62' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-note { font-size: 0.8rem; color: var(--text-muted); }
input[type="hidden"] { display: none; }

/* ===== INFO BLOCKS ===== */
.info-card {
  background: var(--accent-pale);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border-left: 4px solid var(--accent);
}
.info-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.info-card p { font-size: 0.925rem; color: var(--text-muted); }
.info-card a { color: var(--accent); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

.detail-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1rem; }
.detail-list li { font-size: 0.9rem; color: var(--text-muted); display: flex; gap: 0.5rem; }
.detail-list li strong { color: var(--text); font-weight: 600; min-width: 80px; flex-shrink: 0; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--accent-pale);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 50ch; margin-inline: auto; }

/* ===== QUOTE BAND ===== */
.quote-band {
  background: var(--bg-dark);
  text-align: center;
  padding-block: 7rem;
  position: relative;
  overflow: hidden;
}
.quote-band__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(181, 103, 58, 0.18) 0%, transparent 65%);
}
.quote-band blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-elegant);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  max-width: 22ch;
  margin-inline: auto;
  line-height: 1.4;
}
.quote-band blockquote::before {
  content: '"';
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 0.4;
  display: block;
  margin-bottom: 1.75rem;
  font-style: normal;
}
.quote-band cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 2rem;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
  stroke: currentColor;
  fill: none;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 600px; }
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 1.5rem;
}

/* ===== BIO SECTION ===== */
.bio-short {
  font-family: var(--font-elegant);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 1.75rem;
  margin-bottom: 2rem;
}

/* ===== STAT BLOCKS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat-block {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.stat-block__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-block__label { font-size: 0.85rem; color: var(--text-muted); }

/* ===== HELLOASSO BLOCK ===== */
.support-block {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.support-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(181, 103, 58, 0.15) 0%, transparent 70%);
}
.support-block * { position: relative; z-index: 1; }
.support-block h3 { color: var(--white); margin-bottom: 0.75rem; }
.support-block p { color: rgba(253, 250, 246, 0.65); max-width: 42ch; margin-inline: auto; margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(253, 250, 246, 0.6);
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
}
.footer__brand p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.25rem; }
.footer__brand .geo-tag { color: var(--accent-light); margin-bottom: 1.5rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.35);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(253, 250, 246, 0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent-light); }
.footer__contact-email {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.footer__contact-email:hover { color: var(--white); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 250, 246, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p, .footer__bottom a { font-size: 0.8rem; color: rgba(253, 250, 246, 0.3); }
.footer__bottom a { transition: color var(--transition); }
.footer__bottom a:hover { color: rgba(253, 250, 246, 0.65); }
.footer__legal { display: flex; gap: 1.5rem; }

/* ===== BACKGROUNDS ===== */
.bg-alt { background-color: var(--bg-alt); }
.bg-dark { background-color: var(--bg-dark); }
.bg-white { background-color: var(--white); }

/* ===== MISC ===== */
.hr { border: none; border-top: 1px solid var(--border); margin-block: 0; }
.text-accent { color: var(--accent); }

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
}
.form-success__icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); }

/* ===== MENTIONS LÉGALES ===== */
.legal-content h2 { font-size: 1.4rem; margin-top: 3rem; margin-bottom: 1rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.legal-content a { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 66px; }
  section { padding-block: 4rem; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0.15rem;
    overflow-y: auto;
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__link {
    font-size: 1.05rem !important;
    padding: 0.7rem 0.75rem !important;
    width: 100%;
    color: var(--text) !important;
  }
  .nav__cta { margin-top: 0.5rem; margin-left: 0.75rem; font-size: 0.9rem; }
  .nav__hamburger { display: flex; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reversed .two-col__img { order: 0; }
  .two-col--60-40 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer__legal { flex-direction: column; gap: 0.5rem; }
  .cta-band { padding: 2.5rem 1.5rem; }
  .quote-band { padding-block: 5rem; }
}

@media (max-width: 540px) {
  .container, .container--sm { padding-inline: 1.25rem; }
  .formats-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .btn--lg { width: 100%; justify-content: center; }
  .videos-grid { grid-template-columns: 1fr; }
  .platform-links { flex-direction: column; }
  .platform-link { width: 100%; justify-content: center; }
}
