/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark);
  padding: 0 1.25rem;
  border-bottom: 1px solid rgba(200,124,58,0.25);
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 0.5rem;
  cursor: pointer;
}
.logo-icon { width: 28px; height: 28px; fill: var(--gold); }
.nav-icons { display: flex; gap: 1rem; align-items: center; }
.nav-icon {
  color: var(--cream); font-size: 1.3rem;
  cursor: pointer; background: none; border: none; padding: 4px;
  position: relative;
}
.nav-cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: var(--green);
  width: 16px; height: 16px; border-radius: 50%;
  font-size: 0.55rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: all 0.3s;
}
.nav-links-desktop { display: flex; gap: 1.75rem; }
.nav-links-desktop a {
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  transition: color 0.2s; font-weight: 400;
}
.nav-links-desktop a:hover { color: var(--gold); }
.mobile-menu {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0;
  background: var(--dark); z-index: 99;
  padding: 1.5rem;
  flex-direction: column; gap: 1.25rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem; text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 300; letter-spacing: 0.06em;
}

/* HERO */
.hero {
  background: linear-gradient(160deg, #FAF0E0 0%, #F5E8D0 50%, #EDD9B8 100%);
  color: var(--text);
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem 1.5rem 4rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(200,124,58,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(122,155,120,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 1rem; font-weight: 500;
}
.hero-eyebrow::before { content: '❧ '; opacity: 0.6; }
.hero-eyebrow::after { content: ' ❧'; opacity: 0.6; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 9vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.25rem; color: var(--green);
}
.hero-title em { font-style: italic; color: var(--saffron); }
.hero-sub {
  font-size: 0.92rem; color: var(--muted);
  max-width: 420px; margin: 0 auto 2rem;
  font-weight: 300; line-height: 1.75;
}
.hero-cta { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--saffron); color: #fff;
  padding: 0.8rem 2rem; border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.btn-gold:hover { background: var(--gold-light); color: var(--dark); }
.btn-outline {
  background: transparent; color: var(--saffron);
  padding: 0.8rem 2rem; border: 1px solid var(--saffron);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { background: rgba(200,124,58,0.08); }
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.scroll-line {
  width: 1px; height: 36px;
  background: rgba(200,124,58,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: rgba(58,42,26,0.4); text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* TRUST BAR */
/* BRAND STRIP — scrolling lifestyle imagery */
.brand-strip {
  background: linear-gradient(180deg, #faf2e2 0%, #f5ead8 100%);
  overflow: hidden; padding: 1.25rem 0;
  border-top: 1px solid rgba(200,124,58,0.12);
  border-bottom: 1px solid rgba(200,124,58,0.12);
}
.brand-strip-track {
  display: flex; gap: 1rem;
  width: max-content;
  animation: brand-marquee 60s linear infinite;
  padding: 0 1rem;
}
.brand-strip:hover .brand-strip-track { animation-play-state: paused; }
.brand-tile {
  flex: 0 0 auto;
  width: 220px; height: 165px;
  background-size: cover; background-position: center;
  border-radius: 14px;
  position: relative; overflow: hidden;
  cursor: pointer; text-decoration: none;
  box-shadow:
    0 10px 24px -14px rgba(45,90,62,0.35),
    0 4px 10px -6px rgba(28,15,5,0.12);
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.brand-tile:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 18px 32px -14px rgba(45,90,62,0.45),
    0 8px 14px -6px rgba(28,15,5,0.18);
}
.brand-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,15,5,0) 50%, rgba(28,15,5,0.72) 100%);
  pointer-events: none;
}
.brand-tile-name {
  position: absolute; bottom: 0.65rem; left: 0; right: 0; z-index: 2;
  text-align: center; color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
@keyframes brand-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .brand-tile { width: 170px; height: 128px; }
  .brand-tile-name { font-size: 0.85rem; }
  .brand-strip-track { animation-duration: 45s; }
}

/* STATS */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--ivory);
  border-bottom: 1px solid rgba(200,124,58,0.15);
}
.stat {
  padding: 1.5rem 1rem; text-align: center;
  border-right: 1px solid rgba(200,124,58,0.15);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--saffron); line-height: 1;
}
.stat-l {
  font-size: 0.65rem; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 0.3rem;
}

/* SECTION */
.section { padding: 3rem 1.25rem; }
.grid-clear {
  margin-top: 0.9rem; background: transparent;
  border: 1px solid var(--saffron); color: var(--saffron);
  font-family: 'Jost', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 1.1rem; border-radius: 999px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.grid-clear:hover { background: var(--saffron); color: #fff; }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head::after {
  content: '✦'; display: block; text-align: center;
  color: var(--saffron); opacity: 0.4;
  font-size: 0.8rem; margin-top: 0.75rem;
  letter-spacing: 0.3em;
}
.eyebrow {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem; font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 300; color: var(--green);
  line-height: 1.2; letter-spacing: 0.01em;
}

/* PRODUCTS */
.products-bg { background: var(--cream); }
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 600px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
.prod-card {
  background: #fff;
  border: 1px solid rgba(200,124,58,0.12);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.prod-img-wrap {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
}
.prod-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.04); }
.prod-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.58rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px; font-weight: 500;
}
.badge-green { background: var(--green); color: #FAE8CC; }
.badge-gold { background: var(--gold); color: var(--green); }
.prod-body { padding: 0.85rem; }
.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--green); margin-bottom: 0.15rem;
  line-height: 1.2;
}
.prod-desc {
  font-size: 0.7rem; color: var(--muted);
  margin-bottom: 0.6rem; letter-spacing: 0.04em;
}
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 0.95rem; font-weight: 500; color: var(--green); }
.add-btn {
  width: 30px; height: 30px;
  background: var(--saffron); color: #fff;
  border: none; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.add-btn:hover { background: var(--gold-light); color: var(--dark); }

/* RITUAL */
.ritual-bg {
  background: linear-gradient(160deg, #2A1200 0%, #3D1C08 60%, #4A2510 100%);
  color: white;
}
.ritual-steps {
  display: flex; flex-direction: column; gap: 1.5rem;
  max-width: 420px; margin: 0 auto;
}
.r-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.r-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--gold);
  opacity: 0.6; font-weight: 400;
  line-height: 1; min-width: 36px;
}
.r-content .r-title {
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: 0.25rem; letter-spacing: 0.04em;
}
.r-content .r-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  line-height: 1.6; font-weight: 300;
}

/* VALUES */
.values-bg { background: var(--cream2); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 500px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.val-card {
  background: var(--ivory); padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(200,124,58,0.12);
  transition: border-color 0.2s;
}
.val-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.val-title {
  font-size: 0.8rem; font-weight: 500;
  color: var(--green); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 0.3rem;
}
.val-desc { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }

/* TESTIMONIALS */
.testi-grid { display: flex; flex-direction: column; gap: 1rem; }
.testi-card {
  background: var(--ivory);
  padding: 1.25rem;
  border: 1px solid rgba(200,124,58,0.15);
  border-left: 3px solid var(--saffron);
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  font-weight: 300; color: var(--green);
  line-height: 1.6; margin-bottom: 0.75rem;
}
.testi-author {
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--muted); text-transform: uppercase;
}
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.4rem; }

/* NEWSLETTER */
.nl-bg {
  background: linear-gradient(160deg, #2A1200 0%, #3D1C08 100%);
  color: white; text-align: center; padding: 3rem 1.5rem;
}
.nl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 400; margin-bottom: 0.5rem;
}
.nl-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem; font-weight: 300;
}
.nl-form { display: flex; max-width: 380px; margin: 0 auto; gap: 0; }
.nl-input {
  flex: 1; padding: 0.75rem 1rem;
  border: 1px solid rgba(200,124,58,0.35);
  background: rgba(255,255,255,0.07); color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; outline: none;
}
.nl-input::placeholder { color: rgba(255,255,255,0.35); }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 2.5rem 1.5rem 1.5rem;
  font-size: 0.78rem;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--saffron);
  letter-spacing: 0.06em; font-weight: 400;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(200,124,58,0.3);
  transition: all 0.2s;
}
.footer-social a:hover {
  color: #fff; background: var(--saffron); border-color: var(--saffron);
}
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 0.75rem; font-weight: 500;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.5);
  text-decoration: none; margin-bottom: 0.4rem;
  font-size: 0.75rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(200,124,58,0.15);
  padding-top: 1rem; text-align: center;
  font-size: 0.68rem; color: rgba(255,255,255,0.25);
}

/* MOBILE */
@media (max-width: 600px) {
  .nav-links-desktop { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 2.5rem 1.25rem 3.5rem; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (min-width: 601px) {
  .hamburger { display: none; }
  .testi-grid { flex-direction: row; }
  .testi-card { flex: 1; }
}
