/* =========================================================
   IYALY FRAGRANCE INTELLIGENCE
   Design System V1 — Luxury Experience
   ========================================================= */

:root {
  --black: #080705;
  --black-soft: #15110d;
  --brown: #2c2117;

  --gold-dark: #8e601e;
  --gold: #c99536;
  --gold-light: #f0d58f;
  --gold-pale: #fff1c7;

  --cream: #fffaf0;
  --cream-soft: #f7ecda;
  --sand: #e8d3b2;

  --white: #ffffff;
  --text: #211b15;
  --muted: #776b60;

  --line: rgba(161, 112, 38, 0.2);
  --line-light: rgba(255, 255, 255, 0.18);

  --shadow-sm: 0 12px 30px rgba(52, 31, 8, 0.08);
  --shadow-md: 0 24px 60px rgba(52, 31, 8, 0.14);
  --shadow-lg: 0 35px 100px rgba(24, 13, 3, 0.22);

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;

  --max-width: 1440px;
}

/* =========================================================
   BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  color: var(--text);

  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(255, 241, 199, 0.9),
      transparent 31%
    ),
    radial-gradient(
      circle at 88% 25%,
      rgba(215, 167, 80, 0.2),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #fffdf8 0%,
      #f8eddd 50%,
      #e9d3b1 100%
    );

  min-height: 100vh;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

body.modal-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 120px;
}

/* =========================================================
   AMBIENT BACKGROUND
   ========================================================= */

.ambient {
  position: fixed;
  z-index: -1;
  contain: layout paint style;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.55;
}

.ambient-one {
  width: 420px;
  height: 420px;
  top: 120px;
  left: -180px;
  background: rgba(255, 220, 150, 0.62);
}

.ambient-two {
  width: 480px;
  height: 480px;
  top: 380px;
  right: -190px;
  background: rgba(181, 119, 37, 0.28);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);

  width: min(calc(100% - 40px), var(--max-width));

  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;

  padding: 14px 18px 14px 22px;

  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;

  background: rgba(255, 252, 245, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  box-shadow: 0 10px 40px rgba(35, 21, 5, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
}

.brand-symbol {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;
  flex: 0 0 38px;

  border: 1px solid var(--line);
  border-radius: 50%;

  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.62);

  font-size: 19px;
}

.iyaly-symbol-mark {
  width: 68%;
  height: 68%;

  display: block;

  background: currentColor;
  mask: url("assets/logo/iyaly-symbol.svg") center / contain no-repeat;
  -webkit-mask: url("assets/logo/iyaly-symbol.svg") center / contain no-repeat;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 4px;
}

.brand-text small {
  margin-top: 7px;

  color: var(--muted);

  font-size: 8px;
  letter-spacing: 2.4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;

  color: #51463c;

  font-size: 13px;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -8px;

  width: 0;
  height: 1px;

  transform: translateX(-50%);
  transition: width 0.25s ease;

  background: var(--gold);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-button {
  min-width: 118px;

  padding: 12px 20px;

  border: 0;
  border-radius: 14px;

  color: white;
  background:
    linear-gradient(
      135deg,
      #17110c,
      #030201
    );

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);

  font-size: 13px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.header-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.22);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--muted);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.language-selector select {
  min-width: 118px;
  padding: 11px 13px;

  border: 1px solid var(--line);
  border-radius: 14px;

  color: var(--text);
  background: rgba(255, 255, 255, 0.74);

  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  width: min(calc(100% - 40px), var(--max-width));
  min-height: 860px;

  margin: 0 auto;
  padding: 150px 70px 100px;

  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;

  max-width: 720px;
}

.eyebrow {
  margin: 0 0 20px;

  color: var(--gold-dark);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.3px;
}

.hero h1 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -3px;
}

.hero h1 span,
.section-heading h2 span,
.dna-copy h2 span,
.final-cta h2 span {
  display: block;

  color: var(--gold-dark);

  font-style: italic;
}

.hero-intro {
  max-width: 640px;

  margin: 32px 0 0;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 38px;
}

.primary-button,
.secondary-button {
  min-height: 56px;

  padding: 0 24px;

  border-radius: 16px;

  font-size: 14px;
  font-weight: 800;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;

  border: 1px solid #0d0905;

  color: white;
  background:
    linear-gradient(
      135deg,
      #211810,
      #050301
    );

  box-shadow: 0 14px 38px rgba(37, 23, 7, 0.22);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(37, 23, 7, 0.28);
}

.primary-button span:last-child {
  font-size: 20px;
}

.secondary-button {
  border: 1px solid var(--line);

  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
}

.secondary-button:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: var(--shadow-sm);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;

  margin-top: 50px;
  padding-top: 26px;

  border-top: 1px solid var(--line);
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-trust strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.hero-trust span {
  color: var(--muted);

  font-size: 11px;
  letter-spacing: 0.5px;
}

.hero-quality {
  max-width: 650px;
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-quality span {
  padding: 9px 12px;

  border: 1px solid rgba(161, 112, 38, 0.18);
  border-radius: 999px;

  color: #4e4033;
  background: rgba(255, 255, 255, 0.58);

  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.hero-catalog-note {
  margin: 22px 0 0;

  color: var(--gold-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.45;
}

/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
  position: relative;

  min-height: 650px;

  display: grid;
  place-items: center;

  overflow: visible;
}

.hero-visual::before {
  content: "";

  position: absolute;
  inset: 8% auto 5% -8%;
  z-index: 1;

  width: 34%;

  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 240, 0.82),
      rgba(255, 250, 240, 0)
    );

  pointer-events: none;
}

.hero-egnatia-picture {
  position: relative;
  z-index: 0;

  width: min(100%, 690px);
  aspect-ratio: 3 / 2;

  display: block;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;

  background: rgba(255, 250, 240, 0.68);

  box-shadow: 0 34px 90px rgba(69, 43, 13, 0.16);

  animation: heroImageReveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-egnatia-picture img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 58% center;
}

.orbit {
  position: absolute;
  contain: layout paint style;

  border: 1px solid rgba(161, 112, 38, 0.2);
  border-radius: 50%;
}

.orbit-large {
  width: 540px;
  height: 540px;

  animation: rotateOrbit 38s linear infinite;
}

.orbit-small {
  width: 390px;
  height: 390px;

  border-style: dashed;

  animation: rotateOrbitReverse 28s linear infinite;
}

.bottle-stage {
  position: relative;
  z-index: 3;

  width: 320px;
  height: 510px;

  display: grid;
  place-items: center;
}

.luxury-bottle {
  position: relative;

  width: 230px;
  height: 420px;

  animation: bottleFloat 6s ease-in-out infinite;
}

.bottle-cap {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;

  width: 75px;
  height: 92px;

  transform: translateX(-50%);

  border-radius: 10px 10px 3px 3px;

  background:
    linear-gradient(
      90deg,
      #8a5c18,
      #f4d67e,
      #a87320
    );

  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.4),
    0 8px 20px rgba(75, 43, 4, 0.2);
}

.bottle-cap::before {
  content: "";

  position: absolute;
  top: 8px;
  left: 14px;

  width: 12px;
  height: 68px;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.32);
}

.bottle-cap span {
  position: absolute;
  bottom: -9px;
  left: 50%;

  width: 50px;
  height: 12px;

  transform: translateX(-50%);

  border-radius: 4px;

  background: #9b6b21;
}

.bottle-glass {
  position: absolute;
  bottom: 0;
  left: 50%;

  width: 230px;
  height: 345px;

  transform: translateX(-50%);

  display: grid;
  place-items: center;

  overflow: hidden;

  border: 4px solid rgba(255, 223, 145, 0.9);
  border-radius: 20px 20px 34px 34px;

  background:
    linear-gradient(
      135deg,
      rgba(252, 199, 81, 0.8),
      rgba(245, 171, 45, 0.94) 42%,
      rgba(151, 87, 10, 0.88)
    );

  box-shadow:
    inset 0 0 50px rgba(255, 255, 255, 0.32),
    inset -20px 0 45px rgba(83, 41, 2, 0.22),
    0 40px 80px rgba(62, 32, 1, 0.26);
}

.glass-light {
  position: absolute;
  top: -20px;
  left: 22px;

  width: 42px;
  height: 300px;

  transform: rotate(7deg);

  border-radius: 50%;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.65),
      transparent
    );

  filter: blur(4px);
  opacity: 0.7;
}

.bottle-label {
  position: relative;
  z-index: 3;

  width: 145px;
  min-height: 190px;

  padding: 25px 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(246, 210, 123, 0.8);
  border-radius: 8px;

  color: #f4d58d;

  background:
    linear-gradient(
      145deg,
      #211b17,
      #070605
    );

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.22),
    inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.label-symbol {
  margin-bottom: 10px;

  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  color: #f4d58d;
}

.bottle-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: 4px;
}

.bottle-label small {
  margin-top: 9px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 7px;
  letter-spacing: 1.7px;
}

.bottle-label em {
  margin-top: 24px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: normal;
}

.bottle-shadow {
  position: absolute;
  left: 50%;
  bottom: 15px;

  width: 250px;
  height: 40px;

  transform: translateX(-50%);

  border-radius: 50%;

  background: rgba(70, 35, 0, 0.33);

  filter: blur(22px);

  animation: shadowPulse 6s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  z-index: 5;

  padding: 10px 14px;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;

  color: #705328;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);

  box-shadow: var(--shadow-sm);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.note-one {
  top: 90px;
  left: 20px;

  animation: noteFloat 5s ease-in-out infinite;
}

.note-two {
  right: 10px;
  bottom: 160px;

  animation: noteFloat 6s ease-in-out infinite reverse;
}

.note-three {
  top: 250px;
  right: -10px;

  animation: noteFloat 7s ease-in-out infinite;
}

.visual-caption {
  position: absolute;
  z-index: 5;
  bottom: 44px;
  left: 50%;

  transform: translateX(-50%);

  min-width: 300px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

  color: rgba(65, 50, 36, 0.72);

  font-size: 12px;
}

.visual-caption strong {
  color: var(--text);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 25px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  border: 0;

  color: var(--muted);
  background: transparent;

  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator i {
  display: block;

  width: 1px;
  height: 35px;

  background:
    linear-gradient(
      to bottom,
      var(--gold),
      transparent
    );

  animation: scrollLine 1.8s ease-in-out infinite;
}

/* =========================================================
   SECTIONS COMMUNES
   ========================================================= */

.experience-section,
.collections-section,
.difference-section,
.concentration-section,
.accessible-luxury-section {
  width: min(calc(100% - 40px), var(--max-width));

  margin: 0 auto;
  padding: 110px 50px;
}

.section-heading {
  max-width: 780px;

  margin: 0 auto 55px;

  text-align: center;
}

.section-heading.compact {
  margin-bottom: 42px;
}

.section-heading h2,
.dna-copy h2,
.final-cta h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -2px;
}

.section-heading p:last-child {
  max-width: 680px;

  margin: 24px auto 0;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================
   DIFFERENCE IYALY
   ========================================================= */

.difference-section {
  padding-top: 95px;
  padding-bottom: 125px;
}

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

.difference-card {
  position: relative;

  min-height: 320px;

  display: grid;
  grid-template-columns: 52% 48%;

  overflow: hidden;

  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: 24px;

  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(250, 241, 225, 0.9));

  box-shadow: 0 20px 58px rgba(54, 34, 11, 0.1);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease;
}

.difference-media {
  position: relative;

  min-height: 320px;

  display: block;

  overflow: hidden;
}

.difference-media::after {
  content: "";

  position: absolute;
  inset: 0 -1px 0 auto;

  width: 45%;

  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 240, 0),
      rgba(255, 253, 247, 0.9)
    );
}

.difference-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.difference-content {
  min-height: 320px;
  padding: 34px 34px 32px 26px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.difference-number {
  color: var(--gold-dark);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.difference-card h3 {
  max-width: 320px;

  margin: 20px 0 18px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.08;
}

.difference-rule {
  position: relative;

  width: 100%;
  max-width: 260px;
  height: 14px;
  margin-bottom: 18px;
}

.difference-rule::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;
  right: 0;

  height: 1px;

  background: rgba(161, 112, 38, 0.28);
}

.difference-rule i {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 8px;
  height: 8px;

  transform: translate(-50%, -50%) rotate(45deg);

  background: var(--gold);
}

.difference-card p {
  margin: 0;

  color: #5f5147;

  font-size: 14px;
  line-height: 1.75;
}

@media (hover: hover) and (pointer: fine) {
  .difference-card:hover {
    transform: translateY(-4px);

    background:
      linear-gradient(145deg, rgba(255, 255, 250, 0.98), rgba(251, 244, 232, 0.94));

    box-shadow: 0 28px 70px rgba(54, 34, 11, 0.15);
  }

  .difference-card:hover .difference-media img {
    transform: scale(1.025);
  }
}

.difference-closing {
  max-width: 760px;
  margin: 42px auto 0;

  color: var(--text);

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  text-align: center;
}

.difference-closing span {
  display: block;

  color: var(--gold-dark);
  font-style: italic;
}

/* =========================================================
   JOURNEY CARDS
   ========================================================= */

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

.journey-card {
  position: relative;

  min-height: 420px;

  padding: 28px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.journey-card > * {
  position: relative;
  z-index: 1;
}

.journey-card::before {
  content: "";

  position: absolute;
  top: -120px;
  right: -100px;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background: rgba(218, 171, 81, 0.12);

  transition: transform 0.35s ease;
}

.journey-card:hover {
  transform: translateY(-10px);

  border-color: rgba(161, 112, 38, 0.45);

  box-shadow: var(--shadow-md);
}

.journey-card:hover::before {
  transform: scale(1.2);
}

.path-badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  max-width: calc(100% - 40px);
  padding: 8px 11px;
  border: 1px solid rgba(225, 182, 93, 0.34);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(23, 16, 11, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.journey-card.featured {
  color: white;

  border-color: rgba(225, 182, 93, 0.42);

  background:
    radial-gradient(
      circle at top right,
      rgba(224, 176, 82, 0.3),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #2b2018,
      #070504
    );
}

.card-number {
  color: var(--gold);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.card-icon {
  margin-top: 55px;

  font-size: 45px;
}

.journey-card h3 {
  margin: 24px 0 14px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.journey-card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}

.journey-card.featured p {
  color: rgba(255, 255, 255, 0.68);
}

.journey-card button {
  margin-top: auto;
  min-height: 44px;
  padding: 18px 0 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 0;
  border-top: 1px solid var(--line);

  color: var(--text);
  background: transparent;

  font-size: 12px;
  font-weight: 800;
}

.journey-card.featured button {
  color: var(--gold-light);
  border-color: var(--line-light);
}

.world-advisor-card {
  color: white;

  border-color: rgba(225, 182, 93, 0.52);

  background:
    radial-gradient(circle at 18% 12%, rgba(255, 241, 199, 0.2), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(218, 171, 81, 0.24), transparent 34%),
    linear-gradient(145deg, #16100c, #3a2a1d 54%, #090604);

  box-shadow: 0 28px 80px rgba(52, 35, 16, 0.28);
}

.world-advisor-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 232, 181, 0.14);
  border-radius: calc(var(--radius-md) - 8px);
}

.world-advisor-card .card-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 182, 93, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 24px rgba(255, 236, 190, 0.12);
  font-size: 30px;
}

.world-advisor-card p {
  color: rgba(255, 255, 255, 0.7);
}

.world-advisor-card button {
  color: var(--gold-light);
  border-color: rgba(225, 182, 93, 0.22);
}

.world-advisor-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 34px 90px rgba(52, 35, 16, 0.36);
}

.passport-card {
  border-color: rgba(161, 112, 38, 0.28);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 241, 199, 0.38), transparent 34%),
    linear-gradient(150deg, rgba(255, 252, 244, 0.98), rgba(238, 224, 195, 0.64));
  box-shadow: 0 24px 58px rgba(71, 50, 27, 0.13);
}

.passport-card .card-icon {
  color: var(--gold-dark);
}

.passport-card button {
  color: var(--gold-dark);
  border-color: rgba(161, 112, 38, 0.22);
}

.advisor-stats {
  margin: 22px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.advisor-stats span {
  min-height: 58px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(225, 182, 93, 0.2);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.07);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.advisor-stats strong {
  margin-bottom: 2px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.advisor-stats.compact {
  width: 100%;
  margin: 16px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advisor-stats.compact span {
  min-height: 48px;
  color: var(--muted);
  background: rgba(255, 252, 245, 0.72);
}

.advisor-stats.compact strong {
  color: var(--gold-dark);
  font-size: 18px;
}

/* =========================================================
   WORLD ADVISOR
   ========================================================= */

.advisor-search-screen,
.world-analysis-screen,
.world-advisor-report {
  animation: worldAdvisorReveal 0.42s ease both;
}

.world-search-box {
  position: relative;
  margin: 34px 0 24px;
}

.world-search-assurance {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(161, 112, 38, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-sm);
}

.world-search-assurance .advisor-stats.compact {
  margin: 0;
}

.world-search-assurance p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.world-search-box label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.world-search-box input {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  border: 1px solid rgba(161, 112, 38, 0.22);
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), var(--shadow-sm);
  color: var(--text);
  font-size: 17px;
}

.world-search-box input:focus {
  border-color: rgba(161, 112, 38, 0.62);
  box-shadow: 0 0 0 4px rgba(218, 171, 81, 0.14), var(--shadow-sm);
}

.world-search-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.world-example-row {
  margin: -6px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.world-example-row button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(161, 112, 38, 0.2);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.world-example-row button:hover,
.world-example-row button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(161, 112, 38, 0.48);
  box-shadow: var(--shadow-sm);
}

.world-perfume-suggestions {
  position: absolute;
  z-index: 10;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  max-height: min(360px, 48vh);
  overflow: auto;
  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 245, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.world-perfume-suggestions:empty {
  display: none;
}

.world-perfume-suggestions button {
  width: 100%;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid rgba(161, 112, 38, 0.08);
  background: transparent;
  text-align: left;
}

.world-perfume-suggestions button:hover,
.world-perfume-suggestions button.selected {
  background: rgba(218, 171, 81, 0.1);
}

.suggestion-symbol.world {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #17100b;
}

.suggestion-symbol.world .iyaly-symbol-mark {
  width: 20px;
  height: 20px;
  background: var(--gold-light);
}

.suggestion-copy em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.world-advisor-empty,
.world-selected-card,
.world-analysis-card,
.world-report-hero,
.world-notes-panel,
.world-why-section,
.world-similar-section,
.world-iyaly-recommendations,
.world-chip-section article,
.world-meter-card {
  border: 1px solid rgba(161, 112, 38, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.world-advisor-empty {
  padding: 28px;
  color: var(--muted);
}

.world-selected-card {
  margin-top: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.world-selected-mark,
.world-report-orb {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 236, 190, 0.2), transparent 36%),
    #1d140e;
}

.world-selected-mark {
  width: 78px;
  height: 78px;
}

.world-selected-mark .iyaly-symbol-mark,
.world-report-orb .iyaly-symbol-mark {
  background: var(--gold-light);
}

.world-selected-card small,
.world-report-family span,
.world-price-card span,
.world-meter-card span,
.world-note-level span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.world-selected-card h3 {
  margin: 6px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.world-selected-card p,
.world-report-copy p,
.world-why-section p,
.world-similar-card p,
.world-iyaly-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.world-selected-tags,
.world-chip-section article div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.world-selected-tags span,
.world-chip-section span {
  padding: 8px 11px;
  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.72);
  color: var(--text);
  font-size: 12px;
}

.world-advisor-navigation .modal-continue-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.world-analysis-screen {
  min-height: 560px;
  display: grid;
  align-content: center;
  text-align: center;
}

.world-analysis-aura {
  width: 132px;
  height: 132px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(225, 182, 93, 0.24), transparent 62%),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 80px rgba(218, 171, 81, 0.28);
}

.world-analysis-aura .iyaly-symbol-mark {
  width: 68px;
  height: 68px;
}

.world-analysis-card {
  margin: 30px auto;
  width: min(100%, 760px);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}

.world-analysis-card div {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 248, 235, 0.68);
}

.world-analysis-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
}

.world-advisor-report {
  display: grid;
  gap: 22px;
}

.world-report-hero {
  position: relative;
  padding: 34px;
  display: grid;
  grid-template-columns: 112px 1fr minmax(180px, 0.35fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.world-report-hero::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(218, 171, 81, 0.14);
}

.world-report-orb {
  width: 112px;
  height: 112px;
}

.world-report-orb .iyaly-symbol-mark {
  width: 58px;
  height: 58px;
}

.world-report-copy,
.world-report-family {
  position: relative;
}

.world-report-copy h2 {
  margin: 6px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400;
  line-height: 0.95;
}

.world-report-brand {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.world-report-family {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 248, 235, 0.72);
}

.world-report-family strong {
  display: block;
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.world-report-family small {
  color: var(--muted);
  line-height: 1.5;
}

.world-price-card {
  width: fit-content;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 248, 235, 0.78);
}

.world-price-card strong,
.world-price-card small {
  display: block;
}

.world-price-card strong {
  margin: 4px 0;
  font-size: 22px;
}

.world-price-card small {
  color: var(--muted);
}

.world-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.world-meter-card {
  padding: 20px;
}

.world-meter-card strong {
  display: block;
  margin: 8px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.world-meter {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(161, 112, 38, 0.12);
}

.world-meter i,
.world-match-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.world-notes-panel,
.world-why-section,
.world-similar-section,
.world-iyaly-recommendations {
  padding: 28px;
}

.world-pyramid-grid {
  display: grid;
  gap: 12px;
}

.world-note-level {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 248, 235, 0.58);
}

.world-note-level p {
  margin: 7px 0 0;
  color: var(--text);
}

.world-chip-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.world-chip-section article {
  padding: 22px;
}

.world-chip-section h4 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.world-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.world-similar-card {
  position: relative;
  min-width: 0;
  padding: 18px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  overflow: hidden;

  border: 1px solid rgba(44, 33, 23, 0.08);
  border-radius: var(--radius-sm);

  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.88), rgba(246, 236, 216, 0.54));

  animation: worldAdvisorReveal 420ms ease both;
  animation-delay: var(--similar-delay, 0ms);
}

.world-similar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(161, 112, 38, 0.08), rgba(218, 171, 81, 0.62), rgba(161, 112, 38, 0.08));
}

.world-similar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(44, 33, 23, 0.1);
}

.world-similar-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(161, 112, 38, 0.1);
  font-family: Georgia, "Times New Roman", serif;
}

.world-similar-head small,
.world-similar-reason-label,
.world-similar-columns span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.world-similar-head h4 {
  margin: 6px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.08;
}

.world-similar-head strong {
  color: var(--text);
  font-size: 12px;
}

.world-similar-card p {
  margin: 0;
  font-size: 13px;
}

.world-similar-columns {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.world-similar-columns p {
  margin-top: 4px;
  color: var(--text);
  line-height: 1.45;
}

.world-similar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.world-similar-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(161, 112, 38, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 248, 235, 0.68);
  font-size: 11px;
}

.world-similar-price {
  padding: 10px 12px;
  border: 1px solid rgba(161, 112, 38, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 244, 0.74);
}

.world-similar-price span {
  display: block;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.world-similar-price strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.world-similar-action {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(44, 33, 23, 0.14);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.world-similar-action:hover,
.world-similar-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(161, 112, 38, 0.42);
  background: rgba(255, 248, 235, 0.95);
  outline: none;
}

/* =========================================================
   PASSEPORT ADN OLFACTIF
   ========================================================= */

.passport-experience {
  position: relative;
  display: grid;
  gap: 24px;
}

.passport-progress {
  padding: 18px;
  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 244, 0.78);
}

.passport-progress div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.passport-progress span {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.passport-progress strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.passport-progress i,
.passport-axis i {
  height: 6px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(161, 112, 38, 0.12);
}

.passport-progress i span,
.passport-axis i span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.passport-question-shell {
  min-height: 430px;
  padding: 36px;
  display: grid;
  align-content: center;
  gap: 18px;
  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 88% 0%, rgba(218, 171, 81, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
  animation: passportReveal 460ms ease both;
}

.passport-chapter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.passport-chapter span,
.passport-limit,
.passport-answer small,
.passport-result-grid span,
.passport-iyaly-card small {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.passport-chapter i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(161, 112, 38, 0.34), transparent);
}

.passport-question-shell h2,
.passport-result-hero h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.08;
}

.passport-hint {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.passport-salon-card {
  width: min(100%, 360px);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(161, 112, 38, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 248, 235, 0.72);
}

.passport-salon-card .iyaly-symbol-mark {
  width: 42px;
  height: 42px;
}

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

.passport-answer-grid.notes,
.passport-answer-grid.avoid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.passport-answer {
  min-height: 104px;
  padding: 18px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 14px;
  text-align: left;
  border: 1px solid rgba(44, 33, 23, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(255, 252, 244, 0.76);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.passport-answer:hover,
.passport-answer:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(161, 112, 38, 0.34);
  box-shadow: 0 16px 34px rgba(44, 33, 23, 0.08);
  outline: none;
}

.passport-answer.selected {
  border-color: rgba(161, 112, 38, 0.52);
  background: rgba(255, 248, 235, 0.96);
  box-shadow: inset 0 0 0 1px rgba(161, 112, 38, 0.3), 0 18px 34px rgba(44, 33, 23, 0.08);
}

.passport-answer.selected::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(218, 171, 81, 0.16);
}

.passport-answer-icon {
  color: var(--gold-dark);
  font-size: 24px;
  grid-row: span 2;
}

.passport-answer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}

.passport-answer small {
  align-self: start;
}

.passport-auto-next-hint {
  align-self: center;
  justify-self: end;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-align: right;
  text-transform: uppercase;
}

.passport-slider-card {
  padding: 26px;
  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 248, 235, 0.72);
}

.passport-slider-card input {
  width: 100%;
  accent-color: var(--gold-dark);
}

.passport-slider-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
}

.passport-slider-card strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.passport-navigation {
  margin-top: 0;
}

.passport-navigation button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.passport-result-hero,
.passport-portrait,
.passport-axis-panel,
.passport-recommendations,
.passport-world {
  padding: 30px;
  border: 1px solid rgba(161, 112, 38, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
}

.passport-result-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(218, 171, 81, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 252, 244, 0.96), rgba(239, 228, 205, 0.7));
}

.passport-result-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(161, 112, 38, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
}

.passport-result-mark .iyaly-symbol-mark {
  width: 42px;
  height: 42px;
}

.passport-result-hero p,
.passport-portrait p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

.passport-result-hero > strong {
  display: inline-flex;
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(161, 112, 38, 0.1);
}

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

.passport-result-grid article,
.passport-iyaly-card {
  padding: 18px;
  border: 1px solid rgba(161, 112, 38, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 244, 0.72);
}

.passport-result-grid strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.passport-axis-row {
  display: grid;
  gap: 12px;
}

.passport-axis div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.passport-axis span {
  color: var(--muted);
}

.passport-iyaly-card.featured {
  border-color: rgba(161, 112, 38, 0.34);
  background: rgba(255, 248, 235, 0.94);
}

.passport-iyaly-card h4 {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.passport-compatibility {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(161, 112, 38, 0.1);
  font-size: 12px;
  letter-spacing: 0;
}

.passport-iyaly-card p {
  color: var(--muted);
  line-height: 1.6;
}

.passport-reason-line {
  margin: 12px 0;
  padding: 10px 12px;
  border-left: 2px solid rgba(161, 112, 38, 0.34);
  color: var(--text);
  background: rgba(255, 248, 235, 0.52);
  font-size: 13px;
  line-height: 1.55;
}

.passport-iyaly-card .world-iyaly-price {
  margin: 14px 0;
  padding: 12px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.62);
}

.passport-iyaly-card a {
  color: var(--gold-dark);
  font-weight: 800;
}

.passport-world div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.passport-world span {
  padding: 8px 10px;
  border: 1px solid rgba(161, 112, 38, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.76);
}

@keyframes passportReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.world-iyaly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.world-value-bridge {
  margin: 22px 0 24px;
  padding: 18px;

  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 16px;
  align-items: center;

  border: 1px solid rgba(161, 112, 38, 0.15);
  border-radius: var(--radius-md);

  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(246, 232, 207, 0.72)),
    rgba(255, 255, 255, 0.78);

  box-shadow: 0 18px 52px rgba(54, 34, 11, 0.08);
}

.world-value-copy span,
.world-value-price span {
  color: var(--gold-dark);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.world-value-copy p {
  max-width: 560px;
  margin: 8px 0 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.65;
}

.world-value-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.world-value-price {
  min-height: 92px;
  padding: 14px;

  display: grid;
  align-content: center;
  gap: 5px;

  border: 1px solid rgba(161, 112, 38, 0.14);
  border-radius: var(--radius-sm);

  background: rgba(255, 255, 255, 0.62);
}

.world-value-price.highlight {
  background: rgba(255, 248, 235, 0.84);
}

.world-value-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.world-value-proofs,
.world-iyaly-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.world-value-proofs {
  grid-column: 1 / -1;
}

.world-value-proofs span,
.world-iyaly-proof-list span {
  padding: 7px 10px;

  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: 999px;

  color: rgba(44, 33, 23, 0.72);
  background: rgba(255, 255, 255, 0.58);

  font-size: 11px;
  font-weight: 700;
}

.world-iyaly-card {
  position: relative;

  display: flex;
  flex-direction: column;

  overflow: hidden;
  border: 1px solid rgba(161, 112, 38, 0.14);
  border-radius: var(--radius-md);

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 249, 238, 0.68)),
    rgba(255, 255, 255, 0.7);

  box-shadow: 0 18px 48px rgba(54, 34, 11, 0.09);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.world-iyaly-card:hover {
  border-color: rgba(161, 112, 38, 0.24);
  transform: translateY(-5px) scale(1.006);
  box-shadow: 0 26px 68px rgba(54, 34, 11, 0.14);
}

.world-iyaly-card.featured {
  background:
    radial-gradient(circle at top right, rgba(218, 171, 81, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 232, 0.76));
}

.world-iyaly-card.top-correspondence {
  border-color: rgba(161, 112, 38, 0.28);
}

.world-iyaly-card-head {
  min-height: 58px;
  padding: 14px 16px 0;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.world-iyaly-card-labels {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.world-iyaly-card-head small {
  color: var(--gold-dark);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.world-top-correspondence {
  width: fit-content;
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(161, 112, 38, 0.2);
  border-radius: 999px;
  color: #6f4312;
  background: rgba(255, 244, 226, 0.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.1;
  text-transform: uppercase;
}

.world-affinity-pill {
  flex: 0 0 auto;
  padding: 7px 10px;

  border: 1px solid rgba(161, 112, 38, 0.18);
  border-radius: 999px;

  color: var(--text);
  background: rgba(255, 248, 235, 0.86);

  font-size: 12px;
  line-height: 1;
}

.world-iyaly-image {
  height: 214px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 248, 235, 0.92), rgba(255, 255, 255, 0.64));
}

.world-iyaly-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.world-iyaly-image span {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.world-iyaly-copy {
  flex: 1;
  padding: 20px 20px 22px;

  display: flex;
  flex-direction: column;
}

.world-product-ref {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.world-convergence-pill {
  width: fit-content;
  margin: 0 0 10px;
  padding: 7px 10px;
  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(255, 248, 235, 0.76);
  font-size: 11px;
  font-weight: 800;
}

.world-iyaly-copy h4 {
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.world-iyaly-copy p {
  min-height: 72px;
  margin-bottom: 0;
}

.world-iyaly-meta,
.iyaly-recommendation-meta,
.compact-iyaly-meta {
  display: grid;
  gap: 8px;
}

.world-iyaly-meta,
.iyaly-recommendation-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 14px 0 2px;
}

.world-iyaly-meta span,
.iyaly-recommendation-meta span,
.compact-iyaly-meta span {
  padding: 9px 10px;
  border: 1px solid rgba(161, 112, 38, 0.12);
  border-radius: 10px;
  background: rgba(255, 248, 235, 0.58);
}

.world-iyaly-meta small,
.iyaly-recommendation-meta small {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.world-iyaly-meta strong,
.iyaly-recommendation-meta strong {
  display: block;
  color: rgba(40, 30, 24, 0.86);
  font-size: 12px;
  line-height: 1.35;
}

.iyaly-official-match-badge {
  width: fit-content;
  margin: 8px 0 4px;
  padding: 7px 10px;
  display: inline-flex;
  border: 1px solid rgba(161, 112, 38, 0.2);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(255, 248, 235, 0.8);
  font-size: 11px;
  font-weight: 800;
}

.world-match-bar {
  height: 6px;
  margin: 18px 0 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(161, 112, 38, 0.12);
}

.world-iyaly-price {
  margin: 15px 0 14px;
  padding: 13px 14px;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: end;

  border: 1px solid rgba(161, 112, 38, 0.13);
  border-radius: var(--radius-sm);

  background: rgba(255, 248, 235, 0.66);
}

.world-iyaly-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.world-iyaly-price span,
.world-iyaly-price small {
  color: var(--muted);

  font-size: 12px;
  text-align: right;
}

.world-iyaly-price small:first-of-type {
  grid-column: 1 / -1;

  color: rgba(113, 82, 38, 0.78);

  text-align: left;
}

.world-iyaly-price.unavailable {
  grid-template-columns: 1fr;
  align-items: center;
}

.world-iyaly-price.unavailable span {
  color: rgba(44, 33, 23, 0.72);

  font-weight: 700;
  text-align: left;
}

.world-iyaly-proof-list {
  margin-top: auto;
}

.world-iyaly-copy a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

@keyframes worldAdvisorReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   DNA SECTION
   ========================================================= */

.dna-section {
  position: relative;

  width: min(calc(100% - 40px), var(--max-width));
  min-height: 720px;

  margin: 40px auto;
  padding: 80px;

  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 70px;

  overflow: hidden;

  border: 1px solid rgba(227, 190, 105, 0.25);
  border-radius: var(--radius-lg);

  color: white;

  background:
    radial-gradient(
      circle at 20% 40%,
      rgba(203, 152, 60, 0.22),
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(203, 152, 60, 0.14),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      #211811,
      #050403 58%,
      #120d09
    );

  box-shadow: var(--shadow-lg);
}

.dna-section::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.35;

  background-image:
    radial-gradient(
      rgba(255, 255, 255, 0.6) 0.8px,
      transparent 0.8px
    );

  background-size: 40px 40px;
}

.dna-orbit {
  position: relative;
  z-index: 2;

  width: 470px;
  height: 470px;

  margin: auto;

  display: grid;
  place-items: center;

  border: 1px solid rgba(241, 213, 145, 0.25);
  border-radius: 50%;

  animation: slowPulse 5s ease-in-out infinite;
}

.dna-orbit::before,
.dna-orbit::after {
  content: "";

  position: absolute;

  border: 1px solid rgba(241, 213, 145, 0.16);
  border-radius: 50%;
}

.dna-orbit::before {
  width: 330px;
  height: 330px;
}

.dna-orbit::after {
  width: 210px;
  height: 210px;
}

.dna-core {
  position: relative;
  z-index: 3;

  width: 165px;
  height: 165px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(247, 216, 140, 0.68);
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(204, 151, 49, 0.28),
      rgba(15, 10, 7, 0.94) 68%
    );

  box-shadow:
    0 0 55px rgba(212, 160, 59, 0.28),
    inset 0 0 35px rgba(212, 160, 59, 0.12);
}

.dna-core span {
  color: var(--gold-light);

  font-size: 33px;
  font-family: Georgia, "Times New Roman", serif;
}

.dna-core strong {
  margin-top: 5px;

  font-size: 9px;
  letter-spacing: 3px;
}

.dna-star {
  position: absolute;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--gold-light);

  box-shadow: 0 0 18px var(--gold-light);
}

.star-one {
  top: 58px;
  left: 103px;
}

.star-two {
  top: 160px;
  right: 38px;
}

.star-three {
  right: 130px;
  bottom: 42px;
}

.star-four {
  left: 28px;
  bottom: 175px;
}

.dna-copy {
  position: relative;
  z-index: 2;
}

.dna-copy .eyebrow {
  color: var(--gold-light);
}

.dna-copy h2 span {
  color: var(--gold-light);
}

.dna-copy > p:not(.eyebrow) {
  max-width: 650px;

  margin-top: 28px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 17px;
  line-height: 1.8;
}

.dna-example {
  margin: 36px 0;
  padding: 22px 25px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  border: 1px solid var(--line-light);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.055);
}

.dna-example small {
  color: var(--gold-light);

  font-size: 8px;
  letter-spacing: 2.3px;
}

.dna-example strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.dna-example span {
  color: rgba(255, 255, 255, 0.56);

  font-size: 12px;
}

/* =========================================================
   COLLECTIONS
   ========================================================= */

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

.collection-card {
  position: relative;

  min-height: 430px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);

  color: white;

  box-shadow: var(--shadow-md);

  background-size: cover;
  background-position: center;

  isolation: isolate;
}

.collection-card img {
  position: absolute;
  inset: 0;
  z-index: -2;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.01);

  transition: transform 0.6s ease;
}

.collection-card::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -3;

  background:
    radial-gradient(
      circle at 74% 38%,
      rgba(255, 214, 135, 0.22),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #251c15,
      #080604
    );
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(255, 214, 135, 0.2),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.22) 54%,
      rgba(0, 0, 0, 0.36)
    );
}

.collection-content {
  position: absolute;
  z-index: 3;
  left: 40px;
  right: 40px;
  bottom: 40px;

  max-width: 340px;
}

.collection-content small {
  color: var(--gold-light);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.collection-content h3 {
  margin: 10px 0 8px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
}

.collection-content p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
}

.collection-content button {
  margin-top: 22px;
  padding: 12px 18px;

  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 12px;

  color: white;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);

  font-size: 11px;
  font-weight: 800;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.collection-content button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.collection-content .collection-locked-button {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.collection-content .collection-locked-button:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.08);
}

.collection-view[hidden] {
  display: none;
}

.collection-view {
  margin-top: 28px;
}

.collection-view-shell {
  padding: clamp(26px, 4vw, 48px);

  border: 1px solid rgba(161, 112, 38, 0.18);
  border-radius: 30px;

  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.88), rgba(247, 236, 218, 0.68));

  box-shadow: 0 28px 74px rgba(54, 34, 11, 0.11);
}

.collection-view-header {
  max-width: 860px;
}

.collection-view-header h2 {
  margin: 8px 0 12px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.02;
}

.collection-view-header p {
  color: var(--muted);

  font-size: 16px;
  line-height: 1.75;
}

.collection-back-button {
  margin-bottom: 22px;
  padding: 10px 14px;

  border: 1px solid rgba(161, 112, 38, 0.22);
  border-radius: 999px;

  color: var(--brown);
  background: rgba(255, 255, 255, 0.54);

  font-size: 12px;
  font-weight: 800;
}

.collection-view-actions {
  margin-top: 24px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.collection-view-actions > span {
  color: var(--gold-dark);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.collection-perfume-grid {
  margin-top: 28px;

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

.collection-perfume-card,
.collection-empty-card {
  overflow: hidden;

  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.58);

  box-shadow: 0 16px 42px rgba(54, 34, 11, 0.08);
}

.collection-perfume-media {
  position: relative;

  min-height: 210px;
  height: 220px;
  padding: 12px;

  display: grid;
  place-items: center;

  overflow: hidden;

  color: rgba(44, 33, 23, 0.72);
  background:
    radial-gradient(circle at 50% 30%, rgba(240, 213, 143, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.9), rgba(232, 211, 178, 0.55));

  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.collection-perfume-media img {
  width: min(100%, 170px);
  height: min(100%, 180px);

  object-fit: contain;
  object-position: center;
}

.collection-perfume-copy {
  padding: 16px 17px 18px;
}

.collection-perfume-copy small {
  color: var(--gold-dark);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.collection-perfume-copy h3 {
  margin: 7px 0 12px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.15;
}

.collection-meta-line {
  margin: 0 0 9px;

  display: grid;
  gap: 4px;
}

.collection-meta-line span {
  color: var(--muted);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.collection-meta-line strong {
  color: var(--text);

  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.collection-perfume-copy button,
.collection-detail-copy a {
  margin-top: 7px;
  padding: 9px 12px;

  display: inline-flex;

  border: 1px solid rgba(161, 112, 38, 0.24);
  border-radius: 999px;

  color: var(--brown);
  background: rgba(255, 255, 255, 0.56);

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.collection-perfume-copy button:hover,
.collection-detail-copy a:hover {
  border-color: rgba(161, 112, 38, 0.42);
  background: rgba(255, 255, 255, 0.82);
}

.collection-empty-card {
  padding: 28px;

  color: var(--muted);

  font-size: 15px;
}

.collection-loading-state {
  color: var(--muted);

  font-size: 15px;
  text-align: center;
}

.collection-detail-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.collection-detail-media {
  min-height: 420px;
  padding: 28px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(161, 112, 38, 0.14);
  border-radius: 24px;

  background:
    radial-gradient(circle at 50% 30%, rgba(240, 213, 143, 0.25), transparent 44%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.92), rgba(232, 211, 178, 0.5));
}

.collection-detail-media img {
  width: min(100%, 200px);
  max-height: 220px;

  object-fit: contain;
}

.collection-detail-media span {
  color: rgba(44, 33, 23, 0.72);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.collection-detail-copy small {
  color: var(--gold-dark);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.collection-detail-copy h2 {
  margin: 10px 0 20px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.collection-detail-description {
  max-width: 680px;
  margin: 18px 0 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================
   CONCENTRATION
   ========================================================= */

.concentration-section {
  padding-top: 105px;
  padding-bottom: 120px;
}

.concentration-pyramid {
  position: relative;

  min-height: 680px;
  margin: 12px auto 48px;
  padding: 30px;

  overflow: hidden;

  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: 32px;

  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.84), rgba(247, 236, 218, 0.66));

  box-shadow: 0 28px 78px rgba(54, 34, 11, 0.12);
}

.concentration-pyramid-picture {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: block;
}

.concentration-pyramid-picture::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 240, 0.2),
      rgba(255, 250, 240, 0.18) 48%,
      rgba(255, 250, 240, 0.82)
    );
}

.concentration-pyramid-picture img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: left center;
}

.pyramid-labels {
  position: absolute;
  top: 0;
  right: 32px;
  bottom: 0;
  z-index: 2;

  width: min(400px, 39%);

  display: block;
}

.pyramid-label {
  position: relative;

  min-height: 66px;
  padding: 12px 16px;

  display: grid;
  align-content: center;
  gap: 5px;

  border: 1px solid rgba(161, 112, 38, 0.16);
  border-radius: 17px;

  background: rgba(255, 253, 247, 0.82);
  backdrop-filter: blur(10px);

  box-shadow: 0 12px 32px rgba(54, 34, 11, 0.08);
}

.pyramid-label {
  position: absolute;
  right: 0;
  width: 100%;
}

.pyramid-label:nth-child(1) {
  top: 25.5%;
  transform: translateY(-50%);
}

.pyramid-label:nth-child(2) {
  top: 43.5%;
  transform: translateY(-50%);
}

.pyramid-label:nth-child(3) {
  top: 59.5%;
  transform: translateY(-50%);
}

.pyramid-label:nth-child(4) {
  top: 74.5%;
  transform: translateY(-50%);
}

.pyramid-label:nth-child(5) {
  top: 88.5%;
  transform: translateY(-50%);
}

.pyramid-label span {
  color: var(--text);

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.15;
}

.pyramid-label strong {
  color: var(--gold-dark);

  font-size: 11px;
  letter-spacing: 0.3px;
}

.pyramid-label em {
  color: rgba(79, 66, 53, 0.72);

  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
}

.iyaly-pyramid-label {
  border-color: rgba(201, 149, 54, 0.42);

  background:
    radial-gradient(circle at top right, rgba(240, 213, 143, 0.28), transparent 38%),
    rgba(255, 252, 243, 0.94);

  box-shadow:
    0 18px 42px rgba(117, 78, 23, 0.16),
    0 0 0 1px rgba(240, 213, 143, 0.18);
}

.iyaly-pyramid-label span {
  color: #17100a;
}

.iyaly-pyramid-label strong {
  color: #8a5c18;
  font-size: 12px;
}

.iyaly-pyramid-label em {
  color: rgba(85, 58, 22, 0.76);
}

.iyaly-concentration-note h3,
.accessible-luxury-panel h3,
.accessible-luxury-closing h3 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.iyaly-concentration-note {
  margin-top: 44px;
  padding: 32px;

  border: 1px solid rgba(161, 112, 38, 0.24);
  border-radius: 22px;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(247, 236, 218, 0.6));
}

.iyaly-concentration-note p,
.accessible-luxury-copy p,
.accessible-luxury-panel p,
.accessible-luxury-closing p {
  color: var(--muted);

  font-size: 15px;
  line-height: 1.75;
}

.iyaly-concentration-note small {
  display: block;

  margin-top: 16px;

  color: #6e6258;

  font-size: 11px;
  line-height: 1.6;
}

/* =========================================================
   LUXE ACCESSIBLE
   ========================================================= */

.accessible-luxury-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  gap: 28px;

  padding-top: 120px;
  padding-bottom: 120px;
}

.accessible-luxury-copy h2 {
  margin: 0 0 26px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -2px;
}

.accessible-luxury-copy h2 span {
  display: block;

  color: var(--gold-dark);
  font-style: italic;
}

.accessible-luxury-panel,
.accessible-luxury-closing {
  padding: 28px;

  border: 1px solid var(--line);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.66);

  box-shadow: var(--shadow-sm);
}

.accessible-luxury-panel {
  align-self: start;
}

.accessible-luxury-panel strong {
  display: block;

  margin-top: 20px;

  color: var(--text);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
}

.accessible-luxury-closing {
  grid-column: 1 / -1;

  color: white;

  background:
    radial-gradient(circle at 78% 20%, rgba(240, 213, 143, 0.24), transparent 35%),
    linear-gradient(135deg, #211811, #070504);
}

.accessible-luxury-closing h3 {
  color: var(--gold-light);
}

.accessible-luxury-closing p {
  max-width: 900px;

  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  position: relative;

  width: min(calc(100% - 40px), var(--max-width));

  margin: 70px auto 95px;
  padding: 130px 40px;

  overflow: hidden;

  border-radius: var(--radius-lg);

  color: white;
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(240, 213, 143, 0.18),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #2d1e10,
      #080604
    );

  box-shadow: var(--shadow-lg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);

  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.difference-card:nth-child(2) {
  transition-delay: 70ms;
}

.difference-card:nth-child(3) {
  transition-delay: 120ms;
}

.difference-card:nth-child(4) {
  transition-delay: 170ms;
}

.difference-card:nth-child(5) {
  transition-delay: 220ms;
}

.difference-card:nth-child(6) {
  transition-delay: 270ms;
}

.final-glow {
  position: absolute;
  contain: layout paint style;
  top: -220px;
  left: 50%;

  width: 600px;
  height: 500px;

  transform: translateX(-50%);

  border-radius: 50%;

  background: rgba(210, 158, 54, 0.3);

  filter: blur(80px);
}

.final-cta > *:not(.final-glow) {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  color: var(--gold-light);
}

.final-cta h2 span {
  color: var(--gold-light);
}

.final-cta > p:not(.eyebrow) {
  max-width: 650px;

  margin: 25px auto 0;

  color: rgba(255, 255, 255, 0.67);

  font-size: 16px;
  line-height: 1.75;
}

.primary-button.light {
  margin-top: 35px;

  border-color: var(--gold-light);

  color: #15100a;

  background:
    linear-gradient(
      90deg,
      #b87d1e,
      #f0cf72
    );
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  width: min(calc(100% - 40px), var(--max-width));

  margin: 0 auto;
  padding: 35px 10px 50px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;

  color: var(--muted);

  font-size: 11px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--text);

  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 3px;
}

.footer-brand small {
  margin-top: 5px;

  font-size: 7px;
  letter-spacing: 1.5px;
}

.site-footer p {
  margin: 0;

  text-align: center;
}

/* =========================================================
   MODAL
   ========================================================= */

.journey-modal {
  position: fixed;
  z-index: 999;
  inset: 0;

  display: none;
  place-items: center;

  padding: 20px;
}

.journey-modal.open {
  display: grid;
}

.journey-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(5, 4, 3, 0.76);
  backdrop-filter: blur(18px);
}

.journey-modal-content {
  position: relative;
  z-index: 2;

  width: min(960px, 100%);
  max-height: calc(100vh - 40px);

  overflow-y: auto;

  padding: 55px;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;

  background:
    radial-gradient(
      circle at top right,
      rgba(230, 190, 107, 0.28),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #fffdf8,
      #f4e5cd
    );

  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);

  animation: modalEntry 0.35s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 22px;

  width: 42px;
  height: 42px;

  border: 1px solid var(--line);
  border-radius: 50%;

  color: var(--text);
  background: rgba(255, 255, 255, 0.65);

  font-size: 25px;
  line-height: 1;
}

.modal-step-indicator {
  position: absolute;
  top: 22px;
  left: 25px;

  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--gold-dark);

  font-size: 9px;
  letter-spacing: 2px;
}

.modal-step-indicator strong {
  font-size: 13px;
}

.journey-modal-content > .eyebrow {
  margin-top: 20px;
  text-align: center;
}

.journey-modal-content h2 {
  max-width: 690px;

  margin: 0 auto;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 65px);
  font-weight: 400;
  line-height: 1.04;
  text-align: center;
}

.journey-modal-content h2 span {
  display: block;

  color: var(--gold-dark);

  font-style: italic;
}

.modal-intro {
  max-width: 560px;

  margin: 22px auto 35px;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

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

.audience-grid button {
  min-height: 205px;

  padding: 24px 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);
  border-radius: 20px;

  color: var(--text);
  background: rgba(255, 255, 255, 0.72);

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.audience-grid button:hover,
.audience-grid button.selected {
  transform: translateY(-6px);

  border-color: var(--gold);

  background: white;

  box-shadow: var(--shadow-md);
}

.audience-icon {
  display: grid;
  place-items: center;

  width: 68px;
  height: 68px;

  margin-bottom: 20px;

  border: 1px solid var(--line);
  border-radius: 50%;

  color: var(--gold-dark);
  background: var(--cream);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.audience-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.audience-grid small {
  margin-top: 7px;

  color: var(--muted);

  font-size: 10px;
}

.modal-message {
  margin-top: 22px;
  padding: 14px;

  border: 1px solid var(--line);
  border-radius: 14px;

  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);

  font-size: 12px;
  text-align: center;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

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

  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes shadowPulse {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.36;
  }

  50% {
    transform: translateX(-50%) scaleX(0.82);
    opacity: 0.22;
  }
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateOrbitReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.25;
    transform: scaleY(0.65);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes slowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(210, 160, 59, 0);
  }

  50% {
    box-shadow: 0 0 70px rgba(210, 160, 59, 0.12);
  }
}

@keyframes modalEntry {
  from {
    transform: translateY(25px) scale(0.97);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes heroImageReveal {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 850px;
    text-align: center;
    margin: auto;
  }

  .hero-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-trust,
  .hero-quality {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-egnatia-picture {
    width: min(100%, 760px);
  }

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

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

  .world-report-hero {
    grid-template-columns: 92px 1fr;
  }

  .world-report-family {
    grid-column: 1 / -1;
  }

  .world-iyaly-grid {
    grid-template-columns: 1fr;
  }

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

  .passport-answer-grid.notes,
  .passport-answer-grid.avoid,
  .passport-result-grid,
  .passport-recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-iyaly-card {
    display: flex;
    flex-direction: column;
  }

  .world-iyaly-image {
    height: 220px;
    min-height: 220px;
  }

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

  .collection-perfume-media {
    height: 210px;
  }

  .collection-perfume-media img {
    height: min(100%, 170px);
  }

  .collection-detail-card {
    grid-template-columns: 1fr;
  }

  .collection-detail-media {
    min-height: 340px;
  }

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

  .concentration-pyramid {
    min-height: auto;
    margin-bottom: 38px;
    padding: 22px;
  }

  .concentration-pyramid-picture {
    position: relative;

    aspect-ratio: 3 / 2;

    overflow: hidden;

    border-radius: 24px;
  }

  .concentration-pyramid-picture::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 240, 0.04),
        rgba(255, 250, 240, 0.34)
      );
  }

  .pyramid-labels {
    position: relative;
    inset: auto;

    width: 100%;
    margin: 18px 0 0;

    display: grid;
    gap: 9px;
  }

  .pyramid-label {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 58px;
    padding: 11px 14px;
    transform: none;
  }

  .pyramid-label:nth-child(1),
  .pyramid-label:nth-child(2),
  .pyramid-label:nth-child(3),
  .pyramid-label:nth-child(4),
  .pyramid-label:nth-child(5) {
    top: auto;
  }

  .pyramid-label span {
    font-size: 18px;
  }

  .pyramid-label strong {
    font-size: 11px;
  }

  .pyramid-label em {
    font-size: 10px;
  }

  .iyaly-concentration-note {
    margin-top: 36px;
  }

  .accessible-luxury-section {
    grid-template-columns: 1fr;
  }

  .scent-chip-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  .dna-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dna-copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .dna-example {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .dna-copy .primary-button {
    margin: auto;
  }

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

@media (min-width: 981px) and (max-width: 1100px) {
  .concentration-pyramid {
    min-height: 640px;
    margin-bottom: 46px;
    padding: 28px;
  }

  .concentration-pyramid-picture {
    position: absolute;
    inset: 0;

    aspect-ratio: auto;
    border-radius: 0;
  }

  .concentration-pyramid-picture::after {
    background:
      linear-gradient(
        90deg,
        rgba(255, 250, 240, 0.2),
        rgba(255, 250, 240, 0.18) 48%,
        rgba(255, 250, 240, 0.82)
      );
  }

  .pyramid-labels {
    position: absolute;
    inset: 0 28px 0 auto;

    width: min(370px, 38%);

    display: block;
  }

  .pyramid-label {
    position: absolute;
    right: 0;

    width: 100%;
    min-height: 62px;
    padding: 11px 14px;

    transform: translateY(-50%);
  }

  .pyramid-label:nth-child(1) {
    top: 25.5%;
  }

  .pyramid-label:nth-child(2) {
    top: 43.5%;
  }

  .pyramid-label:nth-child(3) {
    top: 59.5%;
  }

  .pyramid-label:nth-child(4) {
    top: 74.5%;
  }

  .pyramid-label:nth-child(5) {
    top: 88.5%;
  }
}

@media (min-width: 1024px) {
  .world-iyaly-image {
    height: 176px;
    min-height: 176px;
  }

  .world-iyaly-image img {
    padding: 28px 34px;
  }
}

@media (min-width: 1200px) {
  .world-iyaly-image {
    height: 154px;
    min-height: 154px;
  }

  .world-iyaly-image img {
    padding: 34px 42px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
  .ambient-one {
    width: 180px;
    height: 180px;
    left: 0;
  }

  .ambient-two {
    width: 240px;
    height: 240px;
    right: 0;
  }

  .site-header {
    top: 10px;

    width: calc(100% - 20px);

    grid-template-columns: 1fr auto auto;
    column-gap: 8px;

    padding: 11px 10px 11px 13px;
  }

  .desktop-nav {
    display: none;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    font-size: 6px;
  }

  .header-button {
    min-width: auto;
    padding: 11px 14px;
  }

  .language-selector span {
    display: none;
  }

  .language-selector select {
    min-width: 72px;
    max-width: 80px;
    padding: 10px 7px;
  }

  .hero {
    width: 100%;
    min-height: auto;

    padding: 135px 20px 75px;

    gap: 35px;
  }

  .hero h1 {
    font-size: 50px;
    letter-spacing: -2px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-trust {
    gap: 20px;
  }

  .hero-trust div {
    width: calc(50% - 10px);
  }

  .hero-visual {
    min-height: auto;
    transform: none;
    margin: 0;
  }

  .hero-visual::before {
    inset: 0;
    width: 100%;

    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 240, 0.14),
        rgba(255, 250, 240, 0.5)
      );
  }

  .hero-egnatia-picture {
    width: 100%;
    aspect-ratio: 4 / 3;

    border-radius: 26px;
  }

  .hero-egnatia-picture img {
    object-position: 56% center;
  }

  .visual-caption {
    position: static;
    transform: none;

    min-width: 0;
    margin-top: 14px;
  }

  .scroll-indicator {
    display: none;
  }

  .experience-section,
  .collections-section,
  .difference-section,
  .concentration-section,
  .accessible-luxury-section {
    width: 100%;
    padding: 75px 18px;
  }

  .section-heading h2,
  .dna-copy h2,
  .final-cta h2 {
    font-size: 43px;
  }

  .final-cta {
    overflow: hidden;
  }

  .final-glow {
    width: min(340px,90vw);
  }

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

  .journey-card {
    min-height: 300px;
    padding: 24px;
  }

  .journey-card .card-icon {
    margin-top: 34px;
  }

  .world-selected-card,
  .world-report-hero,
  .world-analysis-card,
  .world-visual-grid,
  .world-chip-section,
  .world-iyaly-card {
    grid-template-columns: 1fr;
  }

  .world-selected-card {
    padding: 20px;
  }

  .world-selected-mark {
    width: 64px;
    height: 64px;
  }

  .world-analysis-screen {
    min-height: auto;
    padding: 20px 0;
  }

  .world-analysis-card {
    gap: 10px;
  }

  .world-report-hero,
  .world-notes-panel,
  .world-why-section,
  .world-similar-section,
  .world-iyaly-recommendations {
    padding: 22px;
  }

  .world-similar-grid {
    grid-template-columns: 1fr;
  }

  .world-similar-card {
    padding: 16px;
  }

  .passport-question-shell {
    min-height: auto;
    padding: 22px;
    gap: 15px;
  }

  .passport-question-shell h2,
  .passport-result-hero h2 {
    font-size: clamp(25px, 8vw, 31px);
    line-height: 1.12;
  }

  .passport-progress div,
  .passport-slider-card div {
    align-items: flex-start;
    flex-direction: column;
  }

  .passport-answer-grid,
  .passport-answer-grid.notes,
  .passport-answer-grid.avoid,
  .passport-result-grid,
  .passport-recommendation-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .passport-answer {
    min-height: 72px;
    padding: 14px 42px 14px 14px;
    border-color: rgba(161, 112, 38, 0.18);
    background: linear-gradient(135deg, rgba(255, 252, 244, 0.96), rgba(255, 248, 235, 0.78));
  }

  .passport-answer:hover {
    transform: none;
  }

  .passport-answer-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(218, 171, 81, 0.12);
    font-size: 19px;
  }

  .passport-answer strong {
    font-size: 17px;
    line-height: 1.18;
  }

  .passport-answer small {
    font-size: 9px;
    letter-spacing: 0.9px;
  }

  .passport-auto-next-hint {
    max-width: 190px;
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .passport-result-hero,
  .passport-portrait,
  .passport-axis-panel,
  .passport-recommendations,
  .passport-world {
    padding: 22px;
  }

  .world-value-bridge {
    grid-template-columns: 1fr;
  }

  .world-value-pricing {
    grid-template-columns: 1fr;
  }

  .world-report-orb {
    width: 86px;
    height: 86px;
  }

  .world-report-orb .iyaly-symbol-mark {
    width: 44px;
    height: 44px;
  }

  .world-report-copy h2 {
    font-size: 42px;
  }

  .world-price-card {
    width: 100%;
  }

  .world-iyaly-card-head {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .world-affinity-pill {
    align-self: flex-start;
  }

  .world-iyaly-image {
    height: 190px;
    min-height: 190px;
  }

  .world-perfume-suggestions {
    position: relative;
    top: auto;
    margin-top: 12px;
    max-height: 300px;
  }

  .difference-grid,
  .accessible-luxury-section {
    grid-template-columns: 1fr;
  }

  .difference-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .difference-media {
    min-height: 210px;
    aspect-ratio: 16 / 10;
  }

  .difference-media::after {
    inset: auto 0 0;

    width: 100%;
    height: 42%;

    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 240, 0),
        rgba(255, 253, 247, 0.92)
      );
  }

  .difference-content {
    min-height: auto;
    padding: 28px 24px 30px;
  }

  .concentration-pyramid {
    min-height: auto;
    margin-bottom: 34px;
    padding: 15px;
  }

  .concentration-pyramid-picture {
    position: relative;

    aspect-ratio: 3 / 2;

    overflow: hidden;

    border-radius: 22px;
  }

  .concentration-pyramid-picture::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 240, 0.05),
        rgba(255, 250, 240, 0.36)
      );
  }

  .pyramid-labels {
    position: relative;
    inset: auto;

    width: 100%;
    margin: 14px 0 0;

    display: grid;
    gap: 7px;
  }

  .pyramid-label {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: auto;
    padding: 10px 12px;
    transform: none;
  }

  .pyramid-label:nth-child(1),
  .pyramid-label:nth-child(2),
  .pyramid-label:nth-child(3),
  .pyramid-label:nth-child(4),
  .pyramid-label:nth-child(5) {
    top: auto;
  }

  .pyramid-label span {
    font-size: 16px;
    line-height: 1.12;
  }

  .pyramid-label strong,
  .iyaly-pyramid-label strong {
    font-size: 10px;
  }

  .iyaly-concentration-note {
    margin-top: 30px;
    padding: 24px 20px;
  }

  .journey-card {
    min-height: 350px;
  }

  .dna-section {
    width: calc(100% - 20px);
    min-height: auto;

    padding: 60px 18px;

    gap: 30px;
  }

  .dna-orbit {
    width: 300px;
    height: 300px;
  }

  .dna-orbit::before {
    width: 220px;
    height: 220px;
  }

  .dna-orbit::after {
    width: 140px;
    height: 140px;
  }

  .dna-core {
    width: 115px;
    height: 115px;
  }

  .dna-core span {
    font-size: 24px;
  }

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

  .collection-card {
    min-height: 370px;
  }

  .collection-card img {
    object-position: center;
  }

  .collection-view-shell {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .collection-view-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .collection-perfume-grid {
    grid-template-columns: 1fr;
  }

  .collection-perfume-media {
    min-height: 190px;
    height: 190px;
    padding: 11px;
  }

  .collection-perfume-media img {
    width: min(100%, 160px);
    height: min(100%, 165px);
  }

  .collection-perfume-copy {
    padding: 14px 15px 16px;
  }

  .collection-detail-media {
    min-height: 230px;
    padding: 18px;
  }

  .collection-detail-media img {
    max-height: 200px;
  }

  .collection-content {
    left: 25px;
    right: 25px;
    bottom: 28px;
  }

  .collection-content h3 {
    font-size: 38px;
  }

  .final-cta {
    width: calc(100% - 20px);

    padding: 85px 20px;

    border-radius: 28px;
  }

  .site-footer {
    width: calc(100% - 30px);

    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .journey-modal-content {
    padding: 60px 18px 30px;
  }

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

  .audience-grid button {
    min-height: 155px;
  }
}

/* =========================================================
   VOYAGE OLFACTIF V2
   ========================================================= */

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

.modal-choice-card {
  position: relative;
  overflow: hidden;

  min-height: 190px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border: 1px solid var(--line);
  border-radius: 20px;

  color: var(--text);
  text-align: left;

  background: rgba(255,255,255,.72);

  transition: .25s ease;
}

.modal-choice-card.signature {
  grid-column: span 2;
  color: white;
  border-color: rgba(225, 182, 93, 0.52);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 241, 199, 0.18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(218, 171, 81, 0.22), transparent 30%),
    linear-gradient(145deg, #16100c, #3a2a1d 55%, #090604);
  box-shadow: 0 24px 70px rgba(52, 35, 16, 0.24);
}

.modal-choice-card.signature small {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.modal-choice-card.signature i {
  color: var(--gold-light);
}

.modal-choice-card.signature:hover,
.modal-choice-card.signature.selected {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 241, 199, 0.2), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(218, 171, 81, 0.24), transparent 30%),
    linear-gradient(145deg, #1c140f, #403020 55%, #0b0705);
}

.modal-choice-card:hover,
.modal-choice-card.selected {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: white;
  box-shadow: var(--shadow-md);
}

.choice-icon {
  font-size: 34px;
}

.modal-choice-card strong {
  margin-top: 18px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.modal-choice-card small {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.55;
}

.modal-choice-card i {
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.modal-navigation {
  margin-top: 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.modal-back-button,
.modal-continue-button {
  padding: 13px 20px;

  border-radius: 13px;

  font-size: 12px;
  font-weight: 800;
}

.modal-back-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.55);
}

.modal-continue-button {
  border: 0;
  color: white;
  background: linear-gradient(135deg,#2a1c10,#050301);
}

.perfume-search-box {
  max-width: 690px;
  margin: auto;
}

.perfume-search-box label {
  display: block;
  margin-bottom: 10px;

  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.perfume-search-box input {
  width: 100%;
  padding: 18px 20px;

  border: 1px solid var(--line);
  border-radius: 15px;

  outline: none;

  background: rgba(255,255,255,.85);

  font-size: 15px;
}

.perfume-search-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,149,54,.12);
}

.perfume-search-meta {
  margin-top: 9px;

  color: var(--muted);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.perfume-suggestions {
  max-height: 260px;

  margin-top: 12px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;

  overflow-y: auto;
}

.perfume-suggestions button {
  padding: 13px 15px;

  display: flex;
  align-items: center;
  gap: 10px;

  border: 1px solid var(--line);
  border-radius: 12px;

  color: var(--text);
  background: rgba(255,255,255,.7);

  text-align: left;
}

.perfume-suggestions button.selected {
  border-color: var(--gold);
  background: white;
  box-shadow: var(--shadow-sm);
}

.perfume-suggestions button.iyaly-suggestion {
  border-color: rgba(201, 149, 54, 0.34);
  background: rgba(255,251,242,.92);
}

.perfume-suggestions span {
  color: var(--gold-dark);
}

.perfume-suggestions .suggestion-symbol {
  width: 18px;
  height: 18px;

  display: grid;
  place-items: center;
  flex: 0 0 18px;
}

.perfume-suggestions .suggestion-symbol .iyaly-symbol-mark {
  width: 100%;
  height: 100%;
}

.suggestion-copy {
  display: grid;
  gap: 3px;

  text-align: left;
}

.suggestion-copy small {
  color: var(--gold-dark);

  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.suggestion-copy strong {
  color: var(--text);

  font-size: 12px;
  line-height: 1.3;
}

.suggestion-copy em,
.suggestion-copy span {
  color: var(--muted);

  font-size: 10px;
  font-style: normal;
  line-height: 1.35;
}

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

.preference-option {
  min-height: 135px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border: 1px solid var(--line);
  border-radius: 18px;

  color: var(--text);
  background: rgba(255,255,255,.72);

  transition: .22s ease;
}

.preference-option:hover,
.preference-option.selected {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: white;
  box-shadow: var(--shadow-md);
}

.preference-option span {
  font-size: 34px;
}

.preference-option strong {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.scent-explorer {
  display: grid;
  gap: 18px;
}

.scent-explorer > .modal-intro {
  margin-bottom: 4px;
}

.scent-filter-section {
  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(255,255,255,.55);
}

.scent-filter-section h3,
.scent-result-section h3 {
  margin: 0;

  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.scent-filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;

  margin-bottom: 14px;
}

.scent-filter-heading span {
  color: var(--muted);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.scent-filter-copy {
  margin: -4px 0 14px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.55;
}

.scent-universe-grid,
.scent-chip-grid,
.scent-result-grid {
  display: grid;
  gap: 10px;
}

.scent-universe-grid {
  margin-top: 14px;

  grid-template-columns: repeat(3,minmax(0,1fr));
}

.scent-chip-grid {
  grid-template-columns: repeat(4,minmax(0,1fr));
}

.scent-chip-grid.notes {
  max-height: 260px;
  overflow-y: auto;
}

.scent-universe-button,
.scent-chip,
.scent-active-filters button {
  border: 1px solid var(--line);
  border-radius: 14px;

  color: var(--text);
  background: rgba(255,255,255,.78);

  transition: .22s ease;
}

.scent-universe-button {
  min-height: 94px;
  padding: 14px;

  display: grid;
  place-items: center;
  gap: 8px;

  text-align: center;
}

.scent-universe-button span {
  font-size: 25px;
}

.scent-universe-button strong {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.scent-chip {
  min-height: 42px;
  padding: 10px 12px;

  font-size: 12px;
  font-weight: 700;
}

.scent-universe-button:hover,
.scent-universe-button.selected,
.scent-chip:hover,
.scent-chip.selected,
.scent-active-filters button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: white;
  box-shadow: var(--shadow-sm);
}

.scent-chip-grid.avoid .scent-chip.selected {
  border-color: rgba(93, 50, 37, 0.42);
  background: rgba(255,246,241,.95);
}

.scent-strict-toggle {
  margin-top: 14px;
  padding: 11px 12px;

  display: flex;
  align-items: center;
  gap: 9px;

  border: 1px solid var(--line);
  border-radius: 14px;

  color: var(--text);
  background: rgba(255,255,255,.62);

  font-size: 12px;
  font-weight: 700;
}

.scent-strict-toggle input {
  accent-color: var(--gold);
}

.scent-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.scent-active-filters button {
  padding: 9px 11px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--gold-dark);

  font-size: 11px;
  font-weight: 800;
}

.scent-active-filters strong {
  font-size: 15px;
  line-height: 1;
}

.scent-results {
  display: grid;
  gap: 18px;
}

.scent-result-section {
  display: grid;
  gap: 13px;
}

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

.scent-result-card {
  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(255,255,255,.72);
}

.scent-result-card small {
  color: var(--gold-dark);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.scent-result-card h4 {
  margin: 8px 0 6px;

  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.scent-result-card > p {
  margin: 0 0 14px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 800;
}

.scent-card-line {
  display: grid;
  gap: 5px;

  margin-top: 12px;
}

.scent-card-line span {
  color: var(--gold-dark);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.scent-card-line strong {
  color: var(--muted);

  font-size: 12px;
  line-height: 1.5;
}

.scent-card-line mark {
  padding: 4px 7px;

  display: inline-block;

  border-radius: 999px;

  color: #21170d;
  background: var(--gold-pale);

  font-weight: 800;
}

.scent-result-card a {
  margin-top: 15px;
  padding: 12px 14px;

  display: inline-flex;

  border-radius: 12px;

  color: white;
  background: linear-gradient(135deg,#2a1c10,#050301);

  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.scent-empty {
  padding: 22px;

  border: 1px solid var(--line);
  border-radius: 18px;

  color: var(--text);
  background: rgba(255,255,255,.62);

  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  white-space: pre-line;
}

.scent-empty.muted {
  color: var(--muted);
}

.scent-empty-actions {
  margin-top: 14px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.scent-empty-actions button {
  padding: 10px 12px;

  border: 1px solid var(--line);
  border-radius: 12px;

  color: var(--gold-dark);
  background: rgba(255,255,255,.78);

  font-size: 11px;
  font-weight: 800;
}

.analysis-screen {
  text-align: center;
}

.analysis-orbit {
  width: 145px;
  height: 145px;

  margin: 10px auto 26px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(201,149,54,.35);
  border-radius: 50%;

  animation: slowPulse 3s ease-in-out infinite;
}

.analysis-core {
  width: 88px;
  height: 88px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--gold-light);
  background: linear-gradient(145deg,#2a1c10,#070402);

  font-size: 30px;

  box-shadow: 0 0 40px rgba(201,149,54,.28);
}

.analysis-core .iyaly-symbol-mark {
  width: 58%;
  height: 58%;
}

.preview-result-card {
  max-width: 620px;

  margin: 30px auto;
  padding: 24px;

  display: flex;
  flex-direction: column;
  gap: 9px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(255,255,255,.64);
}

.preview-result-card small {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
}

.preview-result-card strong {
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
}

.preview-result-card span {
  color: var(--muted);
  font-size: 12px;
}

.modal-final-button {
  margin: auto;
}

.preview-note {
  color: var(--muted);
  font-size: 10px;
}

.app-notification {
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 28px;

  max-width: calc(100% - 30px);
  padding: 15px 20px;

  transform: translateX(-50%) translateY(18px);

  border: 1px solid rgba(201,149,54,.4);
  border-radius: 14px;

  color: white;
  background: rgba(15,10,6,.95);

  box-shadow: 0 20px 50px rgba(0,0,0,.3);

  font-size: 12px;
  text-align: center;

  opacity: 0;

  transition: .25s ease;
}

.app-notification.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media(max-width:760px) {
  .modal-choice-grid,
  .scent-universe-grid,
  .scent-result-grid,
  .perfume-suggestions {
    grid-template-columns: 1fr;
  }

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

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

  .modal-choice-card {
    min-height: 165px;
  }

  .modal-choice-card.signature {
    grid-column: span 1;
  }

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

/* =========================================================
   RECOMMANDATIONS IYALY
   ========================================================= */

.recommendation-screen {
  width: 100%;

  animation: universeReveal .68s ease both;
}

.universe-intro {
  margin: 8px 0 26px;
  padding: 30px 32px;

  border: 1px solid rgba(184,125,30,.18);
  border-radius: 24px;

  background:
    radial-gradient(circle at top left,rgba(240,213,143,.24),transparent 36%),
    linear-gradient(135deg,rgba(255,255,255,.86),rgba(247,236,218,.68));

  box-shadow: var(--shadow-sm);
}

.universe-intro h2 {
  max-width: 820px;
  margin: 8px 0 10px;

  font-family: Georgia,serif;
  font-size: 40px;
  font-weight: 400;
}

.universe-intro p:last-child {
  max-width: 680px;
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.75;
  white-space: pre-line;
}

.universe-signature {
  margin-top: 18px;

  display: grid;
  grid-template-columns: minmax(230px,.48fr) minmax(0,1fr);
  gap: 0;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 24px;

  background:
    linear-gradient(135deg,rgba(255,255,255,.74),rgba(248,239,222,.52));

  box-shadow: var(--shadow-md);
}

.universe-signature-copy {
  padding: 27px;

  border-right: 1px solid var(--line);
}

.universe-signature-copy h3 {
  margin: 10px 0;

  font-family: Georgia,serif;
  font-size: 30px;
  font-weight: 400;
}

.universe-signature-copy p:last-child {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.7;
}

.advisor-hero {
  margin: 22px 0 18px;
  padding: 25px 28px;

  border: 1px solid var(--line);
  border-radius: 22px;

  background:
    linear-gradient(135deg,rgba(255,250,240,.92),rgba(247,236,218,.74)),
    rgba(255,255,255,.68);

  box-shadow: var(--shadow-sm);
}

.advisor-hero h2 {
  max-width: 760px;
  margin: 8px 0 10px;

  font-size: 34px;
}

.advisor-hero p:last-child {
  max-width: 760px;
  margin: 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.7;
}

.advisor-section {
  margin-top: 16px;
  padding: 21px 23px;

  border: 1px solid var(--line);
  border-radius: 20px;

  background: rgba(255,255,255,.62);
}

.advisor-section-heading span {
  color: var(--gold-dark);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.advisor-section-heading h3 {
  margin: 7px 0 0;

  font-family: Georgia,serif;
  font-size: 25px;
  font-weight: 400;
}

.advisor-section-heading p,
.advisor-portrait > p,
.advisor-advice > p {
  max-width: 850px;
  margin: 11px 0 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.7;
}

.advisor-secondary {
  margin: 14px 0 0;
  padding-top: 13px;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 11px;
}

.advisor-dna {
  display: grid;
  grid-template-columns: minmax(220px,.72fr) minmax(0,1.28fr);
  gap: 22px;
  align-items: start;
}

.advisor-dna-intro {
  margin: 10px 0 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.7;
}

.dna-axis-list {
  display: grid;
  gap: 12px;
}

.dna-axis {
  display: grid;
  grid-template-columns: 94px minmax(0,1fr) 34px;
  gap: 10px;
  align-items: center;
}

.dna-axis-label,
.dna-axis-value {
  color: var(--text);

  font-size: 10px;
  font-weight: 700;
}

.dna-axis-value {
  text-align: right;
}

.dna-axis-track {
  height: 8px;

  overflow: hidden;

  border-radius: 999px;

  background: #eadbc5;
}

.dna-axis-track span {
  display: block;

  height: 100%;

  border-radius: inherit;

  background: linear-gradient(90deg,#8e601e,#f0d58f);
}

.signature-section {
  padding: 0;

  overflow: hidden;

  background: transparent;
}

.signature-section .advisor-section-heading {
  padding: 22px 23px 0;
}

.signature-detail {
  position: static;

  min-height: 0;
  margin-top: 18px;

  border-radius: 20px;
}

.other-recommendations {
  background: rgba(255,255,255,.5);
}

.recommendation-list.compact {
  margin-top: 15px;

  grid-template-columns: repeat(4,minmax(0,1fr));
}

.advisor-compact-card {
  min-width: 0;
  grid-template-columns: 70px minmax(0,1fr);
}

.advisor-compact-card .perfume-image-frame {
  width: 70px;
  height: 98px;
}

.advisor-compact-card .result-perfume-copy h3 {
  font-size: 18px;
}

.advisor-role-detail {
  margin-top: 18px;
  padding: 15px;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;

  background: rgba(255,255,255,.05);
}

.advisor-role-detail strong {
  color: var(--gold-light);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.advisor-role-detail p {
  margin: 7px 0 0;

  color: rgba(255,255,255,.72);

  font-size: 11px;
  line-height: 1.55;
}

.advisor-closing {
  margin-top: 18px;
  padding: 25px;

  border-radius: 20px;

  color: white;

  background:
    radial-gradient(circle at top left,rgba(240,213,143,.22),transparent 38%),
    linear-gradient(135deg,#2c2117,#080705);
}

.advisor-closing p {
  max-width: 760px;
  margin: 0;

  color: var(--gold-light);

  font-family: Georgia,serif;
  font-size: 24px;
  line-height: 1.35;
}

.advisor-closing small {
  display: block;

  margin-top: 12px;

  color: rgba(255,255,255,.68);

  font-size: 11px;
  line-height: 1.6;
}

.advisor-debug {
  margin-top: 16px;
  padding: 14px;

  border: 1px dashed var(--line);
  border-radius: 14px;

  background: rgba(255,255,255,.6);
}

.advisor-debug pre {
  max-height: 280px;
  overflow: auto;

  font-size: 11px;
}

.universe-personality-card {
  display: grid;
  grid-template-columns: 74px minmax(0,1fr);
  gap: 18px;
  align-items: center;
}

.universe-personality-icon {
  width: 74px;
  height: 74px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(184,125,30,.24);
  border-radius: 50%;

  color: var(--gold-dark);
  background: rgba(255,250,240,.78);

  font-family: Georgia,serif;
  font-size: 30px;
}

.universe-personality-ambience {
  grid-column: 2;

  margin: -3px 0 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.7;
}

.universe-dna-focus {
  margin-top: 16px;
}

.universe-dna-focus .advisor-dna {
  border-color: rgba(184,125,30,.28);

  background:
    linear-gradient(135deg,rgba(255,255,255,.78),rgba(247,236,218,.58));

  box-shadow: var(--shadow-sm);
}

.universe-dna-focus > p {
  max-width: 720px;
  margin: 11px auto 0;

  color: var(--muted);

  font-family: Georgia,serif;
  font-size: 17px;
  line-height: 1.45;
  text-align: center;
}

.universe-favorites-grid {
  margin-top: 16px;

  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 14px;
}

.universe-badge-list {
  margin-top: 15px;

  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.universe-badge-list span {
  padding: 9px 12px;

  border: 1px solid rgba(184,125,30,.22);
  border-radius: 999px;

  color: var(--text);
  background: rgba(255,250,240,.78);

  font-size: 11px;
  font-weight: 700;
}

.universe-quote {
  margin: 22px 0 0;
  padding: 28px;

  border: 1px solid rgba(184,125,30,.18);
  border-radius: 24px;

  color: var(--gold-dark);
  background:
    radial-gradient(circle at top,rgba(240,213,143,.22),transparent 38%),
    rgba(255,255,255,.7);

  font-family: Georgia,serif;
  font-size: 26px;
  line-height: 1.38;
  text-align: center;
}

.universe-share-actions {
  margin-top: 16px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.universe-share-button {
  min-height: 42px;
  padding: 12px 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  border: 1px solid rgba(184,125,30,.28);
  border-radius: 14px;

  color: #170f08;
  background: rgba(255,250,240,.8);

  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.universe-share-button:focus-visible {
  outline: 2px solid rgba(184,125,30,.68);
  outline-offset: 3px;
}

.universe-share-button.disabled {
  opacity: .55;
  cursor: not-allowed;
}

.universe-share-button small {
  color: var(--muted);

  font-size: 10px;
  font-weight: 600;
}

.universe-final-note {
  margin-top: 18px;
  padding: 25px;

  border-radius: 22px;

  background: linear-gradient(135deg,#2c2117,#090706);

  text-align: center;
}

.universe-final-note p {
  max-width: 680px;
  margin: 0 auto;

  color: var(--gold-light);

  font-family: Georgia,serif;
  font-size: 22px;
  line-height: 1.45;
  white-space: pre-line;
}

@keyframes universeReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-fragrance-transition {
  width: min(520px, 72%);
  height: 1px;
  margin: 30px auto 8px;

  background: linear-gradient(90deg,transparent,rgba(184,125,30,.36),transparent);
}

.home-fragrance-section {
  position: relative;

  background:
    linear-gradient(135deg,rgba(255,255,255,.72),rgba(248,240,226,.58));

  animation: homeFragranceReveal .55s ease both;
}

.home-fragrance-section::before {
  content: "";

  position: absolute;
  inset: 0 24px auto;

  height: 1px;

  background: linear-gradient(90deg,transparent,rgba(255,255,255,.82),transparent);
}

.home-fragrance-recommendation-label {
  margin-top: 19px;

  color: var(--gold-dark);

  font-family: Georgia,serif;
  font-size: 20px;
  line-height: 1.35;
}

.home-fragrance-grid {
  margin-top: 15px;

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

.home-fragrance-card {
  min-width: 0;
  padding: 16px;

  display: grid;
  grid-template-columns: 96px minmax(0,1fr);
  gap: 15px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(255,255,255,.68);

  transition: .24s ease;
}

.home-fragrance-card:focus-within {
  outline: 2px solid rgba(184,125,30,.58);
  outline-offset: 3px;
}

.home-fragrance-card.highlighted {
  border-color: rgba(184,125,30,.42);

  background: rgba(255,255,255,.9);

  box-shadow: var(--shadow-sm);
}

@media (hover:hover) and (pointer:fine) {
  .home-fragrance-card:hover {
    transform: translateY(-3px) scale(1.006);

    border-color: rgba(184,125,30,.5);

    background: rgba(255,255,255,.94);

    box-shadow: var(--shadow-md);
  }
}

.home-fragrance-image {
  width: 96px;
  height: 132px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 14px;

  color: var(--gold-light);
  background: linear-gradient(145deg,#2b2119,#070504);

  font-family: Georgia,serif;
  font-size: 18px;
}

.home-fragrance-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  background: rgba(255,255,255,.38);
}

.home-fragrance-copy small {
  color: var(--gold-dark);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.home-fragrance-personal-badge {
  width: fit-content;
  margin-bottom: 9px;
  padding: 7px 9px;

  display: grid;
  gap: 3px;

  border: 1px solid rgba(184,125,30,.28);
  border-radius: 12px;

  background: rgba(255,250,239,.78);
}

.home-fragrance-personal-badge span {
  color: var(--gold-dark);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}

.home-fragrance-personal-badge strong {
  color: var(--text);

  font-size: 10px;
  font-weight: 700;
}

.home-fragrance-copy h4 {
  margin: 7px 0 8px;

  font-family: Georgia,serif;
  font-size: 22px;
  font-weight: 400;
}

.home-fragrance-icon-line {
  margin-bottom: 9px;

  color: var(--gold-dark);

  font-size: 10px;
  font-weight: 700;
}

.home-fragrance-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.55;
}

.home-fragrance-link {
  width: fit-content;
  margin-top: 14px;
  padding: 10px 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(184,125,30,.36);
  border-radius: 12px;

  color: #1b130b;
  background: linear-gradient(90deg,rgba(232,199,127,.92),rgba(255,246,220,.96));

  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.home-fragrance-link:focus-visible,
.home-fragrance-collection-link:focus-visible {
  outline: 2px solid rgba(184,125,30,.68);
  outline-offset: 3px;
}

.home-fragrance-closing {
  margin-top: 22px;
  padding-top: 19px;

  border-top: 1px solid rgba(184,125,30,.16);

  text-align: center;
}

.home-fragrance-closing p {
  margin: 0;

  color: var(--text);

  font-family: Georgia,serif;
  font-size: 22px;
  line-height: 1.35;
}

.home-fragrance-closing small {
  display: block;

  margin-top: 8px;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.5;
}

.home-fragrance-collection-link {
  width: fit-content;
  margin: 16px auto 0;
  padding: 13px 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(184,125,30,.42);
  border-radius: 14px;

  color: #160f08;
  background: linear-gradient(90deg,#d7a84f,#fff1c7);

  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

@keyframes homeFragranceReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .recommendation-screen {
    animation: none;
  }

  .home-fragrance-section {
    animation: none;
  }

  .home-fragrance-card {
    transition: none;
  }
}

.recommendation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
  gap: 20px;
  align-items: start;
}

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

.result-perfume-card {
  padding: 16px;

  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(255,255,255,.72);

  cursor: pointer;

  transition: .24s ease;
}

.result-perfume-card:hover,
.result-perfume-card.active {
  transform: translateY(-4px);

  border-color: var(--gold);

  background: white;

  box-shadow: var(--shadow-md);
}

.perfume-image-frame {
  width: 90px;
  height: 125px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 13px;

  color: var(--gold-light);
  background: linear-gradient(145deg,#2b2119,#070504);

  font-family: Georgia,serif;
  font-size: 22px;
}

.perfume-image-frame.large {
  width: 165px;
  height: 220px;

  margin: 0 auto;
}

.perfume-image-frame img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  background: rgba(255,255,255,.35);
}

.result-perfume-copy small {
  color: var(--gold-dark);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.result-perfume-copy h3 {
  margin: 7px 0;

  font-family: Georgia,serif;
  font-size: 21px;
  font-weight: 400;
}

.result-perfume-copy p {
  min-height: 32px;

  margin: 0;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.45;
}

.compact-iyaly-meta {
  margin: 10px 0 2px;
}

.compact-iyaly-meta span {
  color: rgba(40, 30, 24, 0.72);
  font-size: 11px;
  line-height: 1.35;
}

.result-affinity {
  height: 7px;

  margin: 12px 0 7px;

  overflow: hidden;

  border-radius: 20px;

  background: #ecdfca;
}

.result-affinity span {
  display: block;

  height: 100%;

  border-radius: inherit;

  background: linear-gradient(90deg,#9a6519,#efd076);
}

.result-perfume-copy > strong {
  font-size: 11px;
}

.result-perfume-copy em {
  display: block;

  margin-top: 8px;

  color: var(--muted);

  font-size: 10px;
  font-style: normal;
}

.result-detail {
  position: sticky;
  top: 0;

  min-height: 610px;

  padding: 27px;

  border-radius: 22px;

  color: white;

  background:
    radial-gradient(
      circle at top right,
      rgba(213,165,71,.25),
      transparent 35%
    ),
    linear-gradient(145deg,#211810,#050403);

  box-shadow: var(--shadow-lg);
}

.detail-visual {
  margin-bottom: 22px;
}

.result-detail > small {
  color: var(--gold-light);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
}

.result-detail h3 {
  margin: 8px 0;

  color: var(--gold-light);

  font-family: Georgia,serif;
  font-size: 36px;
  font-weight: 400;
}

.detail-profile {
  color: rgba(255,255,255,.72);

  font-size: 13px;
}

.detail-affinity {
  margin-top: 20px;

  display: flex;
  align-items: end;
  gap: 10px;
}

.detail-affinity strong {
  color: var(--gold-light);

  font-family: Georgia,serif;
  font-size: 38px;
  font-weight: 400;
}

.detail-affinity span {
  padding-bottom: 7px;

  color: rgba(255,255,255,.55);

  font-size: 10px;
}

.match-explanation {
  margin-top: 22px;
  padding: 18px;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;

  background: rgba(255,255,255,.04);
}

.match-explanation h4 {
  margin-bottom: 12px;
}

.match-reasons {
  margin: 0;
  padding-left: 17px;

  color: rgba(255,255,255,.74);

  font-size: 11px;
  line-height: 1.55;
}

.match-reasons li + li {
  margin-top: 7px;
}

.match-insight {
  margin-top: 14px;
  padding-top: 13px;

  border-top: 1px solid rgba(255,255,255,.1);
}

.match-insight span,
.match-confidence span {
  color: var(--gold-light);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.match-insight p {
  margin: 6px 0 0;

  color: rgba(255,255,255,.68);

  font-size: 10px;
  line-height: 1.5;
}

.match-confidence {
  margin-top: 14px;
  padding-top: 13px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  border-top: 1px solid rgba(255,255,255,.1);
}

.match-confidence strong {
  color: white;

  font-family: Georgia,serif;
  font-size: 16px;
  font-weight: 400;
}

.detail-line {
  height: 1px;

  margin: 22px 0;

  background: rgba(255,255,255,.15);
}

.result-detail h4 {
  margin: 0 0 15px;

  font-family: Georgia,serif;
  font-size: 18px;
  font-weight: 400;
}

.olfactory-pyramid {
  display: grid;
  gap: 11px;
}

.olfactory-pyramid div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
}

.olfactory-pyramid strong {
  color: var(--gold-light);

  font-size: 10px;
}

.olfactory-pyramid span {
  color: rgba(255,255,255,.7);

  font-size: 10px;
  line-height: 1.5;
}

.detail-description {
  margin-top: 22px;

  color: rgba(255,255,255,.7);

  font-size: 11px;
  line-height: 1.6;
}

.detail-product-link {
  margin-top: 20px;
  padding: 14px 17px;

  display: block;

  border-radius: 13px;

  color: #140e08;
  background: linear-gradient(90deg,#b87d1e,#efd070);

  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.empty-results {
  padding: 35px;

  border: 1px solid var(--line);
  border-radius: 18px;

  color: var(--muted);
  background: rgba(255,255,255,.65);

  text-align: center;
}

@media(max-width:900px) {
  .universe-signature,
  .recommendation-layout {
    grid-template-columns: 1fr;
  }

  .universe-signature-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .advisor-dna {
    grid-template-columns: 1fr;
  }

  .universe-favorites-grid {
    grid-template-columns: 1fr;
  }

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

  .home-fragrance-grid {
    grid-template-columns: 1fr;
  }

  .result-detail {
    position: static;
  }
}

@media(max-width:650px) {
  .universe-intro,
  .universe-signature-copy,
  .advisor-hero,
  .advisor-section,
  .advisor-closing {
    padding: 19px;
    border-radius: 18px;
  }

  .advisor-hero h2 {
    font-size: 28px;
  }

  .universe-intro h2,
  .universe-signature-copy h3 {
    font-size: 27px;
  }

  .advisor-section-heading h3 {
    font-size: 22px;
  }

  .universe-personality-card {
    grid-template-columns: 1fr;
  }

  .universe-personality-ambience {
    grid-column: auto;
  }

  .universe-quote {
    padding: 22px 19px;

    font-size: 22px;
  }

  .universe-share-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .signature-section {
    padding: 0;
  }

  .signature-section .advisor-section-heading {
    padding: 19px 19px 0;
  }

  .recommendation-list.compact,
  .recommendation-list {
    grid-template-columns: 1fr;
  }

  .dna-axis {
    grid-template-columns: 78px minmax(0,1fr) 31px;
  }

  .result-perfume-card {
    grid-template-columns: 75px 1fr;
  }

  .home-fragrance-card {
    grid-template-columns: 82px minmax(0,1fr);
  }

  .home-fragrance-card:hover {
    transform: none;
  }

  .home-fragrance-image {
    width: 82px;
    height: 112px;
  }

  .home-fragrance-closing p {
    font-size: 19px;
  }

  .perfume-image-frame {
    width: 75px;
    height: 105px;
  }
}
