:root {
  --abyss: #031824;
  --deep: #062f3c;
  --reef: #0e6b75;
  --foam: #d9fff4;
  --pearl: #fff8e8;
  --gold: #f7ba58;
  --coral: #ff7964;
  --ink: #021018;
  --glass: rgba(5, 29, 43, 0.72);
  --line: rgba(247, 186, 88, 0.34);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--pearl);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 121, 100, 0.24), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(247, 186, 88, 0.18), transparent 24rem),
    linear-gradient(145deg, var(--abyss), #021018 54%, #0a2937);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
}

.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(101, 255, 232, 0.12), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 2.6rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 24, 36, 0.76);
  backdrop-filter: blur(18px);
}

.coming-soon-ribbon {
  position: sticky;
  top: 0;
  z-index: 30;
  display: block;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--gold));
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.coming-soon-ribbon:hover {
  filter: saturate(1.08) brightness(1.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.brand-mark img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  color: var(--foam);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 2rem);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
}

nav a {
  text-decoration: none;
  opacity: 0.82;
}

nav a:hover {
  color: var(--gold);
  opacity: 1;
}

main,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: calc(100vh - 5rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--foam);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: 0 0.08em 0 rgba(0, 0, 0, 0.36);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.hero-text,
.section-heading p,
.ritual-steps {
  color: rgba(255, 248, 232, 0.78);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

.hero-text {
  max-width: 42rem;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--coral));
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
}

.button.disabled {
  pointer-events: none;
  opacity: 0.62;
  filter: grayscale(0.2);
}

.hero-orbit {
  position: relative;
  min-height: min(72vw, 48rem);
  perspective: 1200px;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 7% 9%;
  border: 1px solid rgba(247, 186, 88, 0.24);
  border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow: 0 0 80px rgba(101, 255, 232, 0.12);
}

.product-moon {
  position: absolute;
  inset: 12% 6% auto auto;
  width: min(86%, 45rem);
  border-radius: 1.2rem;
  filter: drop-shadow(var(--shadow));
  animation: floatProduct 7s ease-in-out infinite;
}

.orbit-card {
  position: absolute;
  width: clamp(8rem, 18vw, 15rem);
  aspect-ratio: 3.5 / 5;
  object-fit: cover;
  border-radius: 0.85rem;
  box-shadow: var(--shadow);
  animation: driftCard 8s ease-in-out infinite;
}

.card-a {
  left: 1%;
  top: 7%;
  transform: rotate(-18deg);
}

.card-b {
  right: 3%;
  bottom: 8%;
  animation-delay: -2s;
  transform: rotate(12deg);
}

.card-c {
  left: 20%;
  bottom: 1%;
  animation-delay: -4s;
  transform: rotate(-5deg);
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 clamp(1rem, 5vw, 5rem);
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.055);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.signal-strip p {
  margin: 0;
}

.signal-strip a {
  color: var(--gold);
  font-weight: 900;
}

.archive,
.campaign-glimpse,
.ritual {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 62rem;
}

.campaign-glimpse {
  display: grid;
  gap: 2rem;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 18% 24%, rgba(247, 186, 88, 0.16), transparent 24rem),
    rgba(2, 16, 24, 0.74);
  box-shadow: var(--shadow);
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(217, 255, 244, 0.18);
  border-radius: 1rem;
}

.video-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.campaign-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
}

.campaign-gallery img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border: 1px solid rgba(247, 186, 88, 0.28);
  border-radius: 1.15rem;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  transition: transform 240ms ease, filter 240ms ease;
}

.campaign-gallery img:hover {
  transform: translateY(-0.35rem) scale(1.015);
  filter: saturate(1.08) contrast(1.04);
}

.campaign-gallery img:first-child {
  grid-row: span 2;
  height: 37rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 2rem 0;
}

.filter {
  cursor: pointer;
  padding: 0.75rem 1rem;
  color: var(--pearl);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.filter.active {
  color: var(--ink);
  border-color: transparent;
  background: var(--foam);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  padding: 1rem;
  border: 1px solid rgba(247, 186, 88, 0.25);
  border-radius: 1.4rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -28% -15%;
  height: 14rem;
  background: radial-gradient(circle, rgba(101, 255, 232, 0.12), transparent 65%);
}

.product-card img {
  width: 100%;
  height: 19rem;
  object-fit: cover;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.3);
}

.product-image-wrap {
  position: relative;
}

.status-pill {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  padding: 0.45rem 0.65rem;
  color: var(--pearl);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.35rem;
  background: rgba(2, 16, 24, 0.86);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  padding: 1rem 0.25rem 0.25rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  color: var(--pearl);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.price-row .original {
  color: rgba(255, 248, 232, 0.48);
  text-decoration: line-through;
}

.price-row .sale {
  color: var(--gold);
  font-weight: 900;
}

.campaign-note {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(247, 186, 88, 0.28);
  border-radius: 0.8rem;
  color: var(--foam);
  background: rgba(247, 186, 88, 0.08);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
}

.product-detail-pages {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.product-detail-page {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  scroll-margin-top: 8rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(247, 186, 88, 0.25);
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 8% 12%, rgba(255, 121, 100, 0.12), transparent 20rem);
  box-shadow: var(--shadow);
}

.detail-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  border-radius: 1.2rem;
  background: rgba(0, 0, 0, 0.25);
}

.detail-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.detail-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.detail-copy h3 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 5rem);
  line-height: 0.92;
}

.detail-copy p,
.detail-copy li {
  color: rgba(255, 248, 232, 0.78);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1.02rem;
  line-height: 1.6;
}

.detail-copy ul {
  margin: 0;
  padding-left: 1.2rem;
}

.ordering-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(247, 186, 88, 0.28);
  border-radius: 1rem;
  background: rgba(247, 186, 88, 0.08);
}

.ordering-card strong {
  color: var(--gold);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ordering-card p {
  margin-bottom: 0;
}

.drawer-card a:not(.button) {
  color: var(--gold);
  font-weight: 900;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 0.98;
}

.product-card p {
  color: rgba(255, 248, 232, 0.76);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.5;
}

.product-actions button {
  cursor: pointer;
  border: 0;
}

.ritual {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
}

.ritual-steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ritual-steps li {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  background: var(--glass);
}

.ritual-steps span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.product-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 16, 24, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.product-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-card {
  display: grid;
  grid-template-columns: minmax(12rem, 21rem) minmax(0, 31rem);
  gap: 1.4rem;
  width: min(100%, 58rem);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(6, 47, 60, 0.98), rgba(3, 24, 36, 0.98));
  box-shadow: var(--shadow);
}

.drawer-card img {
  width: 100%;
  aspect-ratio: 3.5 / 5;
  object-fit: cover;
  border-radius: 1rem;
}

.drawer-card ul {
  padding-left: 1.2rem;
  color: rgba(255, 248, 232, 0.78);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.7;
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  color: var(--pearl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1rem;
  font-weight: 900;
}

footer {
  padding: 2rem;
  color: rgba(255, 248, 232, 0.58);
  text-align: center;
  font-style: italic;
}

@keyframes floatProduct {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-1rem) rotate(-1deg);
  }
}

@keyframes driftCard {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -1.1rem;
  }
}

@media (max-width: 980px) {
  .hero,
  .ritual,
  .product-detail-page,
  .drawer-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-orbit {
    min-height: 34rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-gallery img:first-child {
    grid-row: auto;
    grid-column: span 2;
    height: 24rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .coming-soon-ribbon {
    position: relative;
  }

  nav {
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero-orbit {
    min-height: 27rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .campaign-gallery {
    grid-template-columns: 1fr;
  }

  .campaign-gallery img,
  .campaign-gallery img:first-child {
    grid-column: auto;
    height: 20rem;
  }

  .product-card {
    min-height: auto;
  }
}
