:root {
  --night: #171117;
  --night-2: #261923;
  --ivory: #f7f0e8;
  --ivory-2: #efe3d8;
  --text-dark: #251a21;
  --text-light: #f8f0ea;
  --muted-light: rgba(248,240,234,0.68);
  --muted-dark: #77666f;
  --wine: #6f3d52;
  --wine-dark: #512b3c;
  --rose: #c79aaa;
  --gold: #b8945f;
  --line: rgba(37,26,33,0.10);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  background: var(--night);
  color: var(--text-light);
}

/* ---------- CELESTIAL BACKDROP ---------- */
.cosmos, .cosmos::before, .cosmos::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cosmos {
  background: radial-gradient(circle at 18% 20%, rgba(184,148,95,.13), transparent 22%),
              radial-gradient(circle at 82% 22%, rgba(199,154,170,.11), transparent 22%),
              radial-gradient(circle at 50% 58%, rgba(111,61,82,.12), transparent 30%);
}
.cosmos::before {
  background-image: radial-gradient(1.5px 1.5px at 13% 18%, rgba(255,244,225,.95) 0, transparent 100%),
                    radial-gradient(1px 1px at 29% 42%, rgba(255,244,225,.75) 0, transparent 100%),
                    radial-gradient(1.5px 1.5px at 44% 12%, rgba(255,244,225,.9) 0, transparent 100%),
                    radial-gradient(1px 1px at 62% 34%, rgba(255,244,225,.75) 0, transparent 100%),
                    radial-gradient(2px 2px at 81% 16%, rgba(255,244,225,.85) 0, transparent 100%),
                    radial-gradient(1px 1px at 88% 68%, rgba(255,244,225,.75) 0, transparent 100%),
                    radial-gradient(1.5px 1.5px at 21% 76%, rgba(255,244,225,.8) 0, transparent 100%),
                    radial-gradient(1px 1px at 53% 82%, rgba(255,244,225,.65) 0, transparent 100%),
                    radial-gradient(1.5px 1.5px at 73% 88%, rgba(255,244,225,.75) 0, transparent 100%);
  opacity: .52;
  animation: twinkle 7s ease-in-out infinite alternate;
}
.cosmos::after {
  background: radial-gradient(circle at 50% 16%, rgba(184,148,95,.10), transparent 18%),
              radial-gradient(circle at 50% 16%, rgba(255,255,255,.06), transparent 11%),
              radial-gradient(circle at 50% 68%, rgba(199,154,170,.08), transparent 25%);
  filter: blur(16px);
  animation: halo 13s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: .32; transform: translateY(0); }
  to   { opacity: .62; transform: translateY(-5px); }
}
@keyframes halo {
  from { transform: translateY(0) scale(1); opacity: .65; }
  to   { transform: translateY(-10px) scale(1.03); opacity: .95; }
}

.wrap {
  position: relative;
  z-index: 1;
}

/* ---------- LOGO ---------- */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
}
.logo-slot img,
.logo-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 110px 24px 40px;
  position: relative;
}

.hero-inner {
  max-width: 920px;
  animation: cinematicIn 1.6s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes cinematicIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 14vw, 10rem);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.065em;
}
.hero-sub {
  margin: 24px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  color: var(--muted-light);
}
.scroll-hint {
  margin-top: 72px;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(248,240,234,.44);
}

/* ---------- PHRASES ---------- */
.phrase-section {
  min-height: 112svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 24px;
}
.phrase {
  max-width: 940px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5.5vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -.042em;
  font-weight: 400;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(26px) scale(.98);
  filter: blur(9px);
  transition: opacity .08s linear, transform .08s linear, filter .08s linear;
  will-change: opacity, transform, filter;
  text-wrap: balance;
}
.phrase em { font-style: italic; color: #e1bf8c; }

.threshold {
  min-height: 42svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.threshold-line {
  width: 1px;
  height: 94px;
  background: linear-gradient(to bottom, transparent, rgba(225,191,140,.65), transparent);
}

/* ---------- PRODUCT ---------- */
.product-shell {
  background: radial-gradient(circle at 18% 10%, rgba(184,148,95,.16), transparent 23%),
              radial-gradient(circle at 82% 8%, rgba(199,154,170,.12), transparent 22%),
              linear-gradient(180deg, var(--ivory) 0%, #f9f4ef 100%);
  color: var(--text-dark);
  padding: 120px 24px 130px;
  position: relative;
  overflow: hidden;
}
.product-shell::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  width: 620px;
  height: 300px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,.9), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.product-card {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.product h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.7rem, 11vw, 8.4rem);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.065em;
}
.product-tagline {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  font-style: italic;
  color: var(--wine);
}
.product-intro {
  max-width: 650px;
  margin: 42px auto 0;
  color: var(--muted-dark);
  font-size: 1.06rem;
  line-height: 1.75;
}

.included {
  max-width: 650px;
  margin: 58px auto 0;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.included-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 14px 0;
}
.number {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.included-item strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.included-item span { color: var(--muted-dark); line-height: 1.55; }

.price {
  margin-top: 48px;
  font-family: var(--serif);
  font-size: 2.15rem;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-width: 270px;
  padding: 18px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .84rem;
  box-shadow: 0 16px 36px rgba(81,43,60,.18);
  transition: .25s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(81,43,60,.25);
}
.micro {
  margin-top: 15px;
  font-size: .78rem;
  color: var(--muted-dark);
}
footer {
  background: #f9f4ef;
  color: var(--muted-dark);
  text-align: center;
  padding: 0 24px 36px;
  font-size: .72rem;
}

/* ---------- CURSOR GLOW EFFECT ---------- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(225, 191, 140, 0.08) 0%, transparent 50%);
  z-index: 9999;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}
@media (hover: none) and (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

@media (max-width: 700px) {
  .logo-slot img,
  .logo-img { width: 120px; }
  .phrase-section { min-height: 100svh; }
  .product-shell { padding-top: 96px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phrase { opacity: 1 !important; transform: none !important; filter: none !important; }
  .cosmos, .cosmos::before, .cosmos::after, .hero-inner { animation: none !important; }
}