/* ══════════════════════════════════════════════════════════════════
   MAXLI PERFUME — OFFICIAL LUXURY MAISON STYLESHEET (PRODUCTION)
   Theme: Midnight Sapphire & Electric Radiant Cyan
   ══════════════════════════════════════════════════════════════════ */

/* ═══ DESIGN SYSTEM & ROOT TOKENS ═══ */
:root {
  --bg-deep: #030a16;
  --bg-mid: #07152b;
  --bg-surface: #0b1f3c;
  --bg-card: #0f284e;
  --bg-light: #143564;

  --cyan: #00b4d8;
  --cyan-bright: #00e5ff;
  --cyan-glow: #38bdf8;
  --cyan-pale: #bae6fd;
  --cyan-ice: #e0f2fe;

  --azure: #0284c7;
  --azure-deep: #0369a1;

  --cream: #ffffff;
  --text-main: #f0f7ff;
  --text-muted: rgba(240, 247, 255, 0.88);
  --text-dim: rgba(224, 242, 254, 0.55);

  --wine: #0b1f3c;
  --wine-mid: #07152b;
  --wine-deep: #030a16;
  --wine-light: #0f284e;
  --gold: #00e5ff;
  --gold-light: #38bdf8;
  --gold-pale: #bae6fd;

  --serif: "Playfair Display", Georgia, serif;
  --body: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
  --thin: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --r: 16px;
}

/* ═══ BASE & RESETS ═══ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  background: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.25s, opacity 0.25s, transform 0.25s;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

em {
  font-style: italic;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ═══ FAST SNAPPY LOADER ═══ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

#loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 90vw;
}

.loader-logo {
  width: clamp(160px, 20vw, 240px);
  height: auto;
  animation: logoPulse 1.8s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 0 14px rgba(0, 180, 216, 0.45));
  }
  50% {
    filter: drop-shadow(0 0 36px rgba(0, 229, 255, 0.95));
  }
}

.loader-line {
  width: min(240px, 75vw);
  height: 2px;
  background: rgba(0, 229, 255, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-line span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, transparent, var(--cyan-bright), transparent);
  animation: loaderScan 1.4s ease-in-out infinite;
}

@keyframes loaderScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

.loader-sub {
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: var(--cyan-bright);
}

/* ═══ NAVIGATION ═══ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  background: transparent;
}

#nav.scrolled {
  background: rgba(3, 10, 22, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-brand img {
  height: clamp(60px, 7vw, 84px);
  width: auto;
  transition: height 0.4s var(--ease), filter 0.3s;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.45));
}

#nav.scrolled .nav-brand img {
  height: clamp(48px, 5vw, 64px);
}

.nav-brand:hover img {
  filter: drop-shadow(0 0 22px rgba(0, 229, 255, 0.9));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 48px);
}

.nav-menu a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(224, 242, 254, 0.85);
  position: relative;
  padding: 6px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-bright);
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover {
  color: var(--cyan-bright);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-shop {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(0, 229, 255, 0.45);
  color: var(--cyan-bright);
  border-radius: 20px;
  background: rgba(0, 229, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Burger Button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 4px;
  width: 40px;
  height: 40px;
  padding: 6px;
  z-index: 1002;
  transition: all 0.3s;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan-bright);
  transition: all 0.3s var(--ease);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background: rgba(3, 10, 22, 0.98);
  border-left: 1px solid rgba(0, 229, 255, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2000;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.drawer.open { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.drawer-brand img { height: 48px; width: auto; }
.drawer-close {
  background: none;
  border: none;
  color: var(--cyan-bright);
  font-size: 1.4rem;
  line-height: 1;
}

.drawer ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer ul a {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #ffffff;
  display: block;
  transition: color 0.2s, transform 0.2s;
}

.drawer ul a:hover {
  color: var(--cyan-bright);
  transform: translateX(6px);
}

.drawer-shop {
  margin-top: auto;
  text-align: center;
  padding: 14px;
  font-size: 0.8rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer.open ~ .drawer-overlay {
  opacity: 1;
  visibility: visible;
}

/* ═══ HERO SECTION ═══ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(20px, 4vw, 64px) 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: brightness(1.25) contrast(1.15) saturate(1.2);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 45%, rgba(3, 10, 22, 0.1) 0%, rgba(3, 10, 22, 0.6) 80%),
              linear-gradient(180deg, rgba(3, 10, 22, 0.35) 0%, transparent 40%, #030a16 100%);
}

#petals-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-tag {
  font-size: 0.74rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-headline .l2 {
  color: var(--cyan-bright);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(280px, 90%);
  margin: 16px 0 20px;
}

.hero-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.65), transparent);
}

.hero-divider i {
  color: var(--cyan-bright);
  font-style: normal;
  font-size: 0.9rem;
}

.hero-tagline {
  font-family: var(--thin);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: var(--cyan-pale);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-wine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: linear-gradient(135deg, #0284c7, #00b4d8);
  color: #ffffff !important;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(0, 229, 255, 0.5);
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
  transition: all 0.3s var(--ease);
}

.btn-wine:hover {
  background: linear-gradient(135deg, #00b4d8, #00e5ff);
  color: var(--bg-deep) !important;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.75);
  transform: translateY(-2px);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bottle-frame {
  position: relative;
  width: 100%;
  max-width: min(580px, 92vw);
}

.hero-bottle-img {
  width: 100%;
  height: auto;
  max-height: clamp(540px, 66vh, 680px);
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 36px rgba(0, 180, 216, 0.45));
  transform: scale(1.08);
  transition: transform 0.5s var(--ease);
}

.hero-bottle-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.18) 0%, transparent 68%);
  pointer-events: none;
  z-index: -1;
  animation: auraBreathing 5s ease-in-out infinite alternate;
}

@keyframes auraBreathing {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.05); opacity: 1; }
}

/* ═══ TICKER ═══ */
.ticker {
  background: rgba(7, 21, 43, 0.85);
  border-top: 1px solid rgba(0, 229, 255, 0.18);
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: tickerSlide 25s linear infinite;
}

.ticker-track span {
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 247, 255, 0.85);
}

.ticker-track em {
  color: var(--cyan-bright);
  font-style: normal;
  font-size: 0.85rem;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ STORY SECTION ═══ */
#story {
  padding: clamp(80px, 11vw, 130px) clamp(20px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.story-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.story-visual {
  display: flex;
  justify-content: center;
}

.story-monolith {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.22);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 180, 216, 0.15);
  background: #020813;
  display: flex;
  flex-direction: column;
}

.story-img-frame {
  position: relative;
  flex: 1;
  min-height: 400px;
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 8, 19, 0.95) 100%);
}

.story-img-badge {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.badge-tag {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.badge-sub {
  font-size: 0.74rem;
  color: rgba(240, 247, 255, 0.8);
}

.monolith-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(7, 21, 43, 0.95);
  border-top: 1px solid rgba(0, 229, 255, 0.16);
  padding: 16px 12px;
}

.m-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.m-stat strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cyan-bright);
  line-height: 1.1;
}

.m-stat span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 247, 255, 0.7);
}

.m-stat-sep {
  width: 1px;
  height: 28px;
  background: rgba(0, 229, 255, 0.18);
}

.story-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.story-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
}

.story-text h2 em {
  color: var(--cyan-bright);
}

.story-lead {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 14px;
}

.story-text p {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.manifesto-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.manifesto-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.12);
  transition: padding-left 0.3s var(--ease);
}

.manifesto-row:hover {
  padding-left: 8px;
  border-color: rgba(0, 229, 255, 0.35);
}

.m-num {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan-bright);
  line-height: 1;
}

.m-body h3 {
  font-size: 1.02rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}

.m-body p {
  font-size: 0.86rem;
  color: rgba(240, 247, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ═══ COLLECTION SECTION (CONVEYOR SHOWCASE) ═══ */
#collection {
  padding: clamp(80px, 11vw, 130px) clamp(20px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.collection-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.collection-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.collection-header h2 em {
  color: var(--cyan-bright);
}

.collection-header p {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  color: rgba(240, 247, 255, 0.8);
  max-width: 540px;
  margin: 0 auto;
}

.scent-showcase-stage {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 54px);
}

.scent-hero-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.scent-hero-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: clamp(450px, 52vh, 600px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95), 0 0 45px rgba(0, 180, 216, 0.22);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030a16;
}

.scent-hero-aura {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.22) 0%, rgba(56, 189, 248, 0.06) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: auraBreathing 5s ease-in-out infinite alternate;
}

.scent-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.35s ease;
  will-change: transform, opacity;
}

.scent-hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.scent-watermark {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  font-weight: 900;
  color: rgba(0, 229, 255, 0.14);
  line-height: 1;
  pointer-events: none;
  z-index: 3;
}

.scent-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.scent-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.scent-tag {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 600;
}

.scent-conc {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan-pale);
  font-weight: 600;
}

.scent-name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
}

.scent-name em {
  color: var(--cyan-bright);
  font-style: italic;
}

.scent-desc {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: rgba(240, 247, 255, 0.88);
  line-height: 1.85;
  margin-bottom: 24px;
}

.scent-notes-pyramid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  background: rgba(7, 21, 43, 0.65);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 6px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scent-note-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.s-note-lvl {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 700;
  width: 52px;
  flex-shrink: 0;
}

.s-note-txt {
  font-family: var(--body);
  font-size: 0.85rem;
  color: rgba(240, 247, 255, 0.92);
  line-height: 1.5;
}

.scent-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 229, 255, 0.12);
}

.scent-badges-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scent-badge-item {
  display: flex;
  flex-direction: column;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 229, 255, 0.16);
  border-radius: 4px;
}

.scent-badge-item small {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-glow);
  margin-bottom: 2px;
}

.scent-badge-item strong {
  font-size: 0.84rem;
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
}

.scent-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 30px;
  color: var(--cyan-bright);
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}

/* ═══ CONVEYOR BELT THUMBNAIL TRACK ═══ */
.conveyor-belt-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.conveyor-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(7, 21, 43, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  z-index: 20;
}

.conveyor-nav-btn:hover {
  background: var(--cyan-bright);
  color: var(--bg-deep);
  border-color: var(--cyan-bright);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.55);
}

.conveyor-nav-btn svg {
  width: 20px;
  height: 20px;
}

.conveyor-viewport {
  position: relative;
  width: 100%;
  overflow: visible;
  height: clamp(170px, 20vw, 210px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.conveyor-stage-3d {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conveyor-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(90px, 11vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transform-origin: center center;
  transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity, filter;
  user-select: none;
}

/* Center (Active Selected Scent) */
.conveyor-card[data-offset="0"] {
  transform: translate(-50%, -50%) scale(1.22);
  z-index: 10;
  opacity: 1;
  filter: brightness(1);
}

.conveyor-card[data-offset="0"] .conveyor-img-box {
  border-color: var(--cyan-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95), 0 0 28px rgba(0, 229, 255, 0.55);
}

.conveyor-card[data-offset="0"] .conveyor-dark-veil {
  opacity: 0;
}

.conveyor-card[data-offset="0"] .conveyor-name {
  color: var(--cyan-bright);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
  transform: translateY(2px);
}

/* Immediate Left */
.conveyor-card[data-offset="-1"] {
  transform: translate(calc(-50% - clamp(95px, 13vw, 145px)), -50%) scale(0.88);
  z-index: 8;
  opacity: 0.55;
  filter: brightness(0.65);
}

/* Immediate Right */
.conveyor-card[data-offset="1"] {
  transform: translate(calc(-50% + clamp(95px, 13vw, 145px)), -50%) scale(0.88);
  z-index: 8;
  opacity: 0.55;
  filter: brightness(0.65);
}

/* Far / Back */
.conveyor-card[data-offset="2"], .conveyor-card[data-offset="-2"] {
  transform: translate(calc(-50% + clamp(180px, 25vw, 270px)), -50%) scale(0.7);
  z-index: 6;
  opacity: 0.28;
  filter: brightness(0.4);
}

.conveyor-img-box {
  position: relative;
  width: 100%;
  height: clamp(96px, 12.5vw, 135px);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transition: all 0.55s ease;
}

.conveyor-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conveyor-dark-veil {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.68);
  transition: opacity 0.55s ease;
}

.conveyor-name {
  font-size: clamp(0.66rem, 0.85vw, 0.74rem);
  letter-spacing: 0.08em;
  color: rgba(240, 247, 255, 0.6);
  text-align: center;
  margin-top: 8px;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.55s ease;
}

/* Slide Transition Animations */
.slide-in-right {
  animation: slideInFromRight 0.38s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

.slide-in-left {
  animation: slideInFromLeft 0.38s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

@keyframes slideInFromRight {
  0% { opacity: 0; transform: translateX(25px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromLeft {
  0% { opacity: 0; transform: translateX(-25px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ═══ ESSENCE SECTION (THE STANDARD) ═══ */
#essence {
  position: relative;
  padding: clamp(80px, 11vw, 120px) clamp(20px, 5vw, 80px);
  overflow: hidden;
  background: #020813;
}

.essence-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.essence-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(1.2) contrast(1.1);
}

.essence-bg-over {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 42, 82, 0.5) 0%, #020813 80%);
}

.essence-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.essence-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.essence-title em {
  color: var(--cyan-bright);
}

.essence-sub {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  color: rgba(240, 247, 255, 0.85);
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 54px);
  line-height: 1.8;
}

.essence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.ess-item {
  background: rgba(7, 21, 43, 0.65);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 6px;
  padding: 32px 22px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease);
}

.ess-item:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-bright);
  background: rgba(11, 31, 60, 0.85);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 229, 255, 0.25);
}

.ess-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan-bright);
  margin-bottom: 12px;
}

.ess-item h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.ess-item p {
  font-size: 0.84rem;
  color: rgba(240, 247, 255, 0.75);
  line-height: 1.6;
}

/* ═══ FOOTER ═══ */
#footer {
  background: radial-gradient(circle at 50% 0%, rgba(14, 42, 82, 0.4) 0%, #020813 85%);
  border-top: 1px solid rgba(0, 229, 255, 0.18);
  position: relative;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 38px 24px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.6fr;
  gap: clamp(24px, 3.5vw, 44px);
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 12px rgba(0, 180, 216, 0.45));
}

.footer-quote {
  font-family: var(--thin);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-soc-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(7, 21, 43, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.28);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}

.footer-soc-btn svg {
  width: 14px;
  height: 14px;
}

.footer-soc-btn:hover {
  background: var(--cyan-bright);
  color: var(--bg-deep);
  border-color: var(--cyan-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.55);
}

/* Nav Col */
.f-col-title {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
}

.f-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-nav-links a {
  font-size: 0.82rem;
  color: rgba(240, 247, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.f-nav-links a:hover {
  color: var(--cyan-bright);
  padding-left: 4px;
}

/* Contact 2x2 Grid */
.f-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.f-contact-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.f-lbl {
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-glow);
  font-weight: 600;
}

.f-val {
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.3;
}

a.f-val:hover {
  color: var(--cyan-bright);
}

.f-val.status-pill {
  color: var(--cyan-pale);
  font-style: italic;
  font-weight: 400;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  flex-wrap: wrap;
}

.copyright-txt {
  font-size: 0.74rem;
  color: rgba(240, 247, 255, 0.65);
  letter-spacing: 0.03em;
}

.developer-credit {
  font-size: 0.74rem;
  color: rgba(240, 247, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
}

.heart-pulse {
  color: #00e5ff;
  display: inline-block;
  animation: heartBeat 2s ease-in-out infinite;
  font-size: 0.9rem;
  line-height: 1;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.8));
  }
}

.credit-brand {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.45);
  padding-bottom: 1px;
  transition: all 0.3s var(--ease);
}

.credit-brand:hover {
  color: var(--cyan-bright);
  border-color: var(--cyan-bright);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.65);
}

/* ═══ RESPONSIVE BREAKPOINTS (ALL SCREENS) ═══ */

/* Large Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  #hero {
    padding: 110px 0 60px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 32px;
  }

  .hero-left {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-divider {
    margin: 16px auto 20px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-bottle-frame {
    max-width: min(480px, 80vw);
    margin: 0 auto;
  }

  /* Story Tablet */
  #story {
    padding: 80px 24px;
  }

  .story-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .story-monolith {
    max-width: 460px;
    margin: 0 auto;
  }

  .story-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .manifesto-list {
    text-align: left;
    width: 100%;
    max-width: 620px;
    margin: 16px auto 0;
  }

  /* Collection Tablet */
  .scent-showcase-stage {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .scent-watermark {
    display: none !important;
  }

  .scent-hero-frame {
    max-width: 380px;
    height: 440px;
    margin: 0 auto;
  }

  .scent-details-col {
    text-align: left;
  }

  /* Conveyor Belt Tablet */
  .conveyor-belt-wrap {
    max-width: 800px;
  }

  .conveyor-card[data-offset="-1"] {
    transform: translate(calc(-50% - 120px), -50%) scale(0.85);
  }

  .conveyor-card[data-offset="1"] {
    transform: translate(calc(-50% + 120px), -50%) scale(0.85);
  }

  .conveyor-card[data-offset="-2"], .conveyor-card[data-offset="2"] {
    transform: translate(calc(-50% + 220px), -50%) scale(0.7);
  }

  .essence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium Tablets & Mobile Landscape (<= 991px) */
@media (max-width: 991px) {
  #nav {
    padding: 12px 20px;
  }

  #nav.scrolled {
    padding: 10px 20px;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-shop {
    display: none !important;
  }

  .burger {
    display: flex !important;
  }

  .nav-brand img {
    height: clamp(50px, 7vw, 64px);
  }

  #nav.scrolled .nav-brand img {
    height: 46px;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  #nav {
    padding: 10px 16px;
  }

  .nav-menu, .nav-shop {
    display: none !important;
  }

  .burger {
    display: flex !important;
  }

  .nav-brand img {
    height: 48px;
  }

  #hero {
    padding: 85px 0 40px;
    min-height: auto;
  }

  .hero-layout {
    padding: 0 16px;
    gap: 24px;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tag {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    margin-bottom: 10px;
  }

  .hero-headline {
    margin-bottom: 12px;
  }

  .hero-headline .l1, .hero-headline .l3 {
    font-size: clamp(2.1rem, 8.8vw, 3rem);
    line-height: 1.1;
  }

  .hero-headline .l2 {
    font-size: clamp(2.5rem, 10.5vw, 3.6rem);
    line-height: 1.1;
  }

  .hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 240px;
    margin: 12px auto 14px;
  }

  .hero-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.65), transparent);
  }

  .hero-tagline {
    font-size: clamp(1.05rem, 3.8vw, 1.25rem);
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 380px;
    margin: 0 auto 20px;
  }

  .hero-btns {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-btns a {
    width: 100%;
    max-width: 300px;
    padding: 13px 20px;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .hero-bottle-frame {
    width: 100%;
    max-width: min(320px, 84vw);
    margin: 10px auto 0;
  }

  .hero-bottle-img {
    max-height: 360px;
  }

  /* Story Mobile */
  #story {
    padding: 65px 16px;
  }

  .story-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .story-monolith {
    max-width: 100%;
    min-height: auto;
  }

  .story-img-frame {
    min-height: 300px;
  }

  .monolith-stats {
    width: 100%;
    margin: 0;
  }

  .m-stat strong {
    font-size: 1.15rem;
  }

  .m-stat span {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .story-text {
    align-items: center;
  }

  .manifesto-list {
    text-align: left;
    width: 100%;
    margin-top: 10px;
  }

  .manifesto-row {
    padding: 14px 0;
    gap: 14px;
  }

  .manifesto-row:hover {
    padding-left: 4px;
  }

  .m-num {
    font-size: 1.1rem;
  }

  /* Collection Mobile */
  #collection {
    padding: 55px 16px 36px;
    overflow: hidden;
  }

  .collection-header {
    margin-bottom: 20px;
  }

  .collection-header h2 {
    font-size: clamp(2.1rem, 8vw, 2.7rem);
    margin-bottom: 8px;
  }

  .collection-header p {
    font-size: 0.86rem;
    max-width: 320px;
  }

  .scent-showcase-stage {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 22px;
  }

  .scent-watermark {
    display: none !important;
  }

  .scent-hero-frame {
    width: 100%;
    max-width: min(320px, 86vw);
    height: clamp(340px, 48vh, 410px);
    margin: 0 auto;
    border-radius: 8px;
  }

  .scent-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .scent-details-col {
    width: 100%;
    padding: 0;
  }

  .scent-meta-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .scent-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  .scent-conc {
    font-size: 0.58rem;
    padding: 3px 8px;
  }

  .scent-name {
    font-size: clamp(1.85rem, 6.8vw, 2.3rem);
    margin-bottom: 10px;
    text-align: left;
  }

  .scent-desc {
    font-size: 0.86rem;
    line-height: 1.62;
    margin-bottom: 16px;
    text-align: left;
  }

  .scent-notes-pyramid {
    padding: 12px 14px;
    gap: 8px;
    margin-bottom: 18px;
  }

  .scent-note-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }

  .s-note-lvl {
    font-size: 0.58rem;
    width: 44px;
    flex-shrink: 0;
  }

  .s-note-txt {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .scent-action-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 12px;
  }

  .scent-badges-wrap {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .scent-badge-item {
    flex: 1;
    padding: 8px 10px;
    text-align: center;
  }

  .scent-badge-item small {
    font-size: 0.52rem;
  }

  .scent-badge-item strong {
    font-size: 0.78rem;
  }

  .scent-status-pill {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.72rem;
  }

  /* Conveyor Belt Mobile */
  .conveyor-belt-wrap {
    max-width: 100%;
    gap: 6px;
    margin-top: 10px;
  }

  .conveyor-viewport {
    height: 148px;
    overflow: hidden;
  }

  .conveyor-card {
    width: 76px;
  }

  .conveyor-img-box {
    height: 86px;
  }

  .conveyor-name {
    font-size: 0.62rem;
    margin-top: 6px;
  }

  .conveyor-nav-btn {
    width: 36px;
    height: 36px;
  }

  .conveyor-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .conveyor-card[data-offset="0"] {
    transform: translate(-50%, -50%) scale(1.18);
  }

  .conveyor-card[data-offset="-1"] {
    transform: translate(calc(-50% - 78px), -50%) scale(0.85);
  }

  .conveyor-card[data-offset="1"] {
    transform: translate(calc(-50% + 78px), -50%) scale(0.85);
  }

  .conveyor-card[data-offset="2"], .conveyor-card[data-offset="-2"] {
    transform: translate(calc(-50% + 146px), -50%) scale(0.68);
  }

  .essence-grid {
    grid-template-columns: 1fr;
  }

  .ess-item {
    padding: 24px 16px;
  }

  /* Footer Mobile */
  .footer-inner {
    padding: 28px 16px 16px;
  }

  .footer-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px 14px;
    padding-bottom: 18px;
  }

  .footer-brand-col {
    grid-column: span 2;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    height: 42px;
    margin-bottom: 6px;
  }

  .footer-quote {
    font-size: 0.78rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .footer-social-row {
    justify-content: center;
    gap: 8px;
  }

  .footer-soc-btn {
    width: 30px;
    height: 30px;
  }

  .footer-soc-btn svg {
    width: 13px;
    height: 13px;
  }

  .f-col-title {
    font-size: 0.62rem;
    margin-bottom: 8px;
  }

  .footer-nav-col {
    text-align: left;
  }

  .f-nav-links {
    align-items: flex-start;
    gap: 6px;
  }

  .f-nav-links a {
    font-size: 0.78rem;
  }

  .footer-contact-col {
    text-align: left;
  }

  .f-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
  }

  .f-lbl {
    font-size: 0.52rem;
  }

  .f-val {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .footer-bottom-bar {
    padding-top: 12px;
    flex-direction: column;
    text-align: center;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }

  .copyright-txt, .developer-credit {
    font-size: 0.68rem;
  }
}

/* Small Screen Phones (<= 480px) */
@media (max-width: 480px) {
  #nav {
    padding: 8px 14px;
  }

  .nav-brand img {
    height: 42px;
  }

  .burger {
    width: 38px;
    height: 38px;
    padding: 6px;
  }

  #hero {
    padding: 75px 0 30px;
  }

  .hero-layout {
    padding: 0 14px;
    gap: 20px;
  }

  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .hero-headline .l1, .hero-headline .l3 {
    font-size: clamp(1.85rem, 8.2vw, 2.3rem);
  }

  .hero-headline .l2 {
    font-size: clamp(2.1rem, 9.5vw, 2.8rem);
  }

  .hero-desc {
    font-size: 0.84rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto 18px;
  }

  .hero-btns a {
    max-width: 280px;
    padding: 12px 16px;
    font-size: 0.72rem;
  }

  .hero-bottle-frame {
    max-width: min(280px, 86vw);
  }

  .hero-bottle-img {
    max-height: 300px;
  }

  #story {
    padding: 50px 14px;
  }

  .story-img-frame {
    min-height: 260px;
  }

  .m-stat {
    padding: 10px 4px;
  }

  .m-stat strong {
    font-size: 1rem;
  }

  .m-stat span {
    font-size: 0.5rem;
  }

  .manifesto-row {
    padding: 12px 0;
    gap: 12px;
  }

  .m-body h3 {
    font-size: 0.92rem;
  }

  .m-body p {
    font-size: 0.8rem;
  }

  /* Collection Phone (<= 480px) */
  #collection {
    padding: 45px 12px 25px;
  }

  .scent-hero-frame {
    max-width: min(280px, 88vw);
    height: clamp(300px, 45vh, 350px);
  }

  .scent-name {
    font-size: 1.65rem;
  }

  .scent-tag {
    font-size: 0.56rem;
  }

  .scent-conc {
    font-size: 0.54rem;
  }

  .scent-desc {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .scent-notes-pyramid {
    padding: 10px 12px;
  }

  .s-note-lvl {
    width: 38px;
    font-size: 0.54rem;
  }

  .s-note-txt {
    font-size: 0.74rem;
  }

  /* Conveyor Phone */
  .conveyor-viewport {
    height: 135px;
  }

  .conveyor-card {
    width: 66px;
  }

  .conveyor-img-box {
    height: 74px;
  }

  .conveyor-name {
    font-size: 0.56rem;
  }

  .conveyor-card[data-offset="0"] {
    transform: translate(-50%, -50%) scale(1.15);
  }

  .conveyor-card[data-offset="-1"] {
    transform: translate(calc(-50% - 68px), -50%) scale(0.82);
  }

  .conveyor-card[data-offset="1"] {
    transform: translate(calc(-50% + 68px), -50%) scale(0.82);
  }

  .conveyor-card[data-offset="2"], .conveyor-card[data-offset="-2"] {
    transform: translate(calc(-50% + 126px), -50%) scale(0.64);
  }

  .conveyor-nav-btn {
    width: 32px;
    height: 32px;
  }

  .conveyor-nav-btn svg {
    width: 14px;
    height: 14px;
  }

  .essence-grid {
    grid-template-columns: 1fr;
  }

  .ess-item {
    padding: 22px 14px;
  }

  .f-contact-grid {
    gap: 8px;
  }
}
