:root {
  --bg: #f7f4ee;
  --surface: rgba(255,255,255,0.74);
  --text: #1f1b16;
  --muted: #6c6256;
  --line: rgba(31, 27, 22, 0.10);
  --accent: #c67c2f;
  --accent-dark: #a35f1c;
  --accent-soft: #f4e3d0;
  --shadow-sm: 0 8px 24px rgba(31, 27, 22, 0.06);
  --shadow-md: 0 18px 50px rgba(31, 27, 22, 0.10);
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --max: 1180px;
  --header-h: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(198,124,47,0.08), transparent 28%),
    radial-gradient(circle at right center, rgba(198,124,47,0.05), transparent 24%),
    var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 10px 14px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 244, 238, 0.86);
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(31, 27, 22, 0.05);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 27, 22, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  font-family: 'Zodiak', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.brand-tag {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.2;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.55);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  min-height: 48px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #000;
  box-shadow: var(--shadow-md);
}

.btn-soft {
  background: rgba(255,255,255,0.8);
  border-color: var(--line);
  color: var(--text);
}

.btn-soft:hover {
  background: #fff;
}

.btn-amazon {
  background: #ff9900;
  color: #111;
}

.btn-meesho {
  background: #e91e63;
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.desktop-only {
  display: inline-flex;
}

.hero {
  padding: 28px 0 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(198,124,47,0.18);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-family: 'Zodiak', serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.hero-lead {
  margin: 16px 0 0;
  font-size: 1.03rem;
  color: var(--muted);
  max-width: 54ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card {
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.68));
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  background: #f4efe7;
  aspect-ratio: 4 / 4.2;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trust-strip {
  padding: 8px 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 58px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-kicker {
  display: inline-block;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid rgba(198,124,47,0.16);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 8px;
  font-family: 'Zodiak', serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.product-card,
.collection-card {
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-image,
.collection-image {
  position: relative;
  overflow: hidden;
  background: #f5f1ea;
  aspect-ratio: 1 / 1;
}

.product-image img,
.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img,
.collection-card:hover .collection-image img {
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.product-body,
.collection-body {
  padding: 16px 16px 18px;
}

.product-title,
.collection-title {
  margin: 0 0 6px;
  font-size: 1.04rem;
  font-weight: 700;
}

.product-desc,
.collection-desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.70));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.spotlight-media {
  border-radius: 22px;
  overflow: hidden;
  background: #f4efe7;
  aspect-ratio: 1 / 1;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.spotlight-copy h3 {
  margin: 0 0 12px;
  font-family: 'Zodiak', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.05;
}

.spotlight-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.benefits {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 13px;
}

.spotlight-cta {
  margin-bottom: 0;
}

.cta-box {
  background: linear-gradient(135deg, #17130f, #241b13);
  color: #fff;
  border-radius: 30px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(198,124,47,0.18);
  filter: blur(10px);
}

.cta-box h2 {
  color: #fff;
  margin-bottom: 10px;
}

.cta-box p {
  color: rgba(255,255,255,0.78);
  max-width: 55ch;
  margin: 0 0 20px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 28px 0 92px;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.mobile-sticky-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .spotlight,
  .cards-3,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-3 .product-card:last-child,
  .trust-grid .trust-item:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .nav-link,
  .desktop-only {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid,
  .trust-grid,
  .cards-3,
  .cards-2,
  .spotlight {
    grid-template-columns: 1fr;
  }

  .cards-3 .product-card:last-child,
  .trust-grid .trust-item:last-child {
    grid-column: auto;
  }

  .section {
    padding: 48px 0;
  }

  .hero-cta,
  .cta-actions {
    flex-direction: column;
  }

  .hero-cta .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .brand-tag {
    font-size: 0.82rem;
  }

  .mobile-sticky-bar {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    background: rgba(247, 244, 238, 0.88);
    border: 1px solid rgba(31, 27, 22, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 8px;
    box-shadow: var(--shadow-md);
  }

  .footer {
    padding-bottom: 110px;
  }
}