/* ═══════════════════════════════════════════
   Elizé Scent — Luxury Perfume
   White theme · clean · elegant
   ═══════════════════════════════════════════ */

:root {
  --ink: #17171a;
  --white: #ffffff;
  --cream: #faf8f4;
  --sand: #efe9df;
  --gold: #b8956a;
  --gold-light: #d4bb97;
  --gray: #77777c;
  --line: #e9e5de;
  --font-body: "Jost", "Helvetica Neue", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --container: 1280px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: clamp(80px, 10vw, 140px) 0; }
.section--cream { background: var(--cream); }

/* ── Section headings ── */
.section__eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 24px;
}

.section__eyebrow--center, .section__title--center { text-align: center; }
.section__title--center { margin-bottom: clamp(40px, 5vw, 64px); }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.section__head .section__title { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 15px 38px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
}

.btn--solid {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}
.btn--solid:hover { background: var(--gold); border-color: var(--gold); }

.btn--ghost {
  border: 1px solid rgba(23, 23, 26, 0.35);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  margin-top: 8px;
}
.btn--dark:hover { background: transparent; color: var(--ink); }

/* ═══ Preloader ═══ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.is-done { opacity: 0; visibility: hidden; }

.preloader__inner { text-align: center; }

.preloader__logo {
  width: min(220px, 55vw);
  margin: 0 auto 32px;
  animation: preloader-breathe 2.2s ease-in-out infinite;
}

@keyframes preloader-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.985); }
  50% { opacity: 1; transform: scale(1); }
}

.preloader__bar {
  width: 180px;
  height: 1px;
  margin: 0 auto;
  background: var(--line);
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 0.3s ease;
}

/* ═══ Header ═══ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  transition: background 0.45s ease, box-shadow 0.45s ease, height 0.45s ease;
}

.header.is-solid {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 40px rgba(23, 23, 26, 0.05);
  height: 72px;
}

.header__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo img { height: 46px; width: auto; transition: height 0.45s ease; }
.header.is-solid .logo img { height: 38px; }

.nav {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.nav__link {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 0;
  color: var(--ink);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}

.nav__link:hover::after, .nav__link.is-active::after { width: 100%; left: 0; }
.nav__link.is-active { color: var(--gold); }

.header__cta {
  justify-self: end;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 26px;
  border: 1px solid var(--ink);
  transition: all 0.35s var(--ease);
}
.header__cta:hover { background: var(--ink); color: var(--white); }

.burger {
  display: none;
  justify-self: end;
  flex-direction: column;
  gap: 7px;
  padding: 6px;
}
.burger span { width: 26px; height: 1.5px; background: var(--ink); transition: transform 0.3s; }

/* ═══ Mobile menu ═══ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
}

.mobile-menu__logo { width: 150px; margin-bottom: 36px; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 30px;
  transition: color 0.25s;
}
.mobile-menu nav a:hover { color: var(--gold); }

/* ═══ Hero ═══ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--cream);
}

.hero__slider { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
}

.hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.hero__bg { position: absolute; inset: 0; }

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 8s var(--ease);
}

.hero__slide.is-active .hero__bg img { transform: scale(1); }

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 248, 244, 0.82) 0%, rgba(250, 248, 244, 0.35) 45%, rgba(250, 248, 244, 0) 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: min(var(--container), 100%);
}

.hero__content--right { align-items: flex-end; text-align: right; }

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(26px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.04;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(30px);
}

.hero__title em { font-style: italic; color: var(--gold); }

.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 430px;
  color: #4d4d52;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero__slide.is-active .hero__eyebrow,
.hero__slide.is-active .hero__title,
.hero__slide.is-active .hero__sub,
.hero__slide.is-active .hero__cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero__slide.is-active .hero__eyebrow { transition-delay: 0.35s; }
.hero__slide.is-active .hero__title   { transition-delay: 0.5s; }
.hero__slide.is-active .hero__sub     { transition-delay: 0.65s; }
.hero__slide.is-active .hero__cta     { transition-delay: 0.8s; }

/* hero arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(23, 23, 26, 0.18);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s var(--ease);
}

.hero:hover .hero__arrow { opacity: 1; }
.hero__arrow:hover { background: var(--ink); border-color: var(--ink); }
.hero__arrow:hover svg { fill: var(--white); }
.hero__arrow svg { width: 22px; height: 22px; fill: var(--ink); transition: fill 0.3s; }
.hero__arrow--prev { left: 28px; }
.hero__arrow--next { right: 28px; }

/* hero footer */
.hero__footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 5;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero__count {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--ink);
  min-width: 76px;
}

.hero__dots { display: flex; gap: 10px; }

.hero__dots button {
  width: 30px;
  height: 2px;
  background: rgba(23, 23, 26, 0.22);
  transition: all 0.35s var(--ease);
}

.hero__dots button.is-active { width: 48px; background: var(--gold); }

.hero__progress {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: rgba(23, 23, 26, 0.15);
  overflow: hidden;
}

.hero__progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
}

/* scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 34px;
  right: 44px;
  z-index: 5;
  width: 1px;
  height: 64px;
  overflow: hidden;
}

.hero__scroll span {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--ink);
  animation: scroll-drop 2s var(--ease) infinite;
}

@keyframes scroll-drop {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* ═══ About ═══ */
.about { overflow: hidden; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.about__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(430px, 82%);
  aspect-ratio: 1;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  animation: ring-spin 26s linear infinite;
}

.about__ring::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes ring-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.about__bottle {
  position: relative;
  z-index: 2;
  width: min(300px, 58%);
  will-change: transform;
  transition: transform 0.18s ease-out;
  transform-style: preserve-3d;
  animation: bottle-float 5.5s ease-in-out infinite;
}

@keyframes bottle-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

.about__bottle img {
  filter: drop-shadow(0 36px 44px rgba(23, 23, 26, 0.22));
}

/* soft ground shadow beneath the bottle */
.about__visual::after {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(23, 23, 26, 0.18) 0%, transparent 70%);
  z-index: 1;
}

.about__text p { color: #4d4d52; margin-bottom: 18px; max-width: 520px; }

.about__stats {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  margin: 36px 0 40px;
}

.stat__num, .stat__plus {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1;
  color: var(--ink);
}

.stat__plus { color: var(--gold); }

.stat p {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

/* ═══ Products ═══ */
.section__head--center {
  justify-content: center;
  text-align: center;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(28px, 4vw, 56px);
  row-gap: 96px;
  padding-top: 56px;
}

/* ── Bestsellers: editorial cards ── */
.bestsellers .product {
  position: relative;
  transition: transform 0.6s var(--ease);
}

/* lift the middle column for editorial rhythm */
.bestsellers .products .product:nth-child(3n + 2) { margin-top: 52px; }
.bestsellers .product:hover { transform: translateY(-10px); }

.bestsellers .product::before {
  content: attr(data-rank);
  position: absolute;
  top: -52px;
  left: -10px;
  z-index: 3;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 6vw, 88px);
  line-height: 1;
  color: var(--gold);
  pointer-events: none;
}

.bestsellers .product::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 64px;
  width: 54px;
  height: 1px;
  background: var(--gold-light);
}

.bestsellers .product__img {
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--sand) 100%);
  border: 1px solid var(--line);
  transition: box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}

.bestsellers .product:hover .product__img {
  border-color: var(--gold-light);
  box-shadow: 0 34px 60px rgba(23, 23, 26, 0.12);
}

.bestsellers .product__quick {
  left: 26px;
  right: 26px;
  border-radius: 999px;
}

.bestsellers .product__meta {
  text-align: center;
  padding-top: 22px;
}

.product__stars {
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 8px;
}

.product__stars span {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-left: 2px;
}

.bestsellers .product__notes { margin-bottom: 10px; }

.bestsellers .product__name { margin-bottom: 8px; font-size: 26px; }

.product__price span {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
}


.product__img {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 3 / 4;
  margin-bottom: 20px;
}

.product__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.product:hover .product__img > img { transform: scale(1.07); }

.product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--ink);
}

.product__tag--new { background: var(--gold); color: var(--white); }

.product__quick {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  text-align: center;
  padding: 13px 0;
  background: rgba(23, 23, 26, 0.92);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s var(--ease);
}

.product:hover .product__quick { opacity: 1; transform: translateY(0); }
.product__quick:hover { background: var(--gold); }

.product__notes {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.product__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}

.product__price { font-size: 15px; color: var(--gold); letter-spacing: 0.08em; }

.product__link {
  display: block;
  color: inherit;
}

/* ═══ Him / Her collections ═══ */
.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(28px, 4vw, 56px);
  row-gap: 64px;
  padding-top: 40px;
}

.collection .product {
  transition: transform 0.6s var(--ease);
}

.collection .product:hover { transform: translateY(-10px); }

.collection .product__img {
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--sand) 100%);
  border: 1px solid var(--line);
  transition: box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}

.collection .product:hover .product__img {
  border-color: var(--gold-light);
  box-shadow: 0 34px 60px rgba(23, 23, 26, 0.12);
}

.collection .product__quick {
  left: 26px;
  right: 26px;
  border-radius: 999px;
  text-align: center;
}

.collection .product__meta {
  text-align: center;
  padding-top: 22px;
}

.collection .product__notes { margin-bottom: 10px; }
.collection .product__name { margin-bottom: 8px; font-size: 26px; }

.section__more {
  text-align: center;
  margin-top: 56px;
}

/* ═══ Why choose ═══ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why__card {
  padding: 48px 30px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.5s var(--ease);
}

.why__card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 30px 60px rgba(23, 23, 26, 0.08);
}

.why__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  color: var(--gold);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease);
}

.why__card:hover .why__icon { background: var(--gold); color: var(--white); border-color: var(--gold); }

.why__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.why__card p { font-size: 14.5px; color: var(--gray); }

/* ═══ New arrivals ═══ */
.new__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ═══ Journey ═══ */
.journey__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.journey__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.journey__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.journey__item:hover img { transform: scale(1.08); }

.journey__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 26, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.journey__item:hover .journey__overlay { opacity: 1; }
.journey__overlay svg { width: 34px; height: 34px; fill: var(--white); }

/* ═══ Footer ═══ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(64px, 8vw, 100px) 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__logo { width: 150px; margin-bottom: 20px; }
.footer__brand p { font-size: 14.5px; max-width: 280px; }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: all 0.35s var(--ease);
}

.footer__social svg {
  width: 17px;
  height: 17px;
  fill: rgba(255, 255, 255, 0.75);
  transition: fill 0.35s;
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer__social a:hover svg { fill: #fff; }

/* ═══ Floating WhatsApp button ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  animation: waPulse 2.6s ease-out infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes waPulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 520px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 25px; height: 25px; }
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 14.5px;
  margin-bottom: 12px;
  transition: color 0.25s;
}

.footer__col a:hover { color: var(--gold-light); }

.footer__note { font-size: 14px; margin-bottom: 16px; }

.footer__form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer__form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 10px 0;
  font: inherit;
  font-size: 14.5px;
  color: var(--white);
}

.footer__form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.footer__form button {
  font-size: 20px;
  color: var(--gold-light);
  padding: 0 8px;
  transition: transform 0.3s var(--ease);
}

.footer__form button:hover { transform: translateX(6px); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══ Reveal on scroll ═══ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* ═══ Full catalog grid ═══ */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(20px, 2.6vw, 36px);
  row-gap: 56px;
  padding-top: 40px;
}

.catalog__grid .product {
  transition: transform 0.6s var(--ease);
}

.catalog__grid .product:hover { transform: translateY(-8px); }

.catalog__grid .product__img {
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--sand) 100%);
  border: 1px solid var(--line);
  transition: box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}

.catalog__grid .product:hover .product__img {
  border-color: var(--gold-light);
  box-shadow: 0 26px 48px rgba(23, 23, 26, 0.12);
}

.catalog__grid .product__quick {
  left: 20px;
  right: 20px;
  border-radius: 999px;
}

.catalog__grid .product__meta {
  text-align: center;
  padding-top: 18px;
}

.catalog__grid .product__notes { margin-bottom: 6px; font-size: 11px; }
.catalog__grid .product__name { font-size: 21px; margin-bottom: 0; }

.catalog__count {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .catalog__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

/* ═══ Inner page hero ═══ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 108px) 0 96px;
  text-align: center;
  background:
    radial-gradient(60% 90% at 12% 0%, rgba(212, 187, 151, 0.16) 0%, transparent 60%),
    radial-gradient(55% 80% at 88% 10%, rgba(184, 149, 106, 0.14) 0%, transparent 60%),
    radial-gradient(80% 100% at 50% 0%, #f7f2ea 0%, transparent 70%),
    var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* giant ghost word behind the title */
.page-hero::before {
  content: attr(data-ghost);
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(130px, 24vw, 320px);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 149, 106, 0.17);
  pointer-events: none;
  user-select: none;
  animation: ghostIn 1.6s var(--ease) both;
}

/* floating gold glows */
.page-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.page-hero__orb--1 {
  width: 360px;
  height: 360px;
  top: -110px;
  left: 6%;
  background: radial-gradient(circle, rgba(212, 187, 151, 0.4) 0%, transparent 70%);
  animation: orbFloat 9s ease-in-out infinite alternate;
}

.page-hero__orb--2 {
  width: 300px;
  height: 300px;
  bottom: -130px;
  right: 8%;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.32) 0%, transparent 70%);
  animation: orbFloat 11s ease-in-out 1.2s infinite alternate-reverse;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 30px;
  animation: heroRise 0.9s var(--ease) 0.05s both;
}

.page-hero__breadcrumb a { color: var(--gray); transition: color 0.3s; }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span:last-child { color: var(--ink); }

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  animation: heroRise 0.9s var(--ease) 0.18s both;
}

.page-hero__eyebrow::before,
.page-hero__eyebrow::after {
  content: "";
  width: 44px;
  height: 1px;
}

.page-hero__eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.page-hero__eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.6vw, 84px);
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 22px;
  animation: heroRise 1s var(--ease) 0.3s both;
}

.page-hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(105deg, var(--gold) 20%, #dcc39c 50%, var(--gold) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero__ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 24px;
  animation: heroRise 1s var(--ease) 0.42s both;
}

.page-hero__ornament::before,
.page-hero__ornament::after {
  content: "";
  width: 64px;
  height: 1px;
  background: var(--line);
}

.page-hero__sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  animation: heroRise 1s var(--ease) 0.54s both;
}

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

@keyframes ghostIn {
  from { opacity: 0; letter-spacing: 0.12em; }
  to { opacity: 1; letter-spacing: 0; }
}

@keyframes orbFloat {
  from { transform: translate(0, 0); }
  to { transform: translate(24px, 34px); }
}

@media (max-width: 640px) {
  .page-hero { padding: calc(var(--header-h) + 72px) 0 68px; }
  .page-hero::before { font-size: clamp(96px, 30vw, 150px); }
  .page-hero__eyebrow::before,
  .page-hero__eyebrow::after { width: 26px; }
}

/* ═══ Product detail page ═══ */
.pdp {
  padding: calc(var(--header-h) + 48px) 0 110px;
  min-height: 100vh;
  background:
    radial-gradient(90% 60% at 85% 0%, #f7f2ea 0%, transparent 60%),
    var(--white);
}

.pdp__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 44px;
}

.pdp__breadcrumb a { color: var(--gray); transition: color 0.3s; }
.pdp__breadcrumb a:hover { color: var(--gold); }
.pdp__breadcrumb span:last-child { color: var(--ink); }

.pdp__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.pdp__img {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  background: radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--sand) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 34px 60px rgba(23, 23, 26, 0.08);
}

.pdp__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__category {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.pdp__name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 10px;
}

.pdp__inspired {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.pdp__stars {
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 26px;
}

.pdp__stars span {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-left: 4px;
}

.pdp__price {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--ink);
  margin-bottom: 4px;
}

.pdp__size {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gray);
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.pdp__desc {
  font-size: 16.5px;
  line-height: 1.85;
  color: #4a4a4f;
  margin-bottom: 36px;
}

.pdp__notes { margin-bottom: 36px; }

.pdp__notes h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}

.pdp__note {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.pdp__note:first-of-type { border-top: 1px solid var(--line); }

.pdp__note span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.pdp__note p { font-size: 15px; color: var(--ink); }

.pdp__availability {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 18px 22px;
  margin-bottom: 36px;
}

.pdp__availability p { font-size: 14px; color: #4a4a4f; }
.pdp__availability a { color: var(--gold); }

@media (max-width: 900px) {
  .pdp__grid { grid-template-columns: 1fr; }
  .pdp__img { position: static; max-width: 460px; margin: 0 auto; }
}

/* ═══ Responsive ═══ */
@media (max-width: 1080px) {
  .nav { gap: 18px; font-size: 13px; }
  .why__grid, .new__grid { grid-template-columns: repeat(2, 1fr); }

  .products { grid-template-columns: repeat(2, 1fr); row-gap: 88px; }
  .bestsellers .products .product:nth-child(3n + 2) { margin-top: 0; }
  .bestsellers .products .product:nth-child(even) { margin-top: 52px; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }

  .hero__content--right { align-items: flex-start; text-align: left; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(250,248,244,0.9) 0%, rgba(250,248,244,0.62) 48%, rgba(250,248,244,0.25) 100%); }
  .hero__arrow { display: none; }
  .hero__scroll { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 56px; }

  .collection__grid { grid-template-columns: 1fr; row-gap: 56px; max-width: 420px; margin: 0 auto; }

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

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 520px) {
  .container { padding: 0 22px; }
  .hero__footer { padding: 0 22px; gap: 18px; }
  .hero__progress { display: none; }
  .why__grid, .new__grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; row-gap: 80px; padding-top: 48px; }
  .bestsellers .products .product:nth-child(even) { margin-top: 0; }
  .bestsellers .product::before { font-size: 58px; top: -44px; }
  .bestsellers .product::after { top: -26px; left: 52px; }
  .footer__grid { grid-template-columns: 1fr; }
  .logo img { height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════
   Special Offer Popup
   ═══════════════════════════════════════════ */
.offer-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}
.offer-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.offer-popup__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(184, 149, 106, 0.18), transparent 70%),
    rgba(23, 23, 26, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.offer-popup__panel {
  position: relative;
  width: min(460px, 100%);
  max-height: min(92vh, 760px);
  background:
    linear-gradient(165deg, #fffefb 0%, var(--cream) 48%, #f3ebe0 100%);
  border: 1px solid rgba(184, 149, 106, 0.45);
  box-shadow:
    0 40px 100px rgba(23, 23, 26, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 40px) 32px;
  text-align: center;
  transform: translateY(28px) scale(0.94);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
  overflow-x: hidden;
  overflow-y: auto;
}
.offer-popup.is-open .offer-popup__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.offer-popup__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% 100%;
  animation: offerShimmer 3.2s linear infinite;
}
.offer-popup__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.22), transparent 68%);
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.offer-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 26px;
  line-height: 1;
  color: var(--gray);
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.offer-popup__close:hover {
  color: var(--ink);
  transform: rotate(90deg);
}
.offer-popup__ribbon {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  position: relative;
}
.offer-popup__bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 220px;
  margin: 12px auto 20px;
  padding-top: 8px;
  position: relative;
  width: 100%;
  max-width: 260px;
  overflow: visible;
  box-sizing: content-box;
}
.offer-popup__bottle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 0 0 auto;
  width: 68px;
  height: 175px;
  margin: 0 -10px;
  filter: drop-shadow(0 12px 20px rgba(23, 23, 26, 0.18));
  animation: offerFloat 4.4s ease-in-out infinite;
}
.offer-popup__bottle img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.offer-popup__bottle:nth-child(1) {
  transform: rotate(-8deg);
  z-index: 1;
}
.offer-popup__bottle:nth-child(2) {
  width: 78px;
  height: 195px;
  z-index: 3;
  animation-delay: 0.35s;
}
.offer-popup__bottle:nth-child(3) {
  transform: rotate(8deg);
  z-index: 2;
  animation-delay: 0.7s;
}
.offer-popup__eyebrow {
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.offer-popup__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}
.offer-popup__title em {
  font-style: italic;
  color: var(--gold);
}
.offer-popup__copy {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.55;
  max-width: 320px;
  margin: 0 auto 22px;
}
.offer-popup__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.offer-popup__was {
  font-size: 15px;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-decoration: line-through;
  text-decoration-color: rgba(184, 149, 106, 0.7);
}
.offer-popup__now {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 52px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1;
}
.offer-popup__now span {
  font-size: 0.42em;
  letter-spacing: 0.14em;
  color: var(--gold);
  vertical-align: 0.35em;
  margin-left: 4px;
}
.offer-popup__save {
  display: inline-block;
  margin: 10px 0 26px;
  padding: 6px 14px;
  border: 1px solid var(--gold-light);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.offer-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-popup__actions .btn { width: 100%; }
.offer-popup__dismiss {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-top: 4px;
  transition: color 0.3s ease;
}
.offer-popup__dismiss:hover { color: var(--ink); }

@keyframes offerShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes offerFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

@media (max-width: 420px) {
  .offer-popup__bottles {
    height: 170px;
    max-width: 210px;
  }
  .offer-popup__bottle {
    width: 58px;
    height: 145px;
    margin: 0 -8px;
  }
  .offer-popup__bottle:nth-child(2) {
    width: 68px;
    height: 160px;
  }
}

/* ═══════════════════════════════════════════
   Special Offer Page
   ═══════════════════════════════════════════ */
.offer-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 70% 20%, rgba(184, 149, 106, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(239, 233, 223, 0.9), transparent 50%),
    linear-gradient(160deg, #fffefb 0%, var(--cream) 45%, #efe7da 100%);
}
.offer-hero__ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 149, 106, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 149, 106, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.offer-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.offer-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.offer-hero__ring {
  position: absolute;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  border-radius: 50%;
  border: 1px solid rgba(184, 149, 106, 0.35);
  animation: offerRingPulse 5s ease-in-out infinite;
}
.offer-hero__ring::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(184, 149, 106, 0.28);
}
.offer-hero__stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.offer-hero__stack img {
  width: clamp(110px, 18vw, 160px);
  filter: drop-shadow(0 28px 40px rgba(23, 23, 26, 0.22));
}
.offer-hero__stack img:nth-child(1) {
  transform: rotate(-14deg) translate(18px, 18px);
  z-index: 1;
}
.offer-hero__stack img:nth-child(2) {
  width: clamp(130px, 21vw, 190px);
  transform: translateY(-12px);
  z-index: 3;
}
.offer-hero__stack img:nth-child(3) {
  transform: rotate(14deg) translate(-18px, 18px);
  z-index: 2;
}
.offer-hero__badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
}
.offer-hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 18px;
}
.offer-hero__title em {
  font-style: italic;
  color: var(--gold);
}
.offer-hero__sub {
  color: #4d4d52;
  font-size: 17px;
  max-width: 420px;
  margin-bottom: 28px;
}
.offer-hero__deal {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 22px;
  margin-bottom: 14px;
}
.offer-hero__was {
  font-size: 18px;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-decoration: line-through;
  text-decoration-color: rgba(184, 149, 106, 0.75);
}
.offer-hero__now {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 64px);
  line-height: 1;
  font-weight: 500;
}
.offer-hero__now span {
  font-size: 0.38em;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-left: 6px;
  vertical-align: 0.4em;
}
.offer-hero__save {
  display: inline-block;
  margin-bottom: 32px;
  padding: 7px 14px;
  border: 1px solid var(--gold-light);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.offer-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.offer-steps {
  background: var(--white);
}
.offer-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: clamp(40px, 5vw, 64px);
}
.offer-step {
  text-align: center;
  padding: 36px 24px;
  background:
    radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--sand) 100%);
  border: 1px solid transparent;
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
}
.offer-step:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
}
.offer-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid var(--gold-light);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
}
.offer-step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}
.offer-step p {
  color: var(--gray);
  font-size: 15px;
}

.offer-pick {
  background: var(--cream);
}
.offer-pick__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: clamp(36px, 4vw, 56px);
}
.offer-pick__card {
  display: block;
  padding: clamp(36px, 5vw, 56px) 32px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.4s ease, transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.offer-pick__card:hover {
  border-color: var(--gold-light);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(23, 23, 26, 0.08);
}
.offer-pick__card h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  margin: 16px 0 10px;
}
.offer-pick__card p {
  color: var(--gray);
  margin-bottom: 22px;
}
.offer-pick__card .btn { margin-top: 4px; }

.offer-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.offer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(184, 149, 106, 0.25), transparent 70%);
  pointer-events: none;
}
.offer-cta .container { position: relative; }
.offer-cta__eyebrow {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.offer-cta__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 14px;
}
.offer-cta__sub {
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 28px;
}
.offer-cta .btn--solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.offer-cta .btn--solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

@keyframes offerRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.75; }
}

@media (max-width: 900px) {
  .offer-hero__grid { grid-template-columns: 1fr; text-align: center; }
  .offer-hero__sub { margin-left: auto; margin-right: auto; }
  .offer-hero__deal, .offer-hero__cta { justify-content: center; }
  .offer-hero__visual { min-height: 300px; order: -1; }
  .offer-steps__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .offer-pick__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
