/* ============================================================================
 * Rébecca Zana — landing site
 * Design system : crème (#fbf7f4), rose poudré (#b14d6f), serif élégant + sans
 * ============================================================================ */

:root {
  --bg: #fbf7f4;
  --bg-elev: #ffffff;
  --bg-tinted: #f3ebe5;
  --text: #1f1d1c;
  --text-muted: #6c6967;
  --primary: #b14d6f;
  --primary-dark: #934058;
  --primary-soft: #f5e2e9;
  --accent: #c97a8e;
  --border: #e6dcd2;
  --shadow-sm: 0 1px 2px rgba(31, 29, 28, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(177, 77, 111, 0.18);
  --shadow-lg: 0 16px 40px -12px rgba(177, 77, 111, 0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --max-width: 1100px;
  --max-width-narrow: 720px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 16px; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--primary-dark); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow { max-width: var(--max-width-narrow); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin: 0 0 12px;
}

.eyebrow.center { text-align: center; }
.center { text-align: center; }

.lead {
  font-size: 1.075rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Scroll reveal animations ---------- */
/* Progressive enhancement : without JS the page renders fully visible.
   The .has-js class is added by scripts.js as soon as it runs, only then
   we hide .reveal elements and wait for them to scroll into view.        */

.reveal { opacity: 1; }

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 244, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.logo-link:hover { color: var(--text); }

.logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover { color: var(--primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 500;
}

.nav-cta:hover { background: var(--primary-dark); color: #fff !important; }

/* ---------- Burger menu ---------- */

.burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 880px) {
  .burger { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 84%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-elev);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 90px 28px 28px;
    box-shadow: -8px 0 32px rgba(31, 29, 28, 0.08);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 60;
  }

  .nav.is-open { transform: translateX(0); }

  .nav a {
    width: 100%;
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child { border-bottom: none; }

  .nav-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }

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

/* ---------- Hero ---------- */

.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 560px; }
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-trust strong { color: var(--text); font-weight: 600; }

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c, var(--primary-soft));
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  margin-left: -8px;
}

.avatar-stack span:first-child { margin-left: 0; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- Hero : Instagram-style card ---------- */

.ig-card {
  display: block;
  width: 100%;
  max-width: 360px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--text);
  text-decoration: none;
}

.ig-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 24px 48px -12px rgba(177, 77, 111, 0.32);
  color: var(--text);
}

.ig-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.ig-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-soft);
  padding: 4px;
  flex-shrink: 0;
}

.ig-card-meta { flex: 1; min-width: 0; }

.ig-card-handle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.ig-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 2px 0 0;
  line-height: 1.2;
}

.ig-card-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -2px rgba(177, 77, 111, 0.5);
  flex-shrink: 0;
}

.ig-card-image {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 60%),
    linear-gradient(160deg, var(--primary-soft), var(--bg-tinted));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ig-card-image::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 70% 80%, rgba(177, 77, 111, 0.12), transparent 55%),
    radial-gradient(circle at 20% 100%, rgba(201, 122, 142, 0.15), transparent 50%);
  pointer-events: none;
}

.ig-card-logo {
  width: 55%;
  max-width: 180px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 18px rgba(177, 77, 111, 0.25));
}

.ig-card-footer {
  padding: 14px 16px 18px;
}

.ig-card-actions {
  display: flex;
  gap: 14px;
  color: var(--text);
  margin-bottom: 10px;
}

.ig-card-actions svg { transition: color 0.18s ease; }
.ig-card:hover .ig-card-actions svg:first-child { color: var(--primary); }

.ig-card-caption {
  font-size: 0.825rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.ig-card-caption strong { color: var(--text); font-weight: 600; }
.ig-card-caption span { color: var(--text-muted); }

@media (max-width: 880px) {
  .hero { padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; justify-content: center; }
  .ig-card { max-width: 320px; }
}

/* ---------- Sections ---------- */

.section { padding: 80px 0; }
.section-light { background: var(--bg-elev); }

.section-cta {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tinted) 100%);
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
}

/* ---------- Stats ---------- */

.section-stats {
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat {
  padding: 16px 12px;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 4px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-value .stat-small {
  font-size: 0.55em;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-label {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- About ---------- */

.section-about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--primary-soft), var(--bg-tinted));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 80% 20%, rgba(177, 77, 111, 0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(201, 122, 142, 0.18), transparent 50%);
  pointer-events: none;
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 55%;
  max-width: 200px;
  filter: drop-shadow(0 8px 24px rgba(177, 77, 111, 0.25));
}

.about-tag {
  position: absolute;
  bottom: 16px;
  right: -12px;
  background: var(--bg-elev);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
}

.about-tag svg { color: #2da46a; flex-shrink: 0; }

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); line-height: 1.75; }
.about-text strong { color: var(--text); font-weight: 600; }

.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 10px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-list svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 360px; margin: 0 auto; width: 100%; }
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card h3 { margin-bottom: 8px; }
.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Testimonials ---------- */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-soft);
  user-select: none;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c, var(--primary-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  color: var(--text);
}

.author-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
}

/* ---------- Instagram feed grid ---------- */

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 40px 0 32px;
}

.ig-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.ig-thumb-bg {
  position: absolute;
  inset: 0;
  background: var(--g, linear-gradient(160deg, var(--primary-soft), var(--bg-tinted)));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.ig-thumb-emoji {
  font-size: 2.5rem;
  opacity: 0.85;
}

.ig-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(31, 29, 28, 0.7));
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.ig-thumb:hover .ig-thumb-overlay { opacity: 1; }
.ig-thumb:hover .ig-thumb-bg { transform: scale(1.05); }

/* Real Instagram media (img/video poster) injected by scripts.js */
.ig-thumb img,
.ig-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ig-thumb:hover img,
.ig-thumb:hover video { transform: scale(1.05); }

.ig-grid-cta {
  text-align: center;
  margin: 0;
}

@media (max-width: 880px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .ig-thumb-emoji { font-size: 2rem; }
}

/* ---------- Lead magnet ---------- */

.section-lead {
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--bg-tinted) 100%);
  position: relative;
  overflow: hidden;
}

.section-lead::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
  pointer-events: none;
}

.lead-magnet-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-magnet-text h2 { margin-bottom: 16px; }
.lead-magnet-text p { color: var(--text); }

.lead-magnet-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.lead-magnet-bullets li {
  color: var(--text);
  padding-left: 4px;
}

.lead-form {
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.lead-form h3 {
  margin: 0 0 20px;
  font-size: 1.35rem;
}

.lead-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 6px;
}

.lead-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  margin: 0 0 18px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lead-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.lead-form-submit {
  width: 100%;
  justify-content: center;
  position: relative;
}

.lead-form-submit[disabled] { opacity: 0.7; cursor: progress; }

.lead-form-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.lead-form-submit.is-loading .lead-form-spinner { display: inline-block; }
.lead-form-submit.is-loading .lead-form-label { opacity: 0.7; }

@keyframes spin { to { transform: rotate(360deg); } }

.lead-form-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 14px 0 0;
  line-height: 1.5;
}

.lead-form-legal a { color: var(--text-muted); text-decoration: underline; }

.lead-form-result {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.lead-form-result.is-success {
  background: #e7f3ed;
  color: #1f6e44;
  border: 1px solid #c2e1cf;
}

.lead-form-result.is-error {
  background: #faecec;
  color: #8a2a2a;
  border: 1px solid #f0c8c8;
}

@media (max-width: 880px) {
  .lead-magnet-grid { grid-template-columns: 1fr; gap: 32px; }
  .lead-form { padding: 24px; }
}

/* ---------- FAQ ---------- */

.faq-list {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item[open] .faq-icon { background: var(--primary); }
.faq-item[open] .faq-icon::before { background: #fff; }

.faq-content {
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-content p { margin: 0; font-size: 0.95rem; }
.faq-content a { text-decoration: underline; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-tinted);
  color: var(--text);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* ---------- Contact CTA cards ---------- */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

.contact-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: block;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
  color: var(--text);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-card-icon.ig-grad {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.contact-card-icon.wa-grad {
  background: #25d366;
  color: #fff;
}

.contact-card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.contact-card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

/* ---------- Floating WhatsApp button ---------- */

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 12px 28px -4px rgba(37, 211, 102, 0.65);
}

@media (max-width: 720px) {
  .whatsapp-fab {
    bottom: 80px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

/* ---------- Mobile sticky CTA ---------- */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 89;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff !important;
  text-align: center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px -4px rgba(220, 39, 67, 0.45);
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-sticky-cta.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 720px) {
  .mobile-sticky-cta { display: inline-flex; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--text);
  color: #d6d3d1;
  padding: 48px 0 32px;
  margin-top: 0;
}

.site-footer h2, .site-footer h3 { color: #fff; }

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.footer-muted {
  color: #a09c98;
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #d6d3d1;
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--primary-soft); }

.footer-copy {
  margin: 0;
  color: #6c6967;
  font-size: 0.8rem;
  border-top: 1px solid #2f2c2a;
  padding-top: 20px;
  width: 100%;
}

/* ---------- Legal pages ---------- */

.legal-page {
  padding: 80px 0 96px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content .updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0 0 32px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 12px;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
}

.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-content li {
  margin: 6px 0;
}

.legal-content code {
  background: var(--bg-tinted);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.legal-content .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-content .back-link:hover { color: var(--primary); }

@media (max-width: 720px) {
  .legal-page { padding: 48px 0 64px; }
  .legal-content h2 { font-size: 1.3rem; }

  /* Push content above the sticky CTA so nothing is hidden */
  main { padding-bottom: 70px; }
}
