﻿:root {
  --emerald-950: #031711;
  --emerald-900: #06271d;
  --emerald-800: #0b3c2d;
  --emerald-700: #11553e;
  --gold-500: #d2a128;
  --gold-400: #efc75b;
  --gold-200: #ffe7a3;
  --ivory: #fff9ea;
  --sand: #efe3c2;
  --muted: #baa86f;
  --ink: #132016;
  --surface: rgba(255, 249, 234, 0.08);
  --border: rgba(239, 199, 91, 0.24);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --page-scroll: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ivory);
  background: var(--emerald-950);
  font-synthesis: none;
  text-rendering: geometricPrecision;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 2%, rgba(210, 161, 40, 0.16), transparent 34rem),
    radial-gradient(circle at 86% 16%, rgba(20, 92, 66, 0.42), transparent 32rem),
    linear-gradient(180deg, #031711 0%, #08261c 48%, #04140f 100%);
}

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

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.premium-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(239, 199, 91, 0.22), transparent 18rem),
    #031711;
  animation: introFade 1400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-mark {
  display: grid;
  gap: 16px;
  place-items: center;
  color: var(--gold-200);
}

.intro-mark span {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 231, 163, 0.7);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 0 70px rgba(239, 199, 91, 0.22);
}

.intro-mark strong {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  font-weight: 500;
}

.presentation-nav {
  position: fixed;
  z-index: 40;
  right: 22px;
  top: 50%;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.presentation-nav a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 118px;
  padding: 8px 10px;
  border: 1px solid transparent;
  color: rgba(255, 249, 234, 0.44);
  background: rgba(3, 23, 17, 0.2);
  backdrop-filter: blur(14px);
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.presentation-nav a:hover,
.presentation-nav a.active {
  border-color: rgba(239, 199, 91, 0.32);
  color: var(--gold-200);
  background: rgba(3, 23, 17, 0.66);
  transform: translateX(-4px);
}

.presentation-nav span {
  color: var(--gold-400);
  font-size: 0.65rem;
  font-weight: 900;
}

.presentation-nav strong {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(239, 199, 91, 0.7);
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

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

.brand strong {
  font-family: Georgia, serif;
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

nav {
  display: flex;
  gap: 26px;
  color: rgba(255, 249, 234, 0.74);
  font-size: 0.92rem;
}

nav a,
.nav-action,
.secondary-button,
.primary-button {
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

nav a:hover,
.nav-action:hover,
.secondary-button:hover {
  color: var(--gold-200);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border);
  color: var(--gold-200);
  font-size: 0.86rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  padding: 114px 0 82px;
}

.hero-bg,
.closing-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(3, 23, 17, 0.2), rgba(3, 23, 17, 0.78)), url('./images/ornate-portrait.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.72;
}

.hero-light {
  position: absolute;
  z-index: -1;
  width: 38vw;
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.34;
  transform: translate3d(0, calc(var(--page-scroll) * 34px), 0);
}

.hero-light-one {
  top: 16%;
  right: 8%;
  background: radial-gradient(circle, rgba(239, 199, 91, 0.28), transparent 66%);
}

.hero-light-two {
  left: -12%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(17, 85, 62, 0.58), transparent 64%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 23, 17, 0.96) 0%, rgba(3, 23, 17, 0.72) 44%, rgba(3, 23, 17, 0.24) 100%),
    radial-gradient(circle at 72% 44%, rgba(239, 199, 91, 0.18), transparent 28rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 196px);
}

.hero-copy {
  max-width: 650px;
  padding-top: 20px;
}

.arabic-name {
  margin: 0 0 20px;
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 8ch;
  margin-bottom: 24px;
  color: #fff8df;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  line-height: 0.82;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 249, 234, 0.78);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}

.primary-button {
  border: 1px solid rgba(255, 231, 163, 0.36);
  color: #092217;
  background: linear-gradient(135deg, #ffe7a3, #c8911c);
  box-shadow: 0 18px 48px rgba(210, 161, 40, 0.18);
}

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

.secondary-button {
  border: 1px solid rgba(239, 199, 91, 0.34);
  color: var(--gold-200);
  background: rgba(255, 249, 234, 0.04);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  min-height: 106px;
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(2, 18, 13, 0.42);
  backdrop-filter: blur(12px);
}

.hero-metrics dt,
.identity-list span,
.ritual-facts span,
.price-card span,
.social-line span,
.closing-summary span {
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 12px 0 0;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.3;
}

.hero-product {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
}

.hero-product::before {
  position: absolute;
  width: min(82%, 560px);
  height: 82%;
  content: "";
  border: 1px solid rgba(239, 199, 91, 0.28);
  background:
    radial-gradient(circle at 50% 26%, rgba(239, 199, 91, 0.12), transparent 20rem),
    rgba(255, 249, 234, 0.04);
  box-shadow: var(--shadow);
}

.hero-product::after {
  position: absolute;
  z-index: 1;
  bottom: 13%;
  width: min(82%, 500px);
  height: 94px;
  content: "";
  border: 1px solid rgba(239, 199, 91, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(239, 199, 91, 0.18), transparent 68%),
    linear-gradient(90deg, transparent, rgba(255, 231, 163, 0.18), transparent);
  filter: blur(1px);
}

.majlis-table {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 18%;
  display: flex;
  align-items: end;
  gap: 8px;
  transform: rotate(-7deg);
}

.majlis-table span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f3918, #c47a32 52%, #5a2a13);
  box-shadow: inset 0 1px 5px rgba(255, 231, 163, 0.32), 0 8px 20px rgba(0, 0, 0, 0.32);
}

.majlis-table span:nth-child(1) {
  width: 34px;
  height: 22px;
}

.majlis-table span:nth-child(2) {
  width: 42px;
  height: 25px;
}

.majlis-table span:nth-child(3) {
  width: 30px;
  height: 19px;
}

.bottle-main {
  position: relative;
  z-index: 3;
  width: min(38vw, 330px);
  min-width: 245px;
  filter: drop-shadow(0 42px 42px rgba(0, 0, 0, 0.48));
}

.bottle-side {
  position: absolute;
  z-index: 2;
  width: min(20vw, 148px);
  opacity: 0.45;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.38));
}

.bottle-side.left {
  left: 9%;
  bottom: 11%;
  transform: rotate(-5deg);
}

.bottle-side.right {
  right: 8%;
  top: 18%;
  transform: rotate(4deg);
}

.hero-ritual-note {
  position: absolute;
  z-index: 5;
  left: 1%;
  top: 18%;
  width: 188px;
  padding: 14px;
  border: 1px solid rgba(239, 199, 91, 0.28);
  background: rgba(3, 23, 17, 0.52);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-ritual-note strong,
.hero-ritual-note span {
  display: block;
}

.hero-ritual-note strong {
  margin-bottom: 7px;
  color: var(--gold-200);
  font-family: Georgia, serif;
  font-weight: 500;
}

.hero-ritual-note span {
  color: rgba(255, 249, 234, 0.62);
  font-size: 0.72rem;
  line-height: 1.45;
}

.glass-shimmer {
  position: absolute;
  z-index: 6;
  width: 140px;
  height: 520px;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.4) 46%, rgba(255, 231, 163, 0.28) 50%, transparent 62%);
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-160px) skewX(-12deg);
}

.hero-shimmer {
  top: 13%;
  left: 45%;
}

.story-scroll {
  overflow: visible;
  background:
    radial-gradient(circle at 18% 20%, rgba(239, 199, 91, 0.1), transparent 30rem),
    linear-gradient(180deg, #031711, #08271d 42%, #04140f);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
  gap: 76px;
  align-items: start;
}

.story-chapters {
  display: grid;
  gap: 20px;
}

.story-chapter {
  position: relative;
  min-height: 330px;
  padding: 42px;
  border: 1px solid rgba(239, 199, 91, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 249, 234, 0.08), rgba(255, 249, 234, 0.026)),
    radial-gradient(circle at 90% 12%, rgba(239, 199, 91, 0.1), transparent 12rem);
}

.story-chapter::before {
  position: absolute;
  left: -1px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--gold-400), transparent);
  transform: scaleY(0);
  transform-origin: top;
}

.story-chapter.is-visible::before {
  animation: verticalDraw 950ms cubic-bezier(0.22, 1, 0.36, 1) 240ms forwards;
}

.story-chapter > span {
  display: block;
  margin-bottom: 98px;
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 3.1rem;
}

.story-chapter h3 {
  margin-bottom: 14px;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 500;
  line-height: 1;
}

.story-chapter p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.66);
  font-size: 1.08rem;
  line-height: 1.76;
}

.story-stage {
  position: sticky;
  top: 70px;
  min-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
}

.sticky-bottle-card {
  position: relative;
  display: grid;
  width: min(100%, 470px);
  min-height: 735px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(239, 199, 91, 0.28);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 231, 163, 0.18), transparent 18rem),
    url('./images/ornate-portrait.webp');
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.sticky-bottle-card::before {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px solid rgba(239, 199, 91, 0.2);
  transform: translateY(calc(var(--page-scroll) * -12px));
}

.sticky-bottle-card img {
  position: relative;
  z-index: 3;
  width: min(58%, 300px);
  filter: drop-shadow(0 44px 42px rgba(0, 0, 0, 0.52));
}

.stage-signals {
  position: absolute;
  inset: 13%;
  z-index: 4;
  pointer-events: none;
}

.stage-signals span {
  position: absolute;
  min-width: 74px;
  padding: 9px 10px;
  border: 1px solid rgba(239, 199, 91, 0.26);
  color: var(--gold-200);
  background: rgba(3, 23, 17, 0.72);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.stage-signals span:nth-child(1) {
  left: 0;
  top: 18%;
}

.stage-signals span:nth-child(2) {
  right: 0;
  top: 28%;
}

.stage-signals span:nth-child(3) {
  left: 4%;
  bottom: 26%;
}

.stage-signals span:nth-child(4) {
  right: 3%;
  bottom: 19%;
}

.liquid-pour {
  position: absolute;
  z-index: 2;
  right: 18%;
  bottom: 18%;
  width: 108px;
  height: 270px;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 18%, rgba(239, 199, 91, 0.76) 18% 34%, rgba(11, 78, 54, 0.55) 34% 100%);
  clip-path: polygon(42% 0, 56% 0, 72% 100%, 24% 100%);
  filter: blur(0.4px) drop-shadow(0 0 22px rgba(239, 199, 91, 0.38));
  opacity: 0.58;
  transform: rotate(12deg) translateY(calc(var(--page-scroll) * 10px));
}

.service-pour {
  right: 25%;
  bottom: 26%;
  height: 210px;
  width: 84px;
  transform: rotate(9deg);
}

.liquid-pour::after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 120px;
  height: 34px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(239, 199, 91, 0.46), rgba(11, 78, 54, 0.16), transparent 72%);
  transform: translateX(-50%);
}

.story-caption {
  position: absolute;
  z-index: 5;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 18px;
  border: 1px solid rgba(239, 199, 91, 0.24);
  background: rgba(3, 23, 17, 0.76);
  backdrop-filter: blur(14px);
}

.story-caption strong,
.story-caption small {
  display: block;
}

.story-caption strong {
  margin-bottom: 7px;
  color: var(--gold-200);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.story-caption small {
  color: rgba(255, 249, 234, 0.62);
}

.scroll-cue {
  position: absolute;
  right: 34px;
  bottom: 30px;
  color: rgba(239, 199, 91, 0.72);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  writing-mode: vertical-rl;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 18px;
  color: #fff8df;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
}

.section-heading h2::after {
  display: block;
  width: min(220px, 52%);
  height: 1px;
  margin: 22px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  transform: scaleX(0);
  transform-origin: center;
}

.section-heading.left h2::after {
  margin-left: 0;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  transform-origin: left;
}

.section-heading.is-visible h2::after {
  animation: goldDraw 1100ms cubic-bezier(0.22, 1, 0.36, 1) 260ms forwards;
}

.section-heading p {
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.market {
  background:
    linear-gradient(180deg, rgba(3, 23, 17, 0.72), rgba(9, 42, 31, 0.92)),
    radial-gradient(circle at 12% 0%, rgba(210, 161, 40, 0.14), transparent 28rem);
}

.advantage-grid,
.distribution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.advantage-card,
.distribution-grid article,
.culture-grid article,
.formula-card,
.social-card,
.price-card,
.target-note {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 249, 234, 0.09), rgba(255, 249, 234, 0.035));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.advantage-card {
  min-height: 342px;
  padding: 30px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
  color: var(--gold-400);
}

.card-topline span {
  font-family: Georgia, serif;
  font-size: 2.3rem;
}

.advantage-card h3,
.formula-card h3,
.distribution-grid h3,
.culture-grid h3 {
  margin-bottom: 14px;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.advantage-card p,
.formula-card p,
.distribution-grid p,
.culture-grid p,
.target-note p,
.social-line p {
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.66);
  line-height: 1.72;
}

.product {
  background: #061d16;
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: 70px;
}

.product-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.texture-card {
  position: absolute;
  inset: 8% 0 auto;
  width: 100%;
  height: 82%;
  object-fit: cover;
  opacity: 0.92;
  box-shadow: var(--shadow);
}

.product-bottle {
  position: relative;
  width: min(76%, 292px);
  filter: drop-shadow(0 42px 42px rgba(0, 0, 0, 0.48));
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.formula-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.formula-card img {
  width: 66px;
  aspect-ratio: 1;
  object-fit: contain;
}

.formula-card h3 {
  font-size: 1.18rem;
}

.crafted {
  overflow: hidden;
  background:
    linear-gradient(180deg, #061d16, #04140f),
    radial-gradient(circle at 80% 20%, rgba(239, 199, 91, 0.16), transparent 30rem);
}

.crafted-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 70px;
  align-items: center;
}

.detail-stack {
  display: grid;
  gap: 14px;
}

.detail-chip {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(239, 199, 91, 0.22);
  background: rgba(255, 249, 234, 0.055);
}

.detail-chip > span {
  width: 13px;
  height: 13px;
  margin-top: 8px;
  border: 1px solid var(--gold-400);
  transform: rotate(45deg);
  box-shadow: 0 0 28px rgba(239, 199, 91, 0.35);
}

.detail-chip h3 {
  margin-bottom: 8px;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.detail-chip p {
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.65);
  line-height: 1.64;
}

.detail-panel {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.detail-back {
  position: absolute;
  width: min(100%, 540px);
  height: 86%;
  object-fit: cover;
  opacity: 0.72;
  box-shadow: var(--shadow);
}

.detail-bottle {
  position: relative;
  z-index: 2;
  width: min(46%, 245px);
  filter: drop-shadow(0 42px 38px rgba(0, 0, 0, 0.48));
}

.detail-callout {
  position: absolute;
  z-index: 3;
  min-width: 138px;
  padding: 12px 14px;
  border: 1px solid rgba(239, 199, 91, 0.34);
  color: var(--gold-200);
  background: rgba(3, 23, 17, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.detail-callout::after {
  position: absolute;
  top: 50%;
  width: 82px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold-400), transparent);
}

.detail-callout.cap {
  right: 7%;
  top: 18%;
}

.detail-callout.label {
  left: 6%;
  top: 44%;
}

.detail-callout.glass {
  right: 3%;
  bottom: 22%;
}

.detail-callout.cap::after,
.detail-callout.glass::after {
  right: 100%;
}

.detail-callout.label::after {
  left: 100%;
}

.ritual {
  background:
    radial-gradient(circle at 78% 22%, rgba(239, 199, 91, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(6, 29, 22, 0.93), rgba(4, 20, 15, 0.98)),
    url('./images/ornate-square.webp');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.serving {
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 8%, rgba(239, 199, 91, 0.12), transparent 30rem),
    linear-gradient(180deg, #04140f, #08271d);
}

.service-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.service-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.service-visual::before {
  position: absolute;
  width: min(96%, 510px);
  height: 74%;
  content: "";
  border: 1px solid rgba(239, 199, 91, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 249, 234, 0.06), rgba(255, 249, 234, 0.015)),
    url('./images/ornate-square.webp');
  background-size: cover;
  box-shadow: var(--shadow);
}

.service-visual img {
  position: relative;
  z-index: 2;
  width: min(42%, 230px);
  filter: drop-shadow(0 42px 38px rgba(0, 0, 0, 0.48));
}

.gold-tray {
  position: absolute;
  z-index: 3;
  bottom: 14%;
  width: min(78%, 390px);
  height: 58px;
  border: 1px solid rgba(255, 231, 163, 0.36);
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(198, 137, 28, 0.22), rgba(255, 231, 163, 0.35), rgba(198, 137, 28, 0.2));
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.32);
}

.date {
  position: absolute;
  bottom: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5d2d16, #c87932 54%, #3b1a0d);
}

.date-one {
  left: 22%;
  width: 42px;
  height: 25px;
  transform: rotate(-12deg);
}

.date-two {
  left: 34%;
  width: 34px;
  height: 22px;
  transform: rotate(9deg);
}

.date-three {
  right: 26%;
  width: 38px;
  height: 24px;
  transform: rotate(14deg);
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-step {
  min-height: 235px;
  padding: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 249, 234, 0.09), rgba(255, 249, 234, 0.03));
}

.service-step svg {
  margin-bottom: 46px;
  color: var(--gold-400);
}

.service-step h3 {
  margin-bottom: 12px;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.service-step p {
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.66);
  line-height: 1.68;
}

.ritual-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 54px;
  align-items: end;
  padding: 64px;
  border: 1px solid rgba(239, 199, 91, 0.3);
  background: rgba(3, 23, 17, 0.82);
  box-shadow: var(--shadow);
}

blockquote {
  margin: 34px 0 0;
  padding-left: 28px;
  border-left: 2px solid var(--gold-400);
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3.8vw, 3.4rem);
  line-height: 1.05;
}

.ritual-facts,
.identity-list {
  display: grid;
  gap: 14px;
}

.ritual-facts div,
.identity-list div,
.closing-summary div {
  padding: 22px;
  border: 1px solid rgba(239, 199, 91, 0.22);
  background: rgba(255, 249, 234, 0.055);
}

.ritual-facts strong,
.identity-list strong,
.closing-summary strong {
  display: block;
  margin-top: 10px;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.28;
}

.identity-list small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 249, 234, 0.62);
}

.brand-section {
  background: linear-gradient(180deg, #04140f, #08271d);
}

.brand-grid,
.digital-grid,
.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 70px;
  align-items: center;
}

.closing-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
}

.packaging-showcase {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.packaging-showcase > img:first-child {
  position: absolute;
  width: min(100%, 430px);
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.showcase-bottle {
  position: relative;
  width: min(62%, 250px);
  filter: drop-shadow(0 38px 42px rgba(0, 0, 0, 0.5));
}

.proof-section,
.visual-proof-section,
.fourp-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 199, 91, 0.1), transparent 28rem),
    linear-gradient(180deg, #08271d, #04140f);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-card,
.sensitivity-card,
.price-band,
.price-rationale,
.benchmark-table,
.proof-media-card,
.channel-choice,
.placement-photo-card,
.campaign-plan,
.campaign-fact,
.fourp-card {
  border: 1px solid rgba(239, 199, 91, 0.24);
  background: linear-gradient(145deg, rgba(255, 249, 234, 0.08), rgba(255, 249, 234, 0.026));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.proof-card {
  min-height: 285px;
  padding: 26px;
}

.proof-card span,
.sensitivity-card span,
.price-band span,
.proof-media-card span,
.channel-choice span,
.placement-photo-card span,
.campaign-fact span,
.campaign-image-card span,
.fourp-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-card h3,
.sensitivity-panel h3,
.proof-media-card h3,
.channel-choice h3,
.placement-photo-card h3,
.campaign-plan h3,
.fourp-card h3 {
  margin-bottom: 14px;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.08;
}

.proof-card p,
.sensitivity-panel p,
.sensitivity-card p,
.price-rationale p,
.proof-media-card p,
.channel-choice p,
.placement-photo-card p,
.campaign-plan p,
.campaign-fact p,
.fourp-card p {
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.66);
  line-height: 1.66;
}

.sensitivity-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid rgba(239, 199, 91, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 249, 234, 0.07), rgba(255, 249, 234, 0.025)),
    radial-gradient(circle at 10% 40%, rgba(239, 199, 91, 0.12), transparent 22rem);
}

.sensitivity-panel svg,
.price-rationale svg,
.proof-media-card svg,
.campaign-plan svg {
  margin-bottom: 24px;
  color: var(--gold-400);
}

.sensitivity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.sensitivity-card {
  padding: 18px;
}

.sensitivity-card span {
  margin-bottom: 18px;
}

.benchmark-section {
  background:
    radial-gradient(circle at 76% 12%, rgba(239, 199, 91, 0.12), transparent 30rem),
    linear-gradient(180deg, #04140f, #08271d);
}

.benchmark-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  gap: 42px;
  align-items: start;
}

.price-bands {
  display: grid;
  gap: 10px;
}

.price-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px 20px;
}

.price-band span {
  margin: 0;
}

.price-band strong {
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.price-band.featured {
  border-color: rgba(255, 231, 163, 0.5);
  background: linear-gradient(135deg, rgba(255, 231, 163, 0.18), rgba(255, 249, 234, 0.04));
}

.price-rationale {
  margin-top: 14px;
  padding: 24px;
}

.benchmark-table {
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.1fr) minmax(150px, 1fr) 86px minmax(150px, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid rgba(239, 199, 91, 0.14);
}

.table-row:first-child {
  border-top: 0;
}

.table-row span,
.table-row strong {
  color: rgba(255, 249, 234, 0.68);
  font-size: 0.82rem;
  line-height: 1.42;
}

.table-row strong {
  color: var(--gold-200);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
}

.table-head {
  background: rgba(239, 199, 91, 0.08);
}

.table-head span {
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 20px;
}

.channel-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.channel-choice {
  min-height: 230px;
  padding: 24px;
}

.channel-choice span {
  margin-bottom: 16px;
}

.channel-choice h3 {
  font-size: 1.25rem;
}

.proof-media-card {
  overflow: hidden;
}

.proof-media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.proof-media-card.wide img {
  aspect-ratio: 16 / 9;
}

.proof-media-card > div {
  padding: 26px;
}

.proof-media-card span {
  margin-bottom: 12px;
}

.placement-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.placement-photo-card {
  overflow: hidden;
}

.placement-image {
  position: relative;
  overflow: hidden;
}

.placement-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.placement-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 231, 163, 0.18), transparent 12rem),
    linear-gradient(180deg, transparent 62%, rgba(4, 20, 15, 0.68));
  pointer-events: none;
}

.placement-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 231, 163, 0.82);
  background: rgba(4, 20, 15, 0.74);
  color: #fff8df;
  box-shadow:
    0 0 0 6px rgba(239, 199, 91, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.placement-pin::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 100%;
  width: 1px;
  height: 76px;
  background: linear-gradient(180deg, rgba(255, 231, 163, 0.95), transparent);
}

.placement-pin span {
  margin: 0;
  color: #fff8df;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.pin-majlis .placement-pin {
  left: 48%;
  top: 18%;
}

.pin-spa .placement-pin {
  left: 42%;
  top: 15%;
}

.placement-photo-card > div:last-child {
  padding: 26px;
}

.placement-photo-card > div:last-child span {
  margin-bottom: 12px;
}

.campaign-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 199, 91, 0.11), transparent 28rem),
    linear-gradient(180deg, #04140f, #061d16);
}

.campaign-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: 46px;
  align-items: start;
}

.campaign-plan {
  padding: 28px;
}

.reel-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(239, 199, 91, 0.14);
}

.reel-step span {
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 900;
}

.campaign-facts {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.campaign-fact {
  padding: 20px;
}

.campaign-fact span {
  margin-bottom: 12px;
}

.campaign-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.campaign-image-card {
  overflow: hidden;
  border: 1px solid rgba(239, 199, 91, 0.24);
  background: rgba(255, 249, 234, 0.04);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.2);
}

.campaign-image-card img {
  display: block;
  width: 100%;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(255, 249, 234, 0.08), rgba(239, 199, 91, 0.03));
}

.campaign-image-card.poster img {
  aspect-ratio: 4 / 5;
}

.campaign-image-card.social-wide img {
  aspect-ratio: 3 / 1;
}

.campaign-image-card span {
  margin: 0;
  padding: 18px 20px;
  font-size: 0.82rem;
}

.fourp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fourp-card {
  min-height: 300px;
  padding: 28px;
}

.fourp-card span {
  margin-bottom: 62px;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0;
}

.strategy {
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 161, 40, 0.14), transparent 32rem),
    #061d16;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto 18px;
}

.price-card {
  padding: 30px;
  text-align: center;
}

.price-card strong {
  display: block;
  margin: 14px 0 8px;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 500;
}

.price-card p {
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.64);
}

.hero-price {
  background: linear-gradient(135deg, rgba(255, 231, 163, 0.18), rgba(210, 161, 40, 0.08));
  box-shadow: 0 22px 70px rgba(210, 161, 40, 0.12);
}

.distribution-grid article {
  min-height: 248px;
  padding: 30px;
}

.distribution-grid svg {
  margin-bottom: 48px;
  color: var(--gold-400);
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 20px;
  padding: 34px;
  border: 1px solid rgba(239, 199, 91, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 249, 234, 0.07), rgba(255, 249, 234, 0.026)),
    radial-gradient(circle at 82% 36%, rgba(239, 199, 91, 0.12), transparent 28rem);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
}

.map-copy svg {
  margin-bottom: 24px;
  color: var(--gold-400);
}

.map-copy h3 {
  margin-bottom: 16px;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.map-copy p {
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.64);
  line-height: 1.7;
}

.uae-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(239, 199, 91, 0.18);
  background:
    linear-gradient(120deg, rgba(3, 23, 17, 0.82), rgba(11, 60, 45, 0.42)),
    radial-gradient(circle at 28% 64%, rgba(239, 199, 91, 0.16), transparent 18rem);
}

.uae-map::before {
  position: absolute;
  inset: 32px;
  content: "";
  border: 1px solid rgba(239, 199, 91, 0.16);
  border-radius: 46% 54% 52% 48%;
  transform: rotate(-8deg);
}

.uae-map::after {
  position: absolute;
  left: 12%;
  right: 9%;
  top: 52%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(239, 199, 91, 0.78), transparent);
  box-shadow: 0 0 32px rgba(239, 199, 91, 0.32);
  transform: scaleX(0);
  transform-origin: left;
}

.map-stop {
  position: absolute;
  z-index: 2;
  left: var(--stop-left);
  top: calc(50% + (var(--page-scroll) * 2px));
  width: min(210px, 30%);
  transform: translate(-50%, -50%);
  color: #fff8df;
}

.map-stop svg {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-400);
  filter: drop-shadow(0 0 14px rgba(239, 199, 91, 0.42));
}

.map-stop strong,
.map-stop span {
  display: block;
}

.map-stop strong {
  margin-bottom: 6px;
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.map-stop span {
  color: rgba(255, 249, 234, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.stop-1 {
  top: 39%;
}

.stop-2 {
  top: 61%;
}

.stop-3 {
  top: 37%;
}

.stop-4 {
  top: 63%;
}

.digital {
  background: linear-gradient(180deg, #061d16, #031711);
}

.target-note {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  margin-top: 28px;
  padding: 24px;
}

.target-note svg,
.social-card > svg {
  color: var(--gold-400);
}

.target-note strong {
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.social-card {
  padding: 34px;
}

.social-card > svg {
  margin-bottom: 24px;
}

.social-line {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid rgba(239, 199, 91, 0.18);
}

.social-line:first-of-type {
  border-top: 0;
}

.social-mockups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.phone-mockup {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(239, 199, 91, 0.28);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 249, 234, 0.09), rgba(255, 249, 234, 0.035));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.phone-mockup::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 6px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 249, 234, 0.24);
  transform: translateX(-50%);
}

.phone-mockup::after {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 52px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-400), rgba(239, 199, 91, 0.12));
  transform: scaleX(0);
  transform-origin: left;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 14px;
  color: rgba(255, 249, 234, 0.66);
  font-size: 0.76rem;
}

.phone-top span {
  color: var(--gold-400);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-media {
  position: relative;
  display: grid;
  min-height: 344px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(239, 199, 91, 0.18);
  background:
    radial-gradient(circle at 48% 28%, rgba(239, 199, 91, 0.18), transparent 18rem),
    url('./images/ornate-square.webp');
  background-size: cover;
}

.phone-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(110deg, transparent 10%, rgba(255, 231, 163, 0.22) 46%, transparent 64%);
  opacity: 0;
  transform: translateX(-120%);
}

.phone-media img {
  width: min(58%, 190px);
  max-height: 286px;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.46));
}

.phone-media button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 231, 163, 0.42);
  border-radius: 50%;
  color: #092217;
  background: linear-gradient(135deg, #ffe7a3, #c8911c);
}

.phone-mockup p {
  margin: 20px 4px 0;
  color: #fff8df;
  font-family: Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.22;
}

.culture {
  background:
    radial-gradient(circle at 8% 6%, rgba(239, 199, 91, 0.1), transparent 28rem),
    #08271d;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.culture-orbit {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 42px;
  border: 1px solid rgba(239, 199, 91, 0.2);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 118px, rgba(239, 199, 91, 0.11) 119px 120px),
    radial-gradient(circle at center, rgba(239, 199, 91, 0.12), rgba(255, 249, 234, 0.03) 30%, transparent 64%);
  box-shadow: inset 0 0 70px rgba(239, 199, 91, 0.04), 0 28px 80px rgba(0, 0, 0, 0.16);
}

.culture-orbit::before,
.culture-orbit::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(239, 199, 91, 0.16);
  border-radius: 50%;
}

.culture-orbit::after {
  inset: 29%;
  border-color: rgba(239, 199, 91, 0.22);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(255, 231, 163, 0.44);
  border-radius: 50%;
  background: rgba(3, 23, 17, 0.8);
  box-shadow: 0 0 52px rgba(239, 199, 91, 0.18);
  transform: translate(-50%, -50%);
}

.orbit-core strong {
  align-self: end;
  color: var(--gold-200);
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.orbit-core span {
  align-self: start;
  color: rgba(255, 249, 234, 0.62);
  font-size: 0.76rem;
}

.orbit-node {
  position: absolute;
  z-index: 4;
  width: 154px;
  padding: 14px;
  border: 1px solid rgba(239, 199, 91, 0.28);
  background: rgba(3, 23, 17, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}

.orbit-node span,
.orbit-node strong {
  display: block;
}

.orbit-node span {
  margin-bottom: 8px;
  color: rgba(255, 249, 234, 0.72);
  font-size: 0.74rem;
  line-height: 1.2;
}

.orbit-node strong {
  color: var(--gold-400);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-node p {
  margin: 8px 0 0;
  color: rgba(255, 249, 234, 0.58);
  font-size: 0.72rem;
  line-height: 1.35;
}

.node-1 {
  left: 50%;
  top: 4%;
}

.node-2 {
  left: 84%;
  top: 25%;
}

.node-3 {
  left: 84%;
  top: 75%;
}

.node-4 {
  left: 50%;
  top: 96%;
}

.node-5 {
  left: 16%;
  top: 75%;
}

.node-6 {
  left: 16%;
  top: 25%;
}

.culture-radar {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 26px;
  border: 1px solid rgba(239, 199, 91, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 249, 234, 0.08), rgba(255, 249, 234, 0.026)),
    radial-gradient(circle at 18% 50%, rgba(239, 199, 91, 0.1), transparent 22rem);
}

.culture-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 34px;
}

.culture-proof article {
  min-height: 170px;
  padding: 26px;
  border: 1px solid rgba(239, 199, 91, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 249, 234, 0.08), rgba(255, 249, 234, 0.026)),
    radial-gradient(circle at 82% 16%, rgba(239, 199, 91, 0.11), transparent 12rem);
}

.culture-proof span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.culture-proof p {
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.72);
  font-family: Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.22;
}

.radar-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.86fr) minmax(140px, 1.2fr) 110px;
  gap: 18px;
  align-items: center;
}

.radar-row span,
.radar-row strong {
  color: rgba(255, 249, 234, 0.76);
  font-size: 0.88rem;
}

.radar-row strong {
  color: var(--gold-400);
  text-align: right;
}

.radar-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 249, 234, 0.12);
}

.radar-track i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #87600d, #ffe7a3);
  box-shadow: 0 0 22px rgba(239, 199, 91, 0.45);
  transform-origin: left;
}

.culture-grid article {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 28px;
}

.culture-index {
  position: absolute;
  right: 20px;
  top: 10px;
  color: rgba(239, 199, 91, 0.12);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.culture-grid span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 52px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.culture-grid h3,
.culture-grid p {
  position: relative;
  z-index: 1;
}

.closing {
  position: relative;
  overflow: hidden;
  padding: 128px 0 34px;
  isolation: isolate;
}

.closing-bg {
  opacity: 0.48;
}

.closing::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 23, 17, 0.98), rgba(3, 23, 17, 0.72)),
    radial-gradient(circle at 38% 54%, rgba(239, 199, 91, 0.16), transparent 34rem),
    radial-gradient(circle at 76% 42%, rgba(239, 199, 91, 0.18), transparent 30rem);
}

.closing-icon {
  margin-bottom: 28px;
  color: var(--gold-400);
}

.closing h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 10vw, 11rem);
  line-height: 0.78;
}

.closing p {
  max-width: 660px;
  color: rgba(255, 249, 234, 0.72);
  font-size: clamp(1.18rem, 2vw, 1.72rem);
  line-height: 1.6;
}

.closing-summary {
  display: grid;
  gap: 14px;
}

.premium-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 231, 163, 0.16), rgba(255, 249, 234, 0.04)),
    rgba(255, 249, 234, 0.05) !important;
}

.premium-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 231, 163, 0.14) 45%, transparent 62%);
  transform: translateX(-120%);
}

.premium-cta svg {
  margin-bottom: 18px;
  color: var(--gold-400);
}

.premium-cta p {
  margin: 12px 0 0;
  color: rgba(255, 249, 234, 0.64);
  font-size: 0.95rem;
  line-height: 1.58;
}

.final-bottle-stage {
  position: relative;
  width: min(560px, 100%);
  min-height: 540px;
  margin-top: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(239, 199, 91, 0.2);
  background:
    radial-gradient(circle at 50% 24%, rgba(239, 199, 91, 0.16), transparent 18rem),
    rgba(255, 249, 234, 0.035);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.26);
}

.final-bottle-stage img {
  position: relative;
  z-index: 3;
  width: min(46%, 250px);
  filter: drop-shadow(0 36px 34px rgba(0, 0, 0, 0.46));
}

.final-aura {
  position: absolute;
  z-index: 1;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(239, 199, 91, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 199, 91, 0.15), transparent 64%);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 98px;
  color: rgba(255, 249, 234, 0.56);
  font-size: 0.9rem;
}

.reveal-ready :where(
  .hero-copy,
  .hero-product,
  .story-copy,
  .story-stage,
  .story-chapter,
  .section-heading,
  .advantage-card,
  .formula-card,
  .detail-panel,
  .detail-chip,
  .ritual-panel,
  .service-step,
  .identity-list > div,
  .price-card,
  .distribution-grid article,
  .map-panel,
  .social-card,
  .phone-mockup,
  .target-note,
  .culture-grid article,
  .culture-orbit,
  .culture-radar,
  .culture-proof article,
  .premium-cta,
  .final-bottle-stage,
  .closing-grid > div
) {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    border-color 220ms ease,
    background 220ms ease;
}

.reveal-ready :where(
  .hero-copy,
  .hero-product,
  .story-copy,
  .story-stage,
  .story-chapter,
  .section-heading,
  .advantage-card,
  .formula-card,
  .detail-panel,
  .detail-chip,
  .ritual-panel,
  .service-step,
  .identity-list > div,
  .price-card,
  .distribution-grid article,
  .map-panel,
  .social-card,
  .phone-mockup,
  .target-note,
  .culture-grid article,
  .culture-orbit,
  .culture-radar,
  .culture-proof article,
  .premium-cta,
  .final-bottle-stage,
  .closing-grid > div
).is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.advantage-card:hover,
.formula-card:hover,
.detail-chip:hover,
.service-step:hover,
.distribution-grid article:hover,
.phone-mockup:hover,
.culture-grid article:hover {
  border-color: rgba(255, 231, 163, 0.48);
  background: linear-gradient(145deg, rgba(255, 249, 234, 0.115), rgba(255, 249, 234, 0.045));
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    width: min(100% - 28px, 720px);
    padding: 20px 0 6px;
  }

  .presentation-nav {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 12px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    transform: none;
  }

  .presentation-nav a {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 2px;
    justify-items: center;
    padding: 7px 3px;
  }

  .presentation-nav a:hover,
  .presentation-nav a.active {
    transform: translateY(-3px);
  }

  .presentation-nav strong {
    display: none;
  }

  .presentation-nav span {
    font-size: 0.62rem;
  }

  nav {
    display: none;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid,
  .story-grid,
  .benchmark-shell,
  .proof-media-grid,
  .campaign-shell,
  .product-shell,
  .crafted-grid,
  .ritual-panel,
  .service-stage,
  .brand-grid,
  .digital-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 0;
    min-height: auto;
  }

  .hero-copy {
    padding-top: 64px;
  }

  .hero-product {
    min-height: 560px;
  }

  .hero-metrics,
  .story-grid,
  .advantage-grid,
  .distribution-grid,
  .service-steps,
  .culture-grid,
  .culture-proof,
  .proof-grid,
  .channel-choice-grid,
  .placement-proof-grid,
  .sensitivity-panel,
  .sensitivity-grid,
  .campaign-visuals,
  .fourp-grid,
  .formula-grid,
  .price-row,
  .social-mockups,
  .map-panel {
    grid-template-columns: 1fr;
  }

  .story-stage {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .sticky-bottle-card {
    min-height: 580px;
  }

  .product-stage,
  .detail-panel,
  .packaging-showcase,
  .service-visual,
  .final-bottle-stage {
    min-height: 570px;
  }

  .ritual-panel {
    padding: 34px;
  }

  .scroll-cue {
    display: none;
  }

  .map-copy {
    min-height: auto;
  }

  .map-stop {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
  }

  .uae-map {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding: 28px;
  }

  .uae-map::after {
    top: 24px;
    bottom: 24px;
    left: 38px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(239, 199, 91, 0.78), transparent);
    transform: scaleY(0);
    transform-origin: top;
  }

  .benchmark-shell {
    gap: 28px;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .table-head {
    display: none;
  }

  .proof-media-card img,
  .proof-media-card.wide img,
  .placement-image img,
  .campaign-image-card.poster img,
  .campaign-image-card.social-wide img {
    aspect-ratio: auto;
  }

  .channel-choice {
    min-height: auto;
  }

  .placement-pin {
    left: 18px !important;
    top: 18px !important;
  }

  .placement-pin::after {
    height: 54px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 520px);
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    gap: 12px;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 5.6rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-product {
    min-height: 470px;
  }

  .bottle-main {
    min-width: 210px;
  }

  .bottle-side {
    width: 104px;
    opacity: 0.32;
  }

  .bottle-side.left {
    left: 0;
  }

  .bottle-side.right {
    right: 0;
  }

  .formula-card,
  .target-note,
  .detail-chip {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .fourp-card {
    min-height: auto;
  }

  .proof-card span,
  .fourp-card span {
    margin-bottom: 28px;
  }

  .price-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .reel-step {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .formula-card img {
    width: 58px;
  }

  .product-stage,
  .detail-panel,
  .packaging-showcase,
  .service-visual,
  .final-bottle-stage {
    min-height: 470px;
  }

  .story-chapter {
    min-height: 260px;
    padding: 28px;
  }

  .story-chapter > span {
    margin-bottom: 66px;
    font-size: 2.35rem;
  }

  .sticky-bottle-card {
    min-height: 520px;
  }

  .sticky-bottle-card img {
    width: min(58%, 230px);
  }

  .stage-signals span {
    min-width: 62px;
    padding: 7px 8px;
    font-size: 0.58rem;
  }

  .detail-callout {
    position: relative;
    inset: auto !important;
    margin: 8px auto 0;
    text-align: center;
  }

  .detail-callout::after {
    display: none;
  }

  .phone-mockup {
    min-height: 450px;
  }

  .phone-media {
    min-height: 285px;
  }

  .radar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .radar-row strong {
    text-align: left;
  }

  .hero-ritual-note {
    display: none;
  }

  .culture-orbit {
    aspect-ratio: auto;
    display: grid;
    gap: 12px;
    padding: 20px;
    border-radius: 0;
  }

  .culture-orbit::before,
  .culture-orbit::after {
    display: none;
  }

  .orbit-core,
  .orbit-node {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    border-radius: 0;
    transform: none;
  }

  .orbit-core {
    min-height: 112px;
  }

  .orbit-node {
    padding: 16px;
  }

  .ritual-panel {
    padding: 24px;
  }

  blockquote {
    padding-left: 18px;
  }

  footer {
    width: min(100% - 28px, 520px);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .product-bottle,
  .showcase-bottle {
    animation: breathe 7s ease-in-out infinite;
  }

  .bottle-side.left {
    animation: driftLeft 8s ease-in-out infinite;
  }

  .bottle-side.right {
    animation: driftRight 8.5s ease-in-out infinite;
  }

  .glass-shimmer {
    animation: glassSweep 3600ms ease-in-out infinite;
  }

  .liquid-pour {
    animation: liquidFlow 2600ms ease-in-out infinite;
  }

  .hero-light-one {
    animation: pulseGold 8s ease-in-out infinite;
  }

  .hero-light-two {
    animation: pulseGreen 9s ease-in-out infinite;
  }

  .radar-track i {
    animation: fillTrack 1200ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .premium-cta.is-visible::after {
    animation: sheen 2400ms ease-in-out 600ms infinite;
  }

  .phone-mockup.is-visible::after {
    animation: mockProgress 4200ms linear infinite;
  }

  .phone-mockup.is-visible .phone-media::before {
    animation: mediaSweep 3600ms ease-in-out infinite;
  }

  .map-panel.is-visible .uae-map::after {
    animation: routeDraw 1800ms cubic-bezier(0.22, 1, 0.36, 1) 450ms forwards;
  }

  .map-panel.is-visible .map-stop {
    animation: pinPulse 2600ms ease-in-out infinite;
  }

  .culture-orbit.is-visible {
    animation: orbitGlow 6200ms ease-in-out infinite;
  }

  .culture-orbit.is-visible .orbit-node {
    animation: nodeFloat 4200ms ease-in-out infinite;
  }

  .final-bottle-stage.is-visible .final-aura {
    animation: finalAura 3600ms ease-in-out infinite;
  }
}

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

@keyframes driftLeft {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(9px) rotate(-3deg);
  }
}

@keyframes driftRight {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(-8px) rotate(6deg);
  }
}

@keyframes pulseGold {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.94) translate3d(0, calc(var(--page-scroll) * 28px), 0);
  }
  50% {
    opacity: 0.46;
    transform: scale(1.06) translate3d(0, calc(var(--page-scroll) * 44px), 0);
  }
}

@keyframes pulseGreen {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(1) translate3d(0, calc(var(--page-scroll) * -18px), 0);
  }
  50% {
    opacity: 0.42;
    transform: scale(1.08) translate3d(0, calc(var(--page-scroll) * -28px), 0);
  }
}

@keyframes fillTrack {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }
  48%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes introFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
  }
}

@keyframes goldDraw {
  to {
    transform: scaleX(1);
  }
}

@keyframes verticalDraw {
  to {
    transform: scaleY(1);
  }
}

@keyframes glassSweep {
  0%,
  34% {
    opacity: 0;
    transform: translateX(-170px) skewX(-12deg);
  }
  52% {
    opacity: 0.85;
  }
  78%,
  100% {
    opacity: 0;
    transform: translateX(180px) skewX(-12deg);
  }
}

@keyframes liquidFlow {
  0%,
  100% {
    opacity: 0.42;
    clip-path: polygon(43% 0, 55% 0, 70% 100%, 27% 100%);
  }
  50% {
    opacity: 0.72;
    clip-path: polygon(39% 0, 58% 0, 76% 100%, 22% 100%);
  }
}

@keyframes mockProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes mediaSweep {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-120%);
  }
  54% {
    opacity: 0.9;
  }
  82%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes routeDraw {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  @keyframes routeDraw {
    to {
      transform: scaleY(1);
    }
  }
}

@keyframes pinPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(239, 199, 91, 0));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(239, 199, 91, 0.32));
  }
}

@keyframes orbitGlow {
  0%,
  100% {
    box-shadow: inset 0 0 70px rgba(239, 199, 91, 0.04), 0 28px 80px rgba(0, 0, 0, 0.16);
  }
  50% {
    box-shadow: inset 0 0 90px rgba(239, 199, 91, 0.12), 0 34px 90px rgba(0, 0, 0, 0.22);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes finalAura {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

