:root {
  --gold: #C4A84F;
  --gold-dark: #8B7536;
  --gold-light: #D4C282;
  --gold-pale: #F5EDD6;
  --burgundy: #7B2D47;
  --burgundy-dark: #4E1F34;
  --burgundy-light: #A04060;
  --cream: #FDFAF4;
  --cream-dark: #F0E8D8;
  --text: #2C1810;
  --text-muted: #7A6355;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;
  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 12px rgba(78,31,52,0.08);
  --shadow-md: 0 8px 40px rgba(78,31,52,0.14);
  --shadow-lg: 0 24px 80px rgba(78,31,52,0.26);
  --ease: cubic-bezier(0.22,1,0.36,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --max-w: 1200px;
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

::selection { background: var(--burgundy); color: var(--gold-pale); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; position: relative; }

/* ============ CURSOR GLOW (desktop only) ============ */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 480px; height: 480px; pointer-events: none;
  background: radial-gradient(circle, rgba(196,168,79,0.14) 0%, rgba(196,168,79,0.05) 35%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1; mix-blend-mode: multiply;
  transition: opacity 0.3s; opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-glow { opacity: 1; }
}
@media (max-width: 920px) { .cursor-glow { display: none; } }

/* ============ UNIVERSAL ANIMATIONS ============ */
.anim { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.anim.visible { opacity: 1; transform: none; }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }


/* ============ TYPOGRAPHY ============ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-eyebrow--center { justify-content: center; }
.section-eyebrow--center::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 600; color: var(--burgundy-dark);
  line-height: 1.08; letter-spacing: -0.01em;
}
.section-title em { color: var(--gold-dark); font-style: italic; }
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 560px; margin-top: 20px;
  font-weight: 300; line-height: 1.85;
}

/* ============ BUTTONS ============ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 34px; border-radius: var(--radius-full);
  font-family: var(--font-sans); font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.4s var(--ease);
  white-space: nowrap; overflow: hidden; isolation: isolate;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  transition: transform 0.5s var(--ease);
}
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.btn--primary { color: var(--white); box-shadow: 0 10px 30px -8px rgba(123,45,71,0.5); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -8px rgba(123,45,71,0.6); }
.btn--primary:hover::after { transform: translateY(0); }
.btn--primary:hover { color: var(--burgundy-dark); }

.btn--ghost {
  background: transparent; color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn--ghost::before, .btn--ghost::after { display: none; }
.btn--ghost:hover { background: var(--burgundy); color: var(--cream); transform: translateY(-3px); }

.btn--gold { color: var(--burgundy-dark); box-shadow: 0 10px 30px -8px rgba(196,168,79,0.55); }
.btn--gold::before { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.btn--gold::after { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); }
.btn--gold:hover { color: var(--cream); transform: translateY(-3px); box-shadow: 0 18px 40px -8px rgba(123,45,71,0.55); }
.btn--gold:hover::after { transform: translateY(0); }

/* Shine on hover */
.btn .shine {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-25deg); transition: left 0.8s var(--ease); pointer-events: none;
}
.btn:hover .shine { left: 140%; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(253,250,244,0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 1px 0 rgba(196,168,79,0.18), 0 10px 40px -20px rgba(78,31,52,0.2);
  height: 70px;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; position: relative; }
.nav__logo img {
  width: 56px; height: 56px; object-fit: contain;
  transition: transform 0.6s var(--ease-spring);
}
.nav__logo:hover img { transform: rotate(-8deg) scale(1.08); }
.nav__logo-text {
  font-family: var(--font-serif); font-size: 1.22rem; font-weight: 600;
  color: var(--gold-dark); display: none; letter-spacing: 0.02em;
}
@media (min-width: 480px) { .nav__logo-text { display: block; } }
.nav__links { display: flex; align-items: center; gap: 40px; }
.nav__links a {
  position: relative;
  font-size: 0.76rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.3s; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav__links > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--burgundy);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--burgundy); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 768px) {
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0;
    padding: 0; max-height: 0; overflow: hidden;
    transition: max-height 0.45s var(--ease), box-shadow 0.45s;
    border-top: 1px solid transparent;
  }
  .nav__links.open { max-height: 500px; box-shadow: var(--shadow-md); border-top-color: var(--cream-dark); }
  .nav__links a { padding: 20px 28px; width: 100%; border-bottom: 1px solid var(--cream-dark); font-size: 0.9rem; }
  .nav__links .btn { margin: 20px 28px 28px; width: calc(100% - 56px); }
}
.nav__hamburger { display: none; flex-direction: column; gap: 6px; width: 32px; padding: 4px; }
.nav__hamburger span { display: block; height: 1.5px; background: var(--burgundy); border-radius: 2px; transition: all 0.4s var(--ease); transform-origin: center; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 768px) { .nav__hamburger { display: flex; } }

/* ============ HERO ============ */
#hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 60px) 0 120px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--cream);
}

/* Aurora/gradient blobs background */
.hero__aurora {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero__aurora::before, .hero__aurora::after {
  content: ''; position: absolute;
  width: 900px; height: 900px; border-radius: 50%;
  filter: blur(120px); opacity: 0.55;
}
.hero__aurora::before {
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(196,168,79,0.45), transparent 60%);
  animation: blob-1 18s ease-in-out infinite alternate;
}
.hero__aurora::after {
  bottom: -400px; left: -200px;
  background: radial-gradient(circle, rgba(123,45,71,0.32), transparent 60%);
  animation: blob-2 22s ease-in-out infinite alternate;
}
@keyframes blob-1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-80px, 60px) scale(1.15); }
}
@keyframes blob-2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px, -80px) scale(1.1); }
}

/* Grain */
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

/* Grid lines */
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(196,168,79,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,168,79,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

/* Floating ornaments */
.hero__orb {
  position: absolute; border-radius: 50%; z-index: 1;
  pointer-events: none;
}
.hero__orb--1 {
  width: 14px; height: 14px; top: 22%; left: 8%;
  background: var(--burgundy); opacity: 0.5;
  animation: float-y 6s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 10px; height: 10px; top: 68%; left: 12%;
  background: var(--gold); opacity: 0.7;
  animation: float-y 8s ease-in-out infinite alternate-reverse;
}
.hero__orb--3 {
  width: 6px; height: 6px; top: 30%; right: 14%;
  background: var(--gold-dark); opacity: 0.6;
  animation: float-y 5s ease-in-out infinite alternate;
}
.hero__orb--4 {
  width: 20px; height: 20px; top: 75%; right: 10%;
  border: 1.5px solid var(--gold); background: transparent;
  animation: float-y 7s ease-in-out infinite alternate-reverse;
}
@keyframes float-y {
  from { transform: translateY(-16px); }
  to   { transform: translateY(16px); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 2;
}
@media (max-width: 1024px) { .hero__inner { gap: 56px; padding: 0 28px; } }
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 72px; padding: 0 24px; }
  .hero__content { order: 2; }
  .hero__visual { order: 1; }
  .hero__eyebrow, .hero__actions, .hero__trust, .hero__meta { justify-content: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
}

/* Hero content */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 20px; border-radius: var(--radius-full);
  background: rgba(196,168,79,0.12);
  border: 1px solid rgba(196,168,79,0.3);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(196,168,79,0.7);
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(196,168,79,0.6); }
  80%,100% { box-shadow: 0 0 0 10px rgba(196,168,79,0); }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 600; line-height: 1.04;
  color: var(--burgundy-dark); margin-bottom: 30px;
  letter-spacing: -0.015em;
}
.hero__title .accent {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-dark) 0%, var(--gold) 45%, var(--burgundy-light) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  animation: grad-shift 8s linear infinite;
}
@keyframes grad-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__subtitle {
  font-size: 1.15rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.85;
  margin-bottom: 40px; max-width: 480px;
}

.hero__actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__actions-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-muted); font-weight: 400;
}
.hero__actions-note::before {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}

.hero__trust { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero__trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-full);
  background: rgba(253,250,244,0.6);
  border: 1px solid rgba(196,168,79,0.28);
  font-size: 0.74rem; font-weight: 500; color: var(--text-muted);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.hero__trust-badge:hover {
  transform: translateY(-3px);
  background: var(--white);
  border-color: var(--gold);
}
.hero__trust-badge::before {
  content: '✓';
  color: var(--burgundy); font-size: 0.72rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(196,168,79,0.25);
  display: flex; align-items: center; justify-content: center;
}

/* ---- HERO VISUAL: stacked cards + phone + floating polaroids ---- */
.hero__visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 560px;
}
@media (max-width: 960px) { .hero__visual { min-height: 500px; } }

/* Glow behind the stage */
.hero__visual::before {
  content: ''; position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,168,79,0.28), rgba(123,45,71,0.12) 40%, transparent 70%);
  filter: blur(20px);
  animation: breathe 6s ease-in-out infinite alternate;
}
@keyframes breathe {
  from { transform: scale(0.92); opacity: 0.7; }
  to   { transform: scale(1.08); opacity: 1; }
}

/* Decorative rotating ring */
.hero__ring {
  position: absolute;
  width: 460px; height: 460px;
  border: 1.5px dashed rgba(196,168,79,0.35);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
}
.hero__ring::before, .hero__ring::after {
  content: ''; position: absolute;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}
.hero__ring::before { top: -6px; left: 50%; transform: translateX(-50%); }
.hero__ring::after { bottom: -6px; left: 50%; transform: translateX(-50%); background: var(--burgundy); box-shadow: 0 0 20px var(--burgundy-light); }
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 960px) { .hero__ring { width: 380px; height: 380px; } }

/* The phone */
.phone-wrap { position: relative; z-index: 3; }
.phone-mockup {
  width: 300px; height: 600px;
  background: var(--white);
  border: 2px solid rgba(196,168,79,0.45);
  border-radius: 52px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 8px rgba(253,250,244,0.95),
    0 0 0 10px rgba(196,168,79,0.2),
    0 40px 90px rgba(78,31,52,0.28);
  overflow: hidden; position: relative;
  animation: phone-float 6s ease-in-out infinite alternate;
}
@keyframes phone-float {
  from { transform: translateY(-8px) rotate(-1deg); }
  to   { transform: translateY(8px) rotate(1deg); }
}
@media (max-width: 960px) {
  .phone-mockup { width: 250px; height: 500px; }
}

.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px;
  background: var(--cream-dark); border-radius: 0 0 18px 18px; z-index: 3;
}
.phone-screen {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  background: linear-gradient(175deg, var(--cream) 0%, var(--white) 100%);
}
.phone-screen__header {
  padding: 42px 20px 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border-bottom: 1px solid var(--cream-dark);
}
.phone-screen__header img { width: 32px; height: 32px; object-fit: contain; }
.phone-screen__header-text {
  font-family: var(--font-serif); font-size: 0.92rem;
  font-weight: 600; color: var(--burgundy-dark);
}
.phone-screen__body {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px; gap: 18px;
}
.phone-screen__prompt {
  font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
  color: var(--burgundy-dark); text-align: center; line-height: 1.35;
}
.qr-wrap {
  background: var(--white); border-radius: 20px; padding: 16px;
  box-shadow: 0 8px 30px rgba(78,31,52,0.14);
  border: 1px solid var(--cream-dark);
  position: relative;
}
.qr-wrap::before, .qr-wrap::after {
  content: ''; position: absolute; width: 20px; height: 20px;
  border-color: var(--gold); border-style: solid;
}
.qr-wrap::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.qr-wrap::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }
.qr-svg { width: 150px; height: 150px; display: block; }

/* QR scan line */
.qr-scan {
  position: absolute; left: 16px; right: 16px; top: 16px;
  height: 2px; background: linear-gradient(90deg, transparent, var(--burgundy), transparent);
  box-shadow: 0 0 16px var(--burgundy-light);
  animation: scan 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan {
  0%,100% { transform: translateY(0); opacity: 0.4; }
  50%     { transform: translateY(140px); opacity: 1; }
}

.phone-screen__url {
  font-size: 0.66rem; color: var(--gold-dark);
  font-weight: 500; letter-spacing: 0.04em;
}
.phone-screen__footer {
  padding: 14px 20px 22px;
  background: linear-gradient(180deg, transparent, rgba(196,168,79,0.1));
  border-top: 1px solid var(--cream-dark);
}
.phone-gallery-strip { display: flex; gap: 8px; }
.phone-gallery-thumb {
  flex: 1; aspect-ratio: 1; border-radius: 12px;
  overflow: hidden; position: relative;
}
.phone-gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: ken-burns 9s ease-in-out infinite alternate;
  will-change: transform;
}
.phone-gallery-thumb:nth-child(1) img { animation-delay: 0s; animation-duration: 9s; }
.phone-gallery-thumb:nth-child(2) img { animation-delay: -3s; animation-duration: 11s; }
.phone-gallery-thumb:nth-child(3) img { animation-delay: -6s; animation-duration: 8s; }
.phone-gallery-thumb:nth-child(4) img { animation-delay: -2s; animation-duration: 10s; }
@keyframes ken-burns {
  0%   { transform: scale(1)    translate(0,0); }
  100% { transform: scale(1.18) translate(-3%, -2%); }
}
.phone-gallery-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,0.12));
}

/* ---- Floating polaroid cards ---- */
.polaroid {
  position: absolute; z-index: 4;
  width: 130px; padding: 10px 10px 32px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 20px 50px -10px rgba(78,31,52,0.3), 0 0 0 1px rgba(196,168,79,0.2);
  transition: transform 0.6s var(--ease-spring);
}
.polaroid::after {
  content: attr(data-label);
  position: absolute; bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; font-style: italic;
  color: var(--burgundy-dark);
}
.polaroid img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; border-radius: 3px;
}
.polaroid--1 {
  top: 2%; left: -4%;
  transform: rotate(-10deg);
  animation: polaroid-1 7s ease-in-out infinite alternate;
}
.polaroid--2 {
  top: 10%; right: -8%;
  transform: rotate(8deg);
  animation: polaroid-2 8s ease-in-out infinite alternate;
}
.polaroid--3 {
  bottom: 8%; left: -10%;
  transform: rotate(-6deg);
  animation: polaroid-3 9s ease-in-out infinite alternate;
}
.polaroid--4 {
  bottom: 4%; right: -6%;
  transform: rotate(11deg);
  animation: polaroid-4 7.5s ease-in-out infinite alternate;
}
@keyframes polaroid-1 {
  from { transform: rotate(-10deg) translateY(-10px); }
  to   { transform: rotate(-6deg) translateY(10px); }
}
@keyframes polaroid-2 {
  from { transform: rotate(8deg) translateY(8px); }
  to   { transform: rotate(12deg) translateY(-12px); }
}
@keyframes polaroid-3 {
  from { transform: rotate(-6deg) translateY(0); }
  to   { transform: rotate(-10deg) translateY(-14px); }
}
@keyframes polaroid-4 {
  from { transform: rotate(11deg) translateY(-6px); }
  to   { transform: rotate(7deg) translateY(14px); }
}
@media (max-width: 1100px) {
  .polaroid { width: 110px; }
}
@media (max-width: 960px) {
  .polaroid--1 { left: 2%; top: 0%; }
  .polaroid--2 { right: 2%; top: 4%; }
  .polaroid--3 { left: 2%; bottom: 4%; }
  .polaroid--4 { right: 2%; bottom: 2%; }
}
@media (max-width: 560px) {
  .polaroid { width: 90px; padding: 7px 7px 26px; }
  .polaroid::after { font-size: 0.7rem; }
  .polaroid--1 { left: -8%; }
  .polaroid--2 { right: -8%; }
  .polaroid--3 { left: -6%; }
  .polaroid--4 { right: -6%; }
}

.hero__scroll-cue {
  position: absolute; left: 50%; bottom: 30px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); opacity: 0.7;
  z-index: 2;
}
.hero__scroll-cue-line {
  width: 1px; height: 42px; overflow: hidden;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  background-size: 100% 200%;
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { background-position: 0% 0%; }
  100% { background-position: 0% 200%; }
}

/* ============ MARQUEE ============ */
.marquee {
  position: relative;
  padding: 28px 0;
  background: var(--burgundy-dark);
  border-top: 1px solid rgba(196,168,79,0.2);
  border-bottom: 1px solid rgba(196,168,79,0.2);
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 60px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-serif); font-size: 2rem; font-style: italic;
  font-weight: 600; color: var(--gold);
  display: flex; align-items: center; gap: 60px;
  white-space: nowrap;
}
.marquee__track span::after {
  content: '✦';
  font-size: 1.2rem;
  color: var(--burgundy-light);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--burgundy-dark), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--burgundy-dark), transparent); }

/* ============ HOW IT WORKS ============ */
#how-it-works {
  position: relative;
  padding: 140px 0;
  background: var(--white);
  overflow: hidden;
}
#how-it-works::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(196,168,79,0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(123,45,71,0.06), transparent 60%);
  pointer-events: none;
}

.section-header { text-align: center; margin-bottom: 90px; position: relative; }
.section-header .section-eyebrow { margin-bottom: 22px; }
.section-header .section-subtitle { margin: 20px auto 0; }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.steps::before {
  content: ''; position: absolute; top: 78px;
  left: 14%; right: 14%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(196,168,79,0.4) 0 6px, transparent 6px 12px);
  z-index: 0;
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps::before { display: none; }
}

.step {
  position: relative;
  padding: 52px 32px 44px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
  z-index: 1;
  overflow: hidden;
}
.step::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(196,168,79,0.15), transparent 50%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -20px rgba(78,31,52,0.25);
  border-color: rgba(196,168,79,0.5);
}
.step:hover::before { opacity: 1; }

/* Icon wrapper */
.step__icon-wrap {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
}
/* Outer rotating dashed ring */
.step__icon-wrap::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(196,168,79,0.45);
  animation: rotate 24s linear infinite;
}
/* Solid subtle ring */
.step__icon-wrap::after {
  content: ''; position: absolute; inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(196,168,79,0.25);
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.9), rgba(245,237,214,0.6) 60%, rgba(212,194,130,0.35) 100%);
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,0.8),
    inset 0 -6px 18px rgba(196,168,79,0.22),
    0 12px 28px -10px rgba(123,45,71,0.22);
  transition: transform 0.6s var(--ease-spring);
}
.step:hover .step__icon-wrap::after {
  transform: scale(1.06);
}
.step__icon-svg {
  position: relative; z-index: 2;
  width: 54px; height: 54px;
  color: var(--burgundy);
  transition: transform 0.6s var(--ease-spring);
}
.step:hover .step__icon-svg {
  transform: scale(1.12) rotate(-4deg);
}
/* Tiny step badge */
.step__badge {
  position: absolute; top: 4px; right: 4px;
  z-index: 3;
  display: flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow: 0 6px 18px -4px rgba(123,45,71,0.6);
}
.step__badge::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-light);
}

.step__title {
  font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600;
  color: var(--burgundy-dark); margin-bottom: 14px;
}
.step__desc {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.85; font-weight: 300;
}

/* ============ FEATURES ============ */
#features {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#features::before {
  content: ''; position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,168,79,0.14), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
#features::after {
  content: ''; position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,45,71,0.1), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.feature {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 120px;
}
.feature:last-child { margin-bottom: 0; }
.feature--reverse .feature__content { order: 2; }
.feature--reverse .feature__visual { order: 1; }
@media (max-width: 900px) {
  .feature, .feature--reverse {
    grid-template-columns: 1fr; gap: 48px; margin-bottom: 96px;
  }
  .feature--reverse .feature__content,
  .feature--reverse .feature__visual { order: unset; }
}

.feature__num {
  font-family: var(--font-serif); font-size: 5rem;
  font-weight: 700; font-style: italic; line-height: 1;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  opacity: 0.7;
}
.feature__tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 12px;
}
.feature__tag::before {
  content: ''; width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.feature__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600; color: var(--burgundy-dark);
  margin-bottom: 22px; line-height: 1.15; letter-spacing: -0.01em;
}
.feature__title em { color: var(--gold-dark); font-style: italic; }
.feature__desc {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.9; font-weight: 300;
}

/* Feature visual container with tilt */
.feature__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(78,31,52,0.3);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  transform: perspective(1200px) rotateY(0);
  transition: transform 0.7s var(--ease);
}
.feature:not(.feature--reverse) .feature__visual {
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}
.feature--reverse .feature__visual {
  transform: perspective(1200px) rotateY(6deg) rotateX(2deg);
}
.feature__visual:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }

/* Decorative corner accents */
.feature__visual::before,
.feature__visual::after {
  content: ''; position: absolute; z-index: 3;
  width: 28px; height: 28px;
  border: 2px solid var(--gold);
}
.feature__visual::before {
  top: 14px; left: 14px;
  border-right: none; border-bottom: none;
}
.feature__visual::after {
  bottom: 14px; right: 14px;
  border-left: none; border-top: none;
}

/* --- Visual 1: Live Gallery --- */
.vis-gallery {
  background: var(--white); width: 100%; height: 100%;
  display: flex; flex-direction: column;
}
.vis-gallery__topbar {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: space-between;
}
.vis-gallery__title {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; font-style: italic;
  color: var(--burgundy-dark); letter-spacing: 0.01em;
}
.vis-gallery__title-amp {
  font-weight: 400; font-style: italic;
  color: var(--gold); margin: 0 0.15em;
  font-size: 1.25em;
}
.vis-gallery__live {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 600; color: #E53E3E; letter-spacing: 0.1em;
}
.vis-gallery__live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #E53E3E;
  animation: pulse-dot 1.4s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(229,62,62,0.6); }
  50%     { opacity: 0.4; transform: scale(0.8); box-shadow: 0 0 0 8px rgba(229,62,62,0); }
}
.vis-gallery__grid {
  flex: 1; display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 8px; padding: 14px;
}
.vis-gallery__cell {
  border-radius: 10px; overflow: hidden; position: relative;
  background: var(--cream-dark);
  animation: cell-pop 0.6s var(--ease-spring) backwards;
}
.vis-gallery__cell:nth-child(1) { animation-delay: 0.1s; }
.vis-gallery__cell:nth-child(2) { animation-delay: 0.2s; }
.vis-gallery__cell:nth-child(3) { animation-delay: 0.3s; }
.vis-gallery__cell:nth-child(4) { animation-delay: 0.4s; }
.vis-gallery__cell:nth-child(5) { animation-delay: 0.5s; }
.vis-gallery__cell:nth-child(6) { animation-delay: 0.6s; }
.vis-gallery__cell:nth-child(7) { animation-delay: 0.7s; }
@keyframes cell-pop {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.vis-gallery__cell--tall { grid-row: span 2; }
.vis-gallery__cell-inner { width: 100%; height: 100%; min-height: 56px; object-fit: cover; display: block; }
/* --- Visual 2: Google Drive --- */
.vis-drive {
  background: linear-gradient(160deg, #f8f5ef 0%, var(--white) 100%);
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 22px; padding: 30px;
  position: relative;
}
.vis-drive::before {
  content: ''; position: absolute;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,168,79,0.2), transparent 60%);
  animation: breathe 4s ease-in-out infinite alternate;
}
.vis-drive__icon { width: 90px; height: 90px; position: relative; z-index: 1; }
.vis-drive__folder {
  width: 76px; height: 58px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  border-radius: 4px 14px 14px 14px; position: relative;
  box-shadow: 0 12px 30px -6px rgba(196,168,79,0.45);
  animation: float-y 3s ease-in-out infinite alternate;
}
.vis-drive__folder::before {
  content: ''; position: absolute; top: -10px; left: 0;
  width: 32px; height: 12px; background: var(--gold);
  border-radius: 4px 4px 0 0;
}
.vis-drive__folder-inner {
  position: absolute; inset: 7px;
  background: rgba(255,255,255,0.4);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.vis-drive__info { text-align: center; position: relative; z-index: 1; }
.vis-drive__label {
  font-family: var(--font-serif); font-size: 1.05rem;
  font-weight: 600; color: var(--burgundy-dark); margin-bottom: 12px;
}
.vis-drive__bar {
  width: 180px; height: 6px;
  background: var(--cream-dark); border-radius: 99px; overflow: hidden;
  position: relative;
}
.vis-drive__bar-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  animation: bar-anim 2.8s ease-in-out infinite alternate;
  box-shadow: 0 0 10px rgba(196,168,79,0.5);
}
@keyframes bar-anim { from { width: 15%; } to { width: 92%; } }
.vis-drive__count { margin-top: 10px; font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
.vis-drive__files { display: flex; gap: 10px; margin-top: 6px; z-index: 1; position: relative; }
.vis-drive__file {
  width: 46px; height: 56px; border-radius: 7px;
  border: 1px solid var(--cream-dark); background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 6px; font-size: 0.52rem; font-weight: 600;
  color: var(--text-muted);
  position: relative; overflow: hidden;
  box-shadow: 0 6px 16px -6px rgba(78,31,52,0.2);
  animation: file-wiggle 4s ease-in-out infinite;
}
.vis-drive__file:nth-child(1) { animation-delay: 0s; }
.vis-drive__file:nth-child(2) { animation-delay: 0.3s; }
.vis-drive__file:nth-child(3) { animation-delay: 0.6s; }
.vis-drive__file:nth-child(4) { animation-delay: 0.9s; }
@keyframes file-wiggle {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-6px) rotate(-2deg); }
}
.vis-drive__file-thumb {
  position: absolute; inset: 0 0 16px 0;
  background-size: cover;
  background-position: center;
}

/* --- Visual 3: Wishes / captions --- */
.vis-wishes {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.vis-wishes__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vis-wishes__caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  padding: 28px 26px 22px;
  background: rgba(253, 250, 243, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  box-shadow:
    0 24px 50px -20px rgba(78, 31, 52, 0.4),
    0 0 0 1px rgba(196, 168, 79, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  text-align: center;
}
.vis-wishes__caption::before,
.vis-wishes__caption::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  opacity: 0.7;
}
.vis-wishes__caption::before {
  top: 6px;
  left: 6px;
  border-right: none;
  border-bottom: none;
}
.vis-wishes__caption::after {
  bottom: 6px;
  right: 6px;
  border-left: none;
  border-top: none;
}
.vis-wishes__text {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--burgundy-dark);
  margin: 0 0 14px;
  font-style: italic;
}
.vis-wishes__sign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.vis-wishes__sign-line {
  flex: 1;
  max-width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.8;
}
.vis-wishes__author {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Visual 4: ZIP --- */
.vis-zip {
  background: linear-gradient(160deg, var(--white) 0%, #f8f5ef 100%);
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px; padding: 30px;
  position: relative;
}
.vis-zip::before {
  content: ''; position: absolute;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,45,71,0.14), transparent 60%);
  animation: breathe 5s ease-in-out infinite alternate;
}
.vis-zip__archive {
  width: 100px; height: 110px; position: relative; z-index: 1;
  animation: float-y 4s ease-in-out infinite alternate;
}
.vis-zip__body {
  position: absolute; bottom: 0; left: 0; right: 0; top: 12px;
  background: linear-gradient(160deg, var(--cream-dark), #e8ddd0);
  border-radius: 4px 4px 10px 10px;
  border: 1.5px solid rgba(196,168,79,0.4);
  box-shadow: 0 12px 30px -6px rgba(78,31,52,0.18);
}
.vis-zip__stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 100%; overflow: hidden;
  border-radius: 4px 4px 10px 10px;
}
.vis-zip__stripe::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(196,168,79,0.14) 0 10px,
    transparent 10px 20px
  );
}
.vis-zip__tab {
  position: absolute; top: 0; left: 12px; right: 12px; height: 18px;
  background: var(--gold); border-radius: 4px 4px 0 0;
  box-shadow: 0 2px 8px rgba(196,168,79,0.35);
}
.vis-zip__label {
  position: absolute; bottom: 18px; left: 0; right: 0; text-align: center;
  font-family: var(--font-sans); font-size: 0.84rem; font-weight: 700;
  color: var(--burgundy-dark); letter-spacing: 0.06em;
}
.vis-zip__count {
  position: absolute; top: 24px; left: 0; right: 0; text-align: center;
  font-size: 0.6rem; font-weight: 500; color: var(--text-muted);
}
.vis-zip__dl-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--burgundy); color: var(--white);
  border-radius: var(--radius-full);
  padding: 11px 24px; font-size: 0.8rem; font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 10px 30px -8px rgba(123,45,71,0.55);
  position: relative; z-index: 1;
}
.vis-zip__dl-arrow {
  animation: dl-bounce 1.6s ease infinite;
  display: inline-block;
}
@keyframes dl-bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(4px); }
}
.vis-zip__size { font-size: 0.76rem; color: var(--text-muted); font-weight: 300; position: relative; z-index: 1; }

/* ============ PRICING ============ */
#pricing {
  padding: 140px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: ''; position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(196,168,79,0.1), transparent 60%);
  pointer-events: none;
}

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; max-width: 880px; margin: 0 auto;
}
@media (max-width: 680px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 48px 40px; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.pricing-card--free {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}
.pricing-card--free:hover {
  box-shadow: 0 30px 60px -20px rgba(78,31,52,0.2);
  transform: translateY(-8px);
}
.pricing-card--paid {
  background: linear-gradient(155deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  border: 2px solid var(--gold);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card--paid::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(196,168,79,0.28), transparent 60%);
  pointer-events: none;
  animation: breathe 5s ease-in-out infinite alternate;
}
.pricing-card--paid::after {
  content: ''; position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(196,168,79,0.12), transparent);
  background-size: 200% 100%;
  background-position: -200% 0;
  pointer-events: none;
  animation: sheen 5s ease-in-out infinite;
}
@keyframes sheen {
  0%, 100% { background-position: -200% 0; }
  50%      { background-position: 200% 0; }
}
.pricing-card--paid:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 40px 100px -20px rgba(78,31,52,0.5);
}
@media (max-width: 680px) {
  .pricing-card--paid { transform: scale(1); }
  .pricing-card--paid:hover { transform: translateY(-8px); }
}

.pricing-badge {
  display: inline-block;
  padding: 6px 18px; border-radius: var(--radius-full);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 28px; position: relative; z-index: 2;
}
.pricing-card--free .pricing-badge { background: var(--cream-dark); color: var(--text-muted); }
.pricing-card--paid .pricing-badge {
  background: var(--gold); color: var(--burgundy-dark);
  box-shadow: 0 6px 18px -4px rgba(196,168,79,0.6);
}
.pricing-price { font-family: var(--font-serif); margin-bottom: 6px; position: relative; z-index: 2; }
.pricing-price__amount { font-size: 3.8rem; font-weight: 700; line-height: 1; font-style: italic; }
.pricing-price__currency { font-size: 1rem; opacity: 0.7; margin-left: 6px; font-style: normal; }
.pricing-period { font-size: 0.84rem; opacity: 0.6; margin-bottom: 32px; font-weight: 300; position: relative; z-index: 2; }
.pricing-features { margin-bottom: 36px; position: relative; z-index: 2; }
.pricing-features li {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0; font-size: 0.93rem; font-weight: 300;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-card--paid .pricing-features li { border-bottom-color: rgba(255,255,255,0.1); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(102,187,106,0.15);
  color: #4CAF50;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; flex-shrink: 0;
}
.pricing-card--paid .pricing-features .check {
  background: rgba(196,168,79,0.25); color: var(--gold-light);
}
.pricing-features .cross {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(122,99,85,0.12);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0;
}
.pricing-features .striked { text-decoration: line-through; opacity: 0.42; }

.pricing-vat {
  text-align: center; margin-top: 44px;
  font-size: 0.8rem; color: var(--text-muted); font-weight: 300;
}

/* ============ FOOTER ============ */
footer {
  position: relative;
  background: var(--burgundy-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(196,168,79,0.2);
  overflow: hidden;
}
footer::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(196,168,79,0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(160,64,96,0.14), transparent 60%);
  pointer-events: none;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
@media (max-width: 680px) { .footer__inner { grid-template-columns: 1fr; gap: 40px; } }
.footer__brand img {
  width: 64px; height: 64px; object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 20px rgba(196,168,79,0.3));
}
.footer__brand-name {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--gold); margin-bottom: 10px; font-weight: 600;
}
.footer__brand p { font-size: 0.88rem; line-height: 1.75; font-weight: 300; max-width: 320px; }
.footer__col-title {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.footer__col { display: flex; flex-direction: column; }
.footer__col a {
  position: relative;
  display: block; font-size: 0.88rem;
  color: rgba(255,255,255,0.56);
  padding: 6px 0;
  transition: color 0.3s, transform 0.3s var(--ease); font-weight: 300;
}
.footer__col a:hover { color: var(--gold-light); transform: translateX(6px); }
.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px; text-align: center;
  font-size: 0.8rem; font-weight: 300;
}
.footer__ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 14px;
}
.footer__ornament span { border-radius: 50%; }
.footer__ornament span:nth-child(1),
.footer__ornament span:nth-child(3) {
  width: 6px; height: 6px; background: var(--gold); opacity: 0.5;
}
.footer__ornament span:nth-child(2) {
  width: 8px; height: 8px; background: var(--burgundy-light); opacity: 0.6;
}

/* ============ LEGAL PAGES ============ */
.legal {
  padding: calc(var(--nav-h) + 60px) 0 100px;
  background: var(--cream);
  min-height: 100vh;
}
.legal__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}
.legal__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 40px;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.legal__back:hover { color: var(--burgundy); transform: translateX(-4px); }
.legal__back svg { transition: transform 0.3s var(--ease); }
.legal__back:hover svg { transform: translateX(-3px); }
.legal h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--burgundy-dark);
  margin-bottom: 12px; line-height: 1.15;
}
.legal__updated {
  font-size: 0.82rem; color: var(--text-muted);
  font-weight: 300; margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-dark);
}
.legal h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--burgundy-dark);
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--burgundy-dark);
  margin: 28px 0 10px;
}
.legal p {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.9; font-weight: 300;
  margin-bottom: 16px;
}
.legal ul, .legal ol {
  margin: 0 0 20px 20px;
  list-style: disc;
}
.legal ol { list-style: decimal; }
.legal li {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.85; font-weight: 300;
  margin-bottom: 8px;
}
.legal strong { color: var(--text); font-weight: 500; }
.legal a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--gold-dark); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
