/* ============================================
   davetli.co — Inspired by thedigitalyes.com
   Fonts: Cormorant Garamond + Montserrat
   Palette: warm cream, sand, gold, wine
   ============================================ */

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

:root {
  /* Palette */
  --cream:       #FDF8F3;
  --cream-mid:   #F5E6D3;
  --cream-dark:  #ebe6dd;
  --sand:        #D4B896;
  --sand-dark:   #b89870;
  --gold:        #d4a574;
  --gold-dark:   #b8865a;
  --wine:        #8B4559;
  --wine-dark:   #6e3445;
  --dark:        #2c2420;
  --dark-mid:    #3d3028;
  --ink:         #1a1410;
  --surface:     #fdf8f3;
  --text:        #2c2420;
  --text-mid:    #5a4e46;
  --text-soft:   #8a7e76;
  --text-pale:   #b0a49a;
  --text-muted:  #7a6e68;
  --white:       #ffffff;
  --border:      #e8ddd4;
  --border-dark: #d0c4b5;

  /* Aurora palette */
  --aurora-1: hsl(30, 40%, 93%);
  --aurora-2: hsl(350, 30%, 89%);
  --aurora-3: hsl(40, 55%, 91%);
  --aurora-4: hsl(20, 38%, 87%);
  --aurora-5: hsl(10, 42%, 90%);

  /* Shadow tokens */
  --shadow-soft:    0 2px 12px rgba(44,36,32,0.06);
  --shadow-elegant: 0 8px 32px rgba(44,36,32,0.10);
  --shadow-lifted:  0 20px 60px rgba(44,36,32,0.15);
  --shadow-emboss:  0 2px 0 rgba(255,255,255,0.7), 0 6px 24px rgba(44,36,32,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  --shadow-deep:    0 32px 80px rgba(44,36,32,0.22), 0 8px 24px rgba(44,36,32,0.10);

  /* Transition tokens */
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-gentle: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 999px;

  /* Shadows (legacy) */
  --sh-sm: 0 2px 12px rgba(44,36,32,0.07);
  --sh-md: 0 8px 32px rgba(44,36,32,0.10);
  --sh-lg: 0 24px 64px rgba(44,36,32,0.13);

  --t: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* iOS Safari: body overflow-x alone is not enough */
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* Wrapper that reliably prevents horizontal scroll on iOS Safari.
   filter:blur / drop-shadow children escape overflow:hidden on html/body
   but are clipped correctly by a regular div. */
.page-clip {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* ── UTILITIES ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-header h2 em { font-style: italic; color: var(--wine); }
.section-header p {
  font-size: 15px;
  color: var(--text-mid);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover { background: var(--dark-mid); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border-dark);
}
.btn--outline:hover { border-color: var(--dark); background: var(--cream-dark); }
.btn--cream {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}
.btn--cream:hover { background: var(--cream-mid); }
.btn--lg { padding: 16px 36px; font-size: 14px; }
.btn--full { width: 100%; justify-content: center; }
.btn-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--t);
}
.btn-link:hover { color: var(--dark); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes aurora {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes hovering {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position:  200% center; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes softReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: var(--t);
}
.nav--scrolled {
  background: rgba(253,248,243,0.96);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo em { font-style: italic; color: var(--gold-dark); }
.nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  text-decoration: none;
  transition: var(--t);
}
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; gap: 16px; align-items: center; margin-left: auto; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--t);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
  flex-direction: column;
  gap: 14px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-8px);
  transition: var(--t);
  pointer-events: none;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 8px; border-radius: var(--r-full); }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 130px 0 0;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--aurora-1) 0%,
    var(--aurora-2) 18%,
    var(--aurora-3) 38%,
    var(--aurora-1) 50%,
    var(--aurora-4) 68%,
    var(--aurora-5) 82%,
    var(--aurora-3) 100%
  );
  background-size: 300% 300%;
  animation: aurora 20s ease-in-out infinite;
  z-index: 0;
}
.hero__bg-text {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 300;
  font-style: italic;
  color: rgba(212,168,128,0.13);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  z-index: 1;
}

/* Hero head — centered text above carousel */
.hero__head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px 8px;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  display: block;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}
.hero__title em { font-style: italic; color: var(--wine); }
.hero__sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Hero foot — CTAs + trust below carousel */
.hero__foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 28px 80px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero__trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.ta {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--cream);
  margin-left: -8px;
}
.ta:first-child { margin-left: 0; }
.ta1 { background: var(--wine); }
.ta2 { background: var(--gold-dark); }
.ta3 { background: var(--sand-dark); }
.ta4 { background: var(--dark); }
.hero__trust p { font-size: 13px; color: var(--text-mid); }
.hero__trust strong { color: var(--text); }

/* Invite card */
.hero__invite { display: flex; justify-content: center; align-items: center; }
.invite-wrapper {
  position: relative;
  padding: 20px;
}
.invite-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--sh-lg);
  min-width: 280px;
  position: relative;
}
.invite-card__ornament {
  display: block;
  font-size: 14px;
  color: var(--sand);
  margin: 8px 0;
  letter-spacing: 0.3em;
}
.invite-card__divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 14px auto;
}
.invite-card__pre {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--text-soft);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.invite-card__names {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin: 8px 0;
}
.invite-card__names em { font-style: italic; color: var(--gold-dark); }
.invite-card__date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-top: 14px;
}
.invite-card__time { font-size: 12px; color: var(--text-soft); margin-top: 3px; }
.invite-card__venue {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text-mid);
  margin-top: 10px;
  line-height: 1.4;
}
.invite-card__venue span { font-size: 12px; color: var(--text-soft); }
.invite-card__rsvp {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--t);
}
.invite-card__rsvp:hover { background: var(--wine); }

.invite-badge {
  position: absolute;
  top: 0;
  right: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh-sm);
  font-size: 12px;
}
.invite-badge__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f5ee;
  color: #2e8b5a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.invite-badge strong { display: block; font-size: 13px; color: var(--text); }
.invite-badge p { color: var(--text-soft); margin: 0; font-size: 11px; }

.invite-tag {
  position: absolute;
  bottom: 0;
  left: -12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: var(--sh-sm);
  white-space: nowrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-pale);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── LOGOS ── */
.logos {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream-dark);
}
.logos__label {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-pale);
  margin-bottom: 18px;
}
.logos__strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.logos__strip span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.logos__strip .dot { color: var(--sand); }

/* ── STATEMENT ── */
.statement {
  position: relative;
  padding: 80px 0;
  background: var(--cream);
}
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../images/webp/handmade-paper-texture.webp") center / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.statement__inner { position: relative; z-index: 1; }
.statement__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.statement__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.statement__text {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 600px;
  flex-shrink: 0;
}
.statement__text em { font-style: italic; color: var(--wine); }

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 0;
  background: var(--cream-dark);
}
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.how-step {
  flex: 1;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: var(--t);
}
.how-step:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.how-step__num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream-mid);
  line-height: 1;
  margin-bottom: 16px;
}
.how-step__body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}
.how-step__body p { font-size: 14px; color: var(--text-mid); }
.how-step__arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 22px;
  color: var(--sand);
  font-family: var(--serif);
  flex-shrink: 0;
  align-self: center;
}

/* ── FEATURES ── */
.features {
  position: relative;
  padding: 100px 0;
  background: var(--cream);
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../images/webp/dusk-string-lights.webp") center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.features .container { position: relative; z-index: 1; }
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.features__intro {
  position: sticky;
  top: 120px;
}
.features__intro h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}
.features__intro h2 em { font-style: italic; color: var(--wine); }
.features__intro p { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; }
.features__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feat-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.feat-item:last-child { border-bottom: none; }
.feat-item:hover .feat-item__icon { background: var(--dark); color: var(--white); }
.feat-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
  color: var(--text-mid);
}
.feat-item__icon svg { width: 20px; height: 20px; }
.feat-item h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}
.feat-item p { font-size: 13px; color: var(--text-mid); }

/* ── TEMPLATES ── */
.templates {
  padding: 100px 0;
  background: var(--cream-dark);
}
.templates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 48px;
}
.tpl { display: flex; flex-direction: column; gap: 10px; cursor: pointer; }
.tpl--tall .tpl__card { grid-row: span 2; min-height: 340px; }
.tpl:nth-child(3) { grid-row: span 2; }
.tpl:nth-child(3) .tpl__card { min-height: 340px; }

.tpl__card {
  background: linear-gradient(160deg, var(--bg1), var(--bg2));
  border-radius: var(--r-lg);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--t);
  border: 1px solid rgba(255,255,255,0.3);
}
.tpl__card:hover { transform: scale(1.02); box-shadow: var(--sh-lg); }
.tpl__inner {
  text-align: center;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.tpl__ornament { font-size: 14px; opacity: 0.5; color: var(--dark); }
.tpl__pre {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  color: var(--dark);
}
.tpl__inner h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.2;
}
.tpl__date { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: var(--dark); opacity: 0.6; }
.tpl__inner--dark .tpl__ornament,
.tpl__inner--dark .tpl__pre,
.tpl__inner--dark h3,
.tpl__inner--dark .tpl__date { color: var(--dark-mid); }
.tpl__inner--white .tpl__ornament,
.tpl__inner--white .tpl__pre,
.tpl__inner--white h3,
.tpl__inner--white .tpl__date { color: rgba(255,255,255,0.85); opacity: 1; }
.tpl__inner--white .tpl__ornament { opacity: 0.5; }

.tpl__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}
.tpl__info span { font-size: 12px; color: var(--text-mid); font-weight: 500; }
.tpl__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--text-soft);
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
}

.templates__cta { text-align: center; }

/* ── QUOTE BANNER ── */
.quote-banner {
  padding: 80px 0;
  background: var(--dark);
}
.quote-banner__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-banner__marks {
  font-family: var(--serif);
  font-size: 120px;
  font-style: italic;
  color: var(--wine);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.6;
}
.quote-banner__inner blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 28px;
}
.quote-banner__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.quote-banner__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.quote-banner__author strong { display: block; color: var(--white); font-size: 15px; text-align: left; }
.quote-banner__author span { font-size: 12px; color: var(--gold); }

/* ── PRICING ── */
.pricing {
  padding: 100px 0;
  background: var(--cream);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--t);
}
.price-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.price-card--featured {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.03);
}
.price-card__ornament {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.price-card--featured > *:not(.price-card__ornament) { position: relative; z-index: 1; }
.price-card--featured:hover { transform: scale(1.03) translateY(-3px); }
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wine);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
}
.price-card__header { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price-card--featured .price-card__header { border-color: rgba(255,255,255,0.1); }
.price-card__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.price-card--featured .price-card__name { color: rgba(255,255,255,0.5); }
.price-card__price { display: flex; align-items: baseline; gap: 6px; }
.price-card__price span {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}
.price-card--featured .price-card__price span { color: var(--white); }
.price-card__price small { font-size: 13px; color: var(--text-soft); }
.price-card--featured .price-card__price small { color: rgba(255,255,255,0.45); }
.price-card__list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price-card__list li { font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 10px; }
.price-card--featured .price-card__list li { color: rgba(255,255,255,0.7); }
.check { color: #2e8b5a; font-size: 14px; flex-shrink: 0; }
.cross { color: var(--text-pale); font-size: 14px; flex-shrink: 0; }
.pricing__extras {
  max-width: 940px;
  margin: 26px auto 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}
.pricing__extras span {
  color: var(--text);
  font-weight: 700;
}

/* ── REVIEWS ── */
.reviews {
  padding: 100px 0;
  background: var(--cream-dark);
  overflow: hidden;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--t);
}
.review-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.review-stars { color: var(--gold-dark); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.review-author { display: flex; gap: 12px; align-items: center; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; color: var(--text); }
.review-author span { font-size: 12px; color: var(--text-soft); }

/* ── CTA / SIGNUP ── */
.cta-section {
  padding: 100px 0;
  background: var(--cream);
}
.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-section__left h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-section__left h2 em { font-style: italic; color: var(--wine); }
.cta-section__left p { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; }
.cta-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cta-checklist li { font-size: 14px; color: var(--text-mid); }

.signup-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh-md);
}
.signup-form h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 7px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  transition: var(--t);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(44,36,32,0.06);
}
.form-note {
  font-size: 11px;
  color: var(--text-pale);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.form-note a { color: var(--text-soft); }
.form-success {
  display: none;
  background: #e8f5ee;
  color: #2e8b5a;
  border-radius: var(--r-sm);
  padding: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 14px;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 64px 28px 48px;
}
.footer__brand .nav__logo { color: rgba(255,255,255,0.9); margin-bottom: 14px; display: inline-block; }
.footer__brand p { font-size: 13px; line-height: 1.7; max-width: 260px; margin-bottom: 22px; }
.footer__social { display: flex; gap: 14px; }
.footer__social a { color: rgba(255,255,255,0.35); transition: var(--t); }
.footer__social a:hover { color: rgba(255,255,255,0.9); }
.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: var(--t);
}
.footer__col a:hover { color: rgba(255,255,255,0.85); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
}
.footer__bottom p { font-size: 12px; }

/* ── MARQUEE ── */
.marquee-section {
  background: var(--cream-dark);
  padding: 32px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 14px;
  width: max-content;
}
.marquee-inner--fwd  { animation: marqueeLeft 36s linear infinite; }
.marquee-inner--rev  { animation: marqueeRight 40s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }

@keyframes marqueeLeft  { from { transform: translateX(0); }  to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.mq-card {
  background: linear-gradient(145deg, var(--c1), var(--c2));
  border-radius: var(--r-md);
  padding: 20px 22px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.25);
  position: relative;
}
.mq-ornament { font-size: 11px; color: var(--ct); opacity: 0.5; letter-spacing: 0.2em; }
.mq-names {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--ct);
  text-align: center;
}
.mq-date { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--ct); opacity: 0.6; }
.mq-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.3);
  color: var(--ct);
  padding: 2px 8px;
  border-radius: var(--r-full);
}

/* ── PHONE SHARE SIMULATION ── */
.phone-share {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden; /* contain phone-float badges that use negative right/left positioning */
}
.phone-share__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.phone-share__text h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 18px;
}
.phone-share__text h2 em { font-style: italic; color: var(--wine); }
.phone-share__text p { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.75; }
.phone-share__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-share__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.ps-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ps-icon svg { width: 20px; height: 20px; }
.ps-icon--wa   { background: #e8f5e4; color: #25d366; }
.ps-icon--mail { background: #e8eef5; color: #2563eb; }
.ps-icon--link { background: var(--cream-dark); color: var(--text-mid); }

/* Phone frame */
.phone-share__device {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-frame {
  width: 280px;
  background: var(--dark);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(44,36,32,0.25), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.phone-frame__notch {
  width: 90px; height: 26px;
  background: var(--dark);
  border-radius: 0 0 18px 18px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}
.phone-frame__notch::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #1a1512;
  box-shadow: inset 0 0 0 2px #0f0c08;
}
.phone-frame__screen {
  background: #e8f0ea;
  border-radius: 32px;
  overflow: hidden;
  height: 500px;
  display: flex;
  flex-direction: column;
}
.phone-frame__home {
  width: 100px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  margin: 10px auto 0;
}

/* WhatsApp UI */
.wa-ui { display: flex; flex-direction: column; height: 100%; }
.wa-header {
  background: #128c7e;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wa-header__back { color: rgba(255,255,255,0.8); font-size: 18px; cursor: pointer; }
.wa-header__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.wa-header__info strong { display: block; color: #fff; font-size: 13px; }
.wa-header__info span { color: rgba(255,255,255,0.7); font-size: 11px; }
.wa-messages {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #e5ddd5;
  overflow: hidden;
}
.wa-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
}
.wa-bubble--in {
  background: #fff;
  color: #2c2420;
  align-self: flex-start;
  border-radius: 0 12px 12px 12px;
}
.wa-bubble--out {
  background: #d9fdd3;
  color: #2c2420;
  align-self: flex-end;
  border-radius: 12px 0 12px 12px;
}
.wa-bubble--ts {
  background: none;
  font-size: 10px;
  color: rgba(0,0,0,0.4);
  padding: 0 4px;
}
.wa-bubble--invite {
  padding: 12px;
  min-width: 180px;
}
.wab-pre { font-size: 10px; color: #667; margin-bottom: 4px; }
.wab-names {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: #1a1512;
  display: block;
  margin-bottom: 3px;
}
.wab-date { font-size: 11px; color: #555; margin-bottom: 8px; }
.wab-link {
  font-size: 11px;
  color: #128c7e;
  font-weight: 600;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 8px;
  margin-top: 4px;
}
.wa-msg-sending { display: none; }
.wa-input-bar {
  background: #f0f2f5;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.wa-input {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px;
  color: #aaa;
}
.wa-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #128c7e;
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t);
}
.wa-send:hover { background: #0a7060; transform: scale(1.05); }
.wa-send svg { width: 16px; height: 16px; }

/* Floating labels */
.phone-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 16px;
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  white-space: nowrap;
}
.phone-float--rsvp {
  top: 60px;
  right: -60px;
}
.phone-float--rsvp span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e8f5ee;
  color: #2e8b5a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.phone-float--rsvp strong { display: block; color: var(--text); font-size: 13px; }
.phone-float--rsvp p { color: var(--text-soft); margin: 0; font-size: 11px; }
.phone-float--link {
  bottom: 80px;
  left: -50px;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
}

@keyframes waBubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── DEMO SHOWCASE ── */
.demos {
  position: relative;
  padding: 100px 0;
  background: var(--cream-dark);
  overflow: hidden;
}
.demos__olive-decor {
  position: absolute;
  right: -80px;
  top: 20px;
  width: 360px;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
  transform: rotate(20deg);
}
.demos .container { position: relative; z-index: 1; }
.demo-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--t);
  cursor: pointer;
}
.demo-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.demo-card__preview {
  background: linear-gradient(160deg, var(--dc1), var(--dc2));
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.demo-card__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.dc-ornament { font-size: 14px; color: var(--text); opacity: 0.4; }
.dc-pre {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
}
.demo-card__inner h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.2;
}
.dc-date { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: var(--text); opacity: 0.65; }
.dc-venue { font-size: 12px; color: var(--text); opacity: 0.5; }
.dc-countdown {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: var(--r-sm);
  padding: 8px 16px;
}
.dc-countdown span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.dc-countdown strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.dc-countdown small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
}
.dc-countdown--light strong { color: rgba(255,255,255,0.9); }
.dc-countdown--light small  { color: rgba(255,255,255,0.5); }
.demo-card__footer {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.demo-card__footer strong { display: block; font-size: 15px; color: var(--text); font-weight: 600; margin-bottom: 3px; }
.demo-card__footer p { font-size: 11px; color: var(--text-soft); }
.demo-card__arrow {
  font-size: 20px;
  color: var(--text-pale);
  transition: var(--t);
  font-family: var(--serif);
}
.demo-card:hover .demo-card__arrow { color: var(--wine); transform: translateX(4px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: 1fr; }
  .features__intro { position: static; }
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid .price-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .mobile-menu { display: flex; }

  .hero__bg-text { display: none; }
  .hero__head { padding: 0 20px 4px; }
  .hero__title { font-size: clamp(32px, 8vw, 48px); }

  .statement__inner { flex-direction: column; gap: 0; }
  .statement__line { width: 60px; height: 1px; }

  .how__steps { flex-direction: column; }
  .how-step__arrow { transform: rotate(90deg); align-self: center; padding: 8px 0; }

  .phone-share__inner { grid-template-columns: 1fr; }
  .phone-share__device { display: none; }

  .templates__grid { grid-template-columns: 1fr 1fr; }
  .tpl:nth-child(3) { grid-row: auto; }
  .tpl:nth-child(3) .tpl__card { min-height: 220px; }

  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__grid .price-card:last-child { grid-column: 1; max-width: none; }
  .price-card--featured { transform: none; }

  .reviews__grid { grid-template-columns: 1fr; }
  .cta-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .templates__grid { grid-template-columns: 1fr; }
  .signup-form { padding: 24px; }
  .hero__actions { flex-direction: column; align-items: center; }
}


/* ═══════════════════════════════════════════
   3D CAROUSEL — Hero full-width
   ═══════════════════════════════════════════ */

.c3d {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 0 8px;
  cursor: grab;
  user-select: none;
}
.c3d:active { cursor: grabbing; }

.c3d__stage {
  position: relative;
  height: 452px;
  perspective: 1400px;
}

.c3d__track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.c3d__card {
  position: absolute;
  width: 218px;
  height: 388px;
  border-radius: 38px;
  cursor: pointer;
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.55s ease;
  will-change: transform, opacity;
}

.c3d__phone {
  width: 100%;
  height: 100%;
  background: #18120e;
  border-radius: 38px;
  padding: 11px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
}

.c3d__notch {
  width: 72px; height: 21px;
  background: #0d0906;
  border-radius: 0 0 13px 13px;
  margin: 0 auto 7px;
  position: relative;
  flex-shrink: 0;
}
.c3d__notch::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #060402;
}

.c3d__screen {
  flex: 1;
  border-radius: 27px;
  overflow: hidden;
  min-height: 0;
}

.c3d__home {
  width: 74px; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  margin: 7px auto 0;
  flex-shrink: 0;
}

/* ── Card inner: split layout container ── */
.c3d__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/* ── Hero art area: top ~58% ── */
.c3d__hero {
  flex: 0 0 58%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
}
.c3d__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.32) 0%, transparent 48%),
    radial-gradient(ellipse at 75% 80%, rgba(255,255,255,0.10) 0%, transparent 42%);
  pointer-events: none;
}
.c3d__hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.10));
  pointer-events: none;
}

.c3d__hero-names {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.c3d__monogram {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.c3d__monogram em {
  font-style: italic;
  font-weight: 300;
  opacity: 0.65;
  font-size: 0.75em;
  margin: 0 3px;
}

.c3d__big-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.c3d__sub-name {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-top: 2px;
}

.c3d__baby-icon,
.c3d__cap-icon {
  font-size: 34px;
  line-height: 1;
  display: block;
  margin-bottom: 3px;
  opacity: 0.85;
}

/* ── Detail panel: bottom ~42% ── */
.c3d__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 9px 12px 11px;
  background: #faf8f5;
  color: inherit;
  text-align: center;
}
.c3d__panel--dark {
  background: #15100d;
}

.c3d__panel-tag {
  font-family: var(--sans);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0;
}

.c3d__panel-rule {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 2px 0;
  font-size: 7px;
  opacity: 0.38;
}
.c3d__panel-rule::before,
.c3d__panel-rule::after {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.c3d__panel-request {
  font-family: var(--serif);
  font-size: 8.5px;
  font-style: italic;
  opacity: 0.52;
  margin: 0;
}

.c3d__panel-date {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 2px 0 0;
}

.c3d__panel-venue {
  font-family: var(--serif);
  font-size: 8.5px;
  font-style: italic;
  opacity: 0.48;
  margin: 0;
}

.c3d__panel-btn {
  display: inline-block;
  margin-top: 7px;
  padding: 4px 13px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(0,0,0,0.82);
  color: #faf8f5;
  transition: opacity 0.2s, transform 0.2s;
}
.c3d__panel--dark .c3d__panel-btn {
  background: rgba(255,255,255,0.14);
  color: inherit;
  border: 1px solid rgba(255,255,255,0.22);
}
.c3d__panel-btn:hover { opacity: 0.78; transform: translateY(-1px); }

/* ── Per-theme hero backgrounds ── */
.c3d__inner--gold .c3d__hero {
  background:
    radial-gradient(ellipse at 28% 18%, rgba(255,252,230,0.55) 0%, transparent 42%),
    radial-gradient(ellipse at 78% 75%, rgba(200,140,60,0.22) 0%, transparent 48%),
    linear-gradient(148deg, #f8e8c8 0%, #d8aa72 38%, #c08848 72%, #9c6830 100%);
  color: #3a2c18;
}
.c3d__inner--gold .c3d__panel { color: #3a2c18; }

.c3d__inner--midnight .c3d__hero {
  background:
    radial-gradient(ellipse at 50% 55%, rgba(180,140,80,0.12) 0%, transparent 52%),
    radial-gradient(ellipse at 18% 18%, rgba(120,90,200,0.07) 0%, transparent 38%),
    linear-gradient(158deg, #2a2018 0%, #1a1208 42%, #0e0906 100%);
  color: #f0e8d0;
}
.c3d__inner--midnight .c3d__panel { color: #f0e8d0; }

.c3d__inner--sage .c3d__hero {
  background:
    radial-gradient(ellipse at 32% 22%, rgba(248,255,240,0.48) 0%, transparent 48%),
    radial-gradient(ellipse at 72% 78%, rgba(60,130,60,0.22) 0%, transparent 44%),
    linear-gradient(148deg, #ddf0d0 0%, #a8c890 38%, #78a868 72%, #508848 100%);
  color: #1a3018;
}
.c3d__inner--sage .c3d__panel { color: #1a3018; }

.c3d__inner--blush .c3d__hero {
  background:
    radial-gradient(ellipse at 28% 22%, rgba(255,248,250,0.52) 0%, transparent 48%),
    radial-gradient(ellipse at 76% 72%, rgba(210,90,130,0.18) 0%, transparent 44%),
    linear-gradient(148deg, #fde8f0 0%, #f0b0cc 38%, #e080a8 72%, #c05888 100%);
  color: #4a1028;
}
.c3d__inner--blush .c3d__panel { color: #4a1028; }

.c3d__inner--plum .c3d__hero {
  background:
    radial-gradient(ellipse at 42% 28%, rgba(210,170,255,0.14) 0%, transparent 48%),
    radial-gradient(ellipse at 65% 78%, rgba(70,18,120,0.28) 0%, transparent 44%),
    linear-gradient(158deg, #3e2e5a 0%, #2a1a48 42%, #180c2e 100%);
  color: #ecdeff;
}
.c3d__inner--plum .c3d__panel { color: #ecdeff; }

.c3d__inner--terra .c3d__hero {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,248,235,0.50) 0%, transparent 48%),
    radial-gradient(ellipse at 75% 78%, rgba(165,78,28,0.20) 0%, transparent 44%),
    linear-gradient(148deg, #f5e0c0 0%, #d48858 38%, #b06030 72%, #904020 100%);
  color: #3a1808;
}
.c3d__inner--terra .c3d__panel { color: #3a1808; }

.c3d__inner--navy .c3d__hero {
  background:
    radial-gradient(ellipse at 32% 22%, rgba(220,240,255,0.42) 0%, transparent 48%),
    radial-gradient(ellipse at 72% 76%, rgba(18,52,118,0.24) 0%, transparent 44%),
    linear-gradient(148deg, #d0e8f8 0%, #88b0e0 38%, #4878c0 72%, #1c4898 100%);
  color: #081e40;
}
.c3d__inner--navy .c3d__panel { color: #081e40; }

.c3d__inner--botanical .c3d__hero {
  background:
    radial-gradient(ellipse at 28% 20%, rgba(240,255,240,0.45) 0%, transparent 48%),
    radial-gradient(ellipse at 72% 80%, rgba(18,90,36,0.24) 0%, transparent 44%),
    linear-gradient(148deg, #c8f0d8 0%, #60c880 38%, #289858 72%, #0e6030 100%);
  color: #062818;
}
.c3d__inner--botanical .c3d__panel { color: #062818; }

/* Carousel dots */
.c3d__dots {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  position: relative;
  z-index: 2;
}
.c3d__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-dark);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.c3d__dot.active { background: var(--wine); width: 20px; border-radius: 3px; }
.c3d__dot:hover:not(.active) { background: var(--sand-dark); }

/* 3D Carousel — Responsive (must come after base rules) */
@media (max-width: 768px) {
  .c3d { padding: 20px 0 4px; }
  .c3d__stage { height: 350px; perspective: 900px; }
  .c3d__card { width: 166px; height: 296px; border-radius: 28px; }
  .c3d__phone { border-radius: 28px; padding: 8px; }
  .c3d__notch { width: 56px; height: 16px; border-radius: 0 0 10px 10px; }
  .c3d__screen { border-radius: 20px; }
  .c3d__monogram { font-size: 22px; }
  .c3d__big-num { font-size: 44px; }
  .c3d__baby-icon, .c3d__cap-icon { font-size: 26px; }
  .c3d__sub-name { font-size: 7.5px; }
  .c3d__panel-date { font-size: 8.5px; }
  .c3d__panel-btn { font-size: 6px; padding: 3px 10px; }
}
@media (max-width: 480px) {
  .c3d__stage { height: 310px; perspective: 700px; }
  .c3d__card { width: 144px; height: 258px; border-radius: 24px; }
  .c3d__phone { border-radius: 24px; padding: 7px; }
  .c3d__monogram { font-size: 19px; }
  .c3d__big-num { font-size: 38px; }
  .c3d__baby-icon, .c3d__cap-icon { font-size: 22px; }
  .c3d__panel { padding: 7px 9px 9px; gap: 1px; }
  .c3d__panel-date { font-size: 7.5px; }
}

/* ═══════════════════════════════════════════
   PHONE CAROUSEL — Legacy (kept for reference)
   ═══════════════════════════════════════════ */

.hero__phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  justify-content: center;
  position: relative;
}

.pc-stage {
  position: relative;
  width: 360px;
  height: 476px;
}

.pcf-wrap {
  position: absolute;
  width: 204px;
  transition: var(--transition-gentle);
  cursor: pointer;
}

/* Center / active */
.pcf-wrap[data-pos="0"] {
  left: 78px;
  top: 0;
  transform: rotate(0deg) scale(1);
  z-index: 3;
  opacity: 1;
  filter: none;
}

/* Right back */
.pcf-wrap[data-pos="1"] {
  left: 158px;
  top: 20px;
  transform: rotate(7deg) scale(0.87);
  z-index: 1;
  opacity: 0.68;
  filter: blur(0.5px) brightness(0.96);
}

/* Left back */
.pcf-wrap[data-pos="2"] {
  left: -2px;
  top: 20px;
  transform: rotate(-7deg) scale(0.87);
  z-index: 1;
  opacity: 0.68;
  filter: blur(0.5px) brightness(0.96);
}

/* The phone frame */
.pcf {
  background: #18120e;
  border-radius: 38px;
  padding: 11px;
  box-shadow: var(--shadow-deep), inset 0 0 0 1px rgba(255,255,255,0.07);
}

.pcf__notch {
  width: 78px; height: 22px;
  background: #0d0906;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 7px;
  position: relative;
}
.pcf__notch::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #080504;
  box-shadow: inset 0 0 0 2px #060402;
}

.pcf__screen {
  border-radius: 28px;
  overflow: hidden;
  height: 382px;
}

.pcf__home {
  width: 82px; height: 4px;
  background: rgba(255,255,255,0.13);
  border-radius: 4px;
  margin: 8px auto 0;
}

/* Mini invite inside phone screen */
.pcf__invite {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 18px;
  gap: 7px;
  position: relative;
  overflow: hidden;
}

.pcf__invite::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at 40% 35%, rgba(255,255,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.pcf__invite--gold {
  background: linear-gradient(160deg, #f5e6d3 0%, #d4a880 55%, #c08860 100%);
}
.pcf__invite--dark {
  background: linear-gradient(160deg, #2c2420 0%, #1a1210 50%, #0a0806 100%);
}
.pcf__invite--sage {
  background: linear-gradient(160deg, #e8ede4 0%, #a8c8a0 55%, #80a878 100%);
}

.pcf__ornament {
  font-size: 10px;
  letter-spacing: 0.3em;
  display: block;
  opacity: 0.45;
}

.pcf__pre {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 2px;
}

.pcf__names {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.15;
  margin: 2px 0;
}
.pcf__names em { font-style: italic; }

.pcf__divider {
  width: 36px; height: 1px;
  background: currentColor;
  opacity: 0.18;
  margin: 2px auto;
}

.pcf__date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.pcf__venue {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  opacity: 0.55;
}

.pcf__cta {
  margin-top: 10px;
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  border: none;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.pcf__cta:hover { opacity: 0.8; transform: translateY(-1px); }

/* Color-specific text */
.pcf__invite--gold .pcf__ornament,
.pcf__invite--gold .pcf__pre,
.pcf__invite--gold .pcf__names,
.pcf__invite--gold .pcf__date,
.pcf__invite--gold .pcf__venue { color: #3a2c20; }
.pcf__invite--gold .pcf__cta { background: #2c2420; color: #fff; }

.pcf__invite--dark .pcf__ornament,
.pcf__invite--dark .pcf__pre,
.pcf__invite--dark .pcf__names,
.pcf__invite--dark .pcf__date,
.pcf__invite--dark .pcf__venue { color: #f0e8d8; }
.pcf__invite--dark .pcf__cta { background: #d4a574; color: #1a1210; }

.pcf__invite--sage .pcf__ornament,
.pcf__invite--sage .pcf__pre,
.pcf__invite--sage .pcf__names,
.pcf__invite--sage .pcf__date,
.pcf__invite--sage .pcf__venue { color: #2a3a28; }
.pcf__invite--sage .pcf__cta { background: #2a3a28; color: #fff; }

/* Carousel dots */
.pc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-dark);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.pc-dot.active {
  background: var(--wine);
  width: 22px;
  border-radius: 4px;
}
.pc-dot:hover:not(.active) { background: var(--sand-dark); }

/* Hovering animation on active phone */
.pcf-wrap[data-pos="0"] .pcf {
  animation: hovering 5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL UTILITY
   ═══════════════════════════════════════════ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   PHOTO TICKER — Smooth horizontal marquee
   ═══════════════════════════════════════════ */
@keyframes photoTick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.photo-ticker {
  overflow: hidden;
  padding: 46px 0 28px;
  position: relative;
  z-index: 2;
  transform: translateZ(0); /* compositing layer: properly clips filter children on iOS Safari */
}
.photo-ticker::before,
.photo-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 3;
  pointer-events: none;
}
.photo-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
}
.photo-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
}

.photo-ticker__track {
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  animation: photoTick 58s linear infinite;
}
.photo-ticker:hover .photo-ticker__track {
  animation-play-state: paused;
}

.ticker-phone {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 400 / 720;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  transform: translateY(var(--ticker-lift, 0px)) scale(var(--ticker-scale, 1));
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.35s ease;
  will-change: transform;
}

.ticker-phone > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(44,36,32,0.22)) drop-shadow(0 8px 16px rgba(44,36,32,0.12));
}

.ticker-phone::before {
  display: none;
}


/* Individual phone card in ticker */
.ptick {
  flex-shrink: 0;
  width: 188px;
  height: 394px;
  background: #1a1410;
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.20),
    0 8px 20px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ptick:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.28),
    0 12px 28px rgba(0,0,0,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.10);
}
.ptick__island {
  width: 84px; height: 24px;
  background: #0a0806;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 6px;
  flex-shrink: 0;
  position: relative;
}
.ptick__island::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #060402;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.04);
}
.ptick__screen {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  min-height: 0;
}
.ptick__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.ptick__bar {
  width: 68px; height: 4px;
  background: rgba(255,255,255,0.11);
  border-radius: 4px;
  margin: 6px auto 0;
  flex-shrink: 0;
}

/* Bare phone images in ticker */
.tick-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  background: rgba(255,250,245,0.72);
  border: 1px solid rgba(92,56,62,0.08);
  transition: transform 0.7s ease;
  transform: scale(1.01);
  filter:
    drop-shadow(0 24px 48px rgba(0,0,0,0.18))
    drop-shadow(0 4px 12px rgba(0,0,0,0.10));
}

.tick-img--poster {
  width: 250px;
  object-position: center top;
}

.tick-img--art {
  width: 300px;
  padding: 18px;
  object-fit: contain;
}
.photo-ticker__track:not(:hover) .tick-img:hover,
.photo-ticker:hover .tick-img:hover {
  transform: scale(1.035);
}
.photo-ticker__track:not(:hover) .ticker-phone:hover,
.photo-ticker:hover .ticker-phone:hover {
  transform: translateY(-8px) scale(1.025);
}

@media (max-width: 768px) {
  .ptick { width: 148px; height: 310px; border-radius: 30px; }
  .ptick__island { width: 66px; height: 18px; }
  .ptick__screen { border-radius: 22px; }
  .photo-ticker__track { gap: 12px; }
  .ticker-phone { width: 172px; }
  .ticker-phone::before { display: none; }
}

/* ═══════════════════════════════════════════
   DEMO FEATURED — classic-phone.png phone showcase
   ═══════════════════════════════════════════ */
.demo-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
  padding: 48px 0;
}

.demo-featured__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 12px;
}

.demo-featured__text h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
}
.demo-featured__text h3 em { font-style: italic; }

.demo-featured__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 400px;
}

.demo-featured__phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* transform creates a compositing layer so filter children are clipped properly on iOS Safari */
  transform: translateZ(0);
}

/* Realistic iPhone-style phone frame */
.demo-phone {
  position: relative;
  display: inline-block;
}
.demo-phone__glow {
  position: absolute;
  inset: -40px;
  border-radius: 80px;
  background: radial-gradient(ellipse at 50% 40%, rgba(120,40,60,0.12) 0%, rgba(100,160,210,0.08) 55%, transparent 75%);
  filter: blur(40px);
  z-index: 0;
}
/* Outer frame = wine-colored padding acts as the phone border */
.demo-phone__frame {
  position: relative;
  z-index: 1;
  padding: 12px;
  background: #3d1520;
  border-radius: 52px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 8px 40px rgba(61,21,32,0.35),
    0 24px 80px rgba(0,0,0,0.22);
}

/* Inner screen = tall mobile ratio that matches the invite screenshot crop */
.demo-phone__screen {
  position: relative;
  width: 256px;        /* 280 - 2×12 */
  aspect-ratio: 9/19.5;
  border-radius: 40px; /* 52 - 12 */
  overflow: hidden;
  background: #000;
}

.demo-phone__island {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #3d1520;
  border-radius: 0 0 16px 16px;
  z-index: 10;
  pointer-events: none;
}
.demo-phone__island::before {
  content: '';
  position: absolute;
  top: 55%; left: 58%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
}

.demo-phone__preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.demo-phone__preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.15) translateY(-6.5%);
  transform-origin: top center;
}
.demo-play-btn {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #3d1520;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(61,21,32,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.demo-play-btn:hover {
  transform: translateX(-50%) scale(1.04);
  box-shadow: 0 6px 28px rgba(61,21,32,0.6);
}
.demo-play-btn__icon {
  font-size: 12px;
  line-height: 1;
}
.demo-phone__home {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 4px;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}
.demo-view-full {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.demo-view-full:hover { color: var(--wine); }

@media (max-width: 900px) {
  .demo-featured {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .demo-featured__text p { max-width: 100%; }
  .demo-featured__phone { order: -1; }
  .demo-phone__glow { display: none; } /* filter:blur escapes overflow on mobile — hide it */
}

.designs {
  padding: 90px 0 56px;
  background: #f7f1eb;
  overflow: hidden;
}
.designs .section-header { margin-bottom: 28px; }

.designs-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  max-width: 760px;
  margin: 0 auto 48px;
}

.designs-filter button {
  appearance: none;
  border: 1px solid rgba(112,68,78,0.18);
  background: rgba(255,255,255,0.36);
  color: var(--wine);
  border-radius: 999px;
  padding: 8px 18px;
  font: 500 13px/1 var(--sans);
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.32);
  cursor: default;
}

.designs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.theme-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fffaf6;
  border: 1px solid rgba(112,68,78,0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(44,36,32,0.08), 0 2px 8px rgba(44,36,32,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(44,36,32,0.13), 0 5px 16px rgba(44,36,32,0.08);
}

.theme-card__media {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #ece7df;
}
.theme-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 42%, rgba(255,255,255,0.58), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.26), rgba(112,68,78,0.04));
  pointer-events: none;
}
.theme-card__media--maison {
  background:
    linear-gradient(180deg, rgba(236, 232, 226, 0.04), rgba(80, 60, 44, 0.18)),
    url("../images/webp/rosa-sampanya-phone.webp") center bottom / auto 88% no-repeat,
    #ece8e2;
}
.theme-card__media--royal {
  background:
    linear-gradient(180deg, rgba(245,237,224,0.02), rgba(80,58,34,0.16)),
    url("../images/webp/kraliyet-hero.webp") center / cover no-repeat;
}

.theme-card__media--finca {
  background:
    linear-gradient(180deg, rgba(244,239,227,0.02), rgba(58,75,45,0.16)),
    url("../images/webp/kir-bahcesi-hero.webp") center / cover no-repeat;
}

.theme-card__badge,
.theme-card__view {
  position: absolute;
  z-index: 4;
  top: 20px;
}
.theme-card__badge {
  left: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(44,36,32,0.09);
}
.theme-card__view {
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--wine);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 3px 12px rgba(44,36,32,0.09);
}
.theme-card__view--dark {
  background: var(--wine);
  color: #fff;
}
.theme-card__view svg {
  width: 20px;
  height: 20px;
}

.theme-card__phone {
  position: absolute;
  z-index: 2;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(44,36,32,0.22));
}
.theme-card__phone--front {
  left: 18%;
  bottom: 54px;
  width: 32%;
  height: 64%;
}
.theme-card__phone--side {
  right: 17%;
  bottom: 58px;
  width: 30%;
  height: 58%;
  filter: drop-shadow(0 16px 18px rgba(44,36,32,0.14));
}
.theme-card__media--royal .theme-card__phone--front,
.theme-card__media--finca .theme-card__phone--front {
  left: 21%;
  width: 31%;
  height: 65%;
}

.theme-card__paper,
.theme-card__panel {
  position: absolute;
  z-index: 2;
  right: 18%;
  top: 74px;
  width: 26%;
  min-width: 100px;
  border-radius: 10px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 24px rgba(44,36,32,0.13);
  text-align: center;
}
.theme-card__paper {
  padding: 48px 10px 20px;
  color: var(--gold-dark);
}
.theme-card__paper strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 8px;
}
.theme-card__paper span,
.theme-card__paper small {
  display: block;
  font-size: 9px;
  color: var(--text-soft);
}
.theme-card__panel {
  padding: 18px 12px;
  background: #66765e;
  color: rgba(255,255,255,0.88);
}
.theme-card__panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  margin-bottom: 12px;
}
.theme-card__panel div {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 42%;
  margin: 3px;
  padding: 8px 2px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
}
.theme-card__panel span {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1;
}
.theme-card__panel small {
  font-size: 7px;
  text-transform: uppercase;
  opacity: 0.68;
}
.theme-card__panel p {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.theme-card__body {
  padding: 30px 28px 28px;
  min-height: 206px;
}
.theme-card__body h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--wine);
  margin-bottom: 16px;
}
.theme-card__body p {
  font-size: 17px;
  line-height: 1.45;
  color: rgba(112,68,78,0.74);
  margin-bottom: 22px;
}
.theme-card__body small {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
}
.theme-card__body span {
  color: var(--wine);
  font-size: 15px;
  font-weight: 600;
}

.designs__cta {
  text-align: center;
  padding-top: 44px;
}

@media (max-width: 1100px) {
  .designs-grid { gap: 18px; }
  .theme-card__media { min-height: 300px; }
  .theme-card__body { padding: 26px 22px; }
  .theme-card__body p { font-size: 15px; }
}

@media (max-width: 900px) {
  .designs-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }
  .theme-card__media { min-height: 390px; }
}

@media (max-width: 520px) {
  .designs { padding: 72px 0 44px; }
  .designs-filter { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .designs-filter button { flex: 0 0 auto; }
  .theme-card { border-radius: 18px; }
  .theme-card__media { min-height: 290px; }
  .theme-card__badge { left: 14px; top: 14px; }
  .theme-card__view { right: 14px; top: 14px; }
  .theme-card__phone--front { left: 14%; width: 36%; }
  .theme-card__phone--side { right: 11%; width: 34%; }
  .theme-card__paper,
  .theme-card__panel { right: 10%; width: 34%; min-width: 92px; }
  .theme-card__body { min-height: 0; padding: 24px 20px; }
  .theme-card__body h3 { font-size: 32px; }
  .theme-card__body p { font-size: 14px; }
}

/* ═══════════════════════════════════════════
   PHONE FRAME XL — WhatsApp section
   ═══════════════════════════════════════════ */
.phone-frame--xl {
  width: 346px;
  height: 660px;
  border-radius: 44px;
  padding: 12px;
  background: #161616;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.32),
    0 10px 28px rgba(0,0,0,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.09);
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-frame--xl .phone-frame__island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 25px;
  background: #070707;
  border-radius: 999px;
  margin: 0;
  z-index: 8;
  pointer-events: none;
}
.phone-frame--xl .phone-frame__screen {
  flex: 1;
  border-radius: 31px;
  overflow: hidden;
  min-height: 0;
  background: #e7ded5;
}
.phone-frame--xl .phone-frame__home {
  display: none;
}

/* ── WhatsApp UI redesign ── */
.wa-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #e7ded5;
  font-family: Inter, var(--sans);
}

/* WA chat background: subtle leaf/doodle pattern */
.wa-messages {
  background-image:
    url("data:image/svg+xml,%3Csvg width='72' height='60' viewBox='0 0 72 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 18c9 0 9 14 18 14S27 18 36 18s9 14 18 14 9-14 18-14' fill='none' stroke='%23cdbfb3' stroke-width='1' stroke-opacity='.55'/%3E%3Cpath d='M0 58c9 0 9-14 18-14s9 14 18 14 9-14 18-14 9 14 18 14' fill='none' stroke='%23cdbfb3' stroke-width='1' stroke-opacity='.38'/%3E%3C/svg%3E");
  background-color: #e7ded5;
  background-size: 72px 60px;
}

.wa-header {
  background: #096b5d;
  padding: 46px 12px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.wa-header__back {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.wa-header__back svg { width: 19px; height: 19px; }
.wa-header__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  flex-shrink: 0;
}
.wa-header__info { flex: 1; }
.wa-header__info strong { display: block; font-size: 17px; font-weight: 500; color: #fff; line-height: 1.1; }
.wa-header__info span  { font-size: 12px; color: rgba(255,255,255,0.78); }
.wa-header__icons { color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 10px; }
.wa-header__icons svg { width: 17px; height: 17px; flex-shrink: 0; }

.wa-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 15px 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  scrollbar-width: none;
}
.wa-messages::-webkit-scrollbar { display: none; }

.wa-day-label {
  text-align: center;
  font-size: 11px;
  color: #667781;
  background: rgba(255,255,255,0.78);
  padding: 4px 12px;
  border-radius: 4px;
  align-self: center;
  margin: 0 0 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* Left/right row alignment */
.wa-row { display: flex; align-items: flex-end; gap: 5px; }
.wa-row--in  { flex-direction: row; justify-content: flex-start; }
.wa-row--out { flex-direction: row-reverse; justify-content: flex-start; }
.wa-animated-row,
#waTypingRow {
  opacity: 0;
  transform: translateY(8px);
}
.wa-row--visible {
  animation: waRowIn 0.28s ease forwards;
}

@keyframes waRowIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wa-ts {
  font-size: 9px;
  color: #667781;
  flex-shrink: 0;
  margin-bottom: 6px;
  white-space: nowrap;
}
.wa-ts--img { align-self: flex-end; }

.wa-bubble {
  max-width: 84%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.25;
  position: relative;
  word-break: break-word;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-bubble--in  { background: #fff; color: #1f2937; border-radius: 0 16px 16px 16px; }
.wa-bubble--out { background: #d9ffc2; color: #1f2937; border-radius: 16px 0 16px 16px; }

/* Image + caption bubble */
.wa-bubble--img {
  padding: 8px 8px 6px;
  width: 180px;
  max-width: 72%;
  border-radius: 16px 0 16px 16px;
  overflow: hidden;
  background: #d9ffc2;
}
.wa-img-attach {
  width: 100%;
  height: 120px;
  border-radius: 8px 8px 0 0;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}
.wa-bubble-caption {
  padding: 8px 7px 2px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.wab-pre  { display: none; }
.wab-names { font-family: var(--sans); font-size: 12px; line-height: 1.2; font-weight: 700; display: block; margin: 0 0 2px; color: #1f2937; }
.wab-date  { font-size: 11px; line-height: 1.2; color: #667085; margin: 0; }
.wab-link  {
  font-size: 10.5px; color: #128c7e; text-decoration: underline;
  display: inline-block; margin-top: 2px;
  font-weight: 500;
}
.wab-ts-row {
  text-align: right;
  font-size: 9px;
  color: #667781;
  margin-top: 5px;
}

/* Typing dots animation */
.wa-bubble--typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  min-width: 44px;
}
.wa-typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #999;
  animation: waTypeDot 1.3s ease-in-out infinite;
  display: inline-block;
}
.wa-typing-dot:nth-child(2) { animation-delay: 0.22s; }
.wa-typing-dot:nth-child(3) { animation-delay: 0.44s; }
@keyframes waTypeDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.wa-input-bar {
  background: #f5f4f2;
  padding: 9px 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.wa-input-emoji {
  color: #667781;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.wa-input {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 8px 12px;
  font-size: 12px;
  color: #98a2b3;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.wa-input-attach {
  color: #667781;
  display: flex; align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
.wa-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #096b5d;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.wa-send:hover { background: #128c7e; }
.wa-send svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .phone-frame--xl { width: 312px; height: 620px; border-radius: 40px; padding: 10px; }
  .phone-frame--xl .phone-frame__island { top: 17px; width: 72px; height: 23px; }
  .wa-header { padding-top: 42px; }
  .wa-bubble { font-size: 12px; }
  .wa-bubble--img { width: 166px; }
}
@media (max-width: 768px) {
  .phone-frame--xl { width: 284px; height: 560px; border-radius: 36px; }
  .wa-header__info strong { font-size: 15px; }
  .wa-header__icons { gap: 7px; }
  .wa-header__icons svg { width: 15px; height: 15px; }
  .wa-messages { padding: 11px 10px; gap: 6px; }
  .wa-bubble { font-size: 11px; padding: 8px 10px; }
  .wa-bubble--img { width: 152px; }
}

/* ═══════════════════════════════════════════
   REVIEWS — with rating summary bars
   ═══════════════════════════════════════════ */
.reviews__body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.reviews__summary {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.rating-hero { text-align: center; margin-bottom: 24px; }

.rating-num {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}

.rating-stars-row {
  font-size: 18px;
  color: #f5a623;
  letter-spacing: 2px;
  margin: 6px 0 4px;
}

.rating-count {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.rating-bars { display: flex; flex-direction: column; gap: 8px; }

.rbar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rbar__label {
  font-size: 11px;
  color: var(--text-muted);
  width: 28px;
  flex-shrink: 0;
  text-align: right;
}

.rbar__track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.rbar__fill {
  height: 100%;
  background: #f5a623;
  border-radius: 999px;
  transition: width 1s ease;
}
.rbar__fill--4  { background: #f5c842; }
.rbar__fill--low { background: #e0d8d0; }

.rbar__pct {
  font-size: 11px;
  color: var(--text-muted);
  width: 28px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .reviews__body { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══════════════════════════════════════════
   ORDER CTA
   ═══════════════════════════════════════════ */
.early-access {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
}
.early-access__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.early-access .section-eyebrow { color: var(--sand); }
.early-access h2 { font-family: var(--serif); font-size: clamp(28px,4vw,42px); font-weight:300; margin-bottom: 16px; color: var(--cream); }
.early-access h2 em { font-style:italic; }
.early-access p { color: rgba(240,232,216,0.7); line-height:1.65; margin-bottom:20px; }
.cta-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.cta-checklist li { font-size: 14px; color: rgba(240,232,216,0.65); }

.early-form__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}

.early-form__row {
  display: flex;
  gap: 10px;
}
.early-form__row input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.early-form__row input::placeholder { color: rgba(255,255,255,0.35); }
.early-form__row input:focus { border-color: rgba(255,255,255,0.4); }
.early-form__row .btn--dark {
  background: var(--cream);
  color: var(--ink);
  white-space: nowrap;
  padding: 14px 24px;
}
.early-form__row .btn--dark:hover { background: var(--sand); }

.early-access .form-success { color: var(--sand); margin-top: 12px; font-size: 14px; }

.order-form {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}

.order-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: rgba(240,232,216,0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}

.order-form select option { color: #2c2420; }
.order-form textarea { resize: vertical; min-height: 104px; }
.order-form__note { margin: 12px 0; }
.order-form__consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  margin: 0 0 16px;
  color: rgba(240,232,216,0.72) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.6;
  text-transform: none !important;
}
.order-form__consent input {
  width: auto;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .early-access__inner { grid-template-columns: 1fr; gap: 36px; }
  .early-form__row { flex-direction: column; }
  .order-form__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   PREMIUM EDITORIAL REFINEMENT
   Final page-level polish and overrides
   ═══════════════════════════════════════════ */
:root {
  --editorial-bg: #fbf6f0;
  --editorial-band: #f2ebe3;
  --editorial-card: #fffaf5;
  --editorial-line: rgba(92, 56, 62, 0.12);
  --editorial-shadow: 0 22px 70px rgba(44, 36, 32, 0.11), 0 3px 12px rgba(44, 36, 32, 0.05);
}

body {
  background: var(--editorial-bg);
}

.container {
  max-width: 1188px;
}

.section-eyebrow {
  color: var(--wine);
  letter-spacing: 0.16em;
}

.section-header {
  margin-bottom: 52px;
}

.section-header h2,
.features__intro h2,
.phone-share__text h2,
.cta-section__left h2,
.early-access h2 {
  letter-spacing: 0;
}

.section-header p,
.features__intro p,
.phone-share__text p {
  font-size: 16px;
  line-height: 1.75;
}

.btn {
  box-shadow: none;
}

.btn--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.btn--outline {
  background: rgba(255,255,255,0.34);
  border-color: rgba(92,56,62,0.22);
  color: var(--wine);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.66);
  border-color: rgba(92,56,62,0.42);
}

.nav {
  padding: 22px 0;
}

.nav--scrolled {
  background: rgba(251,246,240,0.9);
  border-bottom-color: rgba(92,56,62,0.1);
  box-shadow: 0 12px 34px rgba(44,36,32,0.06);
}

.hero {
  min-height: 100svh;
  padding: 138px 0 0;
  background: var(--editorial-bg);
}

.hero::before {
  background:
    radial-gradient(ellipse at 50% 12%, rgba(255,255,255,0.75) 0%, transparent 38%),
    linear-gradient(180deg, #fbf6f0 0%, #f4ece3 58%, #fbf6f0 100%);
  animation: none;
}

.hero__bg-text {
  top: 43%;
  color: rgba(139,69,89,0.055);
  font-size: clamp(112px, 17vw, 260px);
}

.hero__head {
  max-width: 760px;
  padding-bottom: 0;
}

.hero__eyebrow {
  color: var(--wine);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 0.98;
  margin-bottom: 22px;
}

.hero__mobile-break {
  display: none;
}

.hero__sub {
  max-width: 610px;
  font-size: 17px;
  color: rgba(44,36,32,0.72);
}

.photo-ticker {
  padding: 52px 0 24px;
}

.photo-ticker::before,
.photo-ticker::after {
  width: min(14vw, 180px);
}

.photo-ticker::before {
  background: linear-gradient(to right, var(--editorial-bg) 0%, rgba(251,246,240,0.84) 35%, transparent 100%);
}

.photo-ticker::after {
  background: linear-gradient(to left, var(--editorial-bg) 0%, rgba(251,246,240,0.84) 35%, transparent 100%);
}

.photo-ticker__track {
  gap: 22px;
  animation-duration: 68s;
}

.ticker-phone {
  width: 230px;
}

.ticker-phone > .tick-img {
  height: 100%;
  filter:
    drop-shadow(0 28px 46px rgba(44,36,32,0.18))
    drop-shadow(0 8px 14px rgba(44,36,32,0.08));
}

.tick-img--square {
  width: 282px;
  height: 410px;
  object-fit: cover;
  object-position: center;
}

.hero__foot {
  padding: 26px 28px 74px;
}

.hero__trust {
  color: rgba(44,36,32,0.72);
}

.ta {
  border-color: var(--editorial-bg);
}

.statement {
  padding: 84px 0;
  background: var(--editorial-bg);
}

.statement__text {
  max-width: 760px;
  font-size: clamp(25px, 3.6vw, 42px);
  line-height: 1.22;
  color: rgba(44,36,32,0.74);
}

.statement__line {
  background: linear-gradient(to right, transparent, var(--editorial-line), transparent);
}

.how,
.features,
.pricing,
.reviews,
.demos,
.designs {
  padding: 112px 0;
}

.how,
.reviews,
.designs {
  background: var(--editorial-band);
}

.features,
.pricing,
.demos {
  background: var(--editorial-bg);
}

.how__steps {
  gap: 14px;
}

.how-step {
  padding: 34px 30px 32px;
  background: rgba(255,250,245,0.76);
  border-color: var(--editorial-line);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(44,36,32,0.04);
}

.how-step__arrow {
  display: none;
}

.how-step__num {
  color: rgba(139,69,89,0.18);
  font-size: 62px;
}

.how-step__body h3,
.feat-item h4 {
  color: var(--wine);
}

.phone-share {
  padding: 118px 0;
  background:
    linear-gradient(90deg, rgba(251,246,240,1) 0%, rgba(251,246,240,0.92) 46%, rgba(242,235,227,1) 100%);
}

.phone-share__inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 72px;
}

.phone-share__list li {
  background: rgba(255,250,245,0.72);
  border: 1px solid var(--editorial-line);
  border-radius: 14px;
}

.phone-frame--xl {
  box-shadow: 0 34px 90px rgba(44,36,32,0.24), inset 0 0 0 1px rgba(255,255,255,0.08);
}

.phone-float {
  border-color: var(--editorial-line);
  box-shadow: 0 14px 38px rgba(44,36,32,0.09);
}

.features__grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 74px;
}

.features__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feat-item {
  padding: 24px;
  border: 1px solid var(--editorial-line);
  border-radius: 18px;
  background: rgba(255,250,245,0.68);
}

.feat-item:last-child {
  border-bottom: 1px solid var(--editorial-line);
}

.feat-item__icon {
  border-radius: 50%;
  background: #f3e9df;
  color: var(--wine);
}

.demos .section-header {
  margin-bottom: 26px;
}

.demo-featured {
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1fr);
  gap: 82px;
  padding: 28px 0 0;
  margin-bottom: 0;
}

.demo-featured__text {
  align-self: center;
}

.demo-featured__text h3 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  color: var(--wine);
}

.demo-featured__text p {
  max-width: 470px;
  font-size: 16px;
  line-height: 1.75;
}

.demo-phone__frame {
  background: #211b18;
  box-shadow: var(--editorial-shadow);
}

.demo-phone__screen {
  width: min(300px, 68vw);
}

.designs {
  padding-top: 116px;
}

.designs-filter {
  max-width: 880px;
  margin-bottom: 54px;
}

.designs-filter button {
  background: rgba(255,250,245,0.54);
  border-color: rgba(139,69,89,0.16);
  padding: 10px 20px;
}

.designs-grid {
  gap: 30px;
}

.theme-card {
  border-radius: 28px;
  background: #fffbf7;
  box-shadow: 0 20px 58px rgba(44,36,32,0.08);
}

.theme-card__media {
  min-height: 370px;
}

.theme-card__body {
  padding: 34px 32px 32px;
}

.theme-card__body p {
  color: rgba(92,56,62,0.72);
}

.theme-card__media--strait {
  background:
    radial-gradient(circle at 24% 24%, rgba(255,255,255,0.72) 0 34px, transparent 36px),
    linear-gradient(180deg, #f6efe0 0 48%, #2d3440 49% 54%, #a88b57 55% 100%);
}

.theme-card__media--olive {
  background:
    radial-gradient(circle at 33% 28%, rgba(94,112,70,0.32) 0 42px, transparent 44px),
    radial-gradient(circle at 70% 35%, rgba(94,112,70,0.22) 0 54px, transparent 56px),
    repeating-linear-gradient(108deg, transparent 0 18px, rgba(94,112,70,0.15) 19px 21px),
    #eef1e2;
}

.theme-card__media--palace-garden {
  background:
    linear-gradient(90deg, transparent 12%, rgba(148,114,59,0.26) 13% 15%, transparent 16% 84%, rgba(148,114,59,0.26) 85% 87%, transparent 88%),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(148,114,59,0.16) 33px 35px),
    #f2eadc;
}

.theme-card__media--dusk {
  background:
    radial-gradient(circle at 50% 28%, rgba(230,166,126,0.72) 0 52px, transparent 54px),
    radial-gradient(circle at 22% 24%, #fff0d6 0 3px, transparent 4px),
    linear-gradient(180deg, #111a32 0 54%, #d78f83 55% 62%, #f1e4da 63% 100%);
}

.theme-card__media--memoir {
  background:
    linear-gradient(90deg, rgba(63,57,53,0.16) 0 8%, transparent 9% 30%, rgba(148,100,87,0.18) 31% 68%, transparent 69% 90%, rgba(63,57,53,0.16) 91%),
    repeating-linear-gradient(180deg, transparent 0 78px, rgba(148,100,87,0.18) 79px 82px),
    #eee7df;
}

.theme-card__media--strait {
  background:
    linear-gradient(180deg, rgba(28, 30, 35, 0.02), rgba(28, 30, 35, 0.18)),
    url("../images/webp/bogaz-serenadi-hero.webp") center / cover no-repeat;
}

.theme-card__media--olive {
  background:
    linear-gradient(180deg, rgba(238, 241, 226, 0.02), rgba(58, 75, 45, 0.16)),
    url("../images/webp/zeytinlik-ruyasi-hero.webp") center / cover no-repeat;
}

.theme-card__media--palace-garden {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.02), rgba(80, 58, 34, 0.16)),
    url("../images/webp/saray-bahcesi-hero.webp") center / cover no-repeat;
}

.theme-card__media--dusk {
  background:
    linear-gradient(180deg, rgba(17, 26, 50, 0.02), rgba(17, 26, 50, 0.24)),
    url("../images/webp/gun-batimi-daveti-hero.webp") center / cover no-repeat;
}

.theme-card__media--memoir {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.02), rgba(64, 52, 48, 0.14)),
    url("../images/webp/hatira-defteri-hero.webp") center / cover no-repeat;
}

.theme-card__motif {
  position: absolute;
  inset: 42px 34px;
  border: 1px solid rgba(255,255,255,0.44);
  border-radius: 22px;
  background: rgba(255,255,255,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 24px;
}

.motif-text {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2px;
  text-align: center;
  color: #fffaf3;
  text-shadow: 0 2px 14px rgba(0,0,0,0.58);
}

.motif-text span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.motif-text strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.motif-text small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.theme-card__motif::before,
.theme-card__motif::after {
  display: none;
}

/* Cards with real phone images — no CSS phone chrome needed */
.theme-card__media--maison .theme-card__motif,
.theme-card__media--royal .theme-card__motif,
.theme-card__media--finca .theme-card__motif,
.theme-card__media--pera .theme-card__motif,
.theme-card__media--rosa .theme-card__motif,
.theme-card__media--akdeniz .theme-card__motif,
.theme-card__media--majestic .theme-card__motif,
.theme-card__media--deniz .theme-card__motif,
.theme-card__media--selva .theme-card__motif {
  --motif-border: none;
  --motif-notch: linear-gradient(transparent, transparent);
}

.motif-phone-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  height: 90%;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px 18px 0 0;
  display: block;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.22);
}

.theme-card__media--strait .theme-card__motif {
  --card-phone-bg:
    linear-gradient(180deg, #fff8e9 0 43%, #2d3440 44% 52%, #f2eee6 53%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(168,139,87,0.2) 19px 21px);
}

.theme-card__media--olive .theme-card__motif {
  --card-phone-bg:
    radial-gradient(circle at 36% 38%, rgba(94,112,70,0.28) 0 22px, transparent 23px),
    radial-gradient(circle at 66% 44%, rgba(94,112,70,0.2) 0 28px, transparent 29px),
    repeating-linear-gradient(108deg, transparent 0 16px, rgba(94,112,70,0.16) 17px 19px),
    #fbfbef;
}

.theme-card__media--palace-garden .theme-card__motif {
  --card-phone-bg:
    linear-gradient(90deg, transparent 14%, rgba(148,114,59,0.28) 15% 17%, transparent 18% 82%, rgba(148,114,59,0.28) 83% 85%, transparent 86%),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(148,114,59,0.14) 21px 23px),
    #fff8ea;
}

.theme-card__media--dusk .theme-card__motif {
  --card-phone-bg:
    radial-gradient(circle at 50% 30%, rgba(230,166,126,0.8) 0 34px, transparent 36px),
    radial-gradient(circle at 24% 24%, #fff0d6 0 3px, transparent 4px),
    linear-gradient(180deg, #111a32 0 54%, #d78f83 55% 62%, #f1e4da 63% 100%);
}

.theme-card__media--memoir .theme-card__motif {
  --card-phone-bg:
    linear-gradient(90deg, rgba(63,57,53,0.16) 0 16%, transparent 17% 31%, rgba(148,100,87,0.18) 32% 66%, transparent 67% 81%, rgba(63,57,53,0.16) 82%),
    repeating-linear-gradient(180deg, transparent 0 46px, rgba(148,100,87,0.14) 47px 50px),
    #fff9f0;
}

.theme-card__media--pera {
  background:
    linear-gradient(180deg, rgba(42,30,20,0.04), rgba(42,30,20,0.22)),
    url("../images/webp/pera-perdesi-hero.webp") center / cover no-repeat;
}

.theme-card__media--rosa {
  background:
    linear-gradient(180deg, rgba(255,246,246,0.02), rgba(110,52,68,0.14)),
    url("../images/webp/rosa-sampanya-hero.webp") center / cover no-repeat;
}

.theme-card__media--akdeniz {
  background:
    linear-gradient(180deg, rgba(250,246,226,0.02), rgba(43,89,78,0.16)),
    url("../images/webp/akdeniz-kapisi-hero.webp") center / cover no-repeat;
}

.theme-card__media--majestic {
  background:
    linear-gradient(180deg, rgba(13,18,30,0.04), rgba(13,18,30,0.26)),
    url("../images/webp/majestic-gece-hero.webp") center / cover no-repeat;
}

.theme-card__media--deniz {
  background:
    linear-gradient(180deg, rgba(244,249,248,0.02), rgba(39,86,104,0.16)),
    url("../images/webp/deniz-ruzgari-hero.webp") center / cover no-repeat;
}

.theme-card__media--selva {
  background:
    linear-gradient(180deg, rgba(249,241,221,0.02), rgba(29,92,75,0.18)),
    url("../images/webp/tropik-selva-hero.webp") center / cover no-repeat;
}

.theme-card__media--pera .theme-card__motif {
  --card-phone-bg:
    url("../images/webp/pera-perdesi-phone.webp") top center / cover no-repeat,
    linear-gradient(180deg, #2a1e14, #fff5e7);
}

.theme-card__media--rosa .theme-card__motif {
  --card-phone-bg:
    url("../images/webp/rosa-sampanya-phone.webp") top center / cover no-repeat,
    linear-gradient(180deg, #fff0f2, #fff4f3);
}

.theme-card__media--akdeniz .theme-card__motif {
  --card-phone-bg:
    url("../images/webp/akdeniz-kapisi-phone.webp") top center / cover no-repeat,
    linear-gradient(180deg, #fff8df, #e5efdf);
}

.theme-card__media--majestic .theme-card__motif {
  --card-phone-bg:
    url("../images/webp/majestic-gece-phone.webp") top center / cover no-repeat,
    linear-gradient(180deg, #111a2f, #efe0c7);
}

.theme-card__media--deniz .theme-card__motif {
  --card-phone-bg:
    url("../images/webp/deniz-ruzgari-phone.webp") top center / cover no-repeat,
    linear-gradient(180deg, #f4fbfb, #f4eee4);
}

.theme-card__media--selva .theme-card__motif {
  --card-phone-bg:
    url("../images/webp/tropik-selva-phone.webp") top center / cover no-repeat,
    linear-gradient(180deg, #f8ead0, #d5e0c2);
}

.theme-card__media--olive .theme-card__motif::after {
  background:
    linear-gradient(rgba(255,255,255,0.48), rgba(255,255,255,0.48)),
    url("../images/webp/olive-branch-watercolor.webp") center / cover no-repeat;
}

.theme-card__media--palace-garden .theme-card__motif::after {
  background:
    linear-gradient(rgba(255,250,242,0.54), rgba(255,250,242,0.54)),
    url("../images/webp/gold-ornament-frame.webp") center / cover no-repeat;
}

.theme-card__media--dusk .theme-card__motif::after {
  background:
    linear-gradient(rgba(17,26,50,0.1), rgba(17,26,50,0.1)),
    url("../images/webp/dusk-string-lights.webp") center / cover no-repeat;
}

.theme-card__media--pera .theme-card__motif::after { background: rgba(255,250,242,0.22); }
.theme-card__media--rosa .theme-card__motif::after { background: rgba(255,246,246,0.22); }
.theme-card__media--akdeniz .theme-card__motif::after { background: rgba(255,248,226,0.22); }
.theme-card__media--majestic .theme-card__motif::after { background: rgba(24,24,32,0.18); }
.theme-card__media--deniz .theme-card__motif::after { background: rgba(244,249,248,0.22); }
.theme-card__media--selva .theme-card__motif::after { background: rgba(249,241,221,0.22); }

.pricing__grid {
  gap: 24px;
}

.price-card {
  border-color: var(--editorial-line);
  background: rgba(255,250,245,0.76);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 12px 40px rgba(44,36,32,0.04);
}

.price-card--featured {
  background: #211815;
  border-color: #211815;
  box-shadow: 0 28px 80px rgba(33,24,21,0.24);
}

.reviews__body {
  grid-template-columns: 300px minmax(0, 1fr);
}

.reviews__summary,
.review-card {
  background: rgba(255,250,245,0.76);
  border-color: var(--editorial-line);
  box-shadow: 0 12px 38px rgba(44,36,32,0.04);
}

.review-card {
  min-height: 100%;
}

.early-access {
  background:
    radial-gradient(ellipse at 22% 0%, rgba(212,165,116,0.18), transparent 42%),
    linear-gradient(135deg, #211815 0%, #2c2420 52%, #4d2532 100%);
  padding: 100px 0;
}

.early-form__row input {
  min-width: 0;
}

.footer {
  background: #17110f;
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: clamp(44px, 7vw, 68px);
  }

  .phone-share__inner,
  .features__grid,
  .demo-featured {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features__intro {
    position: static;
  }

  .features__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-featured__text {
    text-align: center;
  }

  .demo-featured__text p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 116px;
    min-height: auto;
  }

  .hero__head {
    padding-inline: 20px;
  }

  .hero__title {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero__sub {
    font-size: 15px;
  }

  .photo-ticker {
    padding: 34px 0 18px;
  }

  .photo-ticker__track {
    gap: 14px;
    animation-duration: 62s;
  }

  .ticker-phone {
    width: 172px;
  }

  .tick-img--poster {
    width: 194px;
  }

  .tick-img--art {
    width: 214px;
    padding: 12px;
    height: 300px;
  }

  .hero__foot {
    padding-bottom: 54px;
  }

  .statement {
    padding: 58px 0;
  }

  .statement__inner {
    gap: 18px;
  }

  .statement__text {
    font-size: clamp(24px, 8vw, 34px);
  }

  .how,
  .features,
  .phone-share,
  .pricing,
  .reviews,
  .demos,
  .designs,
  .early-access {
    padding: 76px 0;
  }

  .how__steps {
    flex-direction: column;
  }

  .how-step {
    width: 100%;
  }

  .phone-share__device {
    display: none;
  }

  .phone-float {
    display: none;
  }

  .features__list {
    grid-template-columns: 1fr;
  }

  .demo-featured {
    gap: 34px;
  }

  .demo-featured__phone {
    order: -1;
  }

  .theme-card__media {
    min-height: 340px;
  }

  .reviews__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 20px;
  }

  .hero__head {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding-inline: 18px;
  }

  .hero__title {
    max-width: calc(100vw - 36px);
    margin-inline: auto;
    font-size: clamp(38px, 10.8vw, 44px);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .hero__eyebrow {
    max-width: calc(100vw - 46px);
    margin-inline: auto;
    font-size: 9px;
    letter-spacing: 0.12em;
    line-height: 1.55;
  }

  .hero__mobile-break {
    display: block;
  }

  .hero__sub {
    width: min(100%, 318px);
    max-width: calc(100vw - 56px);
    margin-inline: auto;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    flex-direction: column;
    gap: 10px;
  }

  .phone-share__device {
    transform: scale(0.78);
    margin-bottom: -96px;
  }

  .phone-frame--xl {
    width: 284px;
    height: 560px;
  }

  .demo-phone__screen {
    width: min(270px, 78vw);
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .early-form__row {
    flex-direction: column;
  }
}

.photo-ticker {
  padding-top: 44px;
}

.photo-ticker__track {
  gap: 18px;
}

.tick-img,
.tick-img--poster,
.tick-img--art,
.tick-img--screen {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: #f7efe6;
  object-fit: cover;
  object-position: top center;
  box-shadow:
    0 26px 52px rgba(44,36,32,0.16),
    0 1px 0 rgba(255,255,255,0.76) inset;
  filter: none;
}

.theme-card__media--maison {
  background:
    linear-gradient(180deg, rgba(255,250,242,0.05), rgba(82,52,44,0.18)),
    url("../images/webp/template-square.webp") center / cover no-repeat;
}

.theme-card__media--royal {
  background:
    linear-gradient(180deg, rgba(245,237,224,0.02), rgba(80,58,34,0.16)),
    url("../images/webp/kraliyet-hero.webp") center / cover no-repeat;
}

.theme-card__media--finca {
  background:
    linear-gradient(180deg, rgba(244,239,227,0.02), rgba(58,75,45,0.16)),
    url("../images/webp/kir-bahcesi-hero.webp") center / cover no-repeat;
}

.theme-card__media--maison .theme-card__motif {
  --card-phone-bg:
    url("../images/webp/rosa-sampanya-phone.webp") top center / cover no-repeat,
    linear-gradient(180deg, #fff9f0, #eee2d7);
}

.theme-card__media--royal .theme-card__motif {
  --card-phone-bg:
    url("../images/webp/kraliyet-phone.webp") top center / cover no-repeat,
    linear-gradient(180deg, #fff8ec, #e8dccd);
}

.theme-card__media--finca .theme-card__motif {
  --card-phone-bg:
    url("../images/webp/kir-bahcesi-phone.webp") top center / cover no-repeat,
    linear-gradient(180deg, #fbf8ec, #dfe8d8);
}

.theme-card__media--maison .theme-card__motif::after {
  background:
    linear-gradient(rgba(255,250,242,0.55), rgba(255,250,242,0.55)),
    url("../images/webp/gold-ornament-frame.webp") center / cover no-repeat;
}

.theme-card__media--royal .theme-card__motif::after {
  background:
    linear-gradient(rgba(255,250,242,0.55), rgba(255,250,242,0.55)),
    url("../images/webp/handmade-paper-texture.webp") center / cover no-repeat;
}

.theme-card__media--finca .theme-card__motif::after {
  background:
    linear-gradient(rgba(255,250,242,0.52), rgba(255,250,242,0.52)),
    url("../images/webp/olive-branch-watercolor.webp") center / cover no-repeat;
}

.demo-phone__preview img {
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 768px) {
  .photo-ticker {
    padding-top: 34px;
  }

  .photo-ticker__track {
    gap: 14px;
  }

  .tick-img,
  .tick-img--poster,
  .tick-img--art,
  .tick-img--screen {
    width: 100%;
    height: 100%;
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .ticker-phone {
    width: 164px;
  }

  .tick-img,
  .tick-img--poster,
  .tick-img--art,
  .tick-img--screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .photo-ticker__track {
    animation: none !important;
    transform: none !important;
  }
  .tick-img,
  .ticker-phone {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════
   REDESIGN ADDITIONS — 2026-05
   ═══════════════════════════════════════════ */

/* ── Hero trust badge ── */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 7px 18px;
  box-shadow: 0 2px 12px rgba(44,36,32,0.07);
}
.trust-badge__stars {
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 1px;
}
.trust-badge__text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}

/* ── Typewriter ── */
#heroTypewriter {
  transition: opacity 0.35s ease;
  display: inline;
}
#heroTypewriter.tw-fade { opacity: 0; }

/* ── How-it-works stagger ── */
.how-step[data-step="2"] { transition-delay: 120ms; }
.how-step[data-step="3"] { transition-delay: 240ms; }

/* ── Real Couples section ── */
.real-couples {
  padding: 100px 0;
  background: var(--cream-dark);
}
.couples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.couple-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.couple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(44,36,32,0.13);
}
.couple-card__phone {
  overflow: hidden;
  background: var(--cream-mid);
}
.couple-card__phone img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}
.couple-card:hover .couple-card__phone img { transform: scale(1.04); }
.couple-card__info { padding: 24px; }
.couple-card__template {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.couple-card__names {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.couple-card__desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.couple-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.couple-card__meta > span { font-size: 11px; color: var(--text-soft); }
.couple-card__plan {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream-dark);
  color: var(--text-mid);
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
}

/* ── Filter active state ── */
.designs-filter button { cursor: pointer; }
.designs-filter button.filter-active {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-color: var(--dark) !important;
}
.theme-card.filtered-out { display: none; }

/* ── Pricing urgency + trust ── */
.price-card__urgency {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  background: rgba(212,165,116,0.14);
  border: 1px solid rgba(212,165,116,0.28);
  color: var(--gold-dark);
}
.price-card--featured .price-card__urgency {
  background: rgba(212,165,116,0.2);
  border-color: rgba(212,165,116,0.4);
  color: var(--gold);
}
.price-card__urgency::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2.5s ease-in-out infinite;
}
.price-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.price-trust-pill {
  font-size: 11px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 4px;
}
.price-card--featured .price-trust-pill { color: rgba(255,255,255,0.4); }

/* ── Reviews carousel ── */
.reviews__body {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 48px;
  align-items: start;
}
.reviews__grid {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.reviews__grid::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 220px;
  scroll-snap-align: start;
}

/* ── Atelier section ── */
.atelier {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.atelier__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.atelier__text h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.atelier__text h2 em { font-style: italic; color: var(--wine); }
.atelier__text p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.atelier__team {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
}
.atelier-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.atelier-member__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
}
.atelier-member__avatar--1 { background: var(--wine); }
.atelier-member__avatar--2 { background: var(--dark); }
.atelier-member__avatar--3 { background: var(--gold-dark); }
.atelier-member strong { font-size: 12px; font-weight: 600; color: var(--text); }
.atelier-member span { font-size: 11px; color: var(--text-soft); }

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .couples-grid { grid-template-columns: 1fr 1fr; }
  .atelier__inner { grid-template-columns: 1fr; gap: 40px; }
  .atelier__team { justify-content: flex-start; }
  .reviews__body { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 768px) {
  .couples-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 82vw; }
  .atelier__team { gap: 16px; flex-wrap: wrap; justify-content: center; }
}
