/* ============================================================
   The Royal Invite — storefront styles (dark luxury)
   ============================================================ */
:root {
  --bg: #100d08;
  --bg-soft: #161209;
  --card: #1d1810;
  --card-edge: rgba(212, 184, 120, 0.16);
  --cream: #f0e7d2;
  --cream-soft: rgba(240, 231, 210, 0.66);
  --gold: #c9a45c;
  --gold-light: #e2c98e;
  --gold-dim: rgba(201, 164, 92, 0.35);
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --sans: "Jost", "Segoe UI", sans-serif;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.45);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--cream);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: min(1140px, 92%); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 0.8rem; }
.section-sub { color: var(--cream-soft); max-width: 560px; font-size: 1.05rem; }

section { padding: 6.5rem 0; }

.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 999px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-solid { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1a1408; border-color: transparent; }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(201, 164, 92, 0.30); }
.btn-ghost { background: transparent; color: var(--gold-light); }
.btn-ghost:hover { background: rgba(201, 164, 92, 0.12); }
.btn-light { border-color: var(--gold-dim); color: var(--cream); }
.btn-light:hover { background: var(--gold); color: #1a1408; border-color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  background: rgba(16, 13, 8, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201, 164, 92, 0.22);
  padding: 0.7rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { font-family: var(--serif); font-size: 1.45rem; letter-spacing: 0.06em; color: var(--cream); }
.logo .amp { font-family: var(--script); color: var(--gold-light); font-size: 1.6rem; }

.nav { display: flex; gap: 2.2rem; align-items: center; }
.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-soft);
  transition: color 0.25s;
}
.nav a:hover { color: var(--gold-light); }
.nav .btn { padding: 0.6rem 1.6rem; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--cream); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero-film {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(16, 13, 8, 0.92) 22%, rgba(16, 13, 8, 0.45) 58%, rgba(16, 13, 8, 0.65)),
    linear-gradient(180deg, rgba(16, 13, 8, 0.45), transparent 30%, rgba(16, 13, 8, 0.98) 96%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }

.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.3rem); margin-bottom: 1.4rem; }
.hero h1 .script-line { display: block; font-family: var(--script); font-weight: 400; color: var(--gold-light); font-size: 0.62em; margin-bottom: 0.25em; }
.hero p { font-size: 1.12rem; color: var(--cream-soft); max-width: 520px; margin-bottom: 2.4rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-note { margin-top: 1.6rem; font-size: 0.85rem; color: var(--cream-soft); letter-spacing: 0.04em; }
.hero-note strong { color: var(--gold-light); font-weight: 500; }

/* ---------- hero phone trio ---------- */
.trio-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 560px;
  perspective: 1400px;
}
.trio-phone {
  position: absolute;
  width: min(236px, 56vw);
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  background: linear-gradient(160deg, #262626, #101011);
  padding: 8px;
  border: 1px solid rgba(201, 164, 92, 0.30);
  box-shadow: var(--shadow-soft), 0 0 70px rgba(201, 164, 92, 0.10);
  display: block;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.trio-phone .trio-screen {
  width: 100%; height: 100%;
  border-radius: 29px;
  overflow: hidden;
  position: relative;
  background: #000;
}
.trio-phone iframe {
  width: 143%; height: 143%;
  transform: scale(0.7);
  transform-origin: top left;
  border: 0; display: block;
  background: #000;
  pointer-events: none;
}
.trio-phone .trio-tap {
  position: absolute; inset: 0; z-index: 5;
}
.trio-phone .trio-label {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  z-index: 6;
  background: rgba(12, 10, 7, 0.72);
  border: 1px solid rgba(201, 164, 92, 0.4);
  color: var(--gold-light);
  font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.trio-left {
  transform: translateX(-62%) rotate(-9deg) scale(0.82);
  z-index: 1;
  animation: floatA 8s ease-in-out infinite;
}
.trio-center {
  z-index: 3;
  animation: floatB 7s ease-in-out infinite;
}
.trio-right {
  transform: translateX(62%) rotate(9deg) scale(0.82);
  z-index: 2;
  animation: floatC 9s ease-in-out infinite;
}
.trio-left:hover, .trio-right:hover { z-index: 4; }
.trio-left:hover { transform: translateX(-62%) rotate(-6deg) scale(0.88); }
.trio-center:hover { transform: scale(1.04); box-shadow: var(--shadow-soft), 0 0 110px rgba(201, 164, 92, 0.28); }
.trio-right:hover { transform: translateX(62%) rotate(6deg) scale(0.88); }
@keyframes floatA {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -16px; }
}
@keyframes floatB {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -22px; }
}
@keyframes floatC {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}

/* mini mock screens (side phones) */
.pscreen {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.4rem 1rem;
  position: relative;
}
.pscreen::before {
  content: "";
  position: absolute; inset: 11px;
  border: 1px solid currentColor; opacity: 0.4;
  border-radius: 20px;
  pointer-events: none;
}
.pscreen .ps-mono {
  width: 52px; height: 52px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.05rem;
  margin-bottom: 1rem;
}
.pscreen .ps-names { font-family: var(--script); font-size: 1.7rem; line-height: 1.25; }
.pscreen .ps-rule { width: 38px; height: 1px; background: currentColor; opacity: 0.6; margin: 0.9rem auto; }
.pscreen .ps-date { font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; }
.pscreen-royal {
  background:
    radial-gradient(300px 220px at 50% 0%, rgba(201, 164, 92, 0.20), transparent 70%),
    linear-gradient(170deg, #171209, #2c2110);
  color: #e2c98e;
}
.pscreen-eternel {
  background: linear-gradient(175deg, #f7f4ee, #ece7db);
  color: #4c463c;
}
.pscreen-eternel .ps-names { font-family: var(--serif); font-size: 1.45rem; letter-spacing: 0.04em; }
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(400px 300px at 50% 0%, rgba(201, 164, 92, 0.18), transparent 70%),
    linear-gradient(170deg, #171209 0%, #221a0e 55%, #2c2110 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--cream); padding: 1.6rem 1.2rem;
  position: relative;
}
.phone-screen::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(212, 184, 120, 0.45);
  border-radius: 22px;
  pointer-events: none;
}
.phone-monogram {
  width: 64px; height: 64px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.phone-names { font-family: var(--script); font-size: 2rem; color: var(--gold-light); line-height: 1.25; }
.phone-date { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.34em; text-transform: uppercase; margin-top: 0.9rem; color: var(--cream); }
.phone-rule { width: 46px; height: 1px; background: var(--gold); margin: 1.1rem auto; }
.phone-rsvp {
  margin-top: 1.2rem;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  border: 1px solid var(--gold-light); color: var(--gold-light);
  padding: 0.55rem 1.4rem; border-radius: 999px;
}

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; margin-top: 3.5rem; }
.step {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 2.6rem 2.1rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid rgba(201, 164, 92, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.step:hover { transform: translateY(-6px); border-top-color: var(--gold); }
.step-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.step p { color: var(--cream-soft); font-size: 0.97rem; }

/* ---------- Features ---------- */
.features-section {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(201, 164, 92, 0.07), transparent 60%),
    var(--bg-soft);
  border-top: 1px solid var(--card-edge);
  border-bottom: 1px solid var(--card-edge);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1.6rem;
  margin-top: 3.5rem;
}
.feature {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-card);
}
.feature-icon { font-size: 1.6rem; margin-bottom: 0.9rem; }
.feature h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.92rem; color: var(--cream-soft); }

/* ---------- iPhone live demo ---------- */
.demo-section {
  position: relative;
  overflow: hidden;
}
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 1rem; }
.demo-copy { text-align: left; }
.demo-copy .section-sub { margin-bottom: 2rem; }
.demo-switch { display: flex; flex-direction: column; gap: 0.9rem; }
.demo-tab {
  text-align: left;
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--sans); font-weight: 300;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.demo-tab .dt-name { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-light); display: block; }
.demo-tab .dt-desc { font-size: 0.85rem; color: var(--cream-soft); }
.demo-tab.active { border-color: var(--gold); background: rgba(201, 164, 92, 0.10); }
.demo-tab:hover { border-color: var(--gold-dim); }
.demo-open-link {
  display: inline-block; margin-top: 1.6rem;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-dim); padding-bottom: 3px;
}

.iphone-wrap { display: flex; justify-content: center; }
.iphone {
  position: relative;
  width: min(330px, 78vw);
  aspect-ratio: 9 / 19.2;
  border-radius: 52px;
  background: linear-gradient(160deg, #2a2a2c, #131314);
  padding: 11px;
  box-shadow:
    var(--shadow-soft),
    inset 0 0 0 2px #3c3c3f,
    0 0 90px rgba(201, 164, 92, 0.10);
}
.iphone::before { /* dynamic island */
  content: "";
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 26px;
  background: #060606;
  border-radius: 999px;
  z-index: 10;
}
.iphone::after { /* side button */
  content: "";
  position: absolute; right: -2.5px; top: 26%;
  width: 3px; height: 70px;
  background: #3c3c3f;
  border-radius: 2px;
}
.iphone-screen {
  width: 100%; height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: #000;
}
.iphone-screen iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  background: #000;
}

/* ---------- Templates gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3.5rem; }
.tcard {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-edge);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: var(--gold-dim); }
.tcard-art {
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  text-align: center; position: relative; padding: 1.5rem;
  background-size: cover; background-position: center;
}
.tcard-art::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid currentColor; opacity: 0.4; pointer-events: none;
}
.tcard-art .t-names { font-family: var(--script); font-size: 2.1rem; line-height: 1.2; position: relative; }
.tcard-art .t-style { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; margin-top: 0.8rem; opacity: 0.85; position: relative; }
.art-royal {
  background-image:
    linear-gradient(rgba(25, 10, 29, 0.30), rgba(25, 10, 29, 0.55)),
    url("../media/royal-card.jpg");
  background-size: cover; background-position: center;
  color: #ecd49a;
}
.art-eternel {
  background-image:
    linear-gradient(rgba(20, 32, 38, 0.22), rgba(20, 32, 38, 0.45)),
    url("../media/eternel-card.jpg");
  background-size: cover; background-position: center;
  color: #ffffff;
}
.art-celeste {
  background-image:
    linear-gradient(rgba(58, 67, 80, 0.18), rgba(58, 67, 80, 0.38)),
    url("../media/celeste-card.jpg");
  background-size: cover; background-position: center 35%;
  color: #fdf9ef;
}
.art-jardin {
  background-image:
    linear-gradient(rgba(10, 16, 12, 0.30), rgba(10, 16, 12, 0.55)),
    url("../media/jardin-card.jpg");
  background-size: cover; background-position: center;
  color: #e8e2c8;
}
.art-noor {
  background-image:
    linear-gradient(rgba(16, 10, 6, 0.35), rgba(16, 10, 6, 0.55)),
    url("../media/noor-card.jpg");
  background-size: cover; background-position: center;
  color: #f3dcb8;
}
.tcard-badge {
  position: absolute; top: 22px; right: 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1408;
  font-family: var(--sans);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  padding: 0.35rem 0.9rem; border-radius: 999px;
}
.tcard-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.tcard-body h3 { font-size: 1.4rem; }
.tcard-body p { font-size: 0.92rem; color: var(--cream-soft); flex: 1; }
.tcard-links { display: flex; gap: 1.4rem; margin-top: 0.9rem; align-items: center; }
.tcard-links a {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); border-bottom: 1px solid transparent; transition: border-color 0.25s;
}
.tcard-links a:hover { border-color: var(--gold); }
.tcard .soon {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-soft); opacity: 0.8;
}

/* ---------- Pricing ---------- */
.pricing-section {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(201, 164, 92, 0.10), transparent 60%),
    var(--bg-soft);
  border-top: 1px solid var(--card-edge);
  border-bottom: 1px solid var(--card-edge);
}
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; align-items: stretch; }
.plan {
  background: rgba(240, 231, 210, 0.03);
  border: 1px solid rgba(212, 184, 120, 0.22);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.plan:hover { transform: translateY(-6px); border-color: var(--gold-light); background: rgba(240, 231, 210, 0.06); }
.plan.featured { border-color: var(--gold); background: rgba(201, 164, 92, 0.10); position: relative; }
.plan.featured::before {
  content: "Most loved";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1408;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  padding: 0.35rem 1.1rem; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 1.5rem; color: var(--gold-light); }
.plan .price { font-family: var(--serif); font-size: 3rem; margin: 0.8rem 0 0.2rem; }
.plan .tagline { font-size: 0.9rem; color: var(--cream-soft); margin-bottom: 1.6rem; }
.plan ul { list-style: none; margin-bottom: 2.2rem; flex: 1; }
.plan li { padding: 0.45rem 0 0.45rem 1.7rem; position: relative; font-size: 0.93rem; color: rgba(240, 231, 210, 0.88); }
.plan li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-light); font-size: 0.7rem; top: 0.62rem; }
.plan .btn { text-align: center; }
.pricing-footnote { text-align: center; margin-top: 2.6rem; font-size: 0.88rem; color: var(--cream-soft); }
.pricing-footnote a { color: var(--gold-light); border-bottom: 1px solid rgba(212, 184, 120, 0.4); }
.pricing-footnote strong { color: var(--gold-light); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--card-edge); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 0.2rem;
  font-family: var(--serif); font-size: 1.22rem; color: var(--cream); text-align: left;
}
.faq-q .chev { color: var(--gold); transition: transform 0.3s ease; font-size: 0.9rem; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 0.2rem 1.5rem; color: var(--cream-soft); font-size: 0.97rem; max-width: 660px; }
.faq-a em { color: var(--gold-light); font-style: normal; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 400px at 50% 120%, rgba(201, 164, 92, 0.22), transparent 70%),
    linear-gradient(140deg, #1d1509, #322411 70%, #443114);
  color: var(--cream);
  text-align: center;
  border-radius: var(--radius);
  padding: 4.5rem 2rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-edge);
}
.cta-band::before {
  content: ""; position: absolute; inset: 16px;
  border: 1px solid rgba(212, 184, 120, 0.35);
  border-radius: 8px; pointer-events: none;
}
.cta-band h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 0.7rem; }
.cta-band .script { font-family: var(--script); color: var(--gold-light); font-size: 1.5em; }
.cta-band p { color: var(--cream-soft); margin-bottom: 2.2rem; }

/* ---------- Footer ---------- */
.site-footer { padding: 3.5rem 0 2.5rem; border-top: 1px solid var(--card-edge); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-inner .logo { font-size: 1.2rem; }
.footer-links { display: flex; gap: 1.8rem; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-soft); }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.8rem; color: var(--cream-soft); }

/* ---------- Order page ---------- */
.order-page { padding: 9rem 0 6rem; }
.order-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }
.order-aside { position: sticky; top: 7rem; }
.order-aside h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.order-aside p { color: var(--cream-soft); margin-bottom: 1.5rem; }
.order-aside ul { list-style: none; }
.order-aside li { padding: 0.4rem 0 0.4rem 1.7rem; position: relative; font-size: 0.95rem; color: var(--cream-soft); }
.order-aside li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 0.6rem; }

.order-form {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.8rem 2.6rem;
}
.form-section-title {
  font-family: var(--serif); font-size: 1.35rem;
  margin: 2.2rem 0 1.1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-edge);
}
.form-section-title:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(212, 184, 120, 0.25);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(16, 13, 8, 0.6);
  transition: border-color 0.25s;
  color-scheme: dark;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field ::placeholder { color: rgba(240, 231, 210, 0.35); }
.form-submit { margin-top: 2rem; width: 100%; }
.form-note { font-size: 0.82rem; color: var(--cream-soft); margin-top: 1rem; text-align: center; }
.form-status { margin-top: 1.2rem; text-align: center; font-size: 0.95rem; display: none; }
.form-status.ok { display: block; color: #b8d8a8; }
.form-status.err { display: block; color: #e0a3a3; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 4.5rem 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .order-grid { grid-template-columns: 1fr; }
  .order-aside { position: static; }
  .demo-grid { grid-template-columns: 1fr; gap: 3rem; }
  .demo-copy { text-align: center; }
  .demo-copy .section-sub { margin-inline: auto; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 80vw);
    background: var(--bg-soft);
    border-left: 1px solid var(--card-edge);
    flex-direction: column; justify-content: center;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav-toggle { display: block; position: relative; z-index: 110; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .trio-wrap { min-height: 460px; }
  .trio-phone { width: min(200px, 52vw); }
  .trio-left { transform: translateX(-55%) rotate(-9deg) scale(0.74); }
  .trio-right { transform: translateX(55%) rotate(9deg) scale(0.74); }
  .trio-left:hover { transform: translateX(-55%) rotate(-9deg) scale(0.74); }
  .trio-right:hover { transform: translateX(55%) rotate(9deg) scale(0.74); }
}
@media (max-width: 420px) {
  .trio-wrap { min-height: 400px; }
  .trio-phone { width: 168px; }
  .trio-left, .trio-left:hover { transform: translateX(-48%) rotate(-9deg) scale(0.72); }
  .trio-right, .trio-right:hover { transform: translateX(48%) rotate(9deg) scale(0.72); }
  .trio-label { font-size: 0.5rem; padding: 0.32rem 0.7rem; }
}

/* ============================================================
   CONVERSION UPGRADES (launch bar, trust, testimonials,
   guarantee, video gallery, launch pricing)
   ============================================================ */

/* announcement / launch-offer bar */
.announce {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  background: linear-gradient(90deg, #1d1509, #3a2b12 60%, #1d1509);
  color: var(--gold-light);
  text-align: center;
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.1em;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(201, 164, 90, 0.25);
}
.announce strong { color: #fff; font-weight: 500; }
.announce .code { color: #fff; border: 1px dashed rgba(226, 201, 142, 0.6); padding: 0.05rem 0.5rem; border-radius: 4px; letter-spacing: 0.18em; }
.site-header { top: 39px; }

/* hero rating line */
.hero-rating { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.4rem; font-family: var(--sans); font-size: 0.86rem; color: var(--cream-soft); flex-wrap: wrap; }
.hero-rating .stars { color: var(--gold-light); letter-spacing: 2px; font-size: 0.95rem; }
.hero-rating strong { color: var(--cream); font-weight: 500; }

/* trust stats bar */
.trust-bar { background: var(--bg-soft); border-top: 1px solid var(--card-edge); border-bottom: 1px solid var(--card-edge); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.6rem, 6vw, 4.5rem); padding: 1.8rem 1rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; }
.trust-num { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-light); line-height: 1; }
.trust-lab { font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-soft); margin-top: 0.45rem; }

/* gallery autoplaying video previews */
.tcard-art { position: relative; }
.tcard-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.tcard-vidveil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,13,8,0.20), rgba(16,13,8,0.30) 45%, rgba(16,13,8,0.66)); }
.tcard-art .t-names, .tcard-art .t-style, .tcard-art .tcard-badge { position: relative; z-index: 2; }
.tcard-art .play-chip {
  position: absolute; z-index: 2; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); background: rgba(16,13,8,0.55); border: 1px solid var(--gold-dim);
  padding: 0.35rem 0.85rem; border-radius: 999px; backdrop-filter: blur(6px);
  opacity: 0.9;
}

/* testimonials */
.tst-section { background: var(--bg-soft); border-top: 1px solid var(--card-edge); border-bottom: 1px solid var(--card-edge); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3.4rem; }
.tst { background: var(--card); border: 1px solid var(--card-edge); border-radius: var(--radius); padding: 2.2rem 1.9rem; text-align: left; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.tst-stars { color: var(--gold-light); letter-spacing: 2px; margin-bottom: 0.9rem; }
.tst-quote { font-family: var(--serif); font-size: 1.14rem; font-style: italic; color: var(--cream); line-height: 1.6; flex: 1; }
.tst-who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; }
.tst-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1a1408; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.05rem; flex-shrink: 0; }
.tst-name { font-family: var(--sans); font-size: 0.84rem; letter-spacing: 0.03em; color: var(--cream); }
.tst-loc { font-family: var(--sans); font-size: 0.72rem; color: var(--cream-soft); }

/* guarantee row */
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3.2rem; }
.guar { text-align: center; padding: 1.6rem 1.2rem; border: 1px solid var(--card-edge); border-radius: var(--radius); background: var(--card); }
.guar-icon { font-size: 1.7rem; margin-bottom: 0.7rem; }
.guar h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.guar p { font-size: 0.86rem; color: var(--cream-soft); }

/* launch pricing */
.price-was { font-family: var(--serif); font-size: 1.5rem; color: rgba(243, 233, 214, 0.45); text-decoration: line-through; margin-right: 0.5rem; }
.save-badge { display: inline-block; margin-top: 0.6rem; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: #1a1408; background: var(--gold-light); padding: 0.28rem 0.75rem; border-radius: 999px; }
.pricing-guarantee { text-align: center; margin-top: 2.2rem; font-family: var(--sans); font-size: 0.9rem; color: var(--cream-soft); }
.pricing-guarantee strong { color: var(--gold-light); font-weight: 500; }

@media (max-width: 900px) {
  .tst-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .announce { font-size: 0.68rem; letter-spacing: 0.04em; }
  .guarantee-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}

/* ============================================================
   HERO v2 — full-bleed rotating film, centered content
   ============================================================ */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #0b0906; }
.hero-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.6s ease; }
.hero-vid.active { opacity: 1; }
.hero-veil {
  z-index: 1;
  background:
    radial-gradient(120% 95% at 50% 28%, transparent 26%, rgba(11,9,6,0.62) 100%),
    linear-gradient(180deg, rgba(11,9,6,0.58), rgba(11,9,6,0.28) 40%, rgba(11,9,6,0.85));
}
.hero-inner.hero-center { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 880px; margin: 0 auto; }
.hero-center h1 { margin-bottom: 1.3rem; }
.hero-center p.hero-sub { font-size: 1.12rem; color: var(--cream-soft); max-width: 600px; margin: 0 auto 2.3rem; }
.hero-center .hero-ctas { justify-content: center; }
.hero-center .hero-rating { justify-content: center; }
.hero-showcase { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hs-label { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-soft); }
.hs-label strong { color: var(--gold-light); font-weight: 500; }
.hs-dots { display: flex; gap: 0.5rem; }
.hs-dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold-dim); background: transparent; cursor: pointer; padding: 0; transition: all 0.3s ease; }
.hs-dot:hover { border-color: var(--gold-light); }
.hs-dot.on { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

/* gallery badge pinned to top-center of the template card */
.tcard-art .tcard-badge {
  position: absolute; top: 16px; left: 50%; right: auto;
  transform: translateX(-50%); z-index: 3; white-space: nowrap;
}

/* Éternel hero slide is a still image with a slow Ken Burns drift */
.hero-vid.hero-still { transform: scale(1.06); }
.hero-vid.hero-still.active { animation: heroKen 14s ease-in-out infinite alternate; }
@keyframes heroKen { from { transform: scale(1.06); } to { transform: scale(1.16) translateY(-2%); } }

/* Lumière gallery card poster fallback */
.art-lumiere {
  background-image: linear-gradient(rgba(46,35,27,0.18), rgba(46,35,27,0.40)), url("../media/lumiere-card.jpg");
  background-size: cover; background-position: center;
  color: #f7ead2;
}
