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

/* ── DESIGN TOKENS ── */
:root {
  /* Dira Brand Palette */
  --cream:       #FDF8F3;
  --cream2:      #F5EDE3;
  --cream3:      #EEE0D0;
  --rose:        #C4847A;       /* primary rose */
  --rose-dark:   #A0675E;
  --rose-light:  #E8B4AC;
  --gold:        #B8935A;       /* warm gold accent */
  --gold-light:  #D4AA72;
  --dark:        #1C1410;       /* deep warm black */
  --dark2:       #2C1F17;
  --gray:        #7A6A62;
  --gray-light:  #BEB0A8;
  --light:       #E2D4C8;
  --white:       #FFFFFF;

  /* Dark section palette */
  --dark-card:   #231912;
  --dark-border: rgba(196, 132, 122, 0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }

/* ── MARQUEE BAR ── */
.marquee-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 32px;
  background: var(--dark);
  color: var(--cream2);
  z-index: 1000;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(196, 132, 122, 0.2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-content {
  display: flex;
  white-space: nowrap;
  gap: 4rem;
  padding-right: 4rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--rose-light);
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 999;
  padding: 0 5%;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 132, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

nav.scrolled {
  top: 0;
  height: 64px;
  background: rgba(253, 248, 243, 0.98);
  box-shadow: 0 8px 30px rgba(28, 20, 16, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo img { height: 52px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .3s;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff !important;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-size: .78rem !important;
  letter-spacing: .08em;
  box-shadow: 0 4px 16px rgba(196, 132, 122, 0.35);
  transition: all .3s !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(196, 132, 122, 0.5) !important;
}
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all .3s;
  display: block;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 104px; left: 0; right: 0;
  background: var(--cream);
  padding: 2rem 5%;
  border-bottom: 1px solid var(--light);
  z-index: 998;
  flex-direction: column;
  gap: 1.5rem;
  transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 60px rgba(28,20,16,0.08);
}
nav.scrolled ~ .mobile-menu { top: 64px; }
.mobile-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--light);
  padding-bottom: .8rem;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--rose); }
.mobile-menu.open { display: flex; }
.mobile-wa-cta {
  background: linear-gradient(135deg, #25D366, #1DA851) !important;
  color: #fff !important;
  border: none !important;
  padding: .7rem 1.4rem !important;
  border-radius: 50px !important;
  text-align: center;
  font-weight: 500 !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 40%, rgba(196, 132, 122, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(184, 147, 90, 0.04) 0%, transparent 50%),
    var(--cream);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 5% 5% 7%;
  gap: 1.4rem;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
  display: block;
}

.hero-desc {
  font-size: .92rem;
  color: var(--gray);
  max-width: 420px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--gray);
  letter-spacing: .04em;
}
.hero-trust-icon { font-size: 1rem; }
.hero-trust-divider {
  width: 1px;
  height: 16px;
  background: var(--light);
}

/* Scroll indicator */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: .5rem;
  gap: .6rem;
}
.hero-scroll-line {
  width: 1px;
  height: 45px;
  background: linear-gradient(180deg, var(--rose) 0%, transparent 100%);
  animation: scrollLineBreathe 2.5s infinite ease-in-out;
  transform-origin: top;
}
.hero-scroll-text {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gray-light);
  font-weight: 400;
}
@keyframes scrollLineBreathe {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50%       { transform: scaleY(1);   opacity: 1;   }
}

/* Hero image */
.hero-image {
  position: relative;
  background: var(--cream2);
  overflow: hidden;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(196, 132, 122, 0.2);
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 2;
}
.hero-image:hover::after { border-color: rgba(196, 132, 122, 0.5); }

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hero-image:hover img { transform: scale(1.03); }

.hero-image-overlay {
  position: absolute;
  inset: 32px;
  background: linear-gradient(135deg, rgba(196, 132, 122, .06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-tag {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: var(--dark);
  color: var(--cream2);
  border: 1px solid rgba(196, 132, 122, 0.3);
  padding: .6rem 1.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  z-index: 3;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  pointer-events: none;
}
.hero-image-tag span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--rose-light);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--dark);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(196,132,122,0.12);
  border-bottom: 1px solid rgba(196,132,122,0.12);
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .95rem;
  color: var(--cream3);
  letter-spacing: .08em;
}
.strip-dot {
  color: var(--rose);
  font-style: normal;
  font-size: .65rem;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s ease;
  border: 1px solid transparent;
  box-shadow: 0 6px 20px rgba(196, 132, 122, 0.35);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-25deg);
  transition: none;
}
.btn-primary:hover::before { left: 150%; transition: left 0.7s ease; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 132, 122, 0.5);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s ease;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.25);
}
.btn-wa:hover {
  background: #1EBD5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}
.btn-wa-large { padding: 1.1rem 2.8rem; font-size: .85rem; }

.wa-icon-sm { width: 17px; height: 17px; fill: currentColor; }

/* ── SECTION COMMONS ── */
section { padding: 6rem 5%; }

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .88rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: .6rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}
.section-title::after {
  content: '✨';
  display: block;
  font-size: .85rem;
  margin-top: .6rem;
  font-style: normal;
}
.section-sub {
  font-size: .9rem;
  color: var(--gray);
  max-width: 500px;
  margin: .8rem auto 0;
  line-height: 1.8;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── PRODUCTS GRID ── */
.products { background: var(--white); position: relative; }
.products-dark { background: var(--dark2); }
.products-dark .section-label { color: var(--rose-light); }
.products-dark .section-title { color: var(--cream2); }
.products-dark .section-title em { color: var(--rose-light); }
.products-dark .section-title::after { color: var(--rose-light); }
.products-dark .section-sub { color: var(--gray-light); }

.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── PRODUCT CARD ── */
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  transition: transform .5s cubic-bezier(0.165,0.84,0.44,1), box-shadow .5s cubic-bezier(0.165,0.84,0.44,1);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(196, 132, 122, 0.12);
  padding: 8px;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(196, 132, 122, 0.1);
  border-radius: 12px;
  pointer-events: none;
  transition: border-color 0.4s;
  z-index: 3;
}
.product-card:hover::before { border-color: rgba(196, 132, 122, 0.4); }
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(196, 132, 122, 0.12), 0 8px 20px rgba(0,0,0,0.04);
}

/* Dark card variant */
.product-card-dark {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.product-card-dark::before { border-color: rgba(196,132,122,0.08); }
.product-card-dark:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 8px 20px rgba(196,132,122,0.1); }
.product-card-dark .product-category { color: var(--rose-light); }
.product-card-dark .product-name { color: var(--cream2); }
.product-card-dark .product-note { color: var(--gray-light); }

.product-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.product-card:hover .product-img img { transform: scale(1.06); }

/* Badges */
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  font-weight: 500;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.badge-rose  { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: #fff; }
.badge-gold  { background: linear-gradient(135deg, var(--gold), #8a6a30); color: #fff; }
.badge-dark  { background: var(--dark); color: var(--rose-light); border: 1px solid rgba(196,132,122,0.3); }

.product-info {
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: .3rem;
}
.product-category {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  margin-top: .1rem;
}
.product-note {
  font-size: .8rem;
  color: var(--gray);
  line-height: 1.75;
  margin-top: .2rem;
  flex-grow: 1;
}

/* Volume selector */
.product-volumes {
  display: flex;
  gap: .5rem;
  margin-top: .8rem;
}
.vol {
  padding: .35rem .9rem;
  border-radius: 50px;
  border: 1px solid var(--light);
  font-size: .72rem;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .25s ease;
  background: var(--white);
  color: var(--gray);
  user-select: none;
}
.vol:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.vol.active {
  background: var(--dark);
  color: var(--cream2);
  border-color: var(--dark);
  box-shadow: 0 4px 12px rgba(28,20,16,0.2);
}
.product-card-dark .vol {
  background: rgba(255,255,255,0.05);
  border-color: rgba(196,132,122,0.2);
  color: var(--gray-light);
}
.product-card-dark .vol.active {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: #fff;
}

/* WA Product Button */
.btn-wa-product {
  background: #25D366;
  color: #fff !important;
  padding: .8rem 1.2rem;
  border-radius: 50px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  margin-top: 1.2rem;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.2);
  position: relative;
  overflow: hidden;
}
.btn-wa-product::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-25deg);
  transition: none;
}
.btn-wa-product:hover::before { left: 150%; transition: left 0.6s ease; }
.btn-wa-product:hover {
  background: #1EBD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-wa-product svg { transition: transform .3s; }
.btn-wa-product:hover svg { transform: translateX(4px); }

/* ── HOW IT WORKS ── */
.how { background: var(--cream2); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.steps::before {
  content: '';
  position: absolute;
  top: 3.2rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-light), var(--gold), var(--rose-light), transparent);
}
.step {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: .8rem;
  display: block;
}
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(196,132,122,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--rose);
  box-shadow: 0 6px 24px rgba(196,132,122,0.1);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: .7rem;
  color: var(--dark);
}
.step-desc {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── REVIEWS ── */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  transition: transform .4s, box-shadow .4s;
  border: 1px solid rgba(196,132,122,0.08);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: rgba(196,132,122,0.08);
  position: absolute;
  top: -10px; right: 20px;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(196,132,122,0.08);
  border-color: rgba(196,132,122,0.2);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}
.review-stars span { color: var(--gold); font-size: 1rem; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.review-author {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 500;
}
.review-location {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .82rem;
  color: var(--rose);
  margin-top: .2rem;
}

/* ── NOTICE ── */
.notice {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
.notice .section-label { color: var(--rose-light); }
.notice .section-title { color: var(--cream2); }
.notice .section-title::after { color: var(--rose-light); }
.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.notice-item {
  border: 1px solid rgba(196,132,122,0.15);
  border-radius: 14px;
  padding: 2.4rem 1.5rem;
  transition: all .4s;
  background: rgba(255,255,255,0.02);
}
.notice-item:hover {
  border-color: rgba(196,132,122,0.45);
  transform: translateY(-5px);
  background: rgba(196,132,122,0.05);
}
.notice-icon { font-size: 2rem; margin-bottom: 1rem; }
.notice-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream2);
  margin-bottom: .5rem;
}
.notice-item-text {
  font-size: .8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 100%);
  text-align: center;
  padding: 8rem 5%;
}
.cta-section .section-title { margin-bottom: 1rem; }
.cta-phone {
  font-size: .8rem;
  color: var(--gray);
  letter-spacing: .15em;
  font-family: 'Jost', sans-serif;
}
.cta-ig {
  font-size: .75rem;
  color: var(--gray);
  letter-spacing: .08em;
  text-decoration: none;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cta-ig:hover { color: var(--rose); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 1000;
  width: 64px; height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform .4s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow .4s;
  animation: waPulse 3s infinite;
  border: 2px solid rgba(255,255,255,0.3);
}
.wa-float::before {
  content: '💋 Commandez';
  position: absolute;
  right: 80px;
  background: var(--dark);
  color: var(--cream2);
  border: 1px solid rgba(196,132,122,0.3);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.35s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.wa-float:hover::before { opacity: 1; transform: translateX(0); }
.wa-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 8px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(196,132,122,0.15);
  padding: 2.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 34px; width: auto; object-fit: contain; filter: brightness(1.1); }
.footer-text {
  font-size: .75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: .06em;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: .72rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .3s;
}
.footer-links a:hover { color: var(--rose-light); }

/* ── FADE IN REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(0.165,0.84,0.44,1), transform .9s cubic-bezier(0.165,0.84,0.44,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   COFFRETS & PACKS
══════════════════════════════════════════════ */
.packs {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative;
  overflow: hidden;
}
.packs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(196,132,122,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184,147,90,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.packs .section-label  { color: var(--rose-light); }
.packs .section-title  { color: var(--cream2); }
.packs .section-title em { color: var(--rose-light); }
.packs .section-title::after { color: var(--gold-light); }
.packs .section-sub    { color: rgba(255,255,255,0.5); }

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Pack Card */
.pack-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,132,122,0.15);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  position: relative;
  overflow: hidden;
  transition: transform .45s cubic-bezier(0.165,0.84,0.44,1),
              border-color .45s,
              box-shadow .45s;
  backdrop-filter: blur(8px);
}
.pack-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196,132,122,0.45);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(196,132,122,0.2);
}

/* Featured / Custom glows */
.pack-card-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(196,132,122,0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
.pack-card-glow-gold {
  background: radial-gradient(circle, rgba(184,147,90,0.22) 0%, transparent 70%);
}
@keyframes glowPulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.15); }
}

.pack-featured {
  border-color: rgba(196,132,122,0.4);
  background: rgba(196,132,122,0.07);
}
.pack-custom {
  border-color: rgba(184,147,90,0.35);
  background: rgba(184,147,90,0.06);
}

.pack-emoji {
  font-size: 2.4rem;
  line-height: 1;
}

/* Pack badge */
.pack-badge {
  display: inline-block;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  font-weight: 600;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
}
.pack-badge-gold {
  background: linear-gradient(135deg, var(--gold), #8a6a30);
}
.pack-badge-dark {
  background: rgba(255,255,255,0.08);
  color: var(--rose-light);
  border: 1px solid rgba(196,132,122,0.3);
}
.pack-badge-rose {
  background: linear-gradient(135deg, #E8B4AC, #C4847A);
}

.pack-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--cream2);
  line-height: 1.15;
}
.pack-tagline {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
}
.pack-desc {
  font-size: .84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  flex-grow: 1;
}

/* Pack includes list */
.pack-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .3rem;
}
.pack-includes li {
  font-size: .8rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: .55rem;
  line-height: 1.5;
}
.pi-dot {
  color: var(--rose-light);
  font-size: .55rem;
  flex-shrink: 0;
}

/* Pack buttons */
.pack-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin-top: .8rem;
  padding: .85rem 1.4rem;
  border-radius: 50px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all .35s ease;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(196,132,122,0.35);
  position: relative;
  overflow: hidden;
}
.pack-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-25deg);
  transition: none;
}
.pack-btn:hover::before { left: 150%; transition: left .6s ease; }
.pack-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,132,122,0.55);
}
.pack-btn svg { transition: transform .3s; }
.pack-btn:hover svg { transform: translateX(4px); }

.pack-btn-outline {
  background: transparent;
  color: var(--rose-light);
  border: 1px solid rgba(196,132,122,0.35);
  box-shadow: none;
}
.pack-btn-outline:hover {
  background: rgba(196,132,122,0.12);
  border-color: rgba(196,132,122,0.65);
  box-shadow: 0 8px 24px rgba(196,132,122,0.2);
}

/* ══════════════════════════════════════════════
   SCENT FINDER QUIZ
══════════════════════════════════════════════ */
.finder {
  background: var(--cream2);
  padding: 6rem 5%;
}
.finder-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.finder-title { text-align: left; }
.finder-title::after { display: none; }
.finder-desc {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.85;
  margin-top: 1rem;
  max-width: 400px;
}
.finder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.5rem;
}
.finder-badge {
  padding: .38rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(196,132,122,0.25);
  background: rgba(196,132,122,0.06);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--rose-dark);
  font-weight: 500;
  transition: all .3s;
}
.finder-badge:hover {
  background: rgba(196,132,122,0.15);
  border-color: rgba(196,132,122,0.5);
}

/* Quiz box */
.finder-quiz {
  background: var(--white);
  border-radius: 24px;
  padding: 2.8rem 2.4rem;
  box-shadow: 0 20px 60px rgba(196,132,122,0.1), 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(196,132,122,0.1);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Quiz step */
.quiz-step { display: none; flex-direction: column; gap: 1.4rem; animation: fadeSlide .4s ease; }
.quiz-step.active { display: flex; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.quiz-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}
.quiz-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.quiz-opt {
  padding: .75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--light);
  background: var(--cream);
  color: var(--dark);
  font-size: .8rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .25s ease;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.4;
}
.quiz-opt:hover {
  border-color: var(--rose);
  background: rgba(196,132,122,0.07);
  color: var(--rose-dark);
  transform: translateY(-2px);
}
.quiz-opt.selected {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(196,132,122,0.35);
}

/* Quiz result */
.quiz-result { text-align: center; align-items: center; }
.quiz-result-icon {
  font-size: 3rem;
  animation: starPop .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes starPop {
  0%   { transform: scale(0) rotate(-20deg); }
  100% { transform: scale(1) rotate(0); }
}
.quiz-result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
}
.quiz-result-text {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 300px;
}
.quiz-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.quiz-wa-btn:hover {
  background: #1EBD5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}
.quiz-restart {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .78rem;
  color: var(--gray);
  letter-spacing: .08em;
  transition: color .3s;
  font-family: 'Jost', sans-serif;
  padding: .3rem;
}
.quiz-restart:hover { color: var(--rose); }

/* Progress bar */
.quiz-progress {
  height: 3px;
  background: var(--light);
  border-radius: 2px;
  overflow: hidden;
  margin-top: auto;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-light), var(--rose));
  border-radius: 2px;
  transition: width .5s cubic-bezier(0.165,0.84,0.44,1);
  width: 0%;
}

/* ══════════════════════════════════════════════
   WHY DIRA
══════════════════════════════════════════════ */
.why-dira {
  background: var(--white);
  padding: 6rem 5%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 2.4rem 2rem;
  border: 1px solid rgba(196,132,122,0.08);
  transition: all .4s cubic-bezier(0.165,0.84,0.44,1);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-light), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(196,132,122,0.1);
  border-color: rgba(196,132,122,0.2);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  display: block;
}
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: .6rem;
}
.why-desc {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .notice-grid     { grid-template-columns: repeat(2, 1fr); }
  .packs-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 96px;
  }
  .hero-image {
    height: 55vw;
    min-height: 280px;
    order: -1;
    padding: 16px;
  }
  .hero-image-tag { bottom: 28px; right: 28px; font-size: .6rem; }
  .hero-content { padding: 2rem 5%; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .hero-trust-divider { display: none; }

  .nav-links { display: none; }
  .hamburger { display: flex; margin-left: auto; z-index: 11; }
  .nav-logo {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .nav-logo img { height: 70px !important; }
  nav.scrolled .nav-logo img { height: 60px !important; }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0 auto; }
  .packs-grid  { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0 auto; }
  .why-grid    { grid-template-columns: 1fr; }
  .finder-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .finder-title { text-align: center; }
  .finder-desc  { max-width: 100%; }
  .finder-badges { justify-content: center; }
  .brand-strip-inner { font-size: .85rem; }

  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  section { padding: 4rem 5%; }
  .notice-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-wa { text-align: center; justify-content: center; }
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .packs-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .why-grid   { grid-template-columns: 1fr; }
  .quiz-opts  { grid-template-columns: 1fr; }
  /* Compact cards for 2-col mobile */
  .product-card { padding: 5px; border-radius: 12px; }
  .product-info { padding: 0.85rem 0.75rem; gap: .2rem; }
  .product-category { font-size: 0.6rem; }
  .product-name { font-size: 1rem; }
  .product-note { font-size: 0.72rem; line-height: 1.5; }
  .product-volumes { margin-top: .5rem; gap: .3rem; }
  .vol { padding: .28rem .65rem; font-size: .65rem; }
  .btn-wa-product { padding: .6rem .7rem; font-size: .62rem; margin-top: .8rem; gap: .25rem; letter-spacing: .03em; white-space: nowrap; overflow: hidden; }
  .btn-wa-product svg { width: 10px; height: 10px; }
  .product-badge { font-size: .55rem; padding: .25rem .6rem; }
  /* Compact pack cards */
  .pack-card { padding: 1.4rem 1.2rem; gap: .5rem; }
  .pack-emoji { font-size: 1.8rem; }
  .pack-name { font-size: 1.15rem; }
  .pack-tagline { font-size: .62rem; }
  .pack-desc { font-size: .75rem; }
  .pack-includes { display: none; }
  .pack-btn { padding: .65rem 1rem; font-size: .68rem; }
  .wa-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .wa-float svg { width: 26px; height: 26px; }
}