:root {
  --ink: #100a04;
  --ink-2: #1b1007;
  --cream: #fbf1d7;
  --paper: #fffaf0;
  --sand: #ead3a0;
  --gold: #c49a45;
  --gold-light: #f1d998;
  --gold-dark: #8f641c;
  --text: #2b1a0c;
  --muted: #705a3b;
  --green: #177a4c;
  --line: rgba(143, 100, 28, 0.22);
  --shadow: 0 22px 58px rgba(55, 34, 11, 0.13);
  --container: min(1180px, calc(100% - 32px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family:
    "Tajawal",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.dark-texture {
  background-color: var(--ink);
  background-image:
    radial-gradient(
      circle at 80% 15%,
      rgba(196, 154, 69, 0.17),
      transparent 28%
    ),
    radial-gradient(
      circle at 9% 82%,
      rgba(143, 100, 28, 0.13),
      transparent 26%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      transparent 1px 10px
    );
}
.cream-texture {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 8% 8%, rgba(196, 154, 69, 0.11), transparent 24%),
    radial-gradient(
      circle at 93% 78%,
      rgba(234, 211, 160, 0.24),
      transparent 27%
    );
}
.metal-text {
  color: transparent;
  background: linear-gradient(120deg, #9d6e1e 4%, #f4dfa4 49%, #c6973e 90%);
  -webkit-background-clip: text;
  background-clip: text;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
}
.eyebrow-light {
  color: var(--gold-light);
}
.section {
  padding: 90px 0;
}
.section-head {
  max-width: 840px;
  margin: 0 auto 43px;
  text-align: center;
}
.section-head h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.35;
  font-weight: 900;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.95;
  font-weight: 500;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.94rem;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}
.btn-primary {
  color: #1c1207;
  background: linear-gradient(135deg, #9c7024, #f0d894 50%, #c49a45);
  box-shadow:
    0 12px 30px rgba(196, 154, 69, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.5);
}
.btn-dark {
  color: var(--cream);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 10, 4, 0.16);
}
.btn-outline {
  color: var(--cream);
  border-color: rgba(241, 217, 152, 0.5);
  background: rgba(255, 255, 255, 0.035);
}
.btn-light-outline {
  color: var(--text);
  border-color: rgba(143, 100, 28, 0.34);
  background: rgba(255, 255, 255, 0.42);
}
.btn-whatsapp {
  color: #fff;
  background: var(--green);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.button-row.center {
  justify-content: center;
}
.announcement {
  position: sticky;
  direction: ltr;
  top: 0;
  z-index: 100;
  height: 46px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(241, 217, 152, 0.24);
  color: var(--cream);
  background: #0c0804;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}
.announcement::before,
.announcement::after {
  display: none;
}
.announcement::before {
  right: 0;
  background: linear-gradient(270deg, #0c0804, transparent);
}
.announcement::after {
  left: 0;
  background: linear-gradient(90deg, #0c0804, transparent);
}
.announcement-track {
  width: max-content;
  display: flex;
  flex: 0 0 auto;
  direction: ltr;
  will-change: transform;
  animation: announcement-ticker 26s linear infinite;
}
.announcement-item {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding-inline: clamp(36px, 5vw, 72px);
  white-space: nowrap;
  direction: rtl;
}
.announcement:hover .announcement-track,
.announcement:focus-within .announcement-track {
  animation-play-state: paused;
}
.announcement strong {
  color: var(--gold-light);
  font-weight: 900;
}
@keyframes announcement-ticker {
  from {
    transform: translate3d(-33.333333%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.site-header {
  position: sticky;
  top: 46px;
  z-index: 90;
  border-bottom: 1px solid rgba(241, 217, 152, 0.3);
  background: linear-gradient(
    180deg,
    rgba(31, 17, 7, 0.98),
    rgba(16, 10, 4, 0.97)
  );
  backdrop-filter: blur(15px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand img {
  width: 104px;
  height: 68px;
  object-fit: contain;
}
.brand small {
  padding-right: 11px;
  border-right: 1px solid rgba(196, 154, 69, 0.25);
  color: rgba(251, 241, 215, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 21px;
}
.desktop-nav a {
  color: rgba(251, 241, 215, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
}
.desktop-nav a:hover {
  color: var(--gold-light);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-actions .btn {
  min-height: 43px;
  padding: 8px 16px;
  font-size: 0.82rem;
}
.icon-btn {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 154, 69, 0.32);
  border-radius: 12px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.035);
}
.menu-button {
  display: none;
}
.mobile-menu {
  display: none;
}

/* The first section on each variation keeps the original WebGL mouse effect. */
.experience-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
}
.experience-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(16, 10, 4, 0.79), rgba(16, 10, 4, 0.97) 58%),
    url("hero-bg.jpg") center/cover no-repeat;
}
.experience-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, transparent 66%, rgba(16, 10, 4, 0.92));
  pointer-events: none;
}
#fluid {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.48;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 66px;
  padding: 64px 0 52px;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(196, 154, 69, 0.38);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(196, 154, 69, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
}
.experience-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 1.23;
  font-weight: 900;
  letter-spacing: -0.025em;
}
.experience-hero h1 span {
  display: block;
}
.hero-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(251, 241, 215, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.95;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 19px;
  margin-top: 19px;
  color: rgba(251, 241, 215, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-meta svg {
  color: var(--gold);
}
.hero-visual {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(196, 154, 69, 0.18);
  filter: blur(75px);
}
.hero-frame {
  position: relative;
  width: min(100%, 475px);
  height: 575px;
  overflow: hidden;
  border: 1px solid rgba(241, 217, 152, 0.36);
  border-radius: 42px 42px 118px 42px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.44);
  transform: rotate(-1.4deg);
}
.hero-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(16, 10, 4, 0.62));
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-seal {
  position: absolute;
  z-index: 4;
  top: 58px;
  left: -18px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(241, 217, 152, 0.45);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(16, 10, 4, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.45;
}
.hero-seal b {
  display: block;
  font-size: 1.12rem;
}
.hero-card {
  position: absolute;
  z-index: 4;
  right: -8px;
  bottom: 54px;
  max-width: 285px;
  padding: 18px 20px;
  border: 1px solid rgba(196, 154, 69, 0.34);
  border-radius: 18px;
  background: rgba(16, 10, 4, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}
.hero-card strong {
  display: block;
  color: var(--gold-light);
  font-size: 1rem;
}
.hero-card span {
  display: block;
  margin-top: 4px;
  color: rgba(251, 241, 215, 0.68);
  font-size: 0.76rem;
  line-height: 1.75;
}

/* Page A: the trust standard itself is the first/hero section. */
.standard-hero .hero-grid {
  grid-template-columns: 0.93fr 1.07fr;
  min-height: 760px;
}
.standard-hero .standard-lead {
  font-size: 1.02rem;
  line-height: 2;
}
.standard-steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.standard-step {
  position: relative;
  padding: 19px 73px 19px 19px;
  border: 1px solid rgba(241, 217, 152, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
}
.standard-step .step-no {
  position: absolute;
  right: 17px;
  top: 18px;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
}
.standard-step h2 {
  margin: 0 0 5px;
  color: var(--gold-light);
  font-size: 1.16rem;
}
.standard-step p {
  margin: 0;
  color: rgba(251, 241, 215, 0.73);
  font-size: 0.87rem;
  line-height: 1.82;
}
.standard-closing {
  margin-top: 17px;
  color: rgba(251, 241, 215, 0.78);
  font-weight: 800;
}

/* Page B: purchase CTA hero followed immediately by the client-requested trust strip. */
.quick-trust {
  border-block: 1px solid rgba(196, 154, 69, 0.28);
  background: var(--ink-2);
  color: var(--cream);
}
.quick-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 14px;
  border-left: 1px solid rgba(196, 154, 69, 0.18);
}
.quick-trust-item:last-child {
  border-left: 0;
}
.quick-trust-item svg {
  flex: 0 0 auto;
  color: var(--gold);
}
.quick-trust-item strong {
  font-size: 0.82rem;
  line-height: 1.55;
}

.standard-section-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.standard-intro {
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: var(--shadow);
}
.standard-intro h2 {
  margin: 10px 0 15px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.38;
}
.standard-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
  font-weight: 500;
}
.standard-note {
  margin-top: 21px;
  padding: 16px 18px;
  border-right: 4px solid var(--gold);
  border-radius: 13px;
  background: rgba(196, 154, 69, 0.1);
  font-weight: 900;
  line-height: 1.75;
}
.measure-list {
  display: grid;
  gap: 17px;
}
.measure-card {
  position: relative;
  padding: 28px 26px 27px 92px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 13px 36px rgba(63, 40, 13, 0.08);
}
.measure-no {
  position: absolute;
  left: 24px;
  top: 25px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 1rem;
  font-weight: 900;
}
.measure-card h3 {
  margin: 0 0 9px;
  font-size: 1.35rem;
}
.measure-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
  font-size: 0.94rem;
  font-weight: 500;
}
.section-actions {
  margin-top: 25px;
}

.guarantee {
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.guarantee:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 22%,
      rgba(196, 154, 69, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 82%,
      rgba(143, 100, 28, 0.15),
      transparent 25%
    );
}
.guarantee-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.diamond-panel {
  margin: 0;
}
.diamond-panel.guarantee-art {
  min-height: 0;
  display: block;
  overflow: hidden;
}
.guarantee-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.guarantee-copy h2 {
  margin: 10px 0 19px;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
}
.guarantee-copy p {
  margin: 0;
  color: rgba(251, 241, 215, 0.76);
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
}
.guarantee-copy strong {
  color: var(--gold-light);
}
.emphasis {
  margin: 22px 0;
  padding: 17px 20px;
  border-right: 4px solid var(--gold);
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(196, 154, 69, 0.08);
  font-weight: 900;
  line-height: 1.75;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.category-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.category-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(16, 10, 4, 0.05),
    rgba(16, 10, 4, 0.91) 78%
  );
}
.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.category-card:hover img {
  transform: scale(1.045);
}
.category-content {
  position: absolute;
  inset: auto 0 0;
  padding: 29px;
  color: var(--cream);
}
.category-tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(241, 217, 152, 0.36);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(16, 10, 4, 0.58);
  font-size: 0.7rem;
  font-weight: 900;
}
.category-content h3 {
  margin: 12px 0 8px;
  font-size: 1.6rem;
}
.category-content p {
  margin: 0 0 17px;
  color: rgba(251, 241, 215, 0.72);
  font-size: 0.9rem;
  line-height: 1.85;
}
.category-note {
  margin-top: 20px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(196, 154, 69, 0.08);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.8;
}

/* Page A single oud-oil category is intentionally presented as a feature. */
@media (min-width: 791px) {
  body[data-variant="A"] .category-grid-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 1060px;
    margin-inline: auto;
  }
  body[data-variant="A"] .category-grid-single .category-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: 430px;
    border-color: rgba(143, 100, 28, 0.34);
    border-radius: 30px;
    background: var(--ink);
  }
  body[data-variant="A"] .category-grid-single .category-card::before {
    display: none;
  }
  body[data-variant="A"] .category-grid-single .category-card img {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-position: center;
  }
  body[data-variant="A"] .category-grid-single .category-content {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(34px, 4vw, 56px);
    background:
      radial-gradient(circle at 85% 12%, rgba(196, 154, 69, 0.17), transparent 37%),
      linear-gradient(135deg, #25170a 0%, #110b05 100%);
  }
  body[data-variant="A"] .category-grid-single .category-content h3 {
    margin-top: 15px;
    font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  }
  body[data-variant="A"] .category-grid-single .category-content p {
    max-width: 38ch;
    margin-bottom: 24px;
    font-size: 1rem;
  }
  body[data-variant="A"] .category-grid-single .category-content .btn {
    width: auto;
    min-height: 50px;
  }
  body[data-variant="A"] #oud-types .category-note {
    max-width: 1060px;
    margin-inline: auto;
  }
}

.customer-proof {
  border-block: 1px solid rgba(143, 100, 28, 0.13);
}
.customer-banner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 27px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 29px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.customer-number {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  border-left: 1px solid var(--line);
}
.customer-number strong {
  color: var(--gold-dark);
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
}
.customer-number span {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 900;
}
.customer-number small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}
.customer-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.7vw, 2.7rem);
  line-height: 1.45;
}
.customer-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 500;
}
.reviews-swipe-hint {
  display: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.review-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 11px 29px rgba(63, 40, 13, 0.07);
}
.review-source {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 9px;
  border: 1px solid rgba(23, 122, 76, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(23, 122, 76, 0.07);
  font-size: 0.68rem;
  font-weight: 900;
}
.stars {
  color: #d39b27;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.review-card blockquote {
  margin: 17px 0 22px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.95;
  font-weight: 600;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
}
.reviewer strong {
  display: block;
  font-size: 0.84rem;
}
.reviewer small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
}

.oils {
  background: #f4e4bd;
}
.oils-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
}
.oils-visual {
  position: relative;
}
.oils-visual img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.oils-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 285px;
  padding: 17px;
  border: 1px solid rgba(241, 217, 152, 0.4);
  border-radius: 17px;
  color: var(--cream);
  background: rgba(16, 10, 4, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.75;
}
.oils-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(2rem, 4.3vw, 3.35rem);
  line-height: 1.38;
}
.oils-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
  font-weight: 500;
}
.origin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 24px;
}
.origin {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 250, 240, 0.75);
}
.origin strong {
  display: block;
  font-size: 0.88rem;
}
.origin span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.7;
}
.oils-copy .button-row {
  margin-top: 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.video-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(143, 100, 28, 0.12);
}
.video-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -210px;
  right: -150px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(196, 154, 69, 0.17),
    rgba(196, 154, 69, 0) 68%
  );
}
.video-section .container {
  position: relative;
  z-index: 1;
}
.video-player-card {
  width: min(100%, 410px);
  justify-self: center;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(196, 154, 69, 0.42);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(241, 217, 152, 0.13), transparent 38%),
    var(--ink);
  box-shadow:
    0 26px 62px rgba(55, 34, 11, 0.24),
    inset 0 1px rgba(241, 217, 152, 0.18);
}
.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(241, 217, 152, 0.23);
  border-radius: 22px;
  background: #080502;
}
.trust-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080502;
  direction: ltr;
  cursor: pointer;
}
.trust-video::-webkit-media-controls,
.trust-video::-webkit-media-controls-enclosure {
  display: none !important;
}
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  isolation: isolate;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 240, 190, 0.78);
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.68);
  transform: translate(-50%, -50%);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}
.video-play-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border: 2px solid rgba(241, 217, 152, 0.72);
  border-radius: inherit;
  animation: video-play-pulse 1.8s ease-out infinite;
}
.video-play-button svg {
  margin-left: 3px;
}
.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.video-frame.is-playing .video-play-button {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.88);
}
@keyframes video-play-pulse {
  0% {
    opacity: 0.78;
    transform: scale(0.9);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.58);
  }
}
.video-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 10px 7px;
  color: var(--cream);
  text-align: right;
}
.video-caption-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 217, 152, 0.45);
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
}
.video-caption strong,
.video-caption small {
  display: block;
}
.video-caption strong {
  color: var(--gold-light);
  font-size: 0.96rem;
  line-height: 1.5;
}
.video-caption small {
  margin-top: 3px;
  color: rgba(251, 241, 215, 0.68);
  font-size: 0.76rem;
  line-height: 1.65;
}
.video-placeholder {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(rgba(16, 10, 4, 0.28), rgba(16, 10, 4, 0.86)),
    url("hero-moroki.jpg") center/cover;
  box-shadow: var(--shadow);
}
.video-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  color: var(--cream);
}
.experience-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(241, 217, 152, 0.5);
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}
.video-center strong {
  display: block;
  font-size: 1.25rem;
}
.video-center > div > span:not(.experience-icon) {
  display: block;
  max-width: 380px;
  margin-top: 8px;
  color: rgba(251, 241, 215, 0.7);
  font-size: 0.82rem;
  line-height: 1.8;
}
.video-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.4;
}
.video-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
  font-weight: 500;
}
.video-points {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}
.video-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
}
.video-point svg {
  color: var(--gold-dark);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  text-align: center;
  color: var(--cream);
}
.final-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 10, 4, 0.97),
      rgba(16, 10, 4, 0.75),
      rgba(16, 10, 4, 0.97)
    ),
    url("hero-bg.jpg") center/cover;
}
.final-cta-inner {
  position: relative;
  max-width: 820px;
  margin: auto;
}
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.35;
}
.final-cta p {
  margin: 16px auto 25px;
  max-width: 650px;
  color: rgba(251, 241, 215, 0.72);
  font-size: 1.05rem;
  line-height: 1.9;
}

.location {
  padding: 85px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: stretch;
}
.location-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.location-card h2 {
  margin: 10px 0 13px;
  font-size: 2.15rem;
}
.location-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
  font-weight: 500;
}
.contact-list {
  display: grid;
  gap: 11px;
  margin: 23px 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(196, 154, 69, 0.07);
  font-size: 0.8rem;
  font-weight: 800;
}
.contact-item svg {
  color: var(--gold-dark);
}
.map-wrap {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 2px solid rgba(196, 154, 69, 0.52);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(241, 217, 152, 0.28), transparent 38%),
    var(--ink);
  box-shadow:
    0 24px 58px rgba(55, 34, 11, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.16);
}
.map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(241, 217, 152, 0.22);
  border-radius: inherit;
  pointer-events: none;
}
.map-wrap iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 26px;
  background: var(--sand);
}
.footer {
  padding: 54px 0 24px;
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 45px;
}
.footer-logo {
  width: 150px;
  height: 75px;
  object-fit: contain;
}
.footer p {
  max-width: 380px;
  color: rgba(251, 241, 215, 0.62);
  font-size: 0.82rem;
  line-height: 1.9;
  font-weight: 500;
}
.footer h3 {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 1rem;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: rgba(251, 241, 215, 0.65);
  font-size: 0.8rem;
  font-weight: 600;
}
.footer a:hover {
  color: var(--gold-light);
}
.copyright {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(196, 154, 69, 0.14);
  text-align: center;
  color: rgba(251, 241, 215, 0.4);
  font-size: 0.7rem;
}
.mobile-conversion {
  display: none;
}

.variant-selector {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--ink);
  color: var(--cream);
}
.selector-card {
  width: min(760px, 100%);
  padding: 40px;
  border: 1px solid rgba(196, 154, 69, 0.48);
  border-radius: 28px;
  background: var(--ink-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  text-align: center;
}
.selector-card img {
  width: 135px;
  margin: 0 auto 15px;
}
.selector-card h1 {
  margin: 0;
  color: var(--gold-light);
  font-size: 2.3rem;
}
.selector-card p {
  color: rgba(251, 241, 215, 0.66);
  line-height: 1.9;
}
.selector-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 26px;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: grid;
  }
  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(196, 154, 69, 0.16);
    background: var(--ink);
    transition: max-height 0.3s;
  }
  .mobile-menu.open {
    max-height: 560px;
  }
  .mobile-menu-inner {
    width: var(--container);
    margin: auto;
    padding: 10px 0 16px;
    display: grid;
  }
  .mobile-menu a {
    padding: 11px 10px;
    border-radius: 10px;
    color: rgba(251, 241, 215, 0.8);
    font-size: 0.85rem;
    font-weight: 800;
  }
  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-light);
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .hero-frame {
    height: 520px;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
body[data-variant="A"] .hero-product-slider {
  display: none;
}
@media (max-width: 790px) {
  html {
    scroll-padding-top: 120px;
  }
  body {
    padding-bottom: 74px;
  }
  body[data-variant="A"] .hero-glow,
  body[data-variant="B"] .hero-glow {
    display: none !important;
  }
  .announcement {
    height: 42px;
    font-size: 0.75rem;
  }
  .site-header {
    top: 42px;
  }
  .header-inner {
    height: 69px;
  }
  .brand img {
    width: 92px;
    height: 62px;
  }
  .brand small,
  .header-actions > .btn {
    display: none;
  }
  .experience-hero:before {
    background:
      linear-gradient(180deg, rgba(16, 10, 4, 0.92), rgba(16, 10, 4, 0.99) 68%),
      url("hero-bg.jpg") center/cover;
  }
  .hero-grid,
  .standard-hero .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 52px 0 38px;
  }
  .hero-copy {
    text-align: center;
  }
  .experience-hero h1 {
    font-size: clamp(2.55rem, 11vw, 4.15rem);
  }
  .hero-lead {
    margin: auto;
    font-size: 0.98rem;
  }
  .hero-actions,
  .hero-meta {
    justify-content: center;
  }
  .hero-visual {
    min-height: auto;
    margin-top: 8px;
  }
  .hero-frame {
    width: min(100%, 430px);
    height: 470px;
    border-radius: 30px 30px 90px 30px;
    transform: none;
  }
  .hero-card {
    right: 9px;
    bottom: 15px;
  }
  .hero-seal {
    top: 24px;
    left: 7px;
    width: 96px;
    height: 96px;
  }
  .standard-steps {
    text-align: right;
  }
  .quick-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-trust-item {
    justify-content: flex-start;
    padding: 16px 13px;
    border-bottom: 1px solid rgba(196, 154, 69, 0.15);
  }
  .quick-trust-item:nth-child(2) {
    border-left: 0;
  }
  .standard-section-grid,
  .guarantee-grid,
  .oils-grid,
  .video-grid,
  .location-grid,
  .customer-banner {
    grid-template-columns: 1fr;
  }
  .guarantee-grid {
    gap: 38px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .customer-number {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .oils-visual {
    order: 2;
  }
  .oils-visual img {
    height: 510px;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 390px;
  }
  .mobile-conversion {
    position: fixed;
    inset: auto 0 0;
    z-index: 100;
    display: flex;
    gap: 8px;
    padding: 10px max(12px, env(safe-area-inset-right))
      calc(10px + env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
    border-top: 1px solid rgba(196, 154, 69, 0.32);
    background: rgba(16, 10, 4, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.22);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }
  .mobile-conversion.delayed {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-conversion.delayed.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-conversion .btn {
    min-height: 48px;
    flex: 1;
    padding-inline: 10px;
    font-size: 0.82rem;
  }
  .mobile-conversion .btn-whatsapp {
    flex: 0 0 52px;
    padding: 0;
  }
}
@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }
  .section {
    padding: 65px 0;
  }
  .section-head {
    margin-bottom: 31px;
  }
  .section-head h2 {
    font-size: 1.78rem;
  }
  .hero-grid,
  .standard-hero .hero-grid {
    padding-top: 43px;
  }
  .hero-badge {
    font-size: 0.7rem;
  }
  .experience-hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-meta {
    display: grid;
    justify-items: center;
    gap: 8px;
  }
  .hero-frame {
    height: 420px;
  }
  .hero-card {
    right: 9px;
    left: 9px;
    max-width: none;
    text-align: right;
  }
  .hero-seal {
    width: 84px;
    height: 84px;
    font-size: 0.58rem;
  }
  .standard-step {
    padding: 72px 18px 18px;
  }
  .standard-step .step-no {
    right: 18px;
  }
  .button-row {
    display: grid;
  }
  .button-row .btn {
    width: 100%;
  }
  .category-card {
    min-height: 400px;
  }
  .category-content {
    padding: 23px;
  }
  .customer-banner {
    padding: 24px;
  }
  .reviews-grid,
  .origin-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    min-height: auto;
  }
  .oils-visual img {
    height: 420px;
  }
  .video-placeholder {
    min-height: 370px;
  }
  .video-player-card {
    padding: 8px;
    border-radius: 24px;
  }
  .video-frame {
    border-radius: 18px;
  }
  .video-caption {
    padding: 13px 8px 6px;
  }
  .video-caption-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .location-card {
    padding: 24px;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 340px;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-grid {
    gap: 29px;
  }
  .selector-links {
    grid-template-columns: 1fr;
  }
  .selector-card {
    padding: 29px 20px;
  }
  .selector-card h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 790px) {
  body[data-variant="A"] {
    --container: min(100% - 32px, 1180px);
    padding-bottom: 72px;
  }
  body[data-variant="A"] .announcement {
    height: 42px;
    font-size: 0.75rem;
  }
  body[data-variant="A"] .header-inner {
    height: 62px;
  }
  body[data-variant="A"] .brand img {
    width: 88px;
    height: 56px;
  }
  body[data-variant="A"] .icon-btn {
    width: 44px;
    height: 44px;
  }
  body[data-variant="A"] .mobile-menu {
    max-height: 0;
    overflow-y: auto;
  }
  body[data-variant="A"] .mobile-menu.open {
    max-height: calc(100dvh - 62px);
  }
  body[data-variant="A"] .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  body[data-variant="A"] .section,
  body[data-variant="A"] .location {
    padding: 48px 0;
  }
  body[data-variant="A"] .eyebrow {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  body[data-variant="A"] .btn {
    min-height: 50px;
    padding: 11px 18px;
    font-size: 0.9375rem;
  }
  body[data-variant="A"] .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }
  body[data-variant="A"] .button-row .btn {
    width: 100%;
  }
  body[data-variant="A"] .section-head {
    max-width: none;
    margin-bottom: 26px;
    text-align: right;
  }
  body[data-variant="A"] .section-head h2,
  body[data-variant="A"] .guarantee-copy h2,
  body[data-variant="A"] .customer-copy h2,
  body[data-variant="A"] .oils-copy h2,
  body[data-variant="A"] .video-copy h2,
  body[data-variant="A"] .location-card h2 {
    margin: 9px 0 12px;
    font-size: clamp(1.625rem, 7vw, 1.875rem);
    line-height: 1.3;
  }
  body[data-variant="A"] .section-head p,
  body[data-variant="A"] .guarantee-copy > p,
  body[data-variant="A"] .oils-copy > p,
  body[data-variant="A"] .video-copy > p,
  body[data-variant="A"] .location-card > p {
    font-size: 1rem;
    line-height: 1.75;
  }

  body[data-variant="A"] .hero-grid,
  body[data-variant="A"] .standard-hero .hero-grid {
    gap: 24px;
    padding: 32px 0 40px;
  }
  body[data-variant="A"] .hero-copy {
    text-align: center;
  }
  body[data-variant="A"] .hero-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  body[data-variant="A"] .experience-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.125rem, 9vw, 2.375rem);
    line-height: 1.18;
  }
  body[data-variant="A"] .hero-product-slider {
    display: block;
    width: calc(100% + 32px);
    margin: 4px -16px 24px;
    direction: rtl;
  }
  body[data-variant="A"] .hero-product-slider-title {
    margin: 0 16px 10px;
    color: #f0d69c;
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  body[data-variant="A"] .hero-product-slider-stage {
    position: relative;
    height: 366px;
    isolation: isolate;
  }
  body[data-variant="A"] .hero-product-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 900px;
    touch-action: pan-y;
    cursor: grab;
    outline: none;
  }
  body[data-variant="A"] .hero-product-slider-track:active {
    cursor: grabbing;
  }
  body[data-variant="A"] .hero-product-slider-track:focus-visible {
    outline: 2px solid #d8b56a;
    outline-offset: -4px;
    border-radius: 24px;
  }
  body[data-variant="A"] .hero-product-slide {
    position: absolute;
    top: 8px;
    left: 50%;
    z-index: 0;
    width: clamp(236px, 72vw, 290px);
    height: clamp(310px, 82vw, 350px);
    overflow: hidden;
    border: 1px solid rgba(224, 188, 111, 0.28);
    border-radius: 24px;
    background: #17110b;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.72);
    transform-style: preserve-3d;
    transition:
      left 0.48s cubic-bezier(0.2, 0.75, 0.25, 1),
      transform 0.48s cubic-bezier(0.2, 0.75, 0.25, 1),
      opacity 0.38s ease,
      filter 0.38s ease,
      box-shadow 0.38s ease;
    will-change: left, transform, opacity;
  }
  body[data-variant="A"] .hero-product-slide::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(8, 5, 3, 0.04) 24%,
      rgba(8, 5, 3, 0.34) 56%,
      rgba(8, 5, 3, 0.96) 100%
    );
    content: "";
  }
  body[data-variant="A"] .hero-product-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body[data-variant="A"] .hero-product-slide.is-active {
    left: 50%;
    z-index: 5;
    opacity: 1;
    filter: none;
    pointer-events: auto;
    transform: translateX(-50%) rotateY(0) scale(1);
    box-shadow:
      0 20px 42px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(237, 199, 117, 0.12);
  }
  body[data-variant="A"] .hero-product-slide.is-previous {
    left: 83%;
    z-index: 3;
    opacity: 0.58;
    filter: blur(1px);
    transform: translateX(-50%) rotateY(-5deg) scale(0.86);
  }
  body[data-variant="A"] .hero-product-slide.is-next {
    left: 17%;
    z-index: 3;
    opacity: 0.58;
    filter: blur(1px);
    transform: translateX(-50%) rotateY(5deg) scale(0.86);
  }
  body[data-variant="A"] .hero-product-slide.is-far-previous {
    left: 105%;
    z-index: 1;
    opacity: 0.16;
    filter: blur(2px);
    transform: translateX(-50%) rotateY(-7deg) scale(0.74);
  }
  body[data-variant="A"] .hero-product-slide.is-far-next {
    left: -5%;
    z-index: 1;
    opacity: 0.16;
    filter: blur(2px);
    transform: translateX(-50%) rotateY(7deg) scale(0.74);
  }
  body[data-variant="A"] .hero-product-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 18px;
    text-align: right;
  }
  body[data-variant="A"] .hero-product-slide-content > span {
    margin-bottom: 8px;
    padding: 5px 9px;
    border: 1px solid rgba(239, 205, 135, 0.42);
    border-radius: 999px;
    background: rgba(16, 10, 6, 0.7);
    color: #f0d69c;
    font-size: 0.6875rem;
    font-weight: 800;
    line-height: 1.5;
    backdrop-filter: blur(7px);
  }
  body[data-variant="A"] .hero-product-slide-content > strong {
    max-width: 100%;
    color: #fff8ea;
    font-size: 1.2rem;
    line-height: 1.4;
    text-wrap: balance;
  }
  body[data-variant="A"] .hero-product-slide-content > a {
    display: inline-flex;
    min-width: 136px;
    min-height: 44px;
    margin-top: 13px;
    padding: 9px 14px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 248, 234, 0.68);
    border-radius: 999px;
    background: rgba(17, 10, 5, 0.72);
    color: #fff8ea;
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1.5;
    backdrop-filter: blur(8px);
  }
  body[data-variant="A"] .hero-product-slide-content > a:focus-visible {
    outline: 3px solid #f2c66d;
    outline-offset: 3px;
  }
  body[data-variant="A"] .hero-product-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(238, 202, 125, 0.5);
    border-radius: 50%;
    background: rgba(24, 15, 8, 0.86);
    color: #f4d58f;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
    transform: translateY(-50%);
    backdrop-filter: blur(9px);
  }
  body[data-variant="A"] .hero-product-slider-arrow--previous {
    right: 8px;
  }
  body[data-variant="A"] .hero-product-slider-arrow--next {
    left: 8px;
  }
  body[data-variant="A"] .hero-product-slider-arrow:focus-visible {
    outline: 3px solid #f2c66d;
    outline-offset: 3px;
  }
  body[data-variant="A"] .hero-product-slider-meta {
    display: flex;
    margin: -2px 16px 0;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: rgba(255, 248, 234, 0.72);
    font-size: 0.75rem;
    line-height: 1.5;
  }
  body[data-variant="A"] .hero-product-slider-meta span:first-child {
    min-width: 48px;
    padding: 4px 8px;
    border: 1px solid rgba(224, 188, 111, 0.28);
    border-radius: 999px;
    color: #f0d69c;
    font-variant-numeric: tabular-nums;
  }
  body[data-variant="A"] .hero-product-slider-meta span + span::before {
    margin-left: 9px;
    color: rgba(240, 214, 156, 0.55);
    content: "•";
  }
  body[data-variant="A"] .hero-lead,
  body[data-variant="A"] .standard-hero .standard-lead {
    font-size: 1rem;
    line-height: 1.75;
  }
  body[data-variant="A"] .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 22px;
  }
  body[data-variant="A"] .hero-actions .btn {
    width: 100%;
  }
  body[data-variant="A"] .standard-steps {
    gap: 12px;
    margin-top: 20px;
    text-align: right;
  }
  body[data-variant="A"] .standard-step {
    padding: 18px;
    border-radius: 16px;
  }
  body[data-variant="A"] .standard-step-head {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  body[data-variant="A"] .standard-step .step-no {
    position: static;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
  }
  body[data-variant="A"] .standard-step h2 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  body[data-variant="A"] .standard-step p {
    margin-top: 10px;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  body[data-variant="A"] .standard-closing {
    margin: 15px 0 0;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  body[data-variant="A"] .hero-visual {
    min-height: 0;
    margin-top: 0;
  }
  body[data-variant="A"] .hero-frame {
    width: 100%;
    height: clamp(300px, 82vw, 330px);
    border-radius: 24px 24px 68px 24px;
  }
  body[data-variant="A"] .hero-seal {
    top: 14px;
    left: 8px;
    width: 72px;
    height: 72px;
    font-size: 0.52rem;
  }
  body[data-variant="A"] .hero-seal b {
    font-size: 0.85rem;
  }
  body[data-variant="A"] .hero-card {
    right: 9px;
    left: 9px;
    bottom: 9px;
    max-width: none;
    padding: 12px 14px;
    text-align: right;
  }
  body[data-variant="A"] .hero-card strong {
    font-size: 0.9375rem;
  }
  body[data-variant="A"] .hero-card span {
    font-size: 0.75rem;
    line-height: 1.55;
  }

  body[data-variant="A"] .guarantee-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  body[data-variant="A"] .guarantee-copy {
    display: contents;
  }
  body[data-variant="A"] .guarantee-copy .eyebrow {
    order: 1;
  }
  body[data-variant="A"] .guarantee-copy h2 {
    order: 2;
  }
  body[data-variant="A"] .guarantee-copy > p {
    order: 3;
  }
  body[data-variant="A"] .guarantee-art {
    order: 4;
    margin-top: 22px;
    border-radius: 24px;
  }
  body[data-variant="A"] .guarantee-copy .emphasis {
    order: 5;
    margin: 20px 0;
    padding: 15px 17px;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  body[data-variant="A"] .guarantee-copy .button-row {
    order: 6;
  }

  body[data-variant="A"] .customer-banner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 14px;
    padding: 20px;
    border-radius: 22px;
  }
  body[data-variant="A"] .customer-copy {
    order: 1;
    text-align: right;
  }
  body[data-variant="A"] .customer-copy p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  body[data-variant="A"] .customer-number {
    order: 2;
    width: 100%;
    padding: 18px 12px 4px;
    border-left: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }
  body[data-variant="A"] .customer-number strong {
    font-size: 3rem;
  }
  body[data-variant="A"] .customer-number span {
    font-size: 1rem;
  }
  body[data-variant="A"] .reviews-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1.5;
  }
  body[data-variant="A"] .reviews-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 320px);
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-padding-inline: 2px;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(143, 100, 28, 0.1);
  }
  body[data-variant="A"] .review-card {
    min-height: 240px;
    padding: 18px;
    border-radius: 20px;
    scroll-snap-align: start;
  }
  body[data-variant="A"] .stars {
    font-size: 0.875rem;
  }
  body[data-variant="A"] .review-card blockquote {
    margin: 15px 0 20px;
    font-size: 1rem;
    line-height: 1.75;
  }
  body[data-variant="A"] .reviewer strong {
    font-size: 0.9375rem;
  }
  body[data-variant="A"] .reviewer small {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  body[data-variant="A"] .category-grid {
    gap: 16px;
  }
  body[data-variant="A"] .category-card {
    min-height: 0;
    border-radius: 22px;
    background: var(--ink-2);
  }
  body[data-variant="A"] .category-card:before {
    display: none;
  }
  body[data-variant="A"] .category-card img {
    position: static;
    width: 100%;
    height: 445px;
    object-fit: cover;
  }
  body[data-variant="A"] .category-content {
    position: static;
    padding: 20px;
    background: var(--ink-2);
  }
  body[data-variant="A"] .category-content h3 {
    margin: 11px 0 7px;
    font-size: 1.375rem;
    line-height: 1.4;
  }
  body[data-variant="A"] .category-content p {
    margin-bottom: 15px;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  body[data-variant="A"] .category-content .btn {
    width: 100%;
  }
  body[data-variant="A"] .category-note {
    margin-top: 16px;
    padding: 14px 16px;
    font-size: 0.875rem;
    line-height: 1.7;
  }

  body[data-variant="A"] .oils-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  body[data-variant="A"] .oils-copy {
    display: contents;
  }
  body[data-variant="A"] .oils-copy > .eyebrow {
    order: 1;
  }
  body[data-variant="A"] .oils-copy > h2 {
    order: 2;
  }
  body[data-variant="A"] .oils-copy > p {
    order: 3;
  }
  body[data-variant="A"] .oils-visual {
    order: 4;
    width: 100%;
    margin-top: 22px;
  }
  body[data-variant="A"] .oils-visual img {
    height: 300px;
    border-radius: 24px;
  }
  body[data-variant="A"] .oils-badge {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 12px 14px;
    font-size: 0.75rem;
    line-height: 1.6;
  }
  body[data-variant="A"] .origin-grid {
    order: 5;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }
  body[data-variant="A"] .origin {
    padding: 12px;
  }
  body[data-variant="A"] .origin strong {
    font-size: 0.875rem;
    line-height: 1.45;
  }
  body[data-variant="A"] .origin span {
    font-size: 0.75rem;
    line-height: 1.6;
  }
  body[data-variant="A"] .oils-copy .button-row {
    order: 6;
    margin-top: 20px;
  }

  body[data-variant="A"] .video-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  body[data-variant="A"] .video-copy {
    display: contents;
  }
  body[data-variant="A"] .video-copy > .eyebrow {
    order: 1;
  }
  body[data-variant="A"] .video-copy > h2 {
    order: 2;
  }
  body[data-variant="A"] .video-copy > p {
    order: 3;
  }
  body[data-variant="A"] .video-player-card {
    order: 4;
    width: 100%;
    margin-top: 22px;
  }
  body[data-variant="A"] .experience-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }
  body[data-variant="A"] .experience-icon svg {
    width: 28px;
    height: 28px;
  }
  body[data-variant="A"] .video-center strong {
    font-size: 1.125rem;
    line-height: 1.45;
  }
  body[data-variant="A"] .video-center > div > span:not(.experience-icon) {
    font-size: 0.875rem;
    line-height: 1.65;
  }
  body[data-variant="A"] .video-points {
    order: 5;
    margin: 20px 0;
  }
  body[data-variant="A"] .video-point {
    min-height: 48px;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  body[data-variant="A"] .video-copy .button-row {
    order: 6;
  }

  body[data-variant="A"] .location-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  body[data-variant="A"] .location-card {
    display: contents;
  }
  body[data-variant="A"] .location-card > .eyebrow {
    order: 1;
  }
  body[data-variant="A"] .location-card > h2 {
    order: 2;
  }
  body[data-variant="A"] .location-card > p {
    order: 3;
  }
  body[data-variant="A"] .map-wrap {
    order: 4;
    height: 280px;
    min-height: 280px;
    margin-top: 22px;
    border-radius: 22px;
  }
  body[data-variant="A"] .map-wrap iframe {
    height: 280px;
    min-height: 280px;
  }
  body[data-variant="A"] .contact-list {
    order: 5;
    margin: 20px 0;
  }
  body[data-variant="A"] .contact-item {
    min-height: 48px;
    font-size: 0.875rem;
    overflow-wrap: anywhere;
  }
  body[data-variant="A"] .location-card .button-row {
    order: 6;
  }

  body[data-variant="A"] .footer {
    padding: 40px 0 28px;
  }
  body[data-variant="A"] .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
  body[data-variant="A"] .footer-about {
    grid-column: 1 / -1;
    order: 1;
  }
  body[data-variant="A"] .footer-shop {
    order: 2;
  }
  body[data-variant="A"] .footer-links {
    order: 3;
  }
  body[data-variant="A"] .footer-logo {
    width: 120px;
    height: 64px;
  }
  body[data-variant="A"] .footer p {
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.7;
  }
  body[data-variant="A"] .footer h3 {
    margin-bottom: 12px;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
  body[data-variant="A"] .footer ul {
    gap: 8px;
    font-size: 0.8125rem;
    line-height: 1.55;
  }
  body[data-variant="A"] .footer a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
  body[data-variant="A"] .copyright {
    margin-top: 28px;
    padding-top: 18px;
    font-size: 0.6875rem;
    line-height: 1.6;
  }
  body[data-variant="A"] .mobile-conversion {
    gap: 8px;
    padding: 8px max(12px, env(safe-area-inset-right))
      calc(8px + env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
  }
}
@media (max-width: 790px) {
  body[data-variant="A"] .hero-visual,
  body[data-variant="B"] .hero-visual {
    display: none !important;
  }
  body[data-variant="A"] .map-wrap iframe,
  body[data-variant="B"] .map-wrap iframe {
    height: 100%;
    min-height: 0;
  }
}
@media (max-width: 360px) {
  body[data-variant="A"] .hero-product-slider-stage {
    height: 344px;
  }
  body[data-variant="A"] .hero-product-slide {
    width: clamp(226px, 72vw, 250px);
    height: 328px;
  }
  body[data-variant="A"] .hero-product-slide.is-previous {
    opacity: 0.42;
  }
  body[data-variant="A"] .hero-product-slide.is-next {
    opacity: 0.42;
  }
  body[data-variant="A"] .hero-product-slide.is-far-previous,
  body[data-variant="A"] .hero-product-slide.is-far-next {
    opacity: 0;
  }
  body[data-variant="A"] .footer-grid {
    grid-template-columns: 1fr;
  }
  body[data-variant="A"] .footer-about {
    grid-column: auto;
  }
}
@media (hover: none), (pointer: coarse) {
  #fluid {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  #fluid {
    display: none;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .video-play-button::before {
    opacity: 0.34;
    transform: scale(1.16);
    animation: none;
  }
  .announcement {
    overflow-x: auto;
  }
  .announcement-track {
    animation: none;
    transform: none;
    will-change: auto;
  }
  .announcement-item {
    min-width: max-content;
  }
  .announcement-item + .announcement-item {
    display: none;
  }
}
