/* ============================================================
   MARITARE — Landing v4  ·  "Atelier Edition"
   Same brand (Fraunces / Instrument Sans · cream·burgundy·sage·terracotta)
   Brand-new editorial structure. Desktop-first, 1440 canvas.
   ============================================================ */

:root {
  /* — Brand palette (unchanged) — */
  --bg-cream:         #F5EFE6;
  --bg-ivory:         #FAF6F1;
  --paper:            #FFFDF9;
  --frame-tan:        #D4C5A8;
  --primary-burgundy: #7C2D2D;
  --burgundy-deep:    #5C1F1F;
  --accent-sage:      #7C7E5E;
  --sage-pill:        #C8CAB0;
  --accent-terracotta:#B66B4D;
  --tint-peach:       #EAD3C2;
  --text-charcoal:    #1A1A1A;
  --text-muted:       #5C5852;
  --border-beige:     #E8DFD0;
  --hairline:         rgba(26,26,26,0.12);
  --hairline-soft:    rgba(26,26,26,0.08);

  /* tweakable accent (default burgundy) */
  --accent: var(--primary-burgundy);
  --accent-deep: var(--burgundy-deep);
  --radius: 22px;

  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body:    "Instrument Sans", "Söhne", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-cream);
  color: var(--text-charcoal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.frame { width: 1440px; margin: 0 auto; background: var(--bg-cream); position: relative; overflow: clip; }

/* ── Type utilities ───────────────────────────── */
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow .e-dash { width: 30px; height: 1px; background: currentColor; opacity: .55; }
.eyebrow .e-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-terracotta); }

.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sage-pill); color: #2E3325;
  padding: 8px 16px; border-radius: 999px;
  font-family: var(--body); font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase; font-weight: 600;
}
.chip .c-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-sage); }

em.it { font-style: italic; font-weight: 500; color: var(--accent); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-weight: 600;
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; border: 1px solid transparent;
  border-radius: 999px; white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-primary {
  background: var(--accent); color: var(--bg-cream);
  padding: 0 10px 0 26px; height: 58px;
  box-shadow: 0 14px 30px -14px rgba(60,22,22,0.5);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 18px 38px -16px rgba(60,22,22,0.55); }
.btn-primary .b-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .35s ease;
}
.btn-primary:hover .b-mark { background: rgba(255,255,255,0.26); transform: rotate(28deg); }
.btn-primary .b-mark .flower-mark { width: 20px; height: 20px;
  --mark-petal: var(--tint-peach); --mark-inner:#D4906F; --mark-core: var(--bg-cream); --mark-stamen: var(--accent-terracotta); }

.btn-ghost {
  color: var(--text-charcoal); border-color: rgba(26,26,26,0.22);
  padding: 0 12px 0 24px; height: 58px; background: transparent;
}
.btn-ghost:hover { border-color: var(--text-charcoal); }
.btn-ghost .arrow-c {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(26,26,26,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-ghost:hover .arrow-c { background: var(--text-charcoal); color: var(--bg-cream); border-color: var(--text-charcoal); transform: translate(2px,-2px); }

.textlink {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; color: var(--text-charcoal);
  text-decoration: none; cursor: pointer; transition: color .2s ease;
}
.textlink .arrow-c {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(26,26,26,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.textlink:hover { color: var(--accent); }
.textlink:hover .arrow-c { background: var(--accent); color: var(--bg-cream); border-color: var(--accent); transform: translate(2px,-2px); }

/* ── Flower mark ──────────────────────────────── */
.flower-mark { display: inline-block; line-height: 0; flex-shrink: 0; }
.flower-mark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.flower-mark .fm-petal    { fill: var(--mark-petal, var(--accent-terracotta)); transition: fill .35s ease; }
.flower-mark .fm-petal-in { fill: var(--mark-inner, #D4906F); transition: fill .35s ease; }
.flower-mark .fm-core     { fill: var(--mark-core,  var(--primary-burgundy)); transition: fill .35s ease; }
.flower-mark .fm-stamen   { fill: var(--mark-stamen, var(--tint-peach)); transition: fill .35s ease; }

/* outline ornament flower */
.orn svg { width: 100%; height: 100%; display: block; overflow: visible; }
.orn .or-petal { fill: none; stroke: var(--accent-sage); stroke-width: 1.4; stroke-linejoin: round; }
.orn .or-core  { fill: none; stroke: var(--accent-sage); stroke-width: 1.4; }
.orn.terra .or-petal, .orn.terra .or-core { stroke: var(--accent-terracotta); }
.orn.solid .or-petal { fill: var(--tint-peach); stroke: none; }
.orn.solid .or-core  { fill: var(--accent-terracotta); stroke: none; }

/* ============================================================
   MASTHEAD NAV
   ============================================================ */
.masthead { position: relative; z-index: 60; }
.mast-util {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 48px; border-bottom: 1px solid var(--hairline-soft);
  font-family: var(--body); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-muted); font-weight: 500;
}
.mast-util .mu-group { display: inline-flex; align-items: center; gap: 18px; }
.mast-util .mu-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-terracotta); }

.nav {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 22px 48px;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-cream);
}
.nav.is-stuck {
  position: fixed; top: 0; left: 0; right: 0; width: 1440px; margin: 0 auto;
  z-index: 80; background: rgba(245,239,230,0.9);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 var(--hairline), 0 12px 30px -22px rgba(60,30,10,0.4);
  transform: translateY(-100%); transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.nav.is-stuck.show { transform: translateY(0); }

.logo {
  font-family: var(--display); font-weight: 800; font-variation-settings: "opsz" 48;
  font-size: 27px; letter-spacing: -0.04em; color: var(--text-charcoal);
  text-decoration: none; display: inline-flex; align-items: baseline; gap: 4px;
  justify-self: start;
}
.logo .flower-mark { width: 17px; height: 17px; translate: 0 -9px;
  --mark-petal: var(--accent-terracotta); --mark-inner:#D4906F; --mark-core: var(--accent); --mark-stamen: var(--tint-peach); }
.nav-links { display: inline-flex; align-items: center; gap: 4px; justify-self: center; }
.nav-links a {
  font-family: var(--body); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; color: var(--text-charcoal);
  text-decoration: none; padding: 8px 16px; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-right { display: inline-flex; align-items: center; gap: 12px; justify-self: end; }
.icon-circ {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(26,26,26,0.20); background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-charcoal); cursor: pointer; transition: border-color .2s ease, color .2s ease;
}
.icon-circ:hover { border-color: var(--text-charcoal); color: var(--accent); }
.nav .btn-primary { height: 46px; font-size: 11px; }
.nav .btn-primary .b-mark { width: 32px; height: 32px; }
.nav .btn-primary .b-mark .flower-mark { width: 16px; height: 16px; }

/* ============================================================
   HERO — editorial split (type left, framed portrait right)
   ============================================================ */
.hero {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: 64px; align-items: center;
  padding: 80px 48px 64px; position: relative;
}
.hero-orn-1 { position: absolute; top: 40px; left: 44%; width: 64px; height: 64px; opacity: .5;
  animation: sway 7s ease-in-out infinite; }
.hero-orn-2 { position: absolute; bottom: 24px; right: 40%; width: 42px; height: 42px; opacity: .4;
  animation: sway 9s ease-in-out infinite 1s; }

.hero-left { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 30px; }
.hero h1 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "opsz" 144;
  font-size: 84px; line-height: 0.94; letter-spacing: -0.04em;
  margin: 0 0 28px; color: var(--text-charcoal); text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent);
  font-variation-settings: "opsz" 144, "wght" 400; }
.hero-sub {
  font-family: var(--display); font-style: italic; font-weight: 350;
  font-variation-settings: "opsz" 28, "wght" 350;
  font-size: 21px; line-height: 1.5; color: var(--text-muted);
  max-width: 480px; margin: 0 0 40px;
}
.hero-cta { display: flex; align-items: center; gap: 18px; margin-bottom: 38px; }
.hero-trust { display: inline-flex; align-items: center; gap: 16px; color: var(--text-muted); }
.hero-trust .avs { display: inline-flex; }
.hero-trust .avs span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--bg-cream); margin-left: -10px;
  background: var(--frame-tan); display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 12px; color: var(--burgundy-deep);
}
.hero-trust .avs span:first-child { margin-left: 0; }
.hero-trust .t-txt { font-family: var(--body); font-size: 13px; line-height: 1.35; }
.hero-trust .t-txt strong { font-weight: 600; color: var(--text-charcoal); }
.hero-trust .t-stars { color: var(--accent-terracotta); letter-spacing: 2px; font-size: 12px; }

/* word reveal */
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.hero.in h1 .w { opacity: 1; transform: translateY(0); }
.hero-eyebrow, .hero-sub, .hero-cta, .hero-trust { opacity: 0; transform: translateY(16px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.hero.in .hero-eyebrow { opacity: 1; transform: none; transition-delay: .05s; }
.hero.in .hero-sub  { opacity: 1; transform: none; transition-delay: .5s; }
.hero.in .hero-cta  { opacity: 1; transform: none; transition-delay: .62s; }
.hero.in .hero-trust{ opacity: 1; transform: none; transition-delay: .72s; }

/* framed portrait */
.hero-right { position: relative; z-index: 2; display: flex; justify-content: center; }
.portrait {
  position: relative; width: 460px;
  padding: 18px 18px 64px; background: var(--paper);
  border: 1px solid var(--border-beige);
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -36px rgba(60,30,10,0.4), 0 2px 0 rgba(255,255,255,0.6) inset;
  opacity: 0; transform: translateY(26px) rotate(1.2deg);
  transition: opacity .9s ease .2s, transform 1s cubic-bezier(.2,.7,.2,1) .2s;
}
.hero.in .portrait { opacity: 1; transform: translateY(0) rotate(1.2deg); }
.portrait-img {
  position: relative; overflow: hidden;
  border-radius: calc(var(--radius) - 8px) calc(var(--radius) - 8px) 140px 140px;
  aspect-ratio: 4/4.6; background: #1a1410;
}
.portrait-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
  animation: ken 20s ease-in-out infinite alternate; }
.portrait-cap {
  position: absolute; left: 0; right: 0; bottom: 22px;
  text-align: center; font-family: var(--display); font-style: italic;
  font-weight: 500; font-size: 17px; color: var(--text-charcoal);
}
.portrait-cap small { display: block; font-family: var(--body); font-style: normal;
  font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 6px; font-weight: 600; }

/* wax-seal stamp badge */
.seal {
  position: absolute; top: -26px; right: -26px; width: 104px; height: 104px;
  border-radius: 50%; background: var(--accent); color: var(--tint-peach);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  rotate: -8deg; box-shadow: 0 16px 30px -12px rgba(60,22,22,0.55);
  z-index: 4; gap: 2px;
  animation: sealIn 1s cubic-bezier(.34,1.56,.64,1) .9s both;
}
.seal::before { content:""; position:absolute; inset:8px; border:1px dashed rgba(234,211,194,0.5); border-radius:50%; }
.seal .s-top, .seal .s-bot { font-family: var(--body); font-size: 7.5px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; opacity:.85; }
.seal .flower-mark { width: 26px; height: 26px; margin: 1px 0;
  --mark-petal: var(--tint-peach); --mark-inner: var(--tint-peach); --mark-core: var(--bg-cream); --mark-stamen: var(--accent-terracotta); }
.portrait .tape {
  position: absolute; top: -12px; left: 40px; width: 110px; height: 28px;
  background: rgba(200,202,176,0.55); rotate: -6deg;
  box-shadow: 0 2px 6px -2px rgba(0,0,0,0.15);
}
.portrait .tab {
  position: absolute; bottom: 22px; left: -14px;
  background: var(--accent-terracotta); color: #fff;
  font-family: var(--body); font-size: 9.5px; letter-spacing: 0.20em;
  text-transform: uppercase; font-weight: 600; padding: 7px 14px; border-radius: 6px;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.35); rotate: -90deg; transform-origin: left bottom;
}

@keyframes ken { 0%{transform:scale(1.03)} 100%{transform:scale(1.1)} }
@keyframes sway { 0%,100%{rotate:0deg; translate:0 0} 50%{rotate:18deg; translate:0 -6px} }
@keyframes sealIn { 0%{opacity:0; scale:.3; rotate:24deg} 60%{opacity:1; scale:1.12} 100%{opacity:1; scale:1; rotate:-8deg} }

/* ── press marquee ── */
.press {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 22px 0; overflow: hidden; background: var(--bg-ivory);
}
.press-track { display: inline-flex; align-items: center; gap: 72px; white-space: nowrap;
  animation: marquee 34s linear infinite; will-change: transform; }
.press:hover .press-track { animation-play-state: paused; }
.press-track .p-item { font-family: var(--display); font-weight: 700; font-size: 19px;
  letter-spacing: -0.01em; color: var(--text-muted); opacity: .7; flex-shrink: 0; }
.press-track .p-item.script { font-style: italic; font-weight: 500; font-size: 22px; }
.press-track .p-item.mono { font-family: var(--body); font-weight: 600; font-size: 13px;
  letter-spacing: 0.10em; text-transform: uppercase; }
.press-track .p-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-terracotta); opacity: .6; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.sec { padding: 120px 48px; position: relative; }
.sec.ivory { background: var(--bg-ivory); }
.sec.cream { background: var(--bg-cream); }
.sec-head { max-width: 1100px; margin: 0 auto 76px; text-align: center; }
.sec-head .eyebrow { justify-content: center; margin-bottom: 26px; }
.sec-head h2 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "opsz" 144;
  font-size: 66px; line-height: 0.98; letter-spacing: -0.035em; margin: 0 auto; max-width: 14ch;
}
.sec-head h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.sec-head p { font-family: var(--display); font-style: italic; font-weight: 350;
  font-size: 19px; color: var(--text-muted); max-width: 540px; margin: 24px auto 0; line-height: 1.5; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ============================================================
   MANIFESTO — large editorial statement
   ============================================================ */
.manifesto { padding: 130px 48px; text-align: center; position: relative; background: var(--bg-cream); }
.manifesto .m-rule { width: 1px; height: 64px; background: var(--hairline); margin: 0 auto 36px; }
.manifesto .m-flower { width: 40px; height: 40px; margin: 0 auto 30px; }
.manifesto p {
  font-family: var(--display); font-weight: 350; font-variation-settings: "opsz" 144, "wght" 350;
  font-size: 46px; line-height: 1.28; letter-spacing: -0.02em;
  max-width: 1080px; margin: 0 auto; color: var(--text-charcoal); text-wrap: balance;
}
.manifesto p em { font-style: italic; font-weight: 600; color: var(--accent); }
.manifesto p .u { font-style: italic; color: var(--accent-terracotta); font-weight: 500; }
.manifesto .m-sign { margin-top: 40px; font-family: var(--body); font-size: 11px;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

/* ============================================================
   FEATURES — refined card grid with mini-mocks
   ============================================================ */
.feat-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.fcard {
  position: relative; background: var(--paper); border: 1px solid var(--border-beige);
  border-radius: var(--radius); padding: 32px 30px 28px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 320px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.fcard:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(60,30,10,0.28); border-color: var(--frame-tan); }
.fcard.span2 { grid-column: span 2; }
.fcard.tint { background: var(--tint-peach); border-color: transparent; }
.fcard.dark { background: var(--text-charcoal); border-color: transparent; color: var(--bg-cream); }
.fcard .f-orn { position: absolute; top: -22px; right: -22px; width: 110px; height: 110px; opacity: .2; pointer-events: none; }
.fcard.dark .f-orn .or-petal, .fcard.dark .f-orn .or-core { stroke: var(--tint-peach); }
.fcard > * { position: relative; z-index: 1; }
.f-ico {
  width: 46px; height: 46px; border-radius: 13px; background: var(--bg-cream);
  display: inline-flex; align-items: center; justify-content: center; color: var(--accent);
  margin-bottom: 22px;
}
.fcard.tint .f-ico { background: rgba(255,255,255,0.55); }
.fcard.dark .f-ico { background: rgba(245,239,230,0.1); color: var(--tint-peach); }
.f-kicker { font-family: var(--body); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; color: var(--text-muted); margin-bottom: 12px; }
.fcard.dark .f-kicker { color: rgba(245,239,230,0.55); }
.fcard h3 { font-family: var(--display); font-weight: 800; font-size: 27px; line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 10px; }
.fcard.span2 h3 { font-size: 32px; }
.fcard p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin: 0; max-width: 42ch; }
.fcard.dark p { color: rgba(245,239,230,0.7); }
.fcard .f-foot { margin-top: auto; padding-top: 22px; }

.span2-body { display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; align-items: center; height: 100%; }

/* mini-mocks */
.mock-rsvp { background: var(--text-charcoal); border-radius: 16px; padding: 18px; color: var(--bg-cream); }
.mock-rsvp .mr-top { display: flex; align-items: baseline; gap: 8px; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid rgba(245,239,230,0.12); }
.mock-rsvp .mr-num { font-family: var(--display); font-weight: 900; font-size: 38px; line-height: 1; letter-spacing: -0.04em; color: var(--tint-peach); }
.mock-rsvp .mr-lbl { font-family: var(--body); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,239,230,0.55); }
.mock-rsvp ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.mock-rsvp li { display: grid; grid-template-columns: 72px 1fr 26px; align-items: center; gap: 10px; font-family: var(--body); font-size: 11px; }
.mock-rsvp .rk { color: rgba(245,239,230,0.75); }
.mock-rsvp .rb { height: 5px; background: rgba(245,239,230,0.1); border-radius: 999px; overflow: hidden; position: relative; }
.mock-rsvp .rb::after { content:""; position:absolute; inset:0; width: var(--w,0); background: linear-gradient(90deg, var(--accent-terracotta), var(--tint-peach)); border-radius: 999px; }
.mock-rsvp .rc { font-family: var(--display); font-weight: 700; color: var(--bg-cream); text-align: right; font-size: 12px; }

.mock-live { margin-top: 18px; background: #1a1410; border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.mock-live .l-dot { width: 8px; height: 8px; border-radius: 50%; background: #E5564B; animation: pulseDot 1.8s ease-in-out infinite; flex-shrink: 0; }
.mock-live .l-msg { flex: 1; font-family: var(--display); font-style: italic; font-size: 13px; color: var(--tint-peach); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-live .l-amt { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--tint-peach); flex-shrink: 0; }
@keyframes pulseDot { 0%{box-shadow:0 0 0 0 rgba(229,86,75,.6)} 70%{box-shadow:0 0 0 7px rgba(229,86,75,0)} 100%{box-shadow:0 0 0 0 rgba(229,86,75,0)} }

.mock-wave { margin-top: 18px; display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: rgba(26,26,26,0.06); border-radius: 12px; }
.fcard.tint .mock-wave { background: rgba(255,255,255,0.5); }
.mock-wave .w-play { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: var(--bg-cream); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-wave .w-bars { display: inline-flex; gap: 2.5px; align-items: center; flex: 1; height: 20px; }
.mock-wave .w-bars i { width: 2.5px; background: var(--accent); border-radius: 2px; opacity: .5; animation: wave 1.4s ease-in-out infinite; }
.mock-wave .w-dur { font-family: var(--body); font-size: 11px; color: var(--text-muted); }
@keyframes wave { 0%,100%{height:4px} 50%{height:20px; opacity:.9} }

.mock-qr { margin-top: 18px; display: flex; align-items: center; gap: 14px; }
.mock-qr .q-grid { width: 58px; height: 58px; background: var(--text-charcoal); border-radius: 9px; padding: 6px; display: grid; grid-template-columns: repeat(5,1fr); grid-template-rows: repeat(5,1fr); gap: 2px; flex-shrink: 0; }
.mock-qr .q-grid i { background: var(--bg-cream); border-radius: 1px; }
.mock-qr .q-grid i.off { background: transparent; }
.mock-qr .q-meta { font-family: var(--body); font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.mock-qr .q-meta strong { display: block; font-family: var(--display); font-weight: 700; color: var(--text-charcoal); font-size: 15px; }

.mock-wa { margin-top: 18px; display: flex; align-items: center; gap: 11px; padding: 11px 14px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.22); border-radius: 12px; }
.mock-wa .wa-i { width: 28px; height: 28px; border-radius: 50%; background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-wa .wa-t { font-family: var(--body); font-size: 12px; color: var(--text-charcoal); }
.mock-wa .wa-t strong { font-weight: 600; }

/* dashboard mock for span2 dark card */
.mock-dash { background: rgba(245,239,230,0.04); border: 1px solid rgba(245,239,230,0.1); border-radius: 16px; padding: 18px; }
.mock-dash .d-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-dash .d-title { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--bg-cream); }
.mock-dash .d-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--body); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,239,230,0.55); }
.mock-dash .d-live::before { content:""; width:6px; height:6px; border-radius:50%; background:#4DD891; animation: pulseDot 1.8s ease-in-out infinite; }
.mock-dash .d-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.mock-dash .d-stat { background: rgba(245,239,230,0.06); border-radius: 10px; padding: 12px; }
.mock-dash .d-stat .dn { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.025em; color: var(--tint-peach); line-height: 1; }
.mock-dash .d-stat .dl { margin-top: 5px; font-family: var(--body); font-size: 9px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(245,239,230,0.55); }
.mock-dash .d-rows { list-style: none; padding: 0; margin: 0; }
.mock-dash .d-row { display: flex; align-items: center; gap: 10px; padding: 8px 2px; border-bottom: 1px solid rgba(245,239,230,0.08); font-family: var(--body); font-size: 12px; }
.mock-dash .d-row:last-child { border-bottom: 0; }
.mock-dash .d-row .av { width: 24px; height: 24px; border-radius: 50%; background: rgba(245,239,230,0.14); color: var(--tint-peach); display: inline-flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 600; font-size: 10px; flex-shrink: 0; }
.mock-dash .d-row .nm { flex: 1; color: var(--bg-cream); }
.mock-dash .d-row .st { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
.mock-dash .d-row .st.in { background: rgba(77,216,145,0.18); color: #6EE0A4; }
.mock-dash .d-row .st.out { background: rgba(245,239,230,0.08); color: rgba(245,239,230,0.5); }

/* ============================================================
   INVITATION SHOWCASE — browser/phone preview
   ============================================================ */
.showcase { padding: 120px 48px; background: var(--burgundy-deep); color: var(--bg-cream); position: relative; overflow: hidden; }
.showcase .sh-orn { position: absolute; width: 320px; height: 320px; opacity: .12; pointer-events: none; }
.showcase .sh-orn.tl { top: -70px; left: -100px; rotate: -16deg; }
.showcase .sh-orn.br { bottom: -90px; right: -110px; rotate: 24deg; }
.showcase .sh-orn .or-petal { stroke: var(--tint-peach); }
.showcase .sh-orn .or-core { fill: var(--tint-peach); stroke: none; }
.showcase-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
.showcase .eyebrow { color: var(--tint-peach); margin-bottom: 26px; }
.showcase .eyebrow .e-dash, .showcase .eyebrow .e-dot { background: var(--tint-peach); }
.showcase h2 { font-family: var(--display); font-weight: 900; font-variation-settings: "opsz" 144; font-size: 58px; line-height: 1.0; letter-spacing: -0.035em; margin: 0 0 24px; color: var(--bg-cream); }
.showcase h2 em { font-style: italic; font-weight: 400; color: var(--tint-peach); }
.showcase .sh-lede { font-family: var(--display); font-style: italic; font-weight: 350; font-size: 20px; line-height: 1.5; color: rgba(245,239,230,0.78); max-width: 440px; margin: 0 0 32px; }
.showcase .sh-list { list-style: none; padding: 0; margin: 0 0 38px; display: flex; flex-direction: column; gap: 14px; }
.showcase .sh-list li { display: flex; align-items: center; gap: 14px; font-family: var(--body); font-size: 15px; color: rgba(245,239,230,0.9); }
.showcase .sh-list .chk { width: 26px; height: 26px; border-radius: 50%; background: rgba(245,239,230,0.12); color: var(--tint-peach); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.showcase .btn-primary { background: var(--bg-cream); color: var(--burgundy-deep); }
.showcase .btn-primary:hover { background: var(--tint-peach); }
.showcase .btn-primary .b-mark { background: rgba(124,45,45,0.16); }
.showcase .btn-primary .b-mark .flower-mark { --mark-petal: var(--accent); --mark-inner: var(--accent); --mark-core: var(--burgundy-deep); --mark-stamen: var(--tint-peach); }

/* invitation device */
.invite-stage { display: flex; justify-content: center; perspective: 1600px; }
.invite-phone {
  width: 320px; background: #0d0a08; border-radius: 44px; padding: 12px;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06) inset;
  transform: rotateY(-12deg) rotateX(4deg) rotate(1deg); transform-style: preserve-3d;
}
.invite-screen { border-radius: 34px; overflow: hidden; background: var(--bg-ivory); position: relative; height: 640px; }
.invite-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: #0d0a08; border-radius: 0 0 16px 16px; z-index: 6; }
.inv-cover { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 28px; }
.inv-cover .iv-photo { position: absolute; inset: 0; }
.inv-cover .iv-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.inv-cover .iv-shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,16,12,0.5) 0%, rgba(20,16,12,0.15) 35%, rgba(20,16,12,0.35) 65%, rgba(20,16,12,0.78) 100%); }
.inv-cover .iv-content { position: relative; z-index: 2; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 0; height: 100%; justify-content: space-between; padding: 12px 0 6px; }
.inv-cover .iv-top { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.inv-cover .iv-eyebrow { font-family: var(--body); font-size: 8.5px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.inv-cover .iv-flower { width: 30px; height: 30px; --mark-petal: rgba(255,255,255,0.95); --mark-inner: rgba(255,255,255,0.6); --mark-core: var(--tint-peach); --mark-stamen: var(--accent-terracotta); }
.inv-cover .iv-mid { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.inv-cover .iv-names { font-family: var(--display); font-weight: 600; font-size: 40px; line-height: 1.0; letter-spacing: -0.02em; }
.inv-cover .iv-amp { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 22px; color: var(--tint-peach); margin: 2px 0; }
.inv-cover .iv-date { font-family: var(--body); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; margin-top: 10px; color: rgba(255,255,255,0.9); }
.inv-cover .iv-cta { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.16); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-family: var(--body); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; padding: 10px 18px; border-radius: 999px; }
.invite-tag {
  position: absolute; z-index: 8; background: var(--paper); border-radius: 14px;
  padding: 12px 16px; box-shadow: 0 20px 40px -16px rgba(0,0,0,0.45);
  display: flex; align-items: center; gap: 11px; font-family: var(--body);
}
.invite-tag.t1 { top: 60px; right: -54px; animation: float1 5s ease-in-out infinite; }
.invite-tag.t2 { bottom: 90px; left: -64px; animation: float1 6s ease-in-out infinite 1s; }
.invite-tag .it-ico { width: 32px; height: 32px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.invite-tag.t1 .it-ico { background: rgba(124,45,45,0.1); color: var(--accent); }
.invite-tag.t2 .it-ico { background: rgba(37,211,102,0.12); color: #25D366; }
.invite-tag .it-n { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--text-charcoal); line-height: 1; }
.invite-tag .it-l { font-size: 9.5px; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 2px; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ============================================================
   HOW IT WORKS — numbered editorial steps
   ============================================================ */
.steps { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--hairline); }
.step { padding: 44px 36px 40px; border-right: 1px solid var(--hairline); position: relative; }
.step:last-child { border-right: 0; }
.step .s-num { font-family: var(--display); font-weight: 900; font-variation-settings: "opsz" 144; font-size: 72px; line-height: 0.85; letter-spacing: -0.05em; color: var(--accent); margin-bottom: 28px; }
.step .s-num sup { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); vertical-align: top; margin-left: 8px; }
.step h3 { font-family: var(--display); font-weight: 800; font-size: 27px; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 12px; }
.step h3 em { font-style: italic; font-weight: 500; color: var(--accent-terracotta); }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0; max-width: 34ch; }
.step .s-flower { position: absolute; top: 40px; right: 30px; width: 34px; height: 34px; opacity: .35; animation: sway 8s ease-in-out infinite; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats { background: var(--bg-ivory); padding: 96px 48px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.stats-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat { text-align: center; padding: 0 28px; border-right: 1px solid var(--hairline); }
.stat:last-child { border-right: 0; }
.stat .st-num { font-family: var(--display); font-weight: 900; font-variation-settings: "opsz" 144; font-size: 72px; line-height: 0.9; letter-spacing: -0.04em; color: var(--text-charcoal); }
.stat .st-num em { font-style: italic; font-weight: 500; color: var(--accent); font-size: 0.55em; }
.stat .st-lbl { font-family: var(--body); font-size: 12.5px; line-height: 1.45; color: var(--text-muted); margin-top: 14px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.stat .st-tag { font-family: var(--body); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--accent-terracotta); margin-bottom: 16px; }

/* ============================================================
   TEMPLATES gallery
   ============================================================ */
.tpl-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tpl {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--paper);
  border: 1px solid var(--border-beige); transition: transform .3s ease, box-shadow .3s ease;
}
.tpl:hover { transform: translateY(-5px); box-shadow: 0 30px 56px -28px rgba(60,30,10,0.3); }
.tpl image-slot { width: 100%; height: 380px; display: block; }
.tpl .tpl-body { padding: 20px 22px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tpl .tpl-name { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.015em; }
.tpl .tpl-name small { display: block; font-family: var(--body); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 5px; font-weight: 600; }
.tpl .tpl-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(26,26,26,0.2); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease; }
.tpl:hover .tpl-arrow { background: var(--accent); color: var(--bg-cream); border-color: var(--accent); transform: translate(2px,-2px); }
.tpl .tpl-badge { position: absolute; top: 16px; left: 16px; z-index: 3; background: rgba(250,246,241,0.92); backdrop-filter: blur(6px); color: var(--text-charcoal); font-family: var(--body); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; padding: 7px 12px; border-radius: 999px; }
.tpl-foot { max-width: 1280px; margin: 44px auto 0; text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; }
.testi { background: var(--paper); border: 1px solid var(--border-beige); border-radius: var(--radius); padding: 34px 32px 30px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.testi.feature { background: var(--accent); color: var(--bg-cream); border-color: transparent; grid-row: span 2; }
.testi .quote-mark { font-family: var(--display); font-weight: 900; font-size: 90px; line-height: 0.6; color: var(--accent); opacity: .14; margin-bottom: 6px; }
.testi.feature .quote-mark { color: var(--tint-peach); opacity: .3; }
.testi blockquote { font-family: var(--display); font-weight: 400; font-size: 21px; line-height: 1.42; letter-spacing: -0.01em; margin: 0 0 26px; color: var(--text-charcoal); }
.testi.feature blockquote { font-size: 27px; color: var(--bg-cream); }
.testi blockquote em { font-style: italic; color: var(--accent); }
.testi.feature blockquote em { color: var(--tint-peach); }
.testi .t-foot { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.testi .t-av { width: 46px; height: 46px; border-radius: 50%; background: var(--frame-tan); color: var(--burgundy-deep); display: inline-flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testi.feature .t-av { background: rgba(255,255,255,0.18); color: var(--bg-cream); }
.testi .t-name { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.testi .t-meta { font-family: var(--body); font-size: 11.5px; color: var(--text-muted); letter-spacing: 0.02em; margin-top: 2px; }
.testi.feature .t-meta { color: rgba(245,239,230,0.7); }
.testi .t-stars { color: var(--accent-terracotta); letter-spacing: 2px; font-size: 13px; margin-bottom: 18px; }
.testi.feature .t-stars { color: var(--tint-peach); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.tier { position: relative; background: var(--paper); border: 1px solid var(--border-beige); border-radius: var(--radius); padding: 40px 34px 36px; display: flex; flex-direction: column; }
.tier.featured { background: var(--text-charcoal); color: var(--bg-cream); border-color: transparent; box-shadow: 0 40px 80px -36px rgba(0,0,0,0.5); }
.tier .t-best { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg-cream); font-family: var(--body); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; padding: 8px 16px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 20px -8px rgba(60,22,22,0.5); }
.tier .t-best::before { content:""; width:5px; height:5px; border-radius:50%; background: var(--tint-peach); animation: pulseDot 2s ease-in-out infinite; }
.tier .t-roman { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 26px; color: var(--accent); margin-bottom: 12px; }
.tier.featured .t-roman { color: var(--tint-peach); }
.tier .t-name { font-family: var(--display); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; margin: 0 0 6px; }
.tier .t-tagline { font-family: var(--body); font-size: 13px; color: var(--text-muted); margin-bottom: 26px; }
.tier.featured .t-tagline { color: rgba(245,239,230,0.65); }
.tier .t-price { display: flex; align-items: baseline; gap: 6px; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--hairline); }
.tier.featured .t-price { border-color: rgba(245,239,230,0.16); }
.tier .t-rp { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 17px; color: var(--text-muted); }
.tier.featured .t-rp { color: rgba(245,239,230,0.7); }
.tier .t-amt { font-family: var(--display); font-weight: 900; font-variation-settings:"opsz" 144; font-size: 52px; letter-spacing: -0.04em; line-height: 0.9; color: var(--text-charcoal); }
.tier.featured .t-amt { color: var(--bg-cream); }
.tier .t-per { font-family: var(--body); font-size: 11px; letter-spacing: 0.06em; color: var(--text-muted); }
.tier ul { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 13px; }
.tier li { display: flex; align-items: flex-start; gap: 11px; font-family: var(--body); font-size: 14px; color: var(--text-charcoal); line-height: 1.4; }
.tier.featured li { color: rgba(245,239,230,0.88); }
.tier li .chk { width: 19px; height: 19px; flex-shrink: 0; color: var(--accent); margin-top: 1px; }
.tier.featured li .chk { color: var(--tint-peach); }
.tier li.muted { color: var(--text-muted); opacity: .65; }
.tier li.muted .chk { color: var(--text-muted); }
.tier .t-cta { margin-top: auto; }
.tier .t-cta .btn { width: 100%; justify-content: center; }
.tier:not(.featured) .t-cta .btn { background: transparent; color: var(--text-charcoal); border-color: rgba(26,26,26,0.22); box-shadow: none; padding: 0 24px; }
.tier:not(.featured) .t-cta .btn:hover { background: var(--text-charcoal); color: var(--bg-cream); border-color: var(--text-charcoal); }
.tier.featured .t-cta .btn { background: var(--bg-cream); color: var(--text-charcoal); }
.tier.featured .t-cta .btn:hover { background: var(--tint-peach); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); transition: background .15s ease; }
.faq-item:hover { background: rgba(255,255,255,0.4); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 30px 8px; display: grid; grid-template-columns: 1fr 44px; align-items: center; gap: 28px; cursor: pointer; font-family: var(--display); font-weight: 700; font-size: 25px; letter-spacing: -0.015em; color: var(--text-charcoal); line-height: 1.15; }
.faq-q .chev { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(26,26,26,0.2); display: inline-flex; align-items: center; justify-content: center; transition: transform .3s cubic-bezier(.4,0,.2,1), background .25s ease, color .25s ease; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(45deg); background: var(--accent); color: var(--bg-cream); border-color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; font-family: var(--body); font-size: 15.5px; line-height: 1.6; color: var(--text-muted); max-width: 760px; }
.faq-item.open .faq-a { max-height: 240px; padding: 0 8px 30px; }

/* ============================================================
   FINAL CTA — invitation card on burgundy
   ============================================================ */
.final { position: relative; padding: 150px 48px 160px; background: var(--burgundy-deep); overflow: hidden; }
.final::before { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 58% 54% at 50% 46%, rgba(234,211,194,0.1) 0%, transparent 70%); z-index: 0; }
.final-orn { position: absolute; width: 360px; height: 360px; opacity: .12; pointer-events: none; z-index: 0; }
.final-orn.tl { top: -80px; left: -120px; rotate: -18deg; }
.final-orn.br { bottom: -100px; right: -140px; rotate: 26deg; }
.final-orn .or-petal { stroke: var(--tint-peach); }
.final-orn .or-core { fill: var(--tint-peach); stroke: none; }
.final-card { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; background: var(--bg-ivory); border-radius: 4px; padding: 84px 76px 70px; text-align: center; rotate: -0.5deg; box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 60px 120px -40px rgba(0,0,0,0.55); }
.final-card::after { content:""; position:absolute; inset:14px; border:1px solid rgba(124,45,45,0.22); border-radius:2px; pointer-events:none; }
.final-stamp { position: absolute; top: -22px; right: -22px; width: 104px; height: 104px; border: 1.5px solid var(--accent); border-radius: 50%; background: var(--bg-ivory); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-direction: column; rotate: -10deg; z-index: 4; box-shadow: 0 8px 22px -8px rgba(0,0,0,0.45); gap: 2px; }
.final-stamp::before { content:""; position:absolute; inset:7px; border:1px dashed rgba(124,45,45,0.45); border-radius:50%; }
.final-stamp .s-t, .final-stamp .s-b { font-family: var(--body); font-size: 7.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; opacity:.75; }
.final-stamp .flower-mark { width: 22px; height: 22px; --mark-petal: var(--accent); --mark-inner: var(--accent); --mark-core: var(--accent); --mark-stamen: var(--bg-ivory); }
.final-card .f-eyebrow { font-family: var(--body); font-size: 11px; letter-spacing: 0.30em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.final-card .f-eyebrow .e-dash { width: 24px; height: 1px; background: currentColor; opacity: .5; }
.final-card h2 { font-family: var(--display); font-weight: 900; font-variation-settings:"opsz" 144; font-size: 56px; line-height: 0.98; letter-spacing: -0.035em; margin: 0 0 22px; color: var(--text-charcoal); }
.final-card h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.final-card p { font-family: var(--display); font-style: italic; font-weight: 350; font-size: 19px; line-height: 1.5; color: var(--text-muted); max-width: 420px; margin: 0 auto 36px; }
.final-card .f-cta { display: inline-flex; align-items: center; gap: 16px; }
.final-card .f-note { margin-top: 26px; font-family: var(--body); font-size: 12px; letter-spacing: 0.04em; color: var(--text-muted); display: inline-flex; align-items: center; gap: 10px; }
.final-card .f-note .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-terracotta); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--text-charcoal); color: var(--bg-cream); padding: 96px 48px 40px; }
.foot-top { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(245,239,230,0.14); }
.foot-brand .logo { color: var(--bg-cream); font-size: 34px; margin-bottom: 20px; }
.foot-brand .logo .flower-mark { --mark-petal: var(--accent-terracotta); --mark-inner:#D4906F; --mark-core: var(--tint-peach); --mark-stamen: var(--bg-cream); }
.foot-brand p { font-family: var(--display); font-style: italic; font-weight: 350; font-size: 19px; line-height: 1.45; color: rgba(245,239,230,0.7); max-width: 360px; margin: 0 0 26px; }
.foot-brand .f-social { display: inline-flex; gap: 10px; }
.foot-brand .f-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(245,239,230,0.2); display: inline-flex; align-items: center; justify-content: center; color: var(--bg-cream); transition: background .2s ease, color .2s ease, border-color .2s ease; }
.foot-brand .f-social a:hover { background: var(--bg-cream); color: var(--text-charcoal); border-color: var(--bg-cream); }
.foot-col h4 { font-family: var(--body); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: rgba(245,239,230,0.5); margin: 0 0 22px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.foot-col a { font-family: var(--body); font-size: 14.5px; color: rgba(245,239,230,0.82); text-decoration: none; transition: color .2s ease; }
.foot-col a:hover { color: var(--tint-peach); }
.foot-bottom { max-width: 1280px; margin: 0 auto; padding-top: 32px; display: flex; align-items: center; justify-content: space-between; font-family: var(--body); font-size: 12px; color: rgba(245,239,230,0.55); }
.foot-bottom .fb-links { display: inline-flex; gap: 26px; }
.foot-bottom a { color: inherit; text-decoration: none; transition: color .2s ease; }
.foot-bottom a:hover { color: var(--bg-cream); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero h1 .w, .hero-eyebrow, .hero-sub, .hero-cta, .hero-trust, .portrait, .reveal { opacity: 1 !important; transform: none !important; }
}

/* tweak hooks */
body.straight-frame .portrait-img { border-radius: calc(var(--radius) - 8px); }
body.no-press .press { display: none; }
