/* =========================================================================
   LOVORA FRAMES — Design System
   Editorial romance · Parisian wedding stationery · Boutique luxury
   ========================================================================= */

/* -----  TOKENS  --------------------------------------------------------- */
:root {
  /* Brand palette */
  --burgundy:        #6B0F1A;
  --burgundy-deep:   #4A0A12;
  --burgundy-wine:   #8B1A2D;
  --rose:            #C15A6B;
  --rose-soft:       #D88896;
  --blush:           #F6C7CF;
  --blush-pale:      #FBE3E7;
  --cream:           #FFF6EC;
  --cream-deep:      #F5E9D7;
  --cream-warm:      #FAEFDF;
  --gold:            #D4AF37;
  --gold-light:      #E8C77E;
  --gold-deep:       #A68628;
  --charcoal:        #2B2B2B;
  --soft-black:      #1A1410;
  --ink:             #3B2A2E;
  --white:           #FFFFFF;

  /* Hairlines */
  --line-gold:       rgba(212, 175, 55, 0.30);
  --line-burgundy:   rgba(107, 15, 26, 0.12);
  --line-ink:        rgba(43, 43, 43, 0.10);

  /* Shadows — multi-layer, soft */
  --shadow-card:     0 2px 4px rgba(74, 10, 18, 0.04),
                     0 8px 24px rgba(74, 10, 18, 0.06),
                     0 24px 56px rgba(74, 10, 18, 0.05);
  --shadow-card-lg:  0 4px 8px rgba(74, 10, 18, 0.06),
                     0 16px 40px rgba(74, 10, 18, 0.08),
                     0 40px 80px rgba(74, 10, 18, 0.07);
  --shadow-frame:    0 1px 2px rgba(0,0,0,0.10),
                     0 12px 28px rgba(74, 10, 18, 0.18),
                     0 36px 72px rgba(74, 10, 18, 0.14);

  /* Type */
  --serif:           "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:            "Manrope", "Avenir Next", "Helvetica Neue", system-ui, sans-serif;
  --script:          "Pinyon Script", "Allura", cursive;

  /* Spacing scale */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --container: 1240px;
  --container-narrow: 920px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -----  RESET  ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* -----  GLOBAL  --------------------------------------------------------- */
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  /* Subtle warm grain — generated SVG, not an external file */
  background-image:
    radial-gradient(at 20% 10%, rgba(246,199,207,0.18), transparent 50%),
    radial-gradient(at 80% 90%, rgba(212,175,55,0.06), transparent 50%);
}

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

/* -----  TYPOGRAPHY  ----------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--burgundy-deep);
  line-height: 1.12;
  letter-spacing: -0.005em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.left::before { display: none; }
.eyebrow.right::after { display: none; }

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
  color: var(--rose);
  font-size: 1.6em;
  line-height: 1;
}

.italic { font-style: italic; }
.serif { font-family: var(--serif); }

h1, .h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); font-weight: 400; }
h2, .h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 500; }
h3, .h3 { font-size: clamp(1.5rem, 2.2vw, 1.95rem); font-weight: 500; }
h4, .h4 { font-size: 1.2rem; font-weight: 600; }
h5, .h5 { font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--sans); color: var(--charcoal); }

p { color: var(--ink); }
.lead { font-size: 1.125rem; line-height: 1.75; color: var(--charcoal); }
.muted { color: rgba(43,43,43,0.65); }

/* -----  LAYOUT  --------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-5); }

section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--s-8); }
.section-head .eyebrow { margin-bottom: var(--s-4); }
.section-head h2 { margin-bottom: var(--s-4); }
.section-head .lead { color: rgba(43,43,43,0.70); }

/* Section grounds */
.bg-cream    { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-blush    { background: linear-gradient(180deg, var(--blush-pale) 0%, var(--cream) 100%); }
.bg-burgundy { background: var(--burgundy); color: var(--cream); position: relative; overflow: hidden; }
.bg-burgundy::before {
  /* film grain over burgundy */
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.30; mix-blend-mode: overlay; pointer-events: none;
}
.bg-burgundy h1, .bg-burgundy h2, .bg-burgundy h3 { color: var(--cream); }
.bg-burgundy .eyebrow { color: var(--gold-light); }
.bg-burgundy .eyebrow::before, .bg-burgundy .eyebrow::after { background: var(--gold-light); }

/* -----  BUTTONS  -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 36px;
  min-height: 56px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(107,15,26,0.22);
}
.btn-primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(107,15,26,0.30);
}

.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy-deep);
  padding: 14px 22px;
  letter-spacing: 0.12em;
}
.btn-ghost:hover { color: var(--gold-deep); }

.btn-gold {
  background: var(--gold);
  color: var(--burgundy-deep);
  box-shadow: 0 8px 22px rgba(212,175,55,0.30);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-light {
  background: var(--cream);
  color: var(--burgundy-deep);
}
.btn-light:hover { background: var(--white); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg    { min-height: 64px; padding: 22px 44px; font-size: 0.92rem; }

/* -----  ANNOUNCEMENT BAR  ----------------------------------------------- */
.announcement {
  background: var(--burgundy-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px var(--s-5);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.announcement .dot { color: var(--gold-light); margin: 0 var(--s-3); }

/* -----  HEADER / NAV  --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(255, 246, 236, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-burgundy);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-6);
  padding: 18px var(--s-5);
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--burgundy-deep);
  letter-spacing: 0.02em;
}
.brand .heart { color: var(--gold); font-size: 1.05em; line-height: 1; transform: translateY(-2px); }
.brand:hover { color: var(--burgundy); }

.nav-links {
  display: flex; align-items: center; gap: var(--s-7);
  justify-content: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: -4px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .3s var(--ease-out), left .3s var(--ease-out);
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-actions { display: flex; align-items: center; gap: var(--s-4); }
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--burgundy-deep);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.icon-btn:hover { background: var(--blush-pale); color: var(--burgundy); }
.icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--gold); color: var(--burgundy-deep);
  font-size: 0.62rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-btn { position: relative; }

.nav-cta { padding: 14px 24px; min-height: 48px; font-size: 0.78rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--burgundy-deep);
}

/* mobile nav */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  display: flex; flex-direction: column;
  padding: var(--s-5);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line-burgundy);
}
.mobile-menu nav {
  display: flex; flex-direction: column;
  margin-top: var(--s-6);
  gap: var(--s-3);
}
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--burgundy-deep);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line-burgundy);
}
.mobile-menu .btn { margin-top: var(--s-6); }

/* -----  HERO  ----------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% 10%, var(--blush-pale) 0%, transparent 60%),
    radial-gradient(700px 600px at 0% 90%, rgba(212,175,55,0.10) 0%, transparent 60%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--gold-deep);
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.5);
}
.hero h1 {
  margin: var(--s-5) 0 var(--s-5);
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}
.hero h1 .accent {
  color: var(--rose);
  font-style: italic;
}
.hero p.lead { max-width: 520px; color: rgba(43,43,43,0.78); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero-trust {
  margin-top: var(--s-5);
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  font-size: 0.78rem;
  color: rgba(43,43,43,0.65);
  letter-spacing: 0.04em;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .check { width: 14px; height: 14px; color: var(--gold-deep); }

/* Hero collage — asymmetric */
.collage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
}
.frame-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-frame);
  overflow: hidden;
  transition: transform .5s var(--ease-out);
}
.frame-card:hover { transform: translateY(-4px) scale(1.01); }
.frame-card .photo {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.frame-card .frame-mat {
  position: absolute; inset: 0;
  border: 14px solid var(--white);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.frame-card.gilt::after {
  content: ""; position: absolute; inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  pointer-events: none;
  margin: 6px;
}

.collage .c-main {
  width: 64%; height: 78%;
  top: 4%; left: 4%;
  transform: rotate(-2deg);
  z-index: 2;
}
.collage .c-side {
  width: 38%; height: 44%;
  bottom: 6%; right: 2%;
  transform: rotate(3deg);
  z-index: 3;
}
.collage .c-tag {
  width: 38%; height: 30%;
  bottom: 0; left: 18%;
  transform: rotate(-4deg);
  z-index: 1;
  background: var(--cream-warm);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: var(--s-4);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-card);
}
.collage .c-tag .gift-script {
  font-family: var(--script); color: var(--rose);
  font-size: 1.7rem; line-height: 1;
}
.collage .c-tag .gift-meta {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 8px;
}
.collage .deco-heart {
  position: absolute; right: -8px; top: -8px;
  width: 56px; height: 56px;
  color: var(--gold);
  z-index: 4;
  transform: rotate(12deg);
}
.collage .deco-sparkle {
  position: absolute; left: 0; top: 30%;
  width: 24px; height: 24px;
  color: var(--gold);
  opacity: 0.7;
}

/* -----  TRUST STRIP  ---------------------------------------------------- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line-burgundy);
  border-bottom: 1px solid var(--line-burgundy);
  padding: var(--s-6) 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-5);
  align-items: center;
  text-align: center;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: var(--s-3) var(--s-2);
  border-right: 1px solid var(--line-burgundy);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 28px; height: 28px; color: var(--gold-deep); stroke-width: 1.5; }
.trust-item span {
  font-size: 0.72rem; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 600;
}

/* -----  STEPS  ---------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line-burgundy);
  border-radius: var(--radius-lg);
  padding: var(--s-7) var(--s-5);
  text-align: center;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.step .step-num {
  font-family: var(--serif); font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s-3);
}
.step .step-icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--s-4);
  display: flex; align-items: center; justify-content: center;
  background: var(--blush-pale);
  border-radius: 50%;
  color: var(--burgundy);
}
.step h3 { font-size: 1.25rem; margin-bottom: var(--s-3); }
.step p { font-size: 0.94rem; color: rgba(43,43,43,0.75); line-height: 1.65; }

/* -----  PRODUCT SECTION  ------------------------------------------------ */
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-9);
  align-items: center;
}
.product-visual {
  position: relative;
  background: var(--blush-pale);
  border-radius: var(--radius-xl);
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.product-visual::after {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid var(--line-gold);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}

.variant-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
  margin: var(--s-5) 0;
}
.variant-card {
  background: var(--white);
  border: 1.5px solid var(--line-burgundy);
  border-radius: var(--radius-md);
  padding: var(--s-4);
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all .25s var(--ease-out);
}
.variant-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.variant-card.active { border-color: var(--burgundy); box-shadow: 0 0 0 2px rgba(107,15,26,0.10); }
.variant-card .v-name { font-family: var(--serif); font-size: 1.1rem; color: var(--burgundy-deep); }
.variant-card .v-size { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(43,43,43,0.60); margin-top: 4px; }
.variant-card .v-best {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--burgundy-deep);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  white-space: nowrap;
}

.benefit-list {
  display: grid; gap: var(--s-3);
  margin: var(--s-5) 0;
}
.benefit-list li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: 0.96rem;
  color: var(--charcoal);
}
.benefit-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--blush-pale);
  color: var(--burgundy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.price-tag {
  display: inline-flex; align-items: baseline; gap: var(--s-2);
  margin-bottom: var(--s-3);
}
.price-tag .from { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(43,43,43,0.60); }
.price-tag .price { font-family: var(--serif); font-size: 2rem; color: var(--burgundy-deep); font-weight: 500; }

/* -----  BACKGROUND STYLES SELECTOR  ------------------------------------- */
.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.style-card {
  text-align: center;
  cursor: pointer;
  transition: transform .3s var(--ease-out);
}
.style-card:hover { transform: translateY(-4px); }
.style-card .style-art {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-card);
  position: relative;
  margin-bottom: var(--s-3);
}
.style-card .style-art::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
}
.style-card .style-name {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem;
  color: var(--burgundy-deep);
}

/* Gradient art presets */
.art-night     { background: radial-gradient(circle at 30% 30%, #5B3A6E 0%, #2A1A4A 60%, #0E0826 100%); }
.art-sunset    { background: linear-gradient(160deg, #F8C28E 0%, #E08868 40%, #A23E45 100%); }
.art-paris     { background: linear-gradient(180deg, #6F5C8B 0%, #C18EA0 50%, #F2D8C2 100%); }
.art-wedding   { background: radial-gradient(circle at 50% 30%, #FFF6EC 0%, #F6C7CF 60%, #C15A6B 100%); }
.art-starry    { background: radial-gradient(circle at 60% 30%, #2A3A6E 0%, #0E1430 100%); }
.art-cozy      { background: linear-gradient(170deg, #C9956A 0%, #8B5E3C 60%, #4A2E1F 100%); }
.art-garden    { background: linear-gradient(160deg, #B8D4A8 0%, #7E9F77 50%, #43614A 100%); }
.art-minimal   { background: linear-gradient(160deg, #FBFBF8 0%, #F0EBE0 100%); }

/* -----  BEFORE/AFTER  --------------------------------------------------- */
.transform-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: center;
  gap: var(--s-3);
}
.transform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  aspect-ratio: 4 / 5;
}
.transform-card .photo {
  width: 100%; height: 100%; background-size: cover; background-position: center;
}
.transform-card .label {
  position: absolute; left: var(--s-3); bottom: var(--s-3);
  background: rgba(255,246,236,0.92);
  color: var(--burgundy-deep);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.transform-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.6rem;
}

/* -----  GIFT OCCASIONS  ------------------------------------------------- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.occasion-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--blush-pale);
  cursor: pointer;
  transition: transform .35s var(--ease-out);
}
.occasion-card:hover { transform: translateY(-4px); }
.occasion-card .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease-out);
}
.occasion-card:hover .ph { transform: scale(1.04); }
.occasion-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(74,10,18,0.65) 100%);
}
.occasion-card .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--s-5);
  color: var(--cream);
  z-index: 2;
}
.occasion-card .meta h3 { color: var(--cream); font-style: italic; font-weight: 500; }
.occasion-card .meta p { font-size: 0.86rem; color: rgba(255,246,236,0.85); margin-top: 4px; }

/* -----  REVIEWS  -------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line-burgundy);
  border-radius: var(--radius-lg);
  padding: var(--s-7) var(--s-5);
  position: relative;
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: transform .3s var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-card .quote-mark {
  font-family: var(--serif); font-style: italic;
  font-size: 4rem; line-height: 0.6;
  color: var(--gold);
  position: absolute; top: var(--s-4); right: var(--s-5);
  opacity: 0.30;
}
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-card blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; line-height: 1.55;
  color: var(--charcoal);
  font-weight: 400;
}
.review-card .author {
  font-size: 0.84rem;
  color: rgba(43,43,43,0.65);
  border-top: 1px solid var(--line-burgundy);
  padding-top: var(--s-3);
  display: flex; align-items: center; justify-content: space-between;
}
.review-card .placeholder {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--cream-warm);
  padding: 2px 8px; border-radius: var(--radius-pill);
}

/* -----  STORY SECTION  -------------------------------------------------- */
.story {
  text-align: center;
  padding-block: clamp(80px, 11vw, 140px);
}
.story .container-narrow { max-width: 760px; }
.story h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: var(--s-4) 0 var(--s-5);
  font-weight: 400;
}
.story h2 em { color: var(--rose); font-style: italic; }
.story p.lead { color: rgba(43,43,43,0.75); margin-bottom: var(--s-7); }

/* -----  FAQ ACCORDION  -------------------------------------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-burgundy);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-5) 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--burgundy-deep);
  cursor: pointer;
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--burgundy); }
.faq-q .toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blush-pale);
  color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: transform .3s var(--ease-out);
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq-a-inner {
  padding: 0 0 var(--s-5);
  font-size: 0.98rem; line-height: 1.75;
  color: rgba(43,43,43,0.78);
  max-width: 720px;
}
.faq-item.open .faq-a { max-height: 600px; }

/* -----  FINAL CTA  ------------------------------------------------------ */
.final-cta {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
}
.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  max-width: 760px; margin: var(--s-4) auto var(--s-6);
  letter-spacing: -0.01em;
}
.final-cta h2 em { color: var(--gold); font-style: italic; }
.final-cta .lead { max-width: 540px; margin: 0 auto var(--s-7); color: rgba(255,246,236,0.85); }

/* -----  FOOTER  --------------------------------------------------------- */
.site-footer {
  background: var(--burgundy-deep);
  color: rgba(255,246,236,0.80);
  padding: var(--s-9) 0 var(--s-6);
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.25; mix-blend-mode: overlay; pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,246,236,0.15);
}
.footer-brand .brand { color: var(--cream); font-size: 1.6rem; }
.footer-brand .brand .heart { color: var(--gold); }
.footer-brand p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem;
  color: var(--blush);
  margin-top: var(--s-3); max-width: 280px;
  line-height: 1.5;
}
.footer-col h5 {
  color: var(--gold-light);
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: var(--s-4);
  font-family: var(--sans);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: rgba(255,246,236,0.78);
  transition: color .2s var(--ease);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold-light); }
.newsletter-input {
  display: flex;
  background: rgba(255,246,236,0.08);
  border: 1px solid rgba(255,246,236,0.20);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-top: var(--s-3);
}
.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
}
.newsletter-input input::placeholder { color: rgba(255,246,236,0.50); }
.newsletter-input button {
  background: var(--gold);
  color: var(--burgundy-deep);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.newsletter-input button:hover { background: var(--gold-light); }
.socials { display: flex; gap: var(--s-3); margin-top: var(--s-4); }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,246,236,0.08);
  color: var(--cream);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.socials a:hover { background: var(--gold); color: var(--burgundy-deep); }

.footer-bottom {
  position: relative;
  padding-top: var(--s-5);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-4);
  font-size: 0.82rem;
  color: rgba(255,246,236,0.55);
}
.footer-bottom .legal { display: flex; gap: var(--s-5); flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: var(--gold-light); }

/* =========================================================================
   PRODUCT PAGE
   ========================================================================= */
.breadcrumb {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(43,43,43,0.55);
  padding: var(--s-5) 0;
}
.breadcrumb a:hover { color: var(--burgundy); }
.breadcrumb .sep { margin: 0 var(--s-2); color: var(--gold); }

.product-page {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-9);
  align-items: flex-start;
  padding-bottom: var(--s-9);
}

.gallery {
  position: sticky; top: 100px;
  display: grid; grid-template-columns: 80px 1fr; gap: var(--s-4);
}
.gallery .thumbs {
  display: flex; flex-direction: column; gap: var(--s-3);
}
.gallery .thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background-size: cover; background-position: center;
  transition: border-color .2s var(--ease);
}
.gallery .thumb.active { border-color: var(--burgundy); }
.gallery .main-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blush-pale);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: var(--shadow-card-lg);
}

.product-info .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream-warm);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--s-4);
}
.product-info h1 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 400;
  color: var(--burgundy-deep);
  margin-bottom: var(--s-3);
}
.product-info h1 em { color: var(--rose); font-style: italic; }
.rating-row {
  display: flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-4);
  font-size: 0.88rem; color: rgba(43,43,43,0.70);
}
.product-info .desc {
  color: rgba(43,43,43,0.78);
  font-size: 1.02rem; line-height: 1.75;
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line-burgundy);
}

.option-group { margin-bottom: var(--s-5); }
.option-label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--s-3);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--charcoal);
}
.option-label .selected-val {
  font-family: var(--serif); font-style: italic;
  font-size: 0.92rem; letter-spacing: 0;
  text-transform: none;
  color: var(--rose);
}

.style-selector {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3);
}
.style-selector .style-card { cursor: pointer; }
.style-selector .style-card .style-art {
  margin-bottom: 6px;
  border-width: 2px;
  transition: border-color .2s var(--ease);
}
.style-selector .style-card.active .style-art {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 2px rgba(107,15,26,0.10);
}
.style-selector .style-name { font-size: 0.78rem; }

.upload-field {
  border: 2px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: var(--s-6) var(--s-5);
  background: var(--cream-warm);
  text-align: center;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.upload-field:hover { background: var(--blush-pale); border-color: var(--burgundy); }
.upload-field svg {
  width: 36px; height: 36px;
  color: var(--burgundy);
  margin: 0 auto var(--s-3);
}
.upload-field .upload-title {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--burgundy-deep);
}
.upload-field .upload-hint {
  font-size: 0.82rem; color: rgba(43,43,43,0.60);
  margin-top: 4px;
}

.text-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--line-burgundy);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.98rem;
  color: var(--charcoal);
  transition: border-color .2s var(--ease);
}
.text-input:focus {
  outline: none;
  border-color: var(--gold);
}
.text-input::placeholder { color: rgba(43,43,43,0.40); }

textarea.text-input { min-height: 90px; resize: vertical; font-family: var(--sans); }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }

.addons { display: grid; gap: var(--s-3); }
.addon {
  display: flex; align-items: center; gap: var(--s-4);
  background: var(--white);
  border: 1.5px solid var(--line-burgundy);
  border-radius: var(--radius-md);
  padding: var(--s-4);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.addon:hover { border-color: var(--gold); }
.addon input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--burgundy);
  cursor: pointer;
}
.addon .addon-body { flex: 1; }
.addon .addon-title { font-family: var(--serif); font-size: 1.05rem; color: var(--burgundy-deep); }
.addon .addon-desc { font-size: 0.84rem; color: rgba(43,43,43,0.65); margin-top: 2px; }
.addon .addon-price {
  font-family: var(--serif); font-weight: 500;
  color: var(--gold-deep);
  font-size: 1rem;
}

.cta-block {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-burgundy);
}
.cta-block .total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--s-4);
}
.cta-block .total-row .label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(43,43,43,0.60); }
.cta-block .total-row .price {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 500;
  color: var(--burgundy-deep);
}
.cta-block .micro {
  text-align: center;
  margin-top: var(--s-3);
  font-size: 0.82rem; font-style: italic;
  color: rgba(43,43,43,0.60);
}

/* Product detail tabs */
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--line-burgundy);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
}
.detail-card h3 {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: var(--s-3);
}
.detail-card ul { display: grid; gap: 8px; }
.detail-card ul li { display: flex; gap: 10px; font-size: 0.94rem; color: rgba(43,43,43,0.78); }
.detail-card ul li::before { content: "✦"; color: var(--gold); flex-shrink: 0; }
.detail-card p { font-size: 0.95rem; color: rgba(43,43,43,0.78); line-height: 1.7; }

/* =========================================================================
   GENERIC PAGE TEMPLATE (policies, contact, track-order, how it works...)
   ========================================================================= */
.page-hero {
  text-align: center;
  padding: clamp(80px, 11vw, 140px) 0 clamp(48px, 6vw, 80px);
  background: linear-gradient(180deg, var(--blush-pale) 0%, var(--cream) 100%);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: var(--s-4);
}
.page-hero h1 em { color: var(--rose); font-style: italic; }
.page-hero .lead { max-width: 620px; margin: 0 auto; color: rgba(43,43,43,0.70); }

.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--charcoal);
}
.prose h2 {
  font-size: 1.8rem;
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
  color: var(--burgundy-deep);
  font-weight: 500;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.25rem;
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
  color: var(--burgundy-deep);
}
.prose p { margin-bottom: var(--s-4); }
.prose ul, .prose ol { padding-left: var(--s-5); margin-bottom: var(--s-4); }
.prose ul li { list-style: none; position: relative; padding-left: var(--s-4); margin-bottom: 8px; }
.prose ul li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.9em;
}
.prose ol { padding-left: 0; counter-reset: prose-ol; }
.prose ol li {
  counter-increment: prose-ol;
  list-style: none;
  position: relative;
  padding-left: var(--s-6);
  margin-bottom: 10px;
}
.prose ol li::before {
  content: counter(prose-ol);
  position: absolute; left: 0; top: 0;
  font-family: var(--serif); font-style: italic;
  color: var(--gold-deep);
  font-size: 1rem;
}
.prose strong { color: var(--burgundy-deep); font-weight: 600; }
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding-left: var(--s-5);
  margin: var(--s-5) 0;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--burgundy-deep);
}
.prose hr {
  border: none;
  height: 1px;
  background: var(--line-gold);
  margin: var(--s-6) 0;
}
.prose .placeholder-block {
  background: var(--cream-warm);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: var(--s-4) var(--s-5);
  margin: var(--s-4) 0;
  font-size: 0.92rem;
  color: var(--gold-deep);
}
.prose .placeholder-block strong { color: var(--gold-deep); }

/* CONTACT FORM */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: var(--s-9);
  align-items: start;
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--line-burgundy);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
}
.contact-info h3 { font-size: 1.4rem; font-style: italic; margin-bottom: var(--s-4); }
.contact-info .info-block { margin-bottom: var(--s-5); }
.contact-info .info-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(43,43,43,0.55);
  margin-bottom: 4px;
}
.contact-info .info-value {
  font-family: var(--serif);
  font-size: 1.1rem; color: var(--burgundy-deep);
}

.form { display: grid; gap: var(--s-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }

/* TRACK ORDER */
.track-form {
  background: var(--white);
  border: 1px solid var(--line-burgundy);
  border-radius: var(--radius-xl);
  padding: var(--s-8);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.track-form .form-row { grid-template-columns: 1fr; }
.track-form .helper {
  text-align: center; font-size: 0.86rem;
  color: rgba(43,43,43,0.60);
  margin-top: var(--s-3);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .collage { aspect-ratio: 1 / 1; max-width: 520px; margin: 0 auto; }
  .product-feature { grid-template-columns: 1fr; gap: var(--s-7); }
  .product-page { grid-template-columns: 1fr; }
  .gallery { position: static; grid-template-columns: 1fr; }
  .gallery .thumbs { flex-direction: row; order: 2; }
  .gallery .thumb { width: 70px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .style-grid { grid-template-columns: repeat(3, 1fr); }
  .style-selector { grid-template-columns: repeat(4, 1fr); }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .transform-row {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .transform-arrow { transform: rotate(90deg); justify-self: center; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line-burgundy); padding-bottom: var(--s-4); }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { grid-template-columns: 1fr auto auto; gap: var(--s-3); padding: 14px var(--s-4); }
  .container, .container-narrow { padding: 0 var(--s-4); }
  section { padding: 56px 0; }
  .steps { grid-template-columns: 1fr; gap: var(--s-3); }
  .style-grid { grid-template-columns: repeat(2, 1fr); }
  .style-selector { grid-template-columns: repeat(2, 1fr); }
  .occasion-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .product-visual { aspect-ratio: 4 / 5; }
  .input-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .nav-actions .nav-cta { display: none; }
}

/* Reveal-on-load polish */
.reveal { opacity: 0; transform: translateY(14px); animation: reveal .9s var(--ease-out) forwards; }
.reveal.d-1 { animation-delay: 0.05s; }
.reveal.d-2 { animation-delay: 0.15s; }
.reveal.d-3 { animation-delay: 0.25s; }
.reveal.d-4 { animation-delay: 0.35s; }
.reveal.d-5 { animation-delay: 0.45s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
