:root {
  --frost-white: #f6f8f8;
  --glacier-blue: #dce9ed;
  --mineral-silver: #aebbc1;
  --graphite: #182126;
  --champagne: #b79a62;
  --ink-soft: #4d5b61;
  --line: rgba(24, 33, 38, 0.14);
  --white-line: rgba(246, 248, 248, 0.2);
  --shadow: 0 8px 24px rgba(24, 33, 38, 0.12);
  --radius: 4px;
  --code-bar-height: 56px;
  --national-green: #168542;
  --national-red: #b42637;
  --serif: "Italiana", Georgia, serif;
  --arabic: "Alexandria", Tahoma, sans-serif;
  --numbers: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(42px + var(--code-bar-height));
  background: var(--frost-white);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--frost-white);
  color: var(--graphite);
  font-family: var(--arabic);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--champagne);
  content: "";
  pointer-events: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 5px;
}

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

figure,
h1,
h2,
h3,
p {
  margin: 0;
}

.page-shell {
  padding-top: calc(42px + var(--code-bar-height));
}

.mobile-sticky-cta {
  display: none;
}

.scarcity-bar {
  position: fixed;
  z-index: 40;
  top: 3px;
  right: 0;
  left: 0;
  height: 39px;
  overflow: hidden;
  background: var(--graphite);
  color: var(--frost-white);
  font-family: var(--numbers);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.scarcity-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  height: 100%;
  align-items: center;
  animation: ticker 43s linear infinite;
  white-space: nowrap;
}

.scarcity-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 40px;
  padding-inline: 22px;
}

.scarcity-set span {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.scarcity-set span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
  content: "";
}

.national-code-bar {
  position: fixed;
  z-index: 39;
  top: 42px;
  right: 0;
  left: 0;
  display: flex;
  height: var(--code-bar-height);
  min-height: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  padding: 6px 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(8, 63, 32, 0.85);
  background: var(--national-green);
  box-shadow: 0 4px 16px rgba(24, 33, 38, 0.16);
  color: var(--frost-white);
  font-family: var(--arabic);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}

.national-code-arrow {
  position: relative;
  z-index: 2;
  display: block;
  flex: 0 1 clamp(160px, 26vw, 405px);
  width: auto;
  height: calc(var(--code-bar-height) - 12px);
  max-width: clamp(160px, 26vw, 405px);
  object-fit: contain;
  transform: scale(0.5);
}

.national-code-arrow-left {
  transform: rotate(180deg) scale(0.5);
}

.national-code-bar::before {
  position: absolute;
  z-index: 0;
  top: 9px;
  right: 0;
  bottom: 9px;
  left: 0;
  background-color: var(--national-red);
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(91, 10, 22, 0.18), transparent 28%, transparent 72%, rgba(91, 10, 22, 0.18));
  content: "";
  pointer-events: none;
}

.national-code-bar::after {
  position: absolute;
  z-index: 1;
  top: 9px;
  right: 0;
  bottom: 9px;
  left: 0;
  background:
    repeating-linear-gradient(90deg, var(--national-green) 0 12px, transparent 12px 28px) top / 100% 8px no-repeat,
    repeating-linear-gradient(90deg, var(--national-green) 0 12px, transparent 12px 28px) bottom / 100% 8px no-repeat;
  content: "";
  pointer-events: none;
}

.national-code-label {
  position: relative;
  z-index: 2;
  flex: 0 1 auto;
  display: inline-block;
  width: max-content;
  max-width: none;
  padding: 2px 14px;
  background: var(--national-red);
  text-shadow: 0 1px 0 rgba(91, 10, 22, 0.65);
  text-align: center;
  text-wrap: balance;
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(25%);
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .national-code-bar {
    gap: 10px;
    padding-inline: 12px;
  }

  .national-code-arrow {
    flex-basis: clamp(96px, 16vw, 176px);
    max-width: clamp(96px, 16vw, 176px);
    height: 32px;
  }

  .national-code-label {
    width: fit-content;
    max-width: 50%;
    font-size: 11px;
    line-height: 1.45;
    white-space: normal;
  }
}

@keyframes heroBreathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes frostSheen {
  0%,
  22% {
    opacity: 0;
    transform: translateX(-85%) rotate(5deg);
  }

  38% {
    opacity: 0.62;
  }

  56%,
  100% {
    opacity: 0;
    transform: translateX(85%) rotate(5deg);
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(-4%, -2%, 0) scale(1);
  }

  50% {
    transform: translate3d(8%, 5%, 0) scale(1.12);
  }
}

@keyframes imageDrift {
  0%,
  100% {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.04) translate3d(0, -8px, 0);
  }
}

@keyframes markerPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(183, 154, 98, 0);
  }

  45% {
    box-shadow: 0 0 0 9px rgba(183, 154, 98, 0.12);
  }
}

@keyframes cardGlow {
  0%,
  100% {
    box-shadow: var(--shadow);
  }

  50% {
    box-shadow: 0 10px 28px rgba(24, 33, 38, 0.15);
  }
}

@keyframes ringDrift {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.14) rotate(12deg);
  }
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1602 / 641;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--frost-white), var(--glacier-blue));
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 1.1s ease, visibility 1.1s ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease, filter 1.2s ease;
}

.hero-slide.is-active img {
  animation: heroBreathe 9s ease-out both;
}

.hero::before {
  position: absolute;
  z-index: 2;
  inset: -35% -25%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.38) 49%, transparent 58%);
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-85%) rotate(5deg);
  animation: frostSheen 12s ease-in-out infinite;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(24, 33, 38, 0.12), transparent);
  content: "";
  pointer-events: none;
}

.hero-indicators {
  position: absolute;
  z-index: 8;
  right: 50%;
  bottom: 18px;
  display: flex;
  direction: rtl;
  align-items: center;
  gap: 8px;
  transform: translateX(50%);
}

.hero-indicator {
  width: 20px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #edf0f2;
  cursor: pointer;
  transition: background-color 220ms ease;
}

.hero-indicator.is-active {
  background: #c3a369;
}

.hero-indicator:focus-visible {
  outline: 2px solid #c3a369;
  outline-offset: 3px;
}

.hero-glass-line {
  position: absolute;
  z-index: 1;
  right: 5vw;
  bottom: 4vw;
  left: 5vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.tamara-badge {
  display: block;
  width: 72px;
  height: 32px;
  object-fit: contain;
}

.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: var(--frost-white);
}

.site-nav {
  position: relative;
  display: grid;
  max-width: 1600px;
  min-height: 78px;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 78px);
  direction: rtl;
}

.site-nav > .brand-lockup {
  grid-column: 1;
  justify-self: start;
}

.nav-panel {
  display: contents;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
}

.nav-order {
  grid-column: 3;
  justify-self: end;
}

.site-nav > .menu-toggle {
  grid-column: 3;
  justify-self: end;
}

.brand-lockup {
  display: block;
  width: 76px;
  min-width: 76px;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.brand-arabic {
  color: var(--champagne);
  font-family: var(--arabic);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-latin {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.15em;
}

.brand-edition {
  margin-top: 4px;
  color: var(--champagne);
  font-family: var(--numbers);
  font-size: 8px;
  letter-spacing: 0.28em;
}

.nav-panel {
  display: contents;
  align-items: center;
  gap: clamp(20px, 3.2vw, 56px);
  border-radius: var(--radius);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 38px);
  color: var(--graphite);
  font-size: 11px;
}

.nav-links a {
  position: relative;
  padding-block: 4px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  content: "";
  transition: width 250ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-order,
.primary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 20px;
  border: 1px solid var(--graphite);
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--frost-white);
  font-size: 11px;
  box-shadow: var(--shadow);
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.nav-order:hover,
.nav-order:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--graphite);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(24, 33, 38, 0.32);
  border-radius: 50%;
  background: rgba(246, 248, 248, 0.65);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: var(--graphite);
}

.section {
  position: relative;
  padding: clamp(86px, 10vw, 156px) clamp(22px, 7vw, 120px);
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.section-number {
  padding-top: 5px;
  color: var(--champagne);
  font-family: var(--numbers);
  font-size: 14px;
  letter-spacing: 0.15em;
}

.section-kicker {
  display: block;
  color: var(--champagne);
  font-family: var(--numbers);
  font-size: 10px;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  margin-top: 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1.2;
}

.section-lead {
  max-width: 550px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 20px);
}

.feature-section {
  overflow: hidden;
  background: var(--frost-white);
}

.feature-section::before,
.journey-section::before,
.signature-section::before {
  position: absolute;
  z-index: 0;
  top: -18%;
  left: -12%;
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 154, 98, 0.14), transparent 68%);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  animation: ambientFloat 16s ease-in-out infinite;
}

.feature-section > *,
.journey-section > *,
.signature-section > * {
  position: relative;
  z-index: 1;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 6vw, 100px);
  margin-top: 70px;
  direction: ltr;
}

.feature-image {
  position: relative;
  overflow: hidden;
  height: clamp(560px, 42vw, 820px);
  min-height: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image::after,
.journey-image::after,
.signature-image::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  pointer-events: none;
}

.feature-image img,
.journey-image img,
.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: imageDrift 15s ease-in-out infinite;
  transition: transform 900ms ease, filter 900ms ease, opacity 700ms ease;
}

@media (hover: hover) {
  .feature-image:hover img,
  .journey-image:hover img,
  .signature-image:hover img {
    animation-play-state: paused;
    filter: saturate(1.04) contrast(1.01);
    opacity: 0.92;
    transform: scale(1.035);
  }
}

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

.feature-cards .section-cta {
  grid-column: 1 / -1;
}

.feature-card {
  min-height: 250px;
  padding: 26px 22px;
  border: 1px solid rgba(174, 187, 193, 0.75);
  border-radius: var(--radius);
  background: rgba(246, 248, 248, 0.74);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-3deg);
  animation: cardGlow 8s ease-in-out infinite;
  transition: background 350ms ease, box-shadow 350ms ease, transform 350ms ease;
}

.feature-card:nth-child(2) {
  animation-delay: -2s;
}

.feature-card:nth-child(3) {
  animation-delay: -4s;
}

.feature-card:nth-child(4) {
  animation-delay: -6s;
}

.feature-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
  animation: none;
  transform: perspective(900px) translateY(-7px) rotateY(0deg);
}

.feature-card-offset {
  transform: perspective(900px) rotateY(3deg) translateY(32px);
}

.feature-card-offset:hover {
  transform: perspective(900px) translateY(25px) rotateY(0deg);
}

.card-index {
  display: block;
  margin-bottom: 35px;
  color: var(--champagne);
  font-family: var(--numbers);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.feature-card h2 {
  max-width: 230px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.feature-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.9;
}

.journey-section {
  overflow: hidden;
  background: linear-gradient(135deg, var(--glacier-blue), var(--frost-white) 55%);
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
}

.scent-timeline {
  position: relative;
  margin-top: 48px;
}

.scent-timeline::before {
  position: absolute;
  top: 11px;
  right: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(var(--champagne), rgba(183, 154, 98, 0.12));
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 22px;
  min-height: 146px;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--champagne);
  border-radius: var(--radius);
  background: var(--glacier-blue);
  color: var(--champagne);
  font-family: var(--numbers);
  font-size: 10px;
  box-shadow: var(--shadow);
}

.timeline-marker::after {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(183, 154, 98, 0.35);
  content: "";
  pointer-events: none;
  animation: markerPulse 3.6s ease-out infinite;
}

.timeline-item:nth-child(2) .timeline-marker::after {
  animation-delay: 1.2s;
}

.timeline-item:nth-child(3) .timeline-marker::after {
  animation-delay: 2.4s;
}

.timeline-item h3 {
  font-size: 18px;
  font-weight: 500;
}

.timeline-item p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.journey-closing {
  max-width: 500px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  font-size: 15px;
}

.journey-image {
  position: relative;
  height: clamp(560px, 64vw, 780px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signature-section {
  overflow: hidden;
  background: var(--graphite);
  color: var(--frost-white);
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(400px, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(44px, 8vw, 140px);
}

.signature-image {
  position: relative;
  height: clamp(520px, 60vw, 760px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signature-image::after {
  border-color: rgba(246, 248, 248, 0.42);
}

.section-heading-light .section-number,
.section-heading-light .section-kicker {
  color: var(--champagne);
}

.signature-subtitle {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(246, 248, 248, 0.78);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.9;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 16px;
  padding: 21px 0;
  border-bottom: 1px solid var(--white-line);
}

.spec-list li:first-child {
  border-top: 1px solid var(--white-line);
}

.spec-list li span {
  color: var(--champagne);
  font-family: var(--numbers);
  font-size: 10px;
}

.spec-list strong {
  font-size: 15px;
  font-weight: 400;
}

.proof-section {
  background: var(--frost-white);
}

.centered-heading {
  justify-content: center;
  text-align: center;
}

.centered-heading .section-number {
  padding-top: 8px;
}

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

.review-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.review-card:hover {
  border-color: rgba(183, 154, 98, 0.75);
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.review-mark {
  display: block;
  height: 42px;
  color: var(--champagne);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.review-card p {
  min-height: 82px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  font-family: var(--numbers);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.4fr) minmax(0, 1.6fr);
  gap: clamp(34px, 7vw, 110px);
  margin-top: 120px;
}

.faq-intro h2 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-radius: var(--radius);
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--graphite);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  text-align: right;
}

.faq-symbol {
  display: grid;
  min-width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--mineral-silver);
  border-radius: 50%;
  color: var(--champagne);
  font-family: var(--numbers);
  font-size: 16px;
  line-height: 1;
  transition: transform 250ms ease, background 250ms ease;
}

.faq-question[aria-expanded="true"] .faq-symbol {
  background: var(--champagne);
  color: var(--graphite);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 44px 24px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2.1;
}

.cta-panel {
  position: relative;
  max-width: 960px;
  margin: 120px auto 0;
  padding: clamp(42px, 7vw, 92px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--frost-white);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(183, 154, 98, 0.3);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.cta-panel::before {
  top: -120px;
  right: -70px;
  animation: ringDrift 11s ease-in-out infinite;
}

.cta-panel::after {
  bottom: -130px;
  left: -60px;
  animation: ringDrift 13s ease-in-out infinite reverse;
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 28px auto 0;
  color: rgba(246, 248, 248, 0.8);
  font-size: 13px;
  line-height: 2.1;
}

.cta-copy p + p {
  margin-top: 7px;
}

.cta-checkout-trigger {
  min-width: 200px;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-actions .primary-button {
  min-width: 200px;
}

.cta-tamara-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tamara-button-logo {
  display: block;
  width: 72px;
  height: 32px;
  object-fit: contain;
}

.primary-button {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--graphite);
}

.primary-button:hover,
.primary-button:focus-visible {
  border-color: var(--frost-white);
  background: var(--frost-white);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 68px);
}

.section-cta .section-order-button {
  min-width: 250px;
  min-height: 58px;
  margin-top: 0;
  padding-inline: 28px;
  font-size: 13px;
}

.info-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 140px);
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 92px) clamp(72px, 9vw, 128px);
  background:
    radial-gradient(circle at 12% 12%, rgba(183, 154, 98, 0.12), transparent 25%),
    linear-gradient(135deg, var(--frost-white), var(--glacier-blue));
}

.info-page::before,
.info-page::after {
  position: absolute;
  border: 1px solid rgba(183, 154, 98, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.info-page::before {
  top: -180px;
  right: -140px;
  width: 420px;
  height: 420px;
}

.info-page::after {
  bottom: -220px;
  left: -170px;
  width: 500px;
  height: 500px;
}

.info-page-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
}

.info-page-kicker {
  margin-bottom: 18px;
  color: var(--champagne);
  font-family: var(--numbers);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-align: center;
  text-transform: uppercase;
}

.info-page-title {
  max-width: 760px;
  margin: 0 auto clamp(38px, 5vw, 64px);
  color: var(--graphite);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.25;
  text-align: center;
}

.info-page-card {
  position: relative;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(24, 33, 38, 0.12);
  border-radius: var(--radius);
  background: rgba(246, 248, 248, 0.72);
  box-shadow: 0 18px 46px rgba(24, 33, 38, 0.1);
}

.info-section + .info-section {
  margin-top: clamp(34px, 5vw, 58px);
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.info-section h2 {
  margin-bottom: 18px;
  color: var(--graphite);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.5;
}

.info-section p {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 2.1;
}

.info-section p + p {
  margin-top: 14px;
}

.info-values-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-values-list li {
  position: relative;
  padding: 14px 22px 14px 14px;
  border-right: 2px solid var(--champagne);
  background: rgba(255, 255, 255, 0.46);
  color: var(--graphite);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.8;
}

.info-values-list li::before {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
  content: "";
  transform: translateY(-50%);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px clamp(22px, 7vw, 120px) 22px;
  border-top: 1px solid rgba(183, 154, 98, 0.2);
  background: #11191d;
  color: var(--frost-white);
}

.site-footer::before {
  position: absolute;
  top: -170px;
  left: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(183, 154, 98, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1440px;
  grid-template-columns: minmax(280px, 1.3fr) repeat(2, minmax(160px, 0.7fr));
  gap: clamp(34px, 7vw, 112px);
  margin: 0 auto;
  direction: rtl;
}

.footer-brand {
  color: var(--frost-white);
}

.footer-description {
  max-width: 360px;
  margin-top: 22px;
  color: rgba(246, 248, 248, 0.68);
  font-size: 13px;
  line-height: 2;
}

.footer-column h2 {
  margin: 4px 0 20px;
  color: var(--frost-white);
  font-size: 14px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 13px;
}

.footer-links a {
  position: relative;
  color: rgba(246, 248, 248, 0.68);
  font-size: 12px;
  line-height: 1.7;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: var(--champagne);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--frost-white);
  transform: translateX(-3px);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(246, 248, 248, 0.25);
  border-radius: var(--radius);
  background: rgba(246, 248, 248, 0.04);
  color: var(--frost-white);
  box-shadow: none;
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease, transform 250ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--graphite);
  transform: translateY(-3px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.social-links .icon-instagram {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.social-links .icon-instagram circle:last-child {
  fill: currentColor;
  stroke: none;
}

.payment-methods-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px 12px;
}

.payment-methods-core {
  display: block;
  flex: 0 1 310px;
  min-width: 0;
  width: min(100%, 310px);
  height: 32px;
  object-fit: contain;
}

.payment-methods-strip .tamara-badge {
  flex: 0 0 72px;
}

.payment-methods-label {
  color: rgba(246, 248, 248, 0.62);
  font-size: 11px;
}

.footer-payment-methods {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 38px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 248, 248, 0.12);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 58px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 248, 248, 0.12);
  direction: rtl;
  color: rgba(246, 248, 248, 0.52);
  font-family: var(--numbers);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.footer-bottom p {
  margin: 0;
}

.footer-closing {
  color: rgba(246, 248, 248, 0.72);
}

.footer-legal a {
  color: var(--champagne);
  transition: color 220ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--frost-white);
}

.reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(26px) scale(0.985);
  transition: opacity 800ms cubic-bezier(0.22, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.22, 0.8, 0.2, 1), filter 800ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .site-nav {
    padding-inline: 26px;
  }

  .nav-panel {
    gap: 20px;
  }

  .nav-links {
    gap: 15px;
    font-size: 10px;
  }

  .feature-layout,
  .journey-grid,
  .signature-grid {
    gap: 34px;
  }

  .feature-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  }

  .feature-image,
  .journey-image,
  .signature-image {
    min-height: 480px;
    height: 54vw;
  }

  .feature-card {
    min-height: 220px;
  }

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



/* Desktop-only carousel arrows */
.media-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(24, 33, 38, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
}

.media-arrow::before {
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #4d5b61;
  border-right: 1.5px solid #4d5b61;
  content: "";
  transition: border-color 180ms ease;
}

.media-arrow:hover::before,
.media-arrow:focus-visible::before {
  border-color: var(--champagne);
}

.media-arrow:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.hero-arrow-prev {
  left: clamp(18px, 3vw, 48px);
}

.hero-arrow-next {
  right: clamp(18px, 3vw, 48px);
}

.hero-arrow-prev::before {
  transform: rotate(-135deg);
}

.hero-arrow-next::before {
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .media-arrow {
    display: none;
  }
  :root {
    --code-bar-height: 54px;
  }

  .page-shell {
    padding-top: calc(42px + var(--code-bar-height));
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--champagne);
    background: var(--graphite);
    color: var(--champagne);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 -8px 22px rgba(24, 33, 38, 0.18);
  }

  .mobile-sticky-cta:focus-visible {
    outline: 3px solid var(--frost-white);
    outline-offset: -5px;
  }

  .scarcity-bar {
    font-size: 13px;
  }

  .national-code-bar {
    gap: 8px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .national-code-arrow {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    max-height: 24px;
  }

  .national-code-label {
    flex: 0 1 auto;
    width: fit-content;
    max-width: 54%;
    padding-inline: 6px;
    font-size: 10px;
    line-height: 1.45;
    white-space: normal;
  }

  .scarcity-track {
    animation-duration: 34s;
  }

  .scarcity-set {
    gap: 25px;
    padding-inline: 18px;
  }

  .scarcity-set span {
    gap: 25px;
  }

  .hero {
    height: auto;
    aspect-ratio: 1145 / 1374;
    min-height: 0;
    touch-action: pan-y;
  }

  .hero-indicators {
    bottom: 14px;
  }

  .hero-slide img {
    object-fit: contain;
  }

  .site-nav {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    top: auto;
    right: auto;
    left: auto;
  }

  .brand-lockup {
    width: 62px;
    min-width: 62px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-arabic {
    font-size: 13px;
  }

  .brand-latin {
    font-size: 15px;
  }

  .brand-edition {
    font-size: 6px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: 52px;
    right: 0;
    left: 0;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(24, 33, 38, 0.15);
    background: rgba(246, 248, 248, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 250ms ease, transform 250ms ease;
  }

  .nav-links,
  .nav-order {
    grid-column: auto;
    justify-self: stretch;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-order {
    width: 100%;
  }

  .info-page {
    min-height: calc(100vh - 132px);
    padding: 48px 16px 72px;
  }

  .info-page-card {
    padding: 26px 20px;
  }

  .info-section h2 {
    font-size: 21px;
  }

  .info-section p,
  .info-values-list li {
    font-size: 14px;
  }

  .section {
    padding: 72px 18px;
  }

  .feature-layout,
  .journey-grid,
  .signature-grid,
  .faq-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 38px;
    margin-top: 48px;
  }

  .feature-layout {
    direction: rtl;
  }

  .feature-image,
  .journey-image,
  .signature-image {
    min-height: 360px;
    height: 92vw;
    max-height: 560px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-offset,
  .feature-card-offset:hover {
    min-height: 0;
    transform: none;
  }

  .feature-card:hover {
    transform: translateY(-4px);
  }

  .card-index {
    margin-bottom: 18px;
  }

  .journey-grid {
    flex-direction: column-reverse;
  }

  .journey-content {
    order: 1;
  }

  .journey-image {
    order: 2;
  }

  .signature-grid {
    flex-direction: column;
  }

  .signature-image {
    order: 1;
  }

  .signature-copy {
    order: 2;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .review-card {
    min-height: 0;
  }

  .review-card p {
    min-height: 0;
  }

  .faq-layout {
    margin-top: 80px;
  }

  .faq-intro {
    text-align: center;
  }

  .faq-answer {
    padding-right: 20px;
  }

  .cta-panel {
    margin-top: 76px;
    padding: 42px 22px;
  }

  .section-cta {
    margin-top: 34px;
  }

  .section-cta .section-order-button {
    width: min(100%, 280px);
    min-width: 0;
  }

  .footer-payment-methods {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px;
    grid-template-areas:
      "label label"
      "core tamara";
    margin-top: 34px;
    padding-top: 20px;
    gap: 8px 10px;
  }

  .footer-payment-methods .payment-methods-label {
    grid-area: label;
    text-align: center;
  }

  .footer-payment-methods .payment-methods-core {
    grid-area: core;
    width: 100%;
  }

  .footer-payment-methods .tamara-badge {
    grid-area: tamara;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-column h2 {
    margin-top: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
