/* ============================================================
   FitWed — editorial luxury design system
   Playfair Display (display) + Mulish (body/UI)
   Wine + champagne + gold. Shared by landing + legal pages.
   ============================================================ */

:root {
  /* brand */
  --wine:        #5E2230;
  --wine-deep:   #3D1620;
  --wine-700:    #7A3446;
  --rose:        #B05C6E;   /* in-app accent, matches the pill UI */
  --champagne:   #E8D5C4;
  --champagne-2: #F3E8DD;
  --gold:        #B4894E;   /* AA-safe on light */
  --gold-soft:   #D4AF7A;
  /* neutrals */
  --ink:    #2A1F1C;
  --ink-2:  #4A3B36;
  --muted:  #6B5A55;
  --paper:  #FFFDFB;
  --cream:  #FBF6F0;
  --line:   #EADFD6;
  --white:  #ffffff;
  /* fx */
  --shadow-sm: 0 1px 2px rgba(61,22,32,.05), 0 4px 12px rgba(61,22,32,.05);
  --shadow-md: 0 4px 10px rgba(61,22,32,.06), 0 20px 40px -12px rgba(61,22,32,.16);
  --shadow-lg: 0 8px 20px rgba(61,22,32,.08), 0 40px 70px -20px rgba(61,22,32,.28);
  --radius:  16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --measure: 62ch;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.serif { font-family: "Playfair Display", Georgia, "Times New Roman", serif; }

/* containers */
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
header .wrap, footer .wrap { max-width: 1160px; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,251,.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
header.scrolled { border-bottom-color: var(--line); background: rgba(255,253,251,.92); }
header .wrap { display: flex; align-items: center; gap: 16px; padding-top: 16px; padding-bottom: 16px; }
.brand {
  font-family: "Playfair Display", serif;
  font-size: 23px; font-weight: 700; letter-spacing: -.01em;
  color: var(--wine); text-decoration: none; margin-right: auto;
}
.brand span { color: var(--gold); }

nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a {
  color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500;
  position: relative; padding: 2px 0;
}
nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
nav a:hover { color: var(--wine); }
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }

.langs { display: flex; gap: 4px; padding: 3px; background: var(--champagne-2); border-radius: 999px; }
.langs button {
  background: transparent; color: var(--ink-2);
  border: 0; border-radius: 999px; padding: 5px 12px;
  font-size: 12.5px; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.langs button[aria-pressed="true"] { background: var(--white); color: var(--wine); box-shadow: var(--shadow-sm); }

.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: inherit; font-size: 15.5px; font-weight: 600;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: linear-gradient(165deg, var(--wine-700), var(--wine) 55%, var(--wine-deep));
  color: #fff; box-shadow: 0 6px 18px -4px rgba(94,34,48,.5);
}
.btn-primary:hover { box-shadow: 0 10px 26px -6px rgba(94,34,48,.6); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }
.btn-ghost { background: var(--white); color: var(--wine); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--wine-deep); transform: translateY(-1px); }
.btn-ghost:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }

.nav-cta.btn { padding: 9px 18px; font-size: 14.5px; }

/* App Store badge */
.appstore {
  display: inline-flex; align-items: center; gap: 11px;
  background: #16110F; color: #fff; text-decoration: none;
  padding: 10px 18px 10px 16px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 8px 22px -8px rgba(0,0,0,.5);
}
.appstore:hover { transform: translateY(-2px); background: #221A17; box-shadow: 0 14px 30px -10px rgba(0,0,0,.55); }
.appstore:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }
.appstore svg { width: 26px; height: 26px; flex: none; }
.appstore .as-txt { display: flex; flex-direction: column; line-height: 1.05; }
.appstore .as-txt small { font-size: 10.5px; letter-spacing: .02em; opacity: .82; font-weight: 500; }
.appstore .as-txt b { font-size: 18px; font-weight: 600; letter-spacing: -.01em; }

/* ---------- generic sections ---------- */
main { display: block; }
.section { padding: 84px 0; }
.section-cream { background: var(--cream); border-block: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--gold); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin: 0 0 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; color: var(--wine-deep); line-height: 1.12; letter-spacing: -.015em; }
h1 { font-size: clamp(38px, 6vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 21px; }
em.script { font-style: italic; color: var(--wine); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 64px 0 78px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(212,175,122,.20), transparent 60%),
    radial-gradient(900px 620px at 8% 6%, rgba(176,92,110,.14), transparent 62%),
    linear-gradient(180deg, #fff, var(--paper));
}
.hero-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.hero h1 { margin: 6px 0 20px; }
.hero .lede { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-2); max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 30px 0 20px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13.5px; color: var(--muted); }
.trust > span { display: inline-flex; align-items: center; gap: 6px; }
.trust svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
  outline: 1px solid var(--line); outline-offset: 6px;
}
.hero-frame img { width: 100%; height: auto; }
.hero-chip {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,253,251,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--wine);
  box-shadow: var(--shadow-md);
}
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(180,137,78,.2); }

/* ---------- before / after ---------- */
.ba-grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .ba-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.ba-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-md);
}
.ba-row { display: grid; grid-template-columns: 84px 1fr; gap: 16px; align-items: center; }
.ba-before { position: relative; }
.ba-before img { border-radius: 12px; aspect-ratio: 3/4; object-fit: cover; box-shadow: var(--shadow-sm); }
.ba-arrow {
  position: absolute; right: -22px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold);
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); z-index: 2;
}
.ba-arrow svg { width: 16px; height: 16px; }
.ba-after img { border-radius: 14px; aspect-ratio: 3/4; object-fit: cover; box-shadow: var(--shadow-sm); }
.ba-label { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-top: 8px; text-align: center; }
.ba-label.after { color: var(--wine); }
.ba-caption { margin-top: 18px; text-align: center; font-size: 15px; color: var(--muted); }
.ba-caption b { color: var(--ink); font-weight: 600; }

/* ---------- steps ---------- */
.steps { display: grid; gap: 20px; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 24px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--champagne); }
.step-num {
  font-family: "Playfair Display", serif; font-size: 15px; font-weight: 700; color: var(--wine);
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--champagne-2); border: 1px solid var(--champagne); margin-bottom: 16px;
}
.step h3 { color: var(--wine-deep); margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- style gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #eee;
  aspect-ratio: 3/4;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px; color: #fff; font-size: 13.5px; font-weight: 600;
  background: linear-gradient(to top, rgba(30,15,20,.72), transparent);
}
.gallery-note { text-align: center; margin-top: 26px; color: var(--muted); font-size: 15px; }

/* ---------- app preview ---------- */
.app-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 860px) { .app-grid { grid-template-columns: 1fr 1fr; } }
.phones { display: flex; justify-content: center; gap: 22px; }
.phone {
  border-radius: 34px; background: #111; padding: 9px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
  width: min(46%, 230px);
}
.phone img { border-radius: 26px; width: 100%; height: auto; }
.phone.lift { transform: translateY(-22px); }
.feat-list { display: grid; gap: 20px; margin-top: 24px; }
.feat { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.feat .ic {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--champagne-2); border: 1px solid var(--champagne); color: var(--wine);
}
.feat .ic svg { width: 21px; height: 21px; }
.feat h3 { font-family: "Mulish", sans-serif; font-size: 16.5px; font-weight: 600; color: var(--ink); letter-spacing: 0; }
.feat p { font-size: 15px; color: var(--muted); margin-top: 2px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; gap: 20px; max-width: 980px; margin: 0 auto; }
@media (min-width: 800px) { .price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.price {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price.featured {
  border-color: var(--wine); box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff, var(--cream));
  position: relative;
}
.price.featured::before {
  content: attr(data-badge); position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(165deg, var(--wine-700), var(--wine-deep)); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-md);
}
.price .pk-name { font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.price .pk-credits { font-family: "Playfair Display", serif; font-size: 40px; font-weight: 600; color: var(--wine-deep); margin: 8px 0 2px; }
.price .pk-credits span { font-size: 16px; font-family: "Mulish", sans-serif; color: var(--muted); font-weight: 500; }
.price .pk-looks { font-size: 15px; color: var(--ink-2); }
.price .pk-price { margin: 20px 0 4px; font-size: 26px; font-weight: 700; color: var(--ink); }
.price .pk-price small { font-size: 14px; font-weight: 500; color: var(--muted); }
.price .pk-per { font-size: 13px; color: var(--muted); }
.price hr { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
.price ul { list-style: none; display: grid; gap: 11px; margin-bottom: 24px; }
.price li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.price li svg { width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }
.price .btn { margin-top: auto; justify-content: center; }
.price-foot { text-align: center; margin-top: 28px; font-size: 13.5px; color: var(--muted); max-width: 560px; margin-inline: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 20px; box-shadow: var(--shadow-sm); transition: border-color .25s var(--ease);
}
.faq details[open] { border-color: var(--champagne); }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 0; font-weight: 600; font-size: 16.5px;
  color: var(--wine-deep); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 20px; height: 20px; color: var(--gold); transition: transform .3s var(--ease); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { padding: 0 0 18px; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  padding: 74px 24px; border-radius: 28px; margin: 0 24px;
  background: linear-gradient(155deg, var(--wine-700), var(--wine) 45%, var(--wine-deep));
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 80% -20%, rgba(212,175,122,.35), transparent 60%),
              radial-gradient(500px 300px at 10% 120%, rgba(176,92,110,.4), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--champagne); max-width: 40ch; margin: 14px auto 26px; font-size: 18px; }
.cta-band .cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: left; z-index: 200; pointer-events: none;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
}

/* ---------- hero float ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-frame { animation: floaty 7s ease-in-out infinite; }
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- stats strip ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 840px; margin: 52px auto 0; padding-top: 34px; border-top: 1px solid var(--line);
  text-align: center;
}
.stats-strip b { display: block; font-family: "Playfair Display", serif; font-size: clamp(28px, 4vw, 36px); font-weight: 600; color: var(--wine-deep); letter-spacing: -.01em; }
.stats-strip b small { font-size: .5em; font-weight: 600; color: var(--gold); margin-left: 1px; }
.stats-strip span { font-size: 13px; color: var(--muted); }
@media (max-width: 520px) { .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; } }

/* ---------- interactive demo ---------- */
.demo-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 860px) { .demo-grid { grid-template-columns: .82fr 1.18fr; gap: 56px; } }
.demo-stage { display: flex; justify-content: center; }
.demo-frame {
  position: relative; width: min(100%, 420px); aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg); overflow: hidden; background: #efe7df;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
  outline: 1px solid var(--line); outline-offset: 6px;
}
.demo-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity .55s var(--ease), transform .8s var(--ease);
}
.demo-img.is-active { opacity: 1; transform: scale(1); }
.demo-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,253,251,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px;
  font-size: 12.5px; font-weight: 600; color: var(--wine); box-shadow: var(--shadow-md);
}
.demo-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: #57a05a; box-shadow: 0 0 0 4px rgba(87,160,90,.2); }
.demo-modes { display: inline-flex; gap: 4px; padding: 4px; background: var(--champagne-2); border-radius: 999px; margin-bottom: 18px; }
.mode {
  background: transparent; color: var(--ink-2); border: 0; border-radius: 999px;
  padding: 9px 20px; font-family: inherit; font-size: 14.5px; font-weight: 600; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.mode:hover { color: var(--wine); }
.mode.is-active { background: var(--wine); color: #fff; box-shadow: var(--shadow-sm); }
.mode:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }

.demo-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 16px; }
.demo-pills[hidden] { display: none; }
.pill {
  background: var(--champagne-2); color: var(--ink-2);
  border: 1px solid transparent; border-radius: 999px; padding: 10px 20px;
  font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease);
}
.pill:hover { border-color: var(--champagne); transform: translateY(-1px); }
.pill:active { transform: translateY(0) scale(.98); }
.pill:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }
.pill.is-active { background: var(--rose); color: #fff; box-shadow: 0 8px 18px -6px rgba(176,92,110,.6); }
.demo-hint { font-size: 14px; color: var(--muted); }

/* ---------- scroll-driven transformation reel ---------- */
.reel-section { position: relative; }
.reel-scroller { height: calc(var(--n, 4) * 78vh); }
.reel-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh; min-height: 560px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(18px, 3.2vh, 36px); padding: 24px; overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% 2%, rgba(212,175,122,.16), transparent 60%),
    radial-gradient(720px 520px at 8% 100%, rgba(176,92,110,.12), transparent 62%),
    var(--paper);
}
.reel-head { text-align: center; max-width: 620px; }
.reel-head .eyebrow { justify-content: center; }
.reel-head h2 { margin-bottom: 8px; }
.reel-sub { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 15px; }
.reel-sub svg { width: 17px; height: 17px; color: var(--gold); animation: reel-bob 1.8s ease-in-out infinite; }
@keyframes reel-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.reel-stage { position: relative; width: min(84vw, 358px); aspect-ratio: 3 / 4; }
.reel-card {
  position: absolute; inset: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
  will-change: transform; backface-visibility: hidden;
}
.reel-card img { width: 100%; height: 100%; object-fit: cover; }
.reel-tag {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,253,251,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px;
  font-size: 12.5px; font-weight: 600; color: var(--muted); box-shadow: var(--shadow-md);
}
.reel-tag.after { color: var(--wine); }
.reel-dots { display: flex; gap: 8px; }
.reel-dots .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background .3s var(--ease), transform .3s var(--ease); }
.reel-dots .dot.is-on { background: var(--gold); transform: scale(1.35); }

/* fallback: no scroll-jacking when reduced motion — show a clean grid */
@media (prefers-reduced-motion: reduce) {
  .reel-scroller { height: auto; }
  .reel-sticky { position: static; height: auto; min-height: 0; padding: 72px 24px; }
  .reel-stage { width: 100%; max-width: 760px; aspect-ratio: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reel-card { position: relative; inset: auto; transform: none !important; aspect-ratio: 3 / 4; }
  .reel-sub svg { animation: none; }
  .reel-dots { display: none; }
}

/* ============================================================
   Legal / support pages (privacy, terms, support) — shared base
   ============================================================ */
.legal { padding: 56px 0 40px; }
.legal h1 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 8px; }
.updated { color: var(--muted); font-size: 15px; margin-bottom: 40px; }
.legal .wrap > p, .legal p { max-width: var(--measure); }
.legal h2 {
  font-size: 22px; letter-spacing: -.01em; margin: 40px 0 12px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.legal section:first-of-type h2, .legal h2:first-of-type { border-top: none; padding-top: 0; }
p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }
a { color: var(--wine); }
a:hover { color: var(--wine-deep); }

.note {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 18px; margin: 28px 0; font-size: 16px; color: var(--ink-2);
}
.contact-box { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin: 28px 0; box-shadow: var(--shadow-sm); }
.contact-box a { font-size: 20px; font-weight: 700; text-decoration: none; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 44px 0 56px; color: var(--muted); font-size: 14px; background: var(--cream); }
footer .wrap { display: flex; justify-content: space-between; gap: 20px 40px; flex-wrap: wrap; align-items: center; }
.foot-brand { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 700; color: var(--wine); }
.foot-brand span { color: var(--gold); }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--wine); }

/* ---------- language switching (unchanged mechanism) ---------- */
[data-lang] { display: none; }
html[lang="tr"] [data-lang="tr"] { display: block; }
html[lang="en"] [data-lang="en"] { display: block; }
html[lang="tr"] span[data-lang="tr"],
html[lang="en"] span[data-lang="en"],
html[lang="tr"] b[data-lang="tr"],
html[lang="en"] b[data-lang="en"] { display: inline; }

/* language-aware "most popular" badge */
html[lang="en"] .price.featured::before { content: "Most popular"; }
