/* ═══════════════════════════════════════════════
   CONTIDJO — Decorations & Styling
   Palette: olive · gold · ivory
   ═══════════════════════════════════════════════ */

:root {
  --olive-deep: #2e3320;
  --olive: #4a5232;
  --olive-soft: #7c8458;
  --sage: #aab28a;
  --gold: #c9a24b;
  --gold-bright: #e3c878;
  --champagne: #efe3c2;
  --ivory: #faf7ef;
  --ivory-dim: #f1ecdd;
  --ink: #23271a;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════ PRELOADER ═══════════ */

.preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--olive-deep);
  color: var(--gold);
  transition: opacity .6s ease, visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__inner { text-align: center; position: relative; z-index: 3; }

.preloader__mark { width: 90px; height: 90px; margin: 0 auto 1.6rem; }
.preloader__mark .draw {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawIn 1.6s var(--ease-lux) forwards;
}
.preloader__mark .draw:nth-child(2) { animation-delay: .4s; }

.preloader__word {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .55em;
  color: var(--champagne);
  opacity: 0;
  animation: fadeUp .9s var(--ease-lux) .8s forwards;
}

.preloader__veil {
  position: absolute; inset: 0;
  transform: translateY(101%);
}
.preloader__veil--1 { background: var(--gold); z-index: 1; }
.preloader__veil--2 { background: var(--olive); z-index: 2; }
.preloader.is-leaving .preloader__veil--1 { animation: veilSweep .9s var(--ease-lux) forwards; }
.preloader.is-leaving .preloader__veil--2 { animation: veilSweep .9s var(--ease-lux) .12s forwards; }
.preloader.is-leaving .preloader__inner { animation: fadeOut .4s ease forwards; }

@keyframes drawIn { to { stroke-dashoffset: 0; } }
@keyframes veilSweep { from { transform: translateY(101%); } to { transform: translateY(-101%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fadeOut { to { opacity: 0; } }

/* ═══════════ PROGRESS & CURSOR ═══════════ */

.progress {
  position: fixed; top: 0; left: 0; z-index: 900;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform-origin: left;
  transform: scaleX(0);
}

.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 950;
  pointer-events: none;
  border-radius: 50%;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor, .cursor-ring { display: block; }
}
.cursor {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(201, 162, 75, .55);
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-soft), height .3s var(--ease-soft), border-color .3s;
}
.cursor-ring.is-hover {
  width: 58px; height: 58px;
  border-color: rgba(201, 162, 75, .9);
}

/* ═══════════ NAVIGATION ═══════════ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.4rem, 5vw, 4rem);
  transition: background .5s ease, padding .5s ease, box-shadow .5s ease;
}
.nav.is-scrolled {
  background: rgba(250, 247, 239, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: .85rem; padding-bottom: .85rem;
  box-shadow: 0 1px 0 rgba(74, 82, 50, .12);
}

.nav__logo { display: flex; align-items: center; gap: .6rem; }
.nav__logo-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 500;
  color: var(--olive);
  transition: background .35s, color .35s, transform .35s var(--ease-lux);
}
.nav__logo:hover .nav__logo-mark { background: var(--gold); color: var(--ivory); transform: rotate(-8deg); }
.nav__logo-word {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 500;
  letter-spacing: .04em;
  color: var(--ivory);
  transition: color .5s;
}
.nav.is-scrolled .nav__logo-word { color: var(--olive-deep); }
.nav__logo-mark { color: var(--champagne); }
.nav.is-scrolled .nav__logo-mark { color: var(--olive); }

.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.nav__links a {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--champagne);
  position: relative;
  padding: .2rem 0;
  transition: color .5s;
}
.nav.is-scrolled .nav__links a { color: var(--olive); }
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-lux);
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  border: 1px solid var(--gold);
  padding: .55rem 1.3rem !important;
  color: var(--gold-bright) !important;
  transition: background .35s, color .35s !important;
}
.nav.is-scrolled .nav__cta { color: var(--olive-deep) !important; }
.nav__cta:hover { background: var(--gold); color: var(--olive-deep) !important; }

.nav__right {
  display: flex; align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  margin-left: clamp(1rem, 2.5vw, 2.4rem);
}

.nav__lang {
  display: flex; align-items: center; gap: .45rem;
  font-size: .78rem;
  letter-spacing: .14em;
  color: rgba(239, 227, 194, .45);
}
.nav__lang button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 400;
  letter-spacing: .14em;
  padding: .2rem .1rem;
  color: rgba(239, 227, 194, .55);
  transition: color .35s;
  position: relative;
}
.nav__lang button:hover { color: var(--gold-bright); }
.nav__lang button.is-active { color: var(--gold-bright); }
.nav__lang button.is-active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}
.nav.is-scrolled .nav__lang { color: rgba(74, 82, 50, .35); }
.nav.is-scrolled .nav__lang button { color: rgba(74, 82, 50, .55); }
.nav.is-scrolled .nav__lang button:hover,
.nav.is-scrolled .nav__lang button.is-active { color: var(--olive-deep); }
.nav.menu-open .nav__lang button { color: rgba(239, 227, 194, .55); }
.nav.menu-open .nav__lang button:hover,
.nav.menu-open .nav__lang button.is-active { color: var(--gold-bright); }

.nav__burger {
  display: none;
  flex-direction: column; gap: 7px;
  background: none; border: none; cursor: pointer;
  padding: .4rem;
}
.nav__burger span {
  width: 26px; height: 1.5px;
  background: var(--champagne);
  transition: transform .4s var(--ease-lux), opacity .3s, background .5s;
}
.nav.is-scrolled:not(.menu-open) .nav__burger span { background: var(--olive-deep); }

/* ═══════════ BUTTONS ═══════════ */

.btn {
  position: relative;
  display: inline-block;
  padding: .95rem 2.4rem;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color .4s var(--ease-soft), border-color .4s;
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: '';
  position: absolute; inset: 0;
  transform: translateY(101%);
  transition: transform .5s var(--ease-lux);
}
.btn:hover::before { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #b8923f);
  color: var(--olive-deep);
  box-shadow: 0 8px 30px rgba(201, 162, 75, .35);
}
.btn--gold::before { background: var(--olive-deep); }
.btn--gold:hover { color: var(--gold-bright); }

.btn--ghost {
  border: 1px solid rgba(201, 162, 75, .6);
  color: var(--champagne);
}
.btn--ghost::before { background: var(--gold); }
.btn--ghost:hover { color: var(--olive-deep); }

.btn--lg { padding: 1.15rem 3rem; }

/* ═══════════ HERO ═══════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(201,162,75,.18), transparent 60%),
    linear-gradient(170deg, #262b18 0%, var(--olive-deep) 45%, #3a4126 100%);
  color: var(--ivory);
  overflow: hidden;
  padding: 7rem 1.5rem 2.4rem;
}

.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__glow {
  position: absolute;
  width: 70vmax; height: 70vmax;
  left: 50%; top: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,162,75,.12) 0%, transparent 60%);
  animation: breathe 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .8; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.hero__ornament {
  position: absolute;
  width: clamp(140px, 22vw, 300px);
  color: rgba(170, 178, 138, .35);
  pointer-events: none;
}
.hero__ornament--tl { top: 6%; left: 3%; }
.hero__ornament--br { bottom: 8%; right: 3%; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto 0;
  text-shadow: 0 2px 36px rgba(38, 43, 24, .75);
}

.hero__eyebrow {
  font-size: .75rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 2.2rem;
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-lux);
}
body.is-loaded .hero__line:nth-child(1) > span { transition-delay: .15s; transform: none; }
body.is-loaded .hero__line:nth-child(2) > span { transition-delay: .3s; transform: none; }
body.is-loaded .hero__line:nth-child(3) > span { transition-delay: .45s; transform: none; }

.hero__line--accent > span {
  background: linear-gradient(110deg, var(--gold) 20%, var(--gold-bright) 45%, #f5e6b8 50%, var(--gold-bright) 55%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
  font-style: italic;
}
.hero__line--accent em { -webkit-text-fill-color: var(--gold-bright); font-style: normal; }
@keyframes shimmer { to { background-position: 200% center; } }

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 300;
  color: rgba(250, 247, 239, .78);
  margin-bottom: 3rem;
}

.reveal-line { overflow: hidden; }
.reveal-line > span {
  display: block;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
}
body.is-loaded .reveal-line > span { opacity: 1; transform: none; transition-delay: .65s; }
body.is-loaded .hero__eyebrow > span { transition-delay: .05s; }

.hero__actions {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease-lux) .9s, transform 1s var(--ease-lux) .9s;
}
body.is-loaded .hero__actions { opacity: 1; transform: none; }

.hero__scroll {
  position: relative;
  margin-top: 1.6rem;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  color: rgba(250,247,239,.6);
  z-index: 2;
}
.hero__scroll-text { font-size: .68rem; letter-spacing: .4em; text-transform: uppercase; }
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, var(--gold-bright), transparent);
  animation: scrollDrip 2s var(--ease-soft) infinite;
}
@keyframes scrollDrip {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

/* ═══════════ BOUQUET ═══════════ */
.section,
.stats,
.cta,
.footer {
  position: relative;
  z-index: 1;
}

.bouquet {
  width: clamp(110px, 13vw, 160px);
  height: clamp(270px, 32vw, 400px);
  pointer-events: none;
}

.bouquet.is-fixed {
  position: fixed;
  left: 50%;
  top: 66%;
  transform: translate(-50%, -50%) scale(0.88);
  z-index: 0;
}

.bouquet__item {
  position: absolute;
  inset: 0;
  transform-origin: 50% 92%;
  will-change: transform;
}

.bouquet__item > svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: bloomFloat 5s ease-in-out infinite;
}

.bouquet__item:nth-child(1) > svg { animation-delay: 0s; }
.bouquet__item:nth-child(2) > svg { animation-delay: .55s; }
.bouquet__item:nth-child(3) > svg { animation-delay: 1.05s; }
.bouquet__item:nth-child(4) > svg { animation-delay: .35s; }
.bouquet__item:nth-child(5) > svg { animation-delay: .85s; }
.bouquet__item:nth-child(6) > svg { animation-delay: 1.25s; }
.bouquet__item:nth-child(7) > svg { animation-delay: .2s; }
.bouquet__item:nth-child(8) > svg { animation-delay: .7s; }
.bouquet__item:nth-child(9) > svg { animation-delay: 1.15s; }
.bouquet__item:nth-child(10) > svg { animation-delay: .45s; }

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

.bouquet__item--peony { color: rgba(170, 178, 138, .14); }
.bouquet__item--rose  { color: rgba(124, 132, 88, .16); }
.bouquet__item--tulip { color: rgba(170, 178, 138, .12); }
.bouquet__item--leaf  { color: rgba(74, 82, 50, .18); }
.bouquet__item--daisy { color: rgba(170, 178, 138, .12); }
.bouquet__item--bud   { color: rgba(124, 132, 88, .14); }
.bouquet__item--baby  { color: rgba(170, 178, 138, .09); }

.bouquet__tie {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 100%;
  transform: translateX(-50%);
  color: rgba(124, 132, 88, .22);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

/* ═══════════ MARQUEE ═══════════ */

.marquee {
  background: var(--gold);
  color: var(--olive-deep);
  overflow: hidden;
  padding: 1.1rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -1.4rem 0;
  position: relative; z-index: 5;
  box-shadow: 0 10px 40px rgba(46, 51, 32, .25);
}
.marquee__track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  font-style: italic;
  white-space: nowrap;
}
.marquee__track i { font-style: normal; font-size: .8rem; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ SECTIONS (shared) ═══════════ */

.section { padding: clamp(5rem, 11vw, 9rem) clamp(1.4rem, 6vw, 6rem); }

.section--dark {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(201,162,75,.08), transparent),
    var(--olive-deep);
  color: var(--ivory);
}

.section__eyebrow {
  font-size: .72rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
}
.section__eyebrow::before {
  content: '';
  width: 44px; height: 1px;
  background: var(--gold);
}
.section__eyebrow--gold { color: var(--gold-bright); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1.8rem;
}
.section__title em {
  font-style: italic;
  color: var(--gold);
}
.section--dark .section__title em { color: var(--gold-bright); }

/* ═══════════ SCROLL REVEALS ═══════════ */

.reveal {
  opacity: 0;
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
  will-change: opacity, transform;
}
.reveal[data-reveal="up"] { transform: translateY(46px); }
.reveal[data-reveal="left"] { transform: translateX(-56px); }
.reveal[data-reveal="right"] { transform: translateX(56px); }
.reveal.is-visible { opacity: 1; transform: none; }

.draw-on-scroll .draw {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2.4s var(--ease-soft);
}
.draw-on-scroll.is-drawn .draw { stroke-dashoffset: 0; }

/* ═══════════ STORY ═══════════ */

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.story__visual { position: relative; }

.frame { position: relative; }
.frame--portrait { aspect-ratio: 3 / 4.2; max-width: 430px; }
.frame__art {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.frame__art--olive {
  background:
    radial-gradient(circle at 25% 20%, rgba(201,162,75,.22), transparent 50%),
    linear-gradient(160deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: var(--sage);
}
.frame__botanical { width: 62%; opacity: .9; }
.frame__border {
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}

.story__badge {
  position: absolute;
  right: -2.2rem; bottom: -2.4rem;
  width: 124px; height: 124px;
  background: var(--ivory);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 18px 50px rgba(46,51,32,.18);
}
.story__badge svg {
  position: absolute; inset: 10px;
  animation: spin 16s linear infinite;
}
.story__badge text {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  fill: var(--olive);
  text-transform: uppercase;
}
.story__badge-star { color: var(--gold); font-size: 1.3rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.story__text p:not(.section__eyebrow) {
  max-width: 54ch;
  margin-bottom: 1.3rem;
  color: rgba(35, 39, 26, .82);
}

.story__signature {
  margin-top: 2.4rem;
  color: var(--olive);
}
.story__signature svg { width: 190px; color: var(--gold); margin-bottom: .4rem; }
.story__signature span {
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--olive-soft);
}

/* ═══════════ SERVICES ═══════════ */

.services__head { max-width: 1240px; margin: 0 auto 4rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
  max-width: 1240px;
  margin: 0 auto;
}

.card {
  position: relative;
  padding: 2.6rem 2rem 2.4rem;
  border: 1px solid rgba(201, 162, 75, .22);
  background: rgba(250, 247, 239, .03);
  transition: transform .55s var(--ease-lux), border-color .45s, background .45s, box-shadow .55s;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 162, 75, .65);
  background: rgba(201, 162, 75, .06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
}

.card__num {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(201, 162, 75, .55);
}

.card__icon {
  width: 48px; height: 48px;
  color: var(--gold-bright);
  margin-bottom: 1.6rem;
  transition: transform .55s var(--ease-lux);
}
.card:hover .card__icon { transform: translateY(-4px) rotate(-4deg) scale(1.08); }

.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: .8rem;
  color: var(--champagne);
}
.card p {
  font-size: .92rem;
  color: rgba(250, 247, 239, .68);
}

.card__line {
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-lux);
}
.card:hover .card__line { transform: scaleX(1); }

/* ═══════════ SHOWCASE ═══════════ */

.showcase { max-width: 1240px; margin: 0 auto; }

.showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  margin-top: 3.5rem;
}
.showcase__row:has(.showcase__panel--wide) { grid-template-columns: 1fr; }

.showcase__panel--offset { margin-top: clamp(2rem, 6vw, 5rem); }

.showcase__art {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid; place-items: center;
  transition: box-shadow .6s;
}
.showcase__panel:hover .showcase__art { box-shadow: 0 30px 70px rgba(46, 51, 32, .3); }
.showcase__panel--wide .showcase__art { aspect-ratio: 21 / 9; }

.showcase__art--1 { background: linear-gradient(150deg, #4a5232, #2e3320 70%); }
.showcase__art--2 { background: linear-gradient(200deg, #1f2315, #343b1f 80%); }
.showcase__art--3 { background: linear-gradient(120deg, #3c4426, #262b18 60%, #43491f); }

.showcase__texture { position: absolute; inset: 0; width: 100%; height: 100%; }

.showcase__arch {
  width: 46%; aspect-ratio: 1 / 1.6;
  border: 2px solid var(--gold);
  border-bottom: none;
  border-radius: 999px 999px 0 0;
  position: relative;
  top: 12%;
  box-shadow: 0 0 60px rgba(201,162,75,.25), inset 0 0 40px rgba(201,162,75,.12);
  transition: transform .8s var(--ease-lux);
}
.showcase__panel:hover .showcase__arch { transform: scale(1.05); }

.showcase__moon {
  width: 34%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 60%, #9d7c33);
  box-shadow: 0 0 80px rgba(227, 200, 120, .5);
  transition: transform .8s var(--ease-lux);
}
.showcase__panel:hover .showcase__moon { transform: scale(1.07); }

.showcase__sparkle {
  position: absolute;
  color: var(--gold-bright);
  animation: twinkle 2.6s ease-in-out infinite;
}
.showcase__sparkle--a { top: 18%; left: 20%; font-size: 1.1rem; }
.showcase__sparkle--b { top: 30%; right: 18%; font-size: .8rem; animation-delay: .9s; }
.showcase__sparkle--c { bottom: 22%; left: 32%; font-size: .9rem; animation-delay: 1.7s; }
@keyframes twinkle {
  0%, 100% { opacity: .25; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.showcase__table {
  position: absolute;
  bottom: 18%; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.showcase__candle {
  position: absolute;
  bottom: calc(18% + 2px);
  width: 3px; height: 13%;
  background: var(--champagne);
}
.showcase__candle::after {
  content: '';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 12px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 50% 80%, var(--gold-bright), rgba(227,200,120,0) 75%);
  filter: blur(.5px);
  animation: flicker 1.8s ease-in-out infinite;
}
.showcase__candle--1 { left: 30%; }
.showcase__candle--2 { left: 50%; height: 16%; }
.showcase__candle--2::after { animation-delay: .5s; }
.showcase__candle--3 { left: 70%; height: 11%; }
.showcase__candle--3::after { animation-delay: 1.1s; }
@keyframes flicker {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .95; }
  40% { transform: translateX(-46%) scale(1.12, .92); opacity: .8; }
  70% { transform: translateX(-54%) scale(.94, 1.08); opacity: 1; }
}

.showcase__caption { padding: 1.5rem .2rem 0; display: flex; gap: 1.1rem; }
.showcase__index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.3;
}
.showcase__caption h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: .3rem;
}
.showcase__caption p {
  font-size: .92rem;
  color: rgba(35, 39, 26, .68);
  max-width: 48ch;
}

/* ═══════════ STATS ═══════════ */

.stats { padding: clamp(4rem, 8vw, 6.5rem) clamp(1.4rem, 6vw, 6rem); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat__num, .stat__plus {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: .6rem;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(250, 247, 239, .55);
}

/* ═══════════ VOICES ═══════════ */

.voices { text-align: center; }
.voices .section__eyebrow { justify-content: center; }
.voices .section__eyebrow::after {
  content: '';
  width: 44px; height: 1px;
  background: var(--gold);
}

.voices__stage {
  position: relative;
  max-width: 760px;
  margin: 2.5rem auto 0;
  min-height: 230px;
}
.voices__quote-mark {
  position: absolute;
  top: -3.2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 7rem;
  color: rgba(201, 162, 75, .3);
  line-height: 1;
  pointer-events: none;
}

.voices__slides { position: relative; min-height: 180px; }
.voices__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease-lux), transform .8s var(--ease-lux);
  pointer-events: none;
}
.voices__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }

.voices__slide p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--olive-deep);
  margin-bottom: 1.4rem;
}
.voices__slide cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.voices__dots { display: flex; gap: .7rem; justify-content: center; margin-top: 2rem; }
.voices__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background .35s, transform .35s;
  padding: 0;
}
.voices__dots button.is-active { background: var(--gold); transform: scale(1.25); }

/* ═══════════ CTA ═══════════ */

.cta {
  position: relative;
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.4rem, 6vw, 6rem);
  overflow: hidden;
}
.cta .section__eyebrow { justify-content: center; }
.cta .section__eyebrow::after {
  content: '';
  width: 44px; height: 1px;
  background: var(--gold);
}

.cta__ornament {
  position: absolute;
  top: 12%; right: 10%;
  font-size: clamp(3rem, 8vw, 6rem);
  color: rgba(201, 162, 75, .18);
  pointer-events: none;
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.cta__title em { font-style: italic; color: var(--gold-bright); }

.cta__sub {
  color: rgba(250, 247, 239, .7);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.cta__actions {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta__socials {
  display: flex; gap: 1rem; justify-content: center; align-items: center;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(250, 247, 239, .55);
}
.cta__socials a { transition: color .3s; }
.cta__socials a:hover { color: var(--gold-bright); }
.cta__socials span { color: var(--gold); }

/* ═══════════ FOOTER ═══════════ */

.footer {
  background: #20240f;
  color: rgba(250, 247, 239, .5);
  text-align: center;
  padding: 3rem 1.5rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}
.footer__tag {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: rgba(250, 247, 239, .65);
}
.footer__copy { font-size: .75rem; letter-spacing: .12em; }

/* ═══════════ RESPONSIVE ═══════════ */

.hide-mobile { display: inline; }

@media (max-width: 640px) {
  .hero {
    padding: 5.5rem 1.2rem 2rem;
  }
  .hero__title {
    margin-bottom: 1.4rem;
  }
  .hero__sub {
    margin-bottom: 1.8rem;
  }
  .hero__actions {
    gap: 0.8rem;
  }
  .hero__scroll {
    margin-top: 1rem;
  }
  .hero__scroll-line {
    height: 40px;
  }
  .bouquet.is-fixed {
    top: 62%;
    transform: translate(-50%, -50%) scale(0.78);
  }
  .marquee {
    transform: rotate(-1.2deg) scale(1);
    margin: -1rem 0;
  }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center;
    background: var(--olive-deep);
    gap: 2.2rem;
    transform: translateY(-100%);
    transition: transform .6s var(--ease-lux);
    z-index: -1;
  }
  .nav__links.is-open { transform: none; z-index: 0; }
  .nav__links a { color: var(--champagne) !important; font-size: 1rem; }
  .nav__right { position: relative; z-index: 2; }
  .nav__burger { display: flex; }
  .nav__links.is-open ~ .nav__burger span:first-child,
  .nav.menu-open .nav__burger span:first-child { transform: translateY(4.2px) rotate(45deg); }
  .nav.menu-open .nav__burger span:last-child { transform: translateY(-4.2px) rotate(-45deg); }
  .nav.menu-open .nav__burger span { background: var(--champagne); }
  .nav.menu-open .nav__logo-word { color: var(--champagne); }

  .story__grid { grid-template-columns: 1fr; }
  .frame--portrait { margin: 0 auto; }
  .story__badge { right: 0; }
  .showcase__row { grid-template-columns: 1fr; }
  .showcase__panel--offset { margin-top: 0; }
  .hide-mobile { display: none; }
  .hero__ornament--tl { display: none; }
  .reveal[data-reveal="left"] { transform: translateX(-24px); }
  .reveal[data-reveal="right"] { transform: translateX(24px); }
  .reveal[data-reveal="up"] { transform: translateY(30px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
}
