:root {
  --cream: #FBF7F1;
  --cream-2: #F4EDE3;
  --ink: #241E28;
  --ink-2: #3A3242;
  --ink-soft: #6B6273;
  --rose: #C08B80;
  --rose-deep: #96605A;
  --gold: #8F6E30;
  --gold-soft: #C0A063;
  --gold-light: #D9BE85;
  --plum: #211A28;
  --line: rgba(36, 30, 40, .13);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

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

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: -.01em; }

h1 { font-size: clamp(3rem, 7.4vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.7rem); }
h3 { font-size: 1.45rem; }

em { font-style: italic; font-weight: 400; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container.narrow { width: min(880px, 92vw); }
.center { text-align: center; }

/* ---------- stars ---------- */
.stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.stars i {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: .0;
  animation: twinkle var(--d, 5s) ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: .1; transform: scale(.8); }
  50% { opacity: .55; transform: scale(1.15); }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: box-shadow .45s var(--ease);
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 241, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.nav.scrolled::before { opacity: 1; }
.nav-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  transition: padding .45s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 1px 0 var(--line);
}
.nav.scrolled .nav-inner { padding: 15px 0; }

.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: .01em;
  position: relative;
  z-index: 60;
  display: block;
}
.brand img { height: 36px; width: auto; display: block; }
.brand em { color: var(--rose-deep); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color .3s;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.btn { color: var(--cream); }
.nav-links a.btn:hover { background: var(--rose-deep); border-color: var(--rose-deep); color: var(--cream); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid var(--ink);
  transition: all .4s var(--ease);
  white-space: nowrap;
}
.btn-solid { background: var(--ink); color: var(--cream); }
.btn-solid:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--ink-soft); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-small { padding: 11px 22px; background: var(--ink); color: var(--cream); border: 1px solid var(--ink); }
.btn-small:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.btn.big { padding: 21px 46px; font-size: .88rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 190, 133, .30), rgba(217, 190, 133, 0) 65%);
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform .9s var(--ease);
}
.hero-inner {
  position: relative;
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}
.eyebrow {
  font-size: .76rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero h1 { margin-bottom: 26px; }
.hero h1 em { color: var(--rose-deep); }
.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 30em;
  margin-bottom: 42px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-visual { position: relative; justify-self: center; }
.moon {
  position: relative;
  width: clamp(220px, 26vw, 350px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 33% 28%, #FFFDF8, #F4EADB 46%, #E6D4BB 72%, #D6BFA1 100%);
  box-shadow:
    0 0 70px rgba(217, 190, 133, .55),
    0 0 150px rgba(217, 190, 133, .30),
    inset -20px -16px 46px rgba(150, 120, 92, .28);
  animation: float 9s ease-in-out infinite;
}
.moon::before, .moon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(150, 122, 96, .1);
  filter: blur(4px);
}
.moon::before { width: 26%; height: 26%; top: 22%; left: 22%; }
.moon::after { width: 15%; height: 15%; bottom: 24%; right: 28%; }
.moon-shadow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 80% 78%, rgba(33, 26, 40, .24), transparent 52%);
  mix-blend-mode: multiply;
  width: clamp(220px, 26vw, 350px);
  aspect-ratio: 1;
  animation: float 9s ease-in-out infinite;
}
.orbit {
  position: absolute;
  left: 50%; top: 50%;
  width: 152%;
  aspect-ratio: 1;
  border: 1px solid rgba(185, 151, 91, .38);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: spin 46s linear infinite;
}
.orbit-dot {
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px 3px rgba(185, 151, 91, .6);
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(342deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.scroll-hint i {
  width: 1px; height: 54px;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- marquee ---------- */
.marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  background: rgba(244, 237, 227, .5);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { position: relative; z-index: 2; padding: clamp(90px, 12vw, 150px) 0; }

.label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 34px;
}
.label b { font-weight: 500; color: var(--rose-deep); }
.label::after {
  content: "";
  flex: 0 0 64px;
  height: 1px;
  background: rgba(185, 151, 91, .5);
}
.center .label { justify-content: center; }
.center .label::before {
  content: "";
  flex: 0 0 64px;
  height: 1px;
  background: rgba(185, 151, 91, .5);
}

.section-head { max-width: 640px; margin-bottom: 66px; }
.section-sub { margin-top: 22px; color: var(--ink-soft); }

.quote {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.22;
  font-weight: 400;
  margin-bottom: 34px;
}
.quote em { color: var(--rose-deep); }
.lead { color: var(--ink-soft); font-size: 1.06rem; }

.manifesto { text-align: left; }

/* ---------- collection ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -34px rgba(36, 30, 40, .4);
}
.stage {
  position: relative;
  height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 44px;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(244, 237, 227, .9), rgba(251, 247, 241, .2)),
    var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.halo {
  position: absolute;
  left: 50%; top: 38%;
  width: 170px; height: 170px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--halo), transparent 68%);
  filter: blur(6px);
  opacity: .85;
  animation: pulse 4.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(.94); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); } }
.flame {
  position: absolute;
  top: 70px;
  width: 15px; height: 26px;
  background: radial-gradient(circle at 50% 72%, #FFF6DC 12%, #F7D487 42%, #E8A451 74%, rgba(232, 164, 81, 0) 78%);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  transform-origin: 50% 100%;
  animation: flicker 2.6s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .96; }
  25% { transform: scale(1.06, 1.12) rotate(-2deg); opacity: 1; }
  55% { transform: scale(.95, .96) rotate(2deg); opacity: .9; }
  80% { transform: scale(1.04, 1.05) rotate(-1deg); opacity: 1; }
}
.wick {
  position: absolute;
  top: 94px;
  width: 2px; height: 8px;
  background: var(--ink-2);
  border-radius: 1px;
}
.jar {
  position: relative;
  width: 96px; height: 104px;
  border-radius: 8px 8px 14px 14px;
  background: linear-gradient(158deg, var(--c1), var(--c2));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .32),
    inset -14px 0 24px rgba(0, 0, 0, .14),
    inset 10px 0 18px rgba(255, 255, 255, .16),
    0 26px 34px -22px rgba(36, 30, 40, .55);
}
.jar::before {
  content: "";
  position: absolute;
  top: -7px; left: 4px; right: 4px;
  height: 14px;
  border-radius: 50%;
  background: var(--wax);
  box-shadow: inset 0 -3px 6px rgba(0, 0, 0, .08);
}
.jar-label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-style: normal;
  font-family: var(--serif);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  padding: 7px 12px 6px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 2px;
  white-space: nowrap;
}

.card-body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.card-top h3 { font-size: 1.7rem; }
.price { font-size: .92rem; letter-spacing: .08em; color: var(--gold); }
.notes {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 12px 0 14px;
}
.desc { color: var(--ink-soft); font-size: .97rem; }
.meta { font-size: .8rem; letter-spacing: .1em; color: var(--ink-soft); margin-top: 14px; }
.card-link {
  margin-top: auto;
  padding-top: 22px;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--line);
  transition: color .3s, letter-spacing .3s;
}
.card-link:hover { color: var(--rose-deep); letter-spacing: .22em; }

.collection-note {
  margin-top: 54px;
  text-align: center;
  color: var(--ink-soft);
  font-size: .95rem;
}
.collection-note a {
  color: var(--rose-deep);
  border-bottom: 1px solid rgba(169, 113, 106, .4);
  transition: border-color .3s;
}
.collection-note a:hover { border-color: var(--rose-deep); }

/* ---------- ritual (dark band) ---------- */
.ritual {
  background:
    radial-gradient(90% 60% at 15% 0%, rgba(185, 151, 91, .14), transparent 60%),
    radial-gradient(70% 50% at 85% 100%, rgba(192, 139, 128, .13), transparent 60%),
    var(--plum);
  color: var(--cream-2);
}
.section-head.light h2 { color: var(--cream); }
.section-head.light h2 em { color: var(--gold-light); }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  counter-reset: step;
}
.steps li { position: relative; padding-top: 30px; border-top: 1px solid rgba(217, 190, 133, .3); }
.step-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 18px;
}
.steps h3 { color: var(--cream); margin-bottom: 12px; }
.steps p { font-size: .95rem; color: rgba(244, 237, 227, .66); }

.stats {
  margin-top: 84px;
  padding-top: 46px;
  border-top: 1px solid rgba(217, 190, 133, .25);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stats div { text-align: center; }
.stats strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--gold-light);
  line-height: 1.1;
}
.stats span {
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244, 237, 227, .6);
}

/* ---------- historia ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.split-text h2 { margin-bottom: 30px; }
.split-text h2 em { color: var(--rose-deep); }
.split-text p { color: var(--ink-soft); margin-bottom: 20px; }
.split-text blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  color: var(--ink);
  margin-top: 38px;
  padding-left: 26px;
  border-left: 1px solid var(--gold);
}

.split-visual { text-align: center; }
.phases { color: var(--gold); opacity: .75; margin-bottom: 46px; }
.frame {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  padding: 70px 70px 54px;
  background: linear-gradient(170deg, #fff, var(--cream-2));
  border: 1px solid var(--line);
  box-shadow: 0 40px 70px -44px rgba(36, 30, 40, .5);
}
.frame .halo { top: 24%; }
.frame .flame { top: 40px; }
.frame .wick { top: 62px; }
.jar.big { width: 116px; height: 128px; }
.jar.big::before { top: -8px; height: 16px; }
.frame-caption {
  margin-top: 22px;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- features ---------- */
.detalhes { padding-top: 0; }
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding-top: clamp(70px, 9vw, 110px);
  border-top: 1px solid var(--line);
}
.feature svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 20px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature p { font-size: .93rem; color: var(--ink-soft); }

/* ---------- cta ---------- */
.cta { background: linear-gradient(var(--cream), var(--cream-2)); }
.cta-moon {
  width: 86px; height: 86px;
  border-radius: 50%;
  margin: 0 auto 40px;
  background: radial-gradient(circle at 34% 30%, #FFFDF8, #F1E5D2 55%, #DCC7A6 100%);
  box-shadow: 0 0 44px rgba(217, 190, 133, .65), inset -8px -7px 18px rgba(150, 120, 92, .3);
}
.cta h2 { margin-bottom: 24px; }
.cta h2 em { color: var(--rose-deep); }
.cta .lead { margin-bottom: 44px; }
.cta-handle {
  margin-top: 26px;
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  background: var(--plum);
  color: rgba(244, 237, 227, .75);
  padding: 60px 0;
}
.footer .brand { color: var(--cream); font-size: 1.4rem; }
.footer .brand img { height: 34px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244, 237, 227, .62);
  transition: color .3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: .78rem; letter-spacing: .06em; color: rgba(244, 237, 227, .45); }

/* ---------- reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-visual { order: -1; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 38px;
    transform: translateY(-100%);
    transition: transform .6s var(--ease);
    z-index: 40;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 60; }

  .hero { padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; text-align: left; }
  .hero-visual { order: -1; }
  .moon, .moon-shadow { width: clamp(170px, 44vw, 230px); }
  .scroll-hint { display: none; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .card-body { padding: 26px 24px 30px; }
  .frame { padding: 60px 40px 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
