/* ============================================================
   RASHMÉ — Home Page
   ============================================================ */

/* ── Hero (Interactive 3D Experience) ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 32%, #FAF6EE 0%, #F4EFE6 45%, #E9E1D2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 5rem;
  text-align: center;
}

/* 3D Ambient Particle Canvas */
.hero__3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Architectural Watermark Title Behind 3D Stage */
.hero__watermark-wrap {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  width: 100%;
  text-align: center;
}
.hero__watermark {
  font-family: var(--font-serif);
  font-size: clamp(6.5rem, 22vw, 20rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(13, 13, 13, 0.032);
  text-transform: uppercase;
  line-height: 0.85;
  white-space: nowrap;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header & Typography */
.hero__header {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(155, 28, 28, 0.06);
  border: 1px solid rgba(155, 28, 28, 0.16);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(155, 28, 28, 0.7);
  animation: pulseDot 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(155, 28, 28, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(155, 28, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(155, 28, 28, 0); }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title-main {
  display: block;
}

.hero__title-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.8vw, 1.95rem);
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.7vw, 1.06rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── 3D Interactive Stage ── */
.hero__stage-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 1.75rem auto 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s var(--ease) 0.4s both;
}

.hero__stage-3d {
  position: relative;
  width: 320px;
  height: 410px;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient Golden Aura Glow */
.hero__3d-glow {
  position: absolute;
  width: 290px;
  height: 360px;
  background: radial-gradient(circle at 50% 50%, rgba(218, 178, 90, 0.38) 0%, rgba(181, 43, 43, 0.14) 42%, transparent 72%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: glowFloat 6s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 1; }
}

/* Dynamic Cast Floor Shadow */
.hero__3d-shadow {
  position: absolute;
  bottom: 10px;
  width: 240px;
  height: 26px;
  background: radial-gradient(ellipse at 50% 50%, rgba(13, 13, 13, 0.42) 0%, rgba(13, 13, 13, 0.12) 55%, transparent 75%);
  filter: blur(10px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

/* The 3D Interactive Card */
.hero__3d-card {
  position: relative;
  width: 270px;
  height: 360px;
  border-radius: 22px;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: grab;
  z-index: 1;
  transition: box-shadow 0.3s ease;
}

.hero__3d-card:active {
  cursor: grabbing;
}

.hero__3d-card.switching-3d {
  transition: transform 0.25s var(--ease);
  transform: scale(0.92) translateZ(-40px) !important;
}

/* Faces */
.hero__3d-face {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: #c3b29c;
  box-shadow: 0 24px 50px rgba(13, 13, 13, 0.16), 0 6px 18px rgba(212, 175, 55, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.hero__3d-face.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero__3d-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Dynamic Specular Light Glint */
.hero__3d-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.85;
  transition: background 0.05s linear;
}

.hero__3d-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 22px;
  box-shadow: inset 0 0 24px rgba(13, 13, 13, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

/* Floating 3D Parallax Badges */
.hero__3d-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.55rem 0.95rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(13, 13, 13, 0.08), 0 2px 8px rgba(212, 175, 55, 0.16);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero__3d-pill--1 {
  top: 12%;
  left: -75px;
}

.hero__3d-pill--2 {
  top: 48%;
  right: -85px;
}

.hero__3d-pill--3 {
  bottom: 10%;
  left: -60px;
}

.hero__3d-pill-icon {
  font-size: 1rem;
  line-height: 1;
}

.hero__3d-pill-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.hero__3d-pill-text strong {
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--black);
  letter-spacing: 0.02em;
}

.hero__3d-pill-text span {
  font-size: 0.62rem;
  color: var(--muted);
}

/* 3D Controls & Switcher */
.hero__3d-controls {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
}

.hero__3d-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.9;
}

.hero__3d-hint-svg {
  animation: rotateHint 8s linear infinite;
  color: var(--red);
}

@keyframes rotateHint {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__3d-switchers {
  display: inline-flex;
  background: rgba(13, 13, 13, 0.05);
  border: 1px solid var(--border);
  padding: 3px;
  border-radius: 40px;
  gap: 2px;
}

.hero__3d-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.05rem;
  border-radius: 30px;
  color: var(--muted);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.hero__3d-btn:hover {
  color: var(--black);
}

.hero__3d-btn.active {
  background: var(--black);
  color: var(--beige);
  box-shadow: 0 4px 12px rgba(13, 13, 13, 0.18);
}

.hero__3d-btn-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

/* Actions */
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) 0.6s both;
}

.hero__btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero__btn-price {
  opacity: 0.85;
  font-weight: 400;
}

.hero__btn-sec {
  padding: 0.95rem 1.75rem;
}

/* Trust Strip */
.hero__trust-strip {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 500;
  animation: fadeUp 1s var(--ease) 0.7s both;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__trust-item svg {
  color: var(--red);
}

.hero__trust-sep {
  color: rgba(13, 13, 13, 0.2);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s var(--ease) 1s both;
}

.hero__scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollbar 2s ease-in-out infinite;
}

@keyframes scrollbar {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.2); }
}

.hero__scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile & Tablet Responsiveness for 3D Hero */
@media (max-width: 900px) {
  .hero {
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-bottom: 4.5rem;
  }
  .hero__3d-pill--1 { left: -35px; top: 8%; }
  .hero__3d-pill--2 { right: -40px; top: 46%; }
  .hero__3d-pill--3 { left: -30px; bottom: 8%; }
}

@media (max-width: 600px) {
  .hero__stage-3d {
    width: 260px;
    height: 340px;
  }
  .hero__3d-card {
    width: 225px;
    height: 300px;
  }
  .hero__3d-glow {
    width: 220px;
    height: 280px;
  }
  .hero__3d-pill {
    padding: 0.45rem 0.75rem;
    gap: 0.45rem;
  }
  .hero__3d-pill--1 {
    left: -15px;
    top: 4%;
    transform: scale(0.88);
  }
  .hero__3d-pill--2 {
    right: -15px;
    top: 50%;
    transform: scale(0.88);
  }
  .hero__3d-pill--3 {
    left: -10px;
    bottom: 4%;
    transform: scale(0.88);
  }
  .hero__3d-pill-text strong {
    font-size: 0.68rem;
  }
  .hero__3d-pill-text span {
    font-size: 0.56rem;
  }
  .hero__3d-btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.62rem;
  }
  .hero__trust-sep {
    display: none;
  }
  .hero__trust-strip {
    flex-direction: column;
    gap: 0.4rem;
  }
  .hero__scroll {
    display: none;
  }
}

/* ── Marquee ── */
.marquee {
  background: var(--black);
  color: var(--beige);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  animation: marqueeRoll 30s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.65;
}
.marquee__sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes marqueeRoll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Image Marquee ── */
.image-marquee {
  width: 100%;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--beige);
  white-space: nowrap;
}
.image-marquee__track {
  display: inline-flex;
  animation: marqueeRoll 40s linear infinite;
  gap: 1.5rem;
  padding: 0 0.75rem;
}
.image-marquee__item {
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--beige-dark);
}
.image-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.image-marquee__item:hover img {
  transform: scale(1.03);
}

/* ── Featured Split ── */
.featured {
  padding: 8rem 0;
  background: var(--beige);
}
.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.featured__img {
  position: relative;
}
.featured__img-box {
  aspect-ratio: 4/5;
  background: var(--beige-dark);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.featured__img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.featured__img-box:hover img { transform: scale(1.03); }

.lifestyle__img-box {
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
}
.lifestyle__img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.featured__img-label {
  position: absolute;
  top: 2rem; left: -1px;
  background: var(--red);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
}

.featured__kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.featured__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.featured__heading em { font-style: italic; color: var(--muted); font-weight: 400; }

.featured__line {
  width: 40px; height: 1px;
  background: var(--red);
  margin: 1.75rem 0;
}
.featured__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.featured__perks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}
.featured__perk {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
}
.featured__perk::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.featured__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Stats Bar ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
  background: var(--beige);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats__item {
  padding: 1rem 2rem;
  position: relative;
}
.stats__item + .stats__item::before {
  content:'';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: var(--border-mid);
}
.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stats__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Ingredients Teaser ── */
.ingr-section {
  padding: 8rem 0;
  background: var(--beige-dark);
}
.ingr-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.ingr-header__left {}
.ingr-header__right { flex-shrink: 0; }

.ingr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.ingr-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.ingr-card:last-child { border-right: none; }
.ingr-card:hover { background: var(--beige); }
.ingr-card__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--beige-mid);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.ingr-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.ingr-card__benefit {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.ingr-card__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ── Ritual Section ── */
.ritual-section {
  padding: 8rem 0;
  background: var(--black);
  color: var(--beige);
}
.ritual-section .label { color: rgba(245,240,232,0.4); }
.ritual-section .display-md { color: var(--beige); }

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(245,240,232,0.08);
  margin-top: 4rem;
}
.ritual-step {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid rgba(245,240,232,0.08);
  transition: background 0.3s ease;
}
.ritual-step:last-child { border-right: none; }
.ritual-step:hover { background: rgba(245,240,232,0.02); }
.ritual-step__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(245,240,232,0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.ritual-step__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--beige);
  margin-bottom: 0.85rem;
}
.ritual-step__desc { font-size: 0.85rem; color: rgba(245,240,232,0.45); line-height: 1.8; }

/* ── Testimonials ── */
.testi-section {
  padding: 8rem 0;
  background: var(--beige);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
  background: var(--border);
}
.testi-card {
  background: var(--beige);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
}
.testi-card:hover { background: var(--beige-dark); }
.testi-card.featured-testi { background: var(--black); }
.testi-card.featured-testi .testi-text { color: rgba(245,240,232,0.75); }
.testi-card.featured-testi .testi-name { color: var(--beige); }
.testi-card.featured-testi .testi-loc { color: rgba(245,240,232,0.35); }

.testi-stars { display:flex; gap:3px; margin-bottom:1.5rem; }
.testi-stars span { color: var(--red); font-size: 0.8rem; }
.testi-featured-testi .testi-stars span { color: var(--beige); }

.testi-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--black-soft);
  margin-bottom: 2rem;
}
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-card.featured-testi .testi-avatar {
  background: var(--red);
}
.testi-name { font-family: var(--font-serif); font-size: 0.9rem; font-weight: 600; }
.testi-loc { font-size: 0.75rem; color: var(--muted); }

/* ── CTA Banner ── */
.cta-section {
  padding: 8rem 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-section::before {
  content: 'RASHMÉ';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
}
.cta-section .label { color: rgba(255,255,255,0.5); }
.cta-section h2 { color: var(--white); margin: 1rem 0; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; }
.btn-beige {
  background: var(--beige);
  color: var(--red);
  border: 2px solid var(--beige);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-beige:hover { background: transparent; color: var(--beige); }
.btn-outline-beige {
  background: transparent;
  color: var(--beige);
  border: 2px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline-beige:hover { border-color: var(--beige); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .featured__grid { gap: 3.5rem; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stats__item:nth-child(3)::before { display: none; }
}
@media (max-width: 768px) {
  .featured__grid { grid-template-columns: 1fr; }
  .ingr-grid, .ritual-steps, .testi-grid { grid-template-columns: 1fr; }
  .ingr-card, .ritual-step { border-right: none; border-bottom: 1px solid var(--border); }
  .ingr-card:last-child, .ritual-step:last-child { border-bottom: none; }
  .ritual-section .ingr-card { border-bottom-color: rgba(245,240,232,0.08); }
  .testi-grid { background: var(--beige); gap: 1px; }
  .ingr-header { flex-direction: column; align-items: flex-start; }
}

/* Small mobile adjustments for hero and spacing */
@media (max-width: 480px) {
  .hero {
    padding: calc(var(--nav-h) + 2rem) 1rem 3rem;
    min-height: 70vh;
    text-align: center;
  }
  .hero__content { padding: 0 0.5rem; max-width: 100%; }
  .hero__eyebrow { font-size: 0.6rem; margin-bottom: 1.25rem; letter-spacing: 0.25em; }
  .hero__title {
    /* tighten and lower the font-size on small screens so it never overflows */
    font-size: clamp(3rem, 12vw, 6.5rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    margin-bottom: 1rem;
    word-break: normal;
    white-space: normal;
  }
  .hero__sub { font-size: clamp(0.9rem, 2.8vw, 1.1rem); margin-bottom: 1.25rem; }
  .hero__actions { gap: 0.5rem; }
  .hero__scroll { bottom: 1.25rem; }
}
