/* ============================================================
   Gi Cardoni — Body Splash Landing Page
   ============================================================ */

:root {
  --gi-cream: #FAF5EF;
  --gi-champagne: #F2E4D0;
  --gi-beige: #E8D5B8;
  --gi-nude: #F0DDD0;

  --gi-gold: #C9A84C;
  --gi-gold-dark: #A07828;
  --gi-gold-light: #E8C97A;
  --gi-shimmer: rgba(201, 168, 76, 0.25);

  --gi-rose: #DBA590;
  --gi-rose-dark: #C49A82;
  --gi-rose-light: #F0C4B0;

  --gi-espresso: #2C1A0E;
  --gi-brown: #5C3D24;
  --gi-muted: #9A7A60;

  --gi-cta-bg: #C9A84C;
  --gi-cta-text: #2C1A0E;
  --gi-cta-hover: #A07828;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --script: "Great Vibes", cursive;
  --sans: "Inter", "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  color: var(--gi-espresso);
  background: var(--gi-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ---------- Typography utilities ---------- */
.overline {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gi-gold-dark);
}
.overline.light { color: var(--gi-gold-light); }

h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; }
h1 { font-size: clamp(3rem, 6.4vw, 6.5rem); line-height: 1.12; }
h2 { font-size: clamp(2.2rem, 4.4vw, 4.2rem); }
h3 { font-size: 1.6rem; }

p { text-wrap: pretty; }

.script { font-family: var(--script); font-weight: 400; }

.diamond { color: var(--gi-gold); display: inline-block; transform: translateY(-1px); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gi-gold);
  --fg: var(--gi-espresso);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1.05rem 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--bg);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.4,0,.2,1), background .25s, box-shadow .35s, color .25s;
  box-shadow: 0 8px 24px -10px rgba(201,168,76,.55);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.btn:hover { background: var(--gi-gold-dark); border-color: var(--gi-gold-dark); transform: translateY(-1px) scale(1.02); box-shadow: 0 14px 32px -10px rgba(160,120,40,.6); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: scale(.98); }

.btn.ghost {
  background: transparent;
  color: var(--gi-espresso);
  border: 1px solid var(--gi-gold-dark);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--gi-gold); color: var(--gi-espresso); }

.btn.dark { --bg: var(--gi-espresso); color: var(--gi-cream); border-color: var(--gi-espresso); }

.btn.big { padding: 1.4rem 3rem; font-size: 0.95rem; letter-spacing: 0.28em; }

/* ---------- Layout container ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 245, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(201,168,76,.18);
}
.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gi-espresso);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.brand .ci { font-family: var(--script); color: var(--gi-gold-dark); font-size: 1.7rem; }
.brand .heart { color: var(--gi-gold); font-size: 0.8rem; }

.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gi-brown);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gi-gold-dark); }
.nav-cta {
  font-size: 0.72rem;
  padding: .7rem 1.3rem;
  letter-spacing: 0.2em;
}
@media (max-width: 800px) { .nav-links { display: none; } .nav-cta { display: inline-flex !important; } }

/* ---------- Shimmer particles ---------- */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gi-gold-light) 0%, var(--gi-gold) 50%, transparent 75%);
  opacity: 0;
  animation: rise linear infinite;
  filter: blur(.3px);
}
@keyframes rise {
  0%   { transform: translate3d(0,0,0) scale(1); opacity: 0; }
  10%  { opacity: var(--op, .55); }
  90%  { opacity: var(--op, .55); }
  100% { transform: translate3d(var(--dx, 20px), -110vh, 0) scale(.6); opacity: 0; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  padding: 9rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(232,201,122,.18) 0%, transparent 55%),
    linear-gradient(160deg, var(--gi-cream) 0%, var(--gi-champagne) 100%);
  position: relative;
  display: flex;
  align-items: center;
}
.hero::before {
  /* subtle silk noise */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.66 0 0 0 0 0.30 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: .08;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-text .overline { display: inline-block; margin-bottom: 1.8rem; }
.hero-text h1 { color: var(--gi-espresso); margin-bottom: 1.8rem; }
.hero-text h1 .accent { font-family: var(--script); color: var(--gi-gold-dark); font-weight: 400; display: inline-block; padding: 0 .15em 0 .05em; font-size: 1.18em; line-height: .9; transform: translateY(.04em); }
.hero-text p.lead { color: var(--gi-brown); font-size: 1.125rem; max-width: 32rem; margin-bottom: 2.4rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-social { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; margin-top: 2.4rem; }
.hero-social-row { display: flex; align-items: center; gap: .8rem; }
.hero-social .stars { color: var(--gi-gold); letter-spacing: 1px; }
.hero-social .label { color: var(--gi-muted); font-size: .875rem; }
.hero-social .label strong { color: var(--gi-brown); font-weight: 600; }

/* Avatar cluster — social proof */
.av-cluster { display: flex; }
.av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--av-bg, var(--gi-gold));
  border: 2.5px solid var(--gi-cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  margin-left: -9px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  text-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.av:first-child { margin-left: 0; }

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  min-height: 540px;
}
.hero-bottle {
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(201,168,76,.28)) drop-shadow(0 8px 14px rgba(92,61,36,.15));
}
.hero-bottle img {
  max-height: 600px;
  width: auto;
  border-radius: 12px;
}
.hero-halo {
  position: absolute;
  top: 50%; left: 50%;
  width: 70%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,201,122,.45) 0%, rgba(232,201,122,0) 65%);
  filter: blur(20px);
  z-index: 1;
  animation: pulse 5s ease-in-out infinite;
}
.hero-caption {
  position: relative;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gi-gold-dark);
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
}
.hero-caption .diamond-mark { color: var(--gi-gold); font-size: .9rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes pulse {
  0%, 100% { opacity: .8; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;  transform: translate(-50%,-50%) scale(1.08); }
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}
.scroll-cue span {
  display: block;
  color: var(--gi-muted);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.scroll-cue .arrow {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, var(--gi-gold-dark));
  margin: 0 auto;
  position: relative;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { opacity: .3; transform: scaleY(.7); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; min-height: 360px; }
  .hero-bottle img { max-height: 380px; }
  .hero { padding-top: 7rem; }
}

/* ---------- Section common ---------- */
.section { padding: 7rem 0; position: relative; overflow: hidden; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-head .overline { margin-bottom: 1.4rem; display: inline-block; }
.section-head h2 { margin-bottom: 1rem; }
.section-head .sub { color: var(--gi-brown); font-size: 1.075rem; }

.section.dark { background: var(--gi-espresso); color: var(--gi-cream); }
.section.dark h2 { color: var(--gi-cream); }
.section.dark .sub { color: rgba(250,245,239,.7); }

.section.champagne { background: var(--gi-champagne); }
.section.rose { background: var(--gi-rose-light); }

/* ---------- Section 2: Dual products ---------- */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.product-card {
  position: relative;
  border-radius: 28px;
  padding: 3rem 2.5rem;
  overflow: hidden;
  background: var(--gi-champagne);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
  border: 1px solid rgba(201,168,76,.15);
}
.product-card.rose { background: linear-gradient(155deg, var(--gi-rose-light) 0%, var(--gi-rose) 100%); }
.product-card.cham { background: linear-gradient(155deg, #F9EFE0 0%, var(--gi-champagne) 100%); }
.product-card::before {
  /* silk shimmer overlay */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.4) 0%, transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.15) 0%, transparent 40%);
  pointer-events: none;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(160,120,40,.4); }
.product-card .badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gi-espresso);
  color: var(--gi-gold-light);
  font-size: .65rem;
  letter-spacing: .25em;
  font-weight: 600;
  padding: .55rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 4;
}
.product-card .badge.gold { background: var(--gi-gold); color: var(--gi-espresso); }
.product-shot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 340px;
  margin: 1rem 0 1.5rem;
}
.product-shot img { max-height: 100%; width: auto; border-radius: 8px; filter: drop-shadow(0 20px 30px rgba(92,61,36,.25)); }
.product-shot .glow {
  position: absolute;
  width: 60%;
  aspect-ratio: 1/1;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,255,255,.5) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.product-info { position: relative; z-index: 2; text-align: center; }
.product-info .name {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gi-espresso);
  letter-spacing: .04em;
  font-weight: 400;
  margin-bottom: .25rem;
}
.product-info .name .gold-foil {
  background: linear-gradient(135deg, var(--gi-gold-dark) 0%, var(--gi-gold-light) 50%, var(--gi-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-info .meta { color: var(--gi-brown); font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.25rem; }
.product-info .desc { color: var(--gi-brown); font-size: 1rem; line-height: 1.65; margin-bottom: 1.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.notes { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  min-width: 80px;
}
.note .ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(201,168,76,.3);
  display: grid; place-items: center;
  font-size: 1.3rem;
  backdrop-filter: blur(4px);
}
.note .lbl { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gi-brown); font-weight: 600; }
.product-buy { display: flex; justify-content: center; align-items: center; gap: 1.2rem; margin-top: auto; padding-top: 1rem; flex-wrap: wrap; }
.product-buy .price { font-family: var(--serif); font-size: 1.8rem; color: var(--gi-espresso); white-space: nowrap; flex-shrink: 0; line-height: 1; }
.product-buy .price small { display: block; font-size: .7rem; color: var(--gi-muted); letter-spacing: .2em; text-transform: uppercase; margin-top: .15rem; }

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

/* ---------- Section 3: Olfactive Journey ---------- */
.journey-section { position: relative; overflow: hidden; }
.journey-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.journey-head { text-align: center; margin-bottom: 2.5rem; }
.j-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--gi-gold-light);
  letter-spacing: .04em;
  margin-bottom: .35rem;
}
.j-tag { display: block; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gi-rose); }

/* Tier cards */
.journey-tier {
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(201,168,76,.18);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.journey-tier:hover { border-color: rgba(201,168,76,.5); transform: translateY(-3px); }

.t-top   { background: linear-gradient(135deg, rgba(242,228,208,.12) 0%, rgba(201,168,76,.04) 100%); }
.t-heart { background: linear-gradient(135deg, rgba(219,165,144,.18) 0%, rgba(219,165,144,.05) 100%); }
.t-base  { background: linear-gradient(135deg, rgba(201,168,76,.18) 0%, rgba(160,120,40,.06) 100%); }

/* Shimmer sweep */
.journey-tier::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(201,168,76,.08) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform .9s ease;
}
.journey-tier:hover::before { transform: translateX(130%); }

.tier-label-row { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }

.tier-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gi-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.2), 0 0 12px rgba(201,168,76,.5);
  flex-shrink: 0;
  animation: tier-pulse 2.5s ease-in-out infinite;
}
.t-heart .tier-dot { background: var(--gi-rose); box-shadow: 0 0 0 3px rgba(219,165,144,.25), 0 0 12px rgba(219,165,144,.5); }
.t-base .tier-dot  { background: var(--gi-gold-dark); box-shadow: 0 0 0 3px rgba(160,120,40,.25), 0 0 12px rgba(201,168,76,.4); }

@keyframes tier-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .6; }
}

.tier-label { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gi-gold-light); font-weight: 600; }

/* Pills */
.tier-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.note-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem 1.05rem;
  background: rgba(250,245,239,.07);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 999px;
  font-size: .86rem;
  color: var(--gi-cream);
  animation: pill-float 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.55s);
  transition: background .3s, border-color .25s, transform .2s;
}
.note-pill:hover { background: rgba(201,168,76,.16); border-color: var(--gi-gold); transform: scale(1.06) translateY(-2px); }

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

/* Wave connector */
.journey-connector {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1rem 0;
  padding: 0 .25rem;
}
.wave-svg { flex: 1; height: 20px; overflow: visible; }
.wave-path {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: wave-draw 1.8s cubic-bezier(.4,0,.2,1) forwards;
  animation-play-state: paused;
}
.journey-col.in .wave-path { animation-play-state: running; }

@keyframes wave-draw { to { stroke-dashoffset: 0; } }

.c-time { font-size: .62rem; color: var(--gi-muted); letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }

@media (max-width: 800px) { .journey-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- Section 4: Brand Story ---------- */
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: center; }
.story-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--gi-gold);
  box-shadow: 0 30px 70px -30px rgba(92,61,36,.4);
}
.story-photo .placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(201,168,76,.06) 0 14px, rgba(201,168,76,.12) 14px 28px),
    linear-gradient(160deg, var(--gi-nude) 0%, var(--gi-rose-light) 50%, var(--gi-champagne) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
}
.story-photo .placeholder .label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--gi-brown);
  background: rgba(250,245,239,.85);
  padding: .75rem 1.25rem;
  border: 1px dashed var(--gi-gold-dark);
  border-radius: 4px;
}
.story-photo .corner {
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid var(--gi-gold);
}
.story-photo .corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.story-photo .corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.story-text .overline { margin-bottom: 1.5rem; display: inline-block; }
.story-text h2 { margin-bottom: 2rem; }
.story-text p { color: var(--gi-brown); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.4rem; max-width: 36rem; }
.story-text blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.65rem;
  color: var(--gi-espresso);
  line-height: 1.35;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gi-gold);
  margin: 2.2rem 0 1.4rem;
  max-width: 36rem;
}
.story-text blockquote cite {
  display: block;
  font-style: normal;
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--gi-muted);
  text-transform: uppercase;
  margin-top: 1rem;
  font-family: var(--sans);
}
.story-text .sig { font-family: var(--script); font-size: 2.4rem; color: var(--gi-gold-dark); }

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

/* ---------- Section 5: Ritual steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 50px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--gi-gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--gi-cream);
  border: 1px solid var(--gi-gold);
  margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gi-gold-dark);
  position: relative;
  box-shadow: 0 8px 24px -10px rgba(201,168,76,.4);
}
.step-num::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
}
.step h3 {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gi-espresso);
  margin-bottom: .8rem;
}
.step p { color: var(--gi-brown); font-size: .98rem; max-width: 18rem; margin: 0 auto; }

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
}

/* ---------- Section 6: Bento Grid ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bento-card {
  position: relative;
  border-radius: 22px;
  padding: 2.4rem 2rem;
  overflow: hidden;
  background: rgba(250,245,239,.04);
  border: 1px solid rgba(201,168,76,.15);
  transition: border-color .35s, transform .35s, box-shadow .35s;
}
.bento-card:hover {
  border-color: rgba(201,168,76,.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -20px rgba(201,168,76,.25);
}

/* Grid placement — bento assimétrico */
.b-shimmer  { grid-column: 1 / 3; grid-row: 1; }
.b-classico { grid-column: 3;     grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: flex-end; }
.b-vol      { grid-column: 1;     grid-row: 2; }
.b-rastro   { grid-column: 2;     grid-row: 2; }
.b-suave    { grid-column: 1;     grid-row: 3; }
.b-todas    { grid-column: 2 / 4; grid-row: 3; }

/* Backgrounds por card */
.b-shimmer {
  background: linear-gradient(135deg,
    rgba(201,168,76,.18) 0%,
    rgba(44,26,14,.55) 100%);
}
.b-classico {
  background: linear-gradient(175deg,
    rgba(219,165,144,.15) 0%,
    rgba(44,26,14,.65) 100%);
}
.b-rastro {
  background: linear-gradient(160deg,
    rgba(44,26,14,.5) 0%,
    rgba(201,168,76,.1) 100%);
}
.b-todas {
  background: linear-gradient(120deg,
    rgba(201,168,76,.12) 0%,
    rgba(219,165,144,.1) 50%,
    rgba(44,26,14,.5) 100%);
}
.b-vol, .b-suave { background: rgba(250,245,239,.03); }

/* Decorativo de fundo grande */
.b-deco {
  position: absolute;
  font-size: 8.5rem;
  line-height: 1;
  right: -.5rem;
  top: -.5rem;
  opacity: .055;
  color: var(--gi-gold-light);
  pointer-events: none;
  font-family: var(--serif);
  user-select: none;
  z-index: 0;
}
.b-classico .b-deco { font-size: 5rem; right: 1.2rem; top: 1.2rem; opacity: .09; }
.b-todas .b-deco    { font-size: 7rem; right: 0; top: auto; bottom: -.8rem; }

.b-num-bg {
  position: absolute;
  font-family: var(--serif);
  font-size: 6.5rem;
  font-weight: 300;
  right: -.5rem;
  bottom: -.8rem;
  opacity: .07;
  color: var(--gi-gold-light);
  pointer-events: none;
  line-height: 1;
  user-select: none;
  z-index: 0;
}

/* Tag overline */
.b-tag {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gi-gold);
  font-weight: 700;
  display: block;
  margin-bottom: .8rem;
  position: relative;
  z-index: 2;
}

/* Tipografia */
.bento-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--gi-cream);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: .9rem;
  position: relative;
  z-index: 2;
}
.bento-card p {
  color: rgba(250,245,239,.68);
  font-size: .93rem;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

/* Pill de destaque no shimmer */
.b-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.4rem;
  padding: .5rem 1.1rem;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 999px;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gi-gold-light);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Barra de duração no rastro */
.b-hours { margin: .8rem 0 1rem; position: relative; z-index: 2; }
.b-bar {
  height: 3px;
  background: rgba(201,168,76,.2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: .6rem;
}
.b-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gi-rose) 0%, var(--gi-gold) 100%);
  border-radius: 999px;
  transition: width 1.6s cubic-bezier(.4,0,.2,1);
}
.bento-card.in .b-fill { width: 78%; }
.b-dur {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gi-gold-light);
  display: block;
  line-height: 1;
}

/* Responsivo */
@media (max-width: 960px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .b-shimmer  { grid-column: 1 / 3; grid-row: auto; }
  .b-classico { grid-column: 1;     grid-row: auto; }
  .b-vol      { grid-column: 2;     grid-row: auto; }
  .b-rastro   { grid-column: 1;     grid-row: auto; }
  .b-suave    { grid-column: 2;     grid-row: auto; }
  .b-todas    { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 580px) {
  .bento-grid { grid-template-columns: 1fr; }
  .b-shimmer, .b-classico, .b-vol,
  .b-rastro, .b-suave, .b-todas { grid-column: 1; grid-row: auto; }
}

/* ---------- Section 7: Testimonials — Infinite Columns ---------- */
.testi-section { overflow: hidden; }
.testi-section .section-head { margin-bottom: 3rem; }

.testi-columns {
  display: flex;
  gap: 1.25rem;
  height: 640px;
  overflow: hidden;
  -webkit-mask: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  padding: 0 max(1.5rem, calc((100vw - 1280px) / 2 + 1.5rem));
}

.testi-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.testi-col-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: testi-scroll var(--dur, 30s) linear infinite;
  will-change: transform;
}
.testi-col-inner:hover { animation-play-state: paused; }

@keyframes testi-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* Oculta colunas em telas menores */
.col-hide-sm { display: none; }
.col-hide-md { display: none; }
@media (min-width: 640px)  { .col-hide-sm { display: flex; } }
@media (min-width: 1024px) { .col-hide-md { display: flex; } }

/* Card individual */
.tcard {
  background: rgba(250,245,239,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 18px;
  padding: 1.75rem;
  flex-shrink: 0;
  transition: border-color .3s, transform .3s;
}
.tcard:hover { border-color: rgba(201,168,76,.55); transform: scale(1.015); }

.tcard-stars {
  color: var(--gi-gold);
  font-size: .82rem;
  letter-spacing: 3px;
  margin-bottom: .9rem;
}
.tcard-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gi-brown);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,.18);
}
.tcard-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gi-rose) 0%, var(--gi-gold) 100%);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gi-cream);
  flex-shrink: 0;
}
.tcard-name { font-weight: 600; font-size: .88rem; color: var(--gi-espresso); }
.tcard-city { font-size: .7rem; color: var(--gi-muted); letter-spacing: .15em; text-transform: uppercase; margin-top: .1rem; }

/* ---------- Section 8: Kit Upsell ---------- */
.kit-section {
  background: linear-gradient(135deg, var(--gi-gold-dark) 0%, var(--gi-rose-dark) 60%, #8E5C3F 100%);
  color: var(--gi-cream);
  position: relative;
  overflow: hidden;
}
.kit-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}
.kit-section .overline { color: rgba(250,245,239,.9); }
.kit-section h2 { color: var(--gi-cream); }
.kit-inner { text-align: center; max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.kit-shot {
  display: flex;
  justify-content: center;
  gap: -2rem;
  margin: 2.5rem 0 1.5rem;
  position: relative;
  height: 360px;
  align-items: center;
}
.kit-shot img {
  max-height: 320px;
  width: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.3));
  border-radius: 8px;
}
.kit-shot .kit-bottle { transition: transform .4s; }
.kit-shot .kit-bottle:first-child { transform: rotate(-6deg) translateX(20px); z-index: 2; }
.kit-shot .kit-bottle:last-child { transform: rotate(6deg) translateX(-20px); z-index: 1; }
.kit-shot:hover .kit-bottle:first-child { transform: rotate(-3deg) translateX(10px); }
.kit-shot:hover .kit-bottle:last-child { transform: rotate(3deg) translateX(-10px); }

.kit-badge {
  display: inline-block;
  padding: .55rem 1.2rem;
  background: var(--gi-espresso);
  color: var(--gi-gold-light);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.kit-price { margin: 1.5rem 0 2rem; }
.kit-price .was { text-decoration: line-through; color: rgba(250,245,239,.65); font-size: 1rem; }
.kit-price .now {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gi-cream);
  display: block;
  line-height: 1;
}
.kit-price .now .currency { font-size: .5em; vertical-align: top; }
.kit-price .save { display: block; margin-top: .6rem; font-size: .9rem; color: var(--gi-gold-light); letter-spacing: .1em; font-weight: 600; }

.kit-urgency {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.2rem;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(232,201,122,.4);
  border-radius: 999px;
  font-size: .85rem;
  margin-bottom: 2rem;
}
.kit-urgency .fire { color: #FFB94F; }
.kit-urgency strong { color: var(--gi-gold-light); }

.kit-trust { margin-top: 1.5rem; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; font-size: .82rem; color: rgba(250,245,239,.85); letter-spacing: .1em; }
.kit-trust span .ico { color: var(--gi-gold-light); margin-right: .4rem; }

/* ---------- Section 9: Checkout ---------- */
.checkout-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.product-tabs {
  display: inline-flex;
  background: rgba(250,245,239,.06);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 999px;
  padding: .4rem;
  margin: 2rem 0;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tab {
  padding: .8rem 1.5rem;
  background: transparent;
  border: none;
  color: rgba(250,245,239,.7);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.tab.active { background: var(--gi-gold); color: var(--gi-espresso); }
.tab:hover:not(.active) { color: var(--gi-cream); }

.order-card {
  background: rgba(250,245,239,.04);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}
.order-row { display: flex; justify-content: space-between; align-items: center; padding: .8rem 0; border-bottom: 1px solid rgba(201,168,76,.15); }
.order-row:last-child { border-bottom: none; padding-bottom: 0; }
.order-row .k { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,245,239,.6); }
.order-row .v { font-family: var(--serif); font-size: 1.2rem; color: var(--gi-cream); }
.order-row.total .v { color: var(--gi-gold-light); font-size: 1.8rem; }

.qty { display: inline-flex; align-items: center; gap: .8rem; }
.qty button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gi-gold);
  color: var(--gi-gold-light);
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
}
.qty button:hover { background: var(--gi-gold); color: var(--gi-espresso); }
.qty .qval { font-family: var(--serif); font-size: 1.4rem; color: var(--gi-cream); min-width: 1.2em; text-align: center; }

.checkout-fine { font-size: .8rem; color: var(--gi-muted); max-width: 30rem; margin: 1.5rem auto 0; line-height: 1.6; }
.checkout-badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; font-size: .82rem; color: rgba(250,245,239,.8); }
.checkout-pay { font-size: .82rem; color: rgba(250,245,239,.7); margin-top: 1rem; }

/* ---------- Footer ---------- */
.footer {
  background: #1A0F07;
  color: rgba(250,245,239,.7);
  padding: 5rem 2rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; max-width: 1280px; margin: 0 auto 3rem; }
.footer-grid h4 { font-family: var(--sans); font-size: .78rem; font-weight: 700; color: var(--gi-gold-light); letter-spacing: .25em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-brand .brand-large { font-family: var(--serif); font-size: 2rem; color: var(--gi-gold-light); margin-bottom: .5rem; display: block; }
.footer-brand .brand-large .ci { font-family: var(--script); font-size: 2.2rem; }
.footer-brand .tag { font-style: italic; font-family: var(--serif); font-size: 1.1rem; color: var(--gi-cream); margin-bottom: 1.5rem; }
.socials { display: flex; gap: .8rem; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gi-gold-dark);
  display: grid; place-items: center;
  color: var(--gi-gold-light);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.socials a:hover { background: var(--gi-gold); color: var(--gi-espresso); }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { color: rgba(250,245,239,.75); text-decoration: none; font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: var(--gi-gold-light); }
.footer-contact p { font-size: .9rem; margin-bottom: .4rem; }
.footer-legal {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(201,168,76,.15);
  padding-top: 2rem;
  font-size: .72rem;
  color: rgba(250,245,239,.45);
  line-height: 1.8;
  letter-spacing: .02em;
}

/* ---------- Mobile: product cards ---------- */
@media (max-width: 900px) {
  /* Remove card padding so image breaks free */
  .product-card {
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
  }
  /* Badge re-pin after padding removal */
  .product-card .badge {
    top: 1rem;
    right: 1rem;
  }
  /* Image fills full card width */
  .product-shot {
    height: auto;
    aspect-ratio: 3/4;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
  }
  .product-shot img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    filter: none;
  }
  .product-shot .glow { display: none; }
  /* Restore padding below image for text */
  .product-info {
    padding: 1.6rem 1.6rem 2rem;
  }
}

/* ---------- Mobile: kit section ---------- */
@media (max-width: 768px) {
  .kit-shot {
    height: auto;
    min-height: 52vw;
    gap: 0;
  }
  .kit-shot img {
    max-height: 58vw;
  }
  .kit-bottle { position: relative; }
  .kit-shot .kit-bottle:first-child { transform: rotate(-5deg) translateX(14px); }
  .kit-shot .kit-bottle:last-child  { transform: rotate(5deg) translateX(-14px); }
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 5rem 0; }
  .wrap { padding: 0 1.4rem; }
}

/* ---------- Hero decorative rings ---------- */
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.deco-svg {
  width: min(520px, 95%);
  height: auto;
  animation: deco-spin 40s linear infinite;
  transform-origin: center;
  opacity: 0.9;
}
@keyframes deco-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.deco-spark {
  position: absolute;
  color: var(--gi-gold);
  font-size: 1rem;
  pointer-events: none;
  animation: spark-pulse 3.5s ease-in-out infinite;
}
.deco-spark.s1 { top: 10%;  left: 18%;  animation-delay: 0s;    font-size: 1.1rem; }
.deco-spark.s2 { top: 15%;  right: 14%; animation-delay: 1.1s;  font-size: .75rem; }
.deco-spark.s3 { bottom: 18%; left: 12%; animation-delay: 2.2s;  font-size: .85rem; }
.deco-spark.s4 { bottom: 22%; right: 16%; animation-delay: .6s;  font-size: .5rem; color: var(--gi-gold-light); }
@keyframes spark-pulse {
  0%, 100% { opacity: .25; transform: scale(.9) translateY(0); }
  50%       { opacity: .9;  transform: scale(1.2) translateY(-4px); }
}

/* ---------- Hero model portrait override ---------- */
.hero-bottle.hero-model {
  animation: none;
  filter: drop-shadow(0 40px 70px rgba(44,26,14,.3));
}
.hero-bottle.hero-model img {
  max-height: 720px;
  width: auto;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .hero-bottle.hero-model img { max-height: 460px; }
}

/* ---------- Product shot — tamanho maior ---------- */
.product-shot { height: 420px; }

/* ---------- Story photo real image ---------- */
.story-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Section 5.5 — Macro Shimmer ---------- */
.macro-section { position: relative; overflow: hidden; }
.macro-inner {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: stretch;
}
.macro-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(.68);
  transform: scale(1.05);
  transition: transform 10s ease-out;
  z-index: 0;
}
.macro-section:hover .macro-img { transform: scale(1.09); }
.macro-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(44,26,14,.55) 0%,
    rgba(44,26,14,.05) 35%,
    rgba(44,26,14,.05) 60%,
    rgba(44,26,14,.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.macro-content {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.macro-content .overline { margin-bottom: 1.4rem; display: inline-block; }
.macro-content h2 {
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.55);
  font-weight: 300;
}
.macro-content p {
  color: rgba(255,255,255,.88);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2.4rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Kit single image ---------- */
.kit-shot .kit-img {
  max-height: 420px;
  width: auto;
  border-radius: 16px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.4));
  margin: 0 auto;
  transition: transform .65s cubic-bezier(.4,0,.2,1), filter .4s;
}
.kit-shot:hover .kit-img {
  transform: scale(1.04) translateY(-8px);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.45));
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .48s; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, calc(100% + 5rem));
  opacity: 0;
  background: var(--gi-espresso);
  color: var(--gi-gold-light);
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: .9rem;
  letter-spacing: .1em;
  z-index: 100;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.4);
  border: 1px solid var(--gi-gold-dark);
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
