/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --cream:    #fdf8f4;
  --cream2:   #f7f0e8;
  --ivory:    #fffcf8;
  --rose:     #e8c8cb;
  --rose2:    #d4a5aa;
  --roseDark: #b07a80;
  --blush:    #f5e6e8;
  --sage:     #c8d8c0;
  --sage2:    #a8c098;
  --gold:     #c9a96e;
  --gold2:    #dfc08a;
  --ink:      #1a1410;
  --inkMid:   #3d3028;
  --muted:    #7a6a60;
  --border:   rgba(180,140,120,0.15);
  --borderHover: rgba(180,140,120,0.35);

  --serif:  'Fraunces', Georgia, serif;
  --sans:   'Plus Jakarta Sans', system-ui, sans-serif;

  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;

  --shadow-soft: 0 4px 24px rgba(90,50,30,0.07);
  --shadow-md:   0 8px 40px rgba(90,50,30,0.10);
  --shadow-lg:   0 20px 60px rgba(90,50,30,0.14);

  --max: 1160px;
  --pad: clamp(16px, 4vw, 28px);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }


/* Twemoji cross-platform emoji rendering */
img.emoji {
  height: 1em;
  width: 1em;
  margin: 0 .1em 0 .1em;
  vertical-align: -0.15em;
  display: inline-block;
}
.step-emoji img.emoji,
.for-who-emoji img.emoji,
.product-thumb-bg img.emoji,
.badge-emoji img.emoji,
.contact-link-icon img.emoji,
.testi-avatar img.emoji,
.notice-icon img.emoji,
.scratch-icon img.emoji,
.footer-brand img.emoji {
  height: 1.2em;
  width: 1.2em;
}
.product-thumb-bg img.emoji {
  height: 2.5em;
  width: 2.5em;
}
.step-emoji img.emoji { height: 1.8em; width: 1.8em; }
.for-who-emoji img.emoji { height: 1.6em; width: 1.6em; }
.logo-mark img.emoji { height: 1.2em; width: 1.2em; margin: 0; vertical-align: middle; }

/* ── GRAIN OVERLAY ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.wrap { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) 80px; }

/* ── TOPBAR ─────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,248,244,0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 17px; font-weight: 600; letter-spacing: -.2px;
  color: var(--inkMid);
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--rose), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.6);
}
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 8px 12px; border-radius: 999px;
  transition: color .2s, background .2s;
}
nav a:hover { color: var(--ink); background: var(--cream2); }
.btn-etsy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: #fff;
  background-color: #f1641e;
  font-weight: 700; font-size: 13.5px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform .2s, box-shadow .2s;
}
.btn-etsy:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.btn-etsy svg { width: 14px; height: 14px; }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  margin-top: 28px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #f9ede8 0%, #fdf0e4 40%, #eeeaf5 100%);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-lg);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,200,203,.55), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; right: -40px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.25), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: clamp(32px, 5vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
}

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(180,140,120,0.2);
  font-size: 12px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--roseDark);
  backdrop-filter: blur(8px);
  width: fit-content; margin-bottom: 20px;
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--roseDark); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.5px;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--roseDark);
}

.hero-desc {
  font-size: 16px; color: var(--muted);
  max-width: 44ch; line-height: 1.7;
  margin-bottom: 28px;
}
.hero-desc strong { color: var(--inkMid); font-weight: 700; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  background: var(--ink); color: #fff;
  background-color: #f1641e;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.22); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  background: rgba(255,255,255,0.65); color: var(--inkMid);
  border: 1px solid rgba(180,140,120,0.25);
  font-weight: 700; font-size: 14px;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: #fff; border-color: rgba(180,140,120,0.4); }

.trust-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.55); border: 1px solid rgba(180,140,120,0.15);
  font-size: 12px; font-weight: 600; color: var(--muted);
  backdrop-filter: blur(4px);
}
.trust-pill span { font-size: 14px; }

/* Hero visual panel */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 32px 40px 0;
  gap: 16px;
}

/* Floating scratch card mockup */
.scratch-demo {
  position: relative;
  width: 579px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.scratch-card-mock {
  background-image: url("img/tickets-astro.png");
  padding: 28px 24px;
  text-align: center;
  height: 450px;
}
.mock-logo {
  font-family: var(--serif); font-size: 13px; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
  font-weight: 400; font-style: italic;
}
.mock-title {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--ink); line-height: 1.2; margin-bottom: 20px;
}
.mock-scratch-zone {
  background: linear-gradient(135deg, #c0b8b0, #a8a098);
  border-radius: 12px; padding: 20px 16px;
  margin-bottom: 16px; position: relative; overflow: hidden;
  cursor: pointer;
}
.mock-scratch-zone::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 4px,
    rgba(255,255,255,.06) 4px, rgba(255,255,255,.06) 8px
  );
}
.mock-scratch-text {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
  position: relative; z-index: 1;
}
.scratch-icon { font-size: 28px; margin-bottom: 6px; display: block; }
.mock-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; }
.mock-sub { font-size: 11px; color: var(--muted); margin-top: 8px; font-style: italic; }

/* Floating badge */
.float-badge {
  position: absolute; top: -33px; right: 335px;
  background: #fff; border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  animation: float2 4s ease-in-out infinite;
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-6px) translateX(2px); }
}
.badge-emoji { font-size: 18px; }

.float-badge2 {
  position: absolute; bottom: -7px; right: 129px;
  background: linear-gradient(135deg, var(--rose), var(--rose2));
  border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 800; color: #fff;
  animation: float3 6s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(8px) rotate(-1deg); }
}

/* ── SECTION COMMONS ────────────────────────────────── */
.section { margin-top: 60px; }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 28px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 36px);
  font-weight: 500; letter-spacing: -.3px; color: var(--ink);
  line-height: 120%;
}
.section-title em { font-style: italic; color: var(--roseDark); }
.section-sub { color: var(--muted); font-size: 14px; font-weight: 600; }
.section-link {
  font-size: 13.5px; font-weight: 700; color: var(--roseDark);
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(176,122,128,0.3);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.section-link:hover { background: var(--blush); }

/* ── HOW IT WORKS ────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold2));
  border-radius: 99px;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--blush));
  border: 1px solid rgba(232,200,203,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--roseDark);
  margin-bottom: 16px;
}
.step-emoji { font-size: 28px; margin-bottom: 12px; display: block; }
.step-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── FOR WHO ──────────────────────────────────────────── */
.for-who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.for-who-item {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: border-color .2s, transform .2s;
}
.for-who-item:hover { border-color: var(--borderHover); transform: translateX(3px); }
.for-who-emoji {
  font-size: 28px; flex-shrink: 0;
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--blush); display: flex; align-items: center; justify-content: center;
}
.for-who-body h4 { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.for-who-body p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── PRODUCTS ─────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.product-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.product-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-md); }

.product-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-thumb-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  transition: transform .4s ease;
}
.product-card:hover .product-thumb-bg { transform: scale(1.08); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 5px 12px;
  font-size: 11px; font-weight: 800; letter-spacing: .4px;
  color: var(--roseDark); text-transform: uppercase;
  border: 1px solid rgba(232,200,203,.35);
}

.product-body {
  padding: 20px 20px 22px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.product-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.product-name { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.product-price {
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  color: var(--roseDark); white-space: nowrap; flex-shrink: 0;
}
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.product-features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.feature-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--cream2); border: 1px solid var(--border);
  font-size: 11.5px; font-weight: 600; color: var(--muted);
}
.product-actions { display: flex; gap: 8px; margin-top: auto; }
.btn-see {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 14px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-weight: 800; font-size: 13px;
  transition: background .2s, transform .15s;
}
.btn-see:hover {
  background: var(--inkMid); transform: scale(1.02);
  background-color: #f1641e;}
.btn-see svg { width: 12px; height: 12px; }
.btn-wish {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream2); border: 1px solid var(--border);
  font-size: 16px; transition: background .2s, transform .15s;
  cursor: pointer;
}
.btn-wish:hover { background: var(--blush); transform: scale(1.1); }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform .25s;
}
.testi-card:hover { transform: translateY(-3px); }
.testi-quote-icon {
  position: absolute; top: 20px; right: 20px;
  font-size: 40px; font-family: var(--serif);
  color: var(--rose); line-height: 1; opacity: .5;
}
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { font-size: 14.5px; color: var(--inkMid); line-height: 1.65; margin-bottom: 16px; font-weight: 500; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: 2px solid var(--border);
  flex-shrink: 0;
  background: #f1641e;
    color: #fff;
    font-weight: bold;
}
.testi-name { font-size: 13px; font-weight: 800; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── STATS BAND ───────────────────────────────────────── */
.stats-band {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--inkMid) 100%);
  border-radius: var(--r-xl);
  padding: 48px var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,200,203,0.12), transparent 70%);
  pointer-events: none;
}
.stat-num {
  font-family: var(--serif); font-size: 42px; font-weight: 600;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-num span { color: var(--gold2); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: .3px; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-item details { height: 100%; }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 22px;
  font-weight: 800; font-size: 14.5px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream2); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; transition: transform .2s, background .2s;
}
details[open] .faq-icon { transform: rotate(45deg); background: var(--blush); }
.faq-answer {
  padding: 0 22px 20px;
  font-size: 13.5px; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── SEO CONTENT PANEL ────────────────────────────────── */
.content-panel {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-soft);
}
.content-panel h2 {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: var(--ink); margin-bottom: 16px; letter-spacing: -.2px;
}
.content-panel h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--ink); margin: 28px 0 10px;
}
.content-panel p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.content-panel ul {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 16px;
}
.content-panel li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--muted);
}
.content-panel li::before {
  content: '✦';
  color: var(--roseDark); font-size: 11px; flex-shrink: 0; margin-top: 5px;
}
.content-panel strong { color: var(--inkMid); font-weight: 700; }

/* ── NOTICE BAND ──────────────────────────────────────── */
.notice-band {
  background: linear-gradient(135deg, var(--blush), rgba(241,231,217,0.6));
  border: 1px solid rgba(232,200,203,.35);
  border-radius: var(--r-md);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
  margin-top: 14px;
  font-size: 14px; color: var(--inkMid);
}
.notice-icon { font-size: 22px; flex-shrink: 0; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.contact-left h2 {
  font-family: var(--serif); font-size: 30px; font-weight: 500;
  color: var(--ink); margin-bottom: 12px;
}
.contact-left p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.contact-link-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: var(--r-md);
  background: var(--ivory); border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-weight: 700; font-size: 14px; color: var(--ink);
  transition: border-color .2s, transform .2s;
}
.contact-link-item:hover { border-color: var(--borderHover); transform: translateX(4px); }
.contact-link-icon { font-size: 22px; width: 40px; text-align: center; flex-shrink: 0; }
.contact-link-info { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--serif); font-size: 17px; color: var(--inkMid);
  display: flex; align-items: center; gap: 10px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; font-weight: 600; color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--ink); }
.footer-legal { font-size: 12px; color: var(--muted); width: 100%; margin-top: -4px; }

/* ── UTILITIES ────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .for-who-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav a { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero { border-radius: var(--r-lg); }
  .topbar-inner { padding: 12px 16px; }
}
/* ══════════════════════════════════════════
   GALERIE
══════════════════════════════════════════ */

.gallery-section { margin-top: 60px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

/* Layout mosaïque asymétrique */
.gallery-item { border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 4; }
.gallery-item:nth-child(8) { grid-column: span 4; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Placeholder */
.gallery-placeholder {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #fdf4f0, #f5eae8);
  border-radius: 20px;
  color: #b07a80; font-size: 13px; font-weight: 700;
}
.gallery-placeholder-icon { font-size: 28px; opacity: .5; }
.gallery-placeholder-num {
  font-size: 11px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; opacity: .5;
}

/* Hover overlay */
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,.55) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: #fff; font-size: 13px; font-weight: 700; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(26,20,16,.92); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 88vh;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  color: #fff; font-size: 28px; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }


/* ══════════════════════════════════════════
   SECTION SEO
══════════════════════════════════════════ */

.seo-section { margin-top: 60px; }

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Grande carte sombre (pleine largeur) */
.seo-hero-card {
  background: linear-gradient(135deg, #1a1410 0%, #3d3028 100%);
  border-radius: 40px;
  padding: 40px 36px;
  color: #fff;
  position: relative; overflow: hidden;
  grid-column: span 2;
}
.seo-hero-card::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,200,203,.12), transparent 70%);
}
.seo-hero-card::after {
  content: '';
  position: absolute; bottom: -60px; left: 30%;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.1), transparent 70%);
}
.seo-hero-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: #dfc08a;
  margin-bottom: 14px; display: block;
}
.seo-hero-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px); font-weight: 500;
  line-height: 1.15; letter-spacing: -.3px;
  color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
}
.seo-hero-card h2 em { font-style: italic; color: #dfc08a; }
.seo-hero-card p {
  font-size: 15px; color: rgba(255,255,255,.7);
  line-height: 1.75; max-width: 60ch; position: relative; z-index: 1;
}
.seo-hero-card p strong { color: rgba(255,255,255,.95); }

/* Cartes claires */
.seo-card {
  background: #fffcf8;
  border: 1px solid rgba(180,140,120,0.15);
  border-radius: 28px;
  padding: 28px 26px;
  box-shadow: 0 4px 24px rgba(90,50,30,0.07);
  position: relative; overflow: hidden;
}
.seo-card-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8c8cb, #dfc08a);
}
.seo-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px; font-weight: 500; line-height: 120%;
  color: #1a1410; margin-bottom: 14px;
}
.seo-card p { font-size: 14px; color: #7a6a60; line-height: 1.72; margin-bottom: 12px; }
.seo-card strong { color: #3d3028; font-weight: 700; }

/* Tags */
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.seo-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px;
  background: #f7f0e8; border: 1px solid rgba(180,140,120,0.15);
  font-size: 12.5px; font-weight: 700; color: #3d3028;
}
.seo-tag-check { color: #a8c098; font-size: 13px; }

/* Liste à points */
.seo-list {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
}
.seo-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #7a6a60; line-height: 1.55;
}
.seo-list-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #b07a80; flex-shrink: 0; margin-top: 6px;
}
.seo-list li strong { color: #3d3028; }

/* Citation finale (pleine largeur) */
.seo-quote {
  background: linear-gradient(135deg, rgba(232,200,203,.2), rgba(241,231,217,.35));
  border: 1px solid rgba(232,200,203,.35);
  border-radius: 28px;
  padding: 28px 26px;
  display: flex; align-items: center; gap: 20px;
  grid-column: span 2;
}
.seo-quote-mark {
  font-family: 'Fraunces', Georgia, serif; font-size: 72px; line-height: .8;
  color: #e8c8cb; opacity: .5; flex-shrink: 0; user-select: none;
}
.seo-quote-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(16px, 2vw, 20px); font-style: italic;
  color: #3d3028; line-height: 1.5;
}
.seo-quote-author {
  font-size: 13px; font-weight: 700; color: #7a6a60;
  margin-top: 10px; font-style: normal;
}

.seo-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 20px; position: relative; z-index: 1;
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 900px) {
  .seo-grid { grid-template-columns: 1fr; }
  .seo-hero-card, .seo-quote { grid-column: span 1; }
  .seo-quote { flex-direction: column; gap: 8px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}