/* =============================================
   MyFrenchKiss — CSS
   Dark premium Parisian aesthetic
   ============================================= */

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

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0A0A0A;
  --cream:    #F5F0E8;
  --gold:     #C9A96E;
  --gold-dim: #9E7D4E;
  --beige:    #E8DDD0;
  --rose:     #D4A5A5;
  --grey:     #8A8A8A;
  --border:   rgba(201,169,110,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === UTILITIES === */
.gold { color: var(--gold); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-beige { background: var(--beige); color: var(--black); }
.section-black { background: var(--black); color: var(--cream); }

/* === FADE IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* === URGENCY BANNER === */
.urgency-banner {
  background: #C9A96E;
  color: #0A0A0A;
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 62px; /* push below fixed navbar */
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
}
nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--cream); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 20px;
  border-radius: 2px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #b8925d !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 1.5px; background: var(--cream); display: block; transition: 0.3s; }

/* === HERO === */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  background-image: url('/images/maison-celeste-box.jpg');
  background-size: cover;
  background-position: center;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; padding: 0 24px; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 82px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--grey);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 44px;
  font-weight: 300;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: #b8925d; transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.3px;
}
.hero-note span { color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--grey), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === PROMISE SECTION (beige) === */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.promise-item { text-align: center; }
.promise-icon {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-icon svg { width: 100%; height: 100%; }
.promise-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}
.promise-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  font-weight: 300;
}

/* === PLANS SECTION === */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--grey);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 64px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.plan-card {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.plan-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--gold);
  background: #141414;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.plan-price {
  font-size: 42px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 4px;
  line-height: 1;
}
.plan-price sup { font-size: 20px; vertical-align: super; }
.plan-period {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 28px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.plan-features { list-style: none; margin-bottom: 36px; }
.plan-features li {
  font-size: 14px;
  color: #ccc;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.8;
  font-weight: 300;
}
.plan-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}
.plan-card .btn-primary,
.plan-card .btn-outline { width: 100%; text-align: center; }
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey);
}
.trust-item .icon { color: var(--gold); font-size: 14px; }

/* === STEPS SECTION === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold);
  font-weight: 400;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.testimonial-card {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 30px;
}
.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* === FRENCH DIFF SECTION (beige) === */
.french-diff-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.french-diff-inner .section-title { margin-bottom: 36px; }
.french-diff-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
  margin-bottom: 48px;
}
.french-diff-body strong { color: var(--black); font-weight: 500; }

/* === FAQ === */
.faq-list { max-width: 720px; margin: 64px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.3px;
}
.faq-icon {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  display: none;
}
.faq-answer p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  padding-top: 16px;
  font-weight: 300;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  display: block;
}

/* === FOOTER === */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 36px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-email {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 32px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: #444;
  letter-spacing: 0.5px;
}

/* === SUBSCRIBE PAGE === */
.subscribe-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--black);
}
.subscribe-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 16px;
}
.subscribe-hero p {
  color: var(--grey);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
}
.subscribe-plans { padding: 60px 0 100px; background: var(--black); }
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.loading-overlay.active { opacity: 1; pointer-events: all; }
.loading-spinner {
  width: 40px; height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === SUCCESS / CANCEL PAGES === */
.result-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.result-inner { max-width: 560px; }
.result-icon { font-size: 48px; margin-bottom: 28px; }
.result-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--cream);
}
.result-subtitle { color: var(--grey); font-size: 15px; line-height: 1.7; margin-bottom: 40px; }
.result-steps {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  text-align: left;
  margin-bottom: 40px;
}
.result-steps h3 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.result-steps ol { padding-left: 20px; }
.result-steps li {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 8px;
  font-weight: 300;
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 140px 0 80px;
  text-align: center;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 20px;
}
.about-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 0 80px;
}
.about-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.9;
  color: #ccc;
  font-weight: 300;
  margin-bottom: 24px;
}
.about-body p strong { color: var(--cream); font-weight: 400; }

/* === LEGAL PAGES === */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 48px;
  color: var(--cream);
}
.legal-page h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 36px 0 14px;
}
.legal-page p, .legal-page li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
  font-weight: 300;
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 20px; }

/* === TRUST MINI BADGES === */
.trust-mini {
  margin-top: 12px;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.3px;
  line-height: 1.6;
}

/* === PAST BOXES SECTION === */
.past-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.past-box-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.past-box-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.past-box-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .past-box-card img {
    height: 200px;
  }
}
.past-box-content {
  padding: 28px;
}
.past-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}
.past-box-pieces {
  font-size: 13px;
  color: #F5F0E8;
  line-height: 1.6;
}
.past-box-pieces li {
  list-style: none;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}
.past-box-pieces li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 10px;
}

/* === GIFT SECTION === */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.gift-card {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.gift-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.gift-duration {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gift-price {
  font-size: 42px;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1;
}
.gift-price sup { font-size: 20px; vertical-align: super; }
.gift-subtitle {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 28px;
}
.gift-card .btn-primary { width: 100%; }

/* === RETAIL VALUE === */
.retail-value {
  font-size: 11px;
  color: var(--gold);
  margin-top: 8px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* === SHARE BUTTONS === */
.share-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s;
}
.share-btn:hover { background: #b8925d; }

/* === SECTION IMAGES === */
.section-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 48px;
}
.section-image-wide {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 56px;
}
/* Promise image — 50/50 layout */
.promise-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.promise-header-text .section-title { text-align: center; margin-bottom: 0; }
.promise-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  object-position: center 80%;
  border-radius: 4px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .promise-header { grid-template-columns: 1fr; gap: 24px; }
  .promise-header-text .section-title { text-align: center; }
  .promise-image { max-height: 180px; }
}
.french-diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.french-diff-layout .french-diff-inner {
  max-width: none;
  text-align: left;
}
.french-diff-layout .section-title { text-align: left; }
.french-diff-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}
.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.testimonials-header-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
}
.about-hero-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  margin-top: 48px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .french-diff-layout { grid-template-columns: 1fr; }
  .french-diff-layout .french-diff-inner { text-align: center; }
  .french-diff-layout .section-title { text-align: center; }
  .french-diff-img { height: 300px; }
  .testimonials-header { grid-template-columns: 1fr; }
  .testimonials-header-img { height: 240px; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .promise-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .past-boxes-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .gift-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 18px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { gap: 16px; }

  /* ── Mobile fixes ── */
  /* 1. Promise section background */
  .section-beige { background-color: #F5F0E8 !important; }

  /* 2. Promise image on mobile */
  .promise-image { max-height: 180px; }

  /* 3. Plan cards typography */
  .plan-features li { font-size: 14px; padding: 8px 0; }

  /* 4. Social proof section */
  .testimonials-header { grid-template-columns: 1fr; }
  .testimonials-header-img { max-height: 150px; }
  .testimonial-card { margin-bottom: 20px; }
  #testimonials { padding-top: 40px; padding-bottom: 32px; }

  /* 5. FAQ padding */
  .faq-item { padding: 16px 0; border-bottom: 0.5px solid rgba(255,255,255,0.1); }

  /* 6. French jewelry section */
  .french-diff-layout { grid-template-columns: 1fr; }
  .french-diff-layout .french-diff-inner { text-align: center; margin-bottom: 24px; }
  .french-diff-layout .section-title { text-align: center; }
  .french-diff-img { height: 280px; order: -1; margin-bottom: 32px; }

  /* 7. Hero subtitle mobile */
  .hero-subtitle { font-size: 15px !important; color: #F5F0E8 !important; padding: 0 20px; }

  /* 8. Gift section mobile */
  .gift-grid { display: flex; flex-direction: column; }
  .gift-card { width: 100%; margin-bottom: 20px; }
  .section:has(.gift-grid) { padding-bottom: 60px; }
}
@media (max-width: 480px) {
  nav { padding: 16px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 16px; }
}
