:root {
  --bg: #faf6f2;           /* overall background */
  --bg-alt: #ffffff;       /* cards / surfaces */
  --section-soft: #f4ebe1; /* soft blocks like 'section-soft' */

  --text-main: #221814;    /* deep brown, softer than black */
  --text-muted: #7a6b63;
  --text-light: #b29b8c;

  --accent: #d4a57a;       /* champagne / rose-gold */
  --accent-soft: rgba(212, 165, 122, 0.12);

  --border-soft: #efe1d4;
  --shadow-soft: 0 18px 45px rgba(15, 9, 3, 0.08);
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container-width: 1120px;

  /* extra tokens used later in the file */
  --ink: #221814;               /* same as text-main */
  --dusty-rose: #c98c88;        /* hero / primary button */
  --lavender-mist: #c7c3e8;     /* best-seller badge background */
  --soft-sage: #a9c7a4;         /* soft green badge background */
  --shadow: var(--shadow-soft); /* card shadow alias */
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(250, 246, 242, 0.96);                /* match site bg */
  border-bottom: 1px solid rgba(239, 225, 212, 0.9);    /* soft champagne line */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-image {
  height: 48px;      
  width: auto;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  color: #675e55;
  padding-bottom: 2px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--dusty-rose);
  transition: width 0.22s ease;
}

.nav a:hover::after {
  width: 100%;
}

.cart-icon {
  font-size: 1.3rem;
}

/* Hamburger toggle (hidden on desktop by default) */
.nav-toggle {
  display: none; /* shown on mobile via media query */
  background: none;
  border: none;
  padding: 0;
  margin-right: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #675e55;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

/* Animate into an "X" when open */
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero – warm, cinematic, luxury */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000; /* safe fallback */
  color: #fff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Deep warm gradient, but not too heavy */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 10, 7, 0.78) 0%,
    rgba(18, 10, 7, 0.52) 32%,
    rgba(18, 10, 7, 0.24) 65%,
    rgba(18, 10, 7, 0.02) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 80px 0 70px;
}

/* Text styling – softer white, luxe letterspacing */
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin: 0 0 10px;
  color: rgba(255, 248, 243, 0.78);
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 3vw + 1rem, 3.4rem);
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  color: #fdf7f0;
}

.hero-text {
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 34rem;
  color: rgba(255, 249, 243, 0.9);
}

/* Soft, expensive-looking text shadow */
.hero h1,
.hero-text,
.hero-eyebrow {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* reset any old glass styles */
.hero-copy,
.hero-card,
.hero-panel {
  background: none;
  border: none;
  box-shadow: none;
}
.mini-list {
  margin: 0.6rem 0 0.9rem;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: #6b5e53;
}

.mini-list li {
  margin-bottom: 0.2rem;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    color 0.12s ease,
    border-color 0.12s ease;
}
/* Primary button glow */
.btn.primary {
  background: var(--dusty-rose);
  color: #fff;
  box-shadow:
    0 6px 18px rgba(201, 140, 136, 0.40),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 4px 10px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2px);
  transition: all 0.28s ease;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 28px rgba(201, 140, 136, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 6px 14px rgba(255, 255, 255, 0.35);
}

/* Outline button glow (soft, elegant) */
.btn.outline {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(3px);
  transition: all 0.28s ease;
}

.btn.outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.50);
  box-shadow:
    0 8px 22px rgba(255, 255, 255, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.btn.ghost {
  background: #fff;
  border-color: #f0e9e1;
  color: #705e55;
}

.btn.ghost:hover {
  background: #f9f4ee;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* Pillars strip */

.pillars {
  background: #f9f3ec;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.pillars-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 18px 0;
}

.pillar-item {
  font-size: 0.9rem;
  color: #6f655c;
}

.pillar-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #8c7d72;
  margin-bottom: 4px;
}

.pillar-text {
  margin: 0;
}

/* Sections */

.section {
  padding: 70px 0;
}

.section-soft {
  background: #f9f4ee;
}

.section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 6px;
}

.section-lead {
  font-size: 0.98rem;
  color: #6e655c;
  max-width: 560px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.section-link {
  font-size: 0.9rem;
  color: #7d6e63;
}

.section-link:hover {
  color: var(--dusty-rose);
}

/* Grid */

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: 1.2fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.card {
  background: var(--bg-alt);
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.10);
}

.product-card {
  position: relative;
}

.product-image.placeholder {
  height: 190px;
  border-radius: 18px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f4e8dc, #f0e6f5);
}

.product-image.spray {
  background: linear-gradient(135deg, #f4e8dc, #e7e9f5);
}

.product-image.cards {
  background: linear-gradient(135deg, #f0e6f5, #e6f0eb);
}

.product-image.deck {
  background: linear-gradient(135deg, #f4e8dc, #f7e8f1);
}
.product-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  min-height: 3.4em;
}

.price-line {
  font-size: 0.9rem;
  color: #9a8c80;
  margin: 0 0 0.6rem;
}
.product-card h3 {
  margin: 0 0 0.4rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
}

/* Badges */
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lavender-mist);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.badge.soft {
  background: var(--soft-sage);
}

.static-badge {
  position: static;
  display: inline-block;
  margin-bottom: 0.8rem;
}

/* Lists */

.list {
  padding-left: 1.1rem;
  margin: 0.6rem 0 0;
  color: #6a6057;
  font-size: 0.95rem;
}

.list li {
  margin-bottom: 0.3rem;
}

/* Intentions */
/* Make soft sections use the shared color token */
.section-soft {
  background: var(--section-soft);
}

/* Mini label above intention titles */
.mini-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

/* Intention cards styling */
.intention-card {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 22px 22px 24px;
  border-radius: 22px;
  background: var(--bg-alt);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.intention-card h3 {
  margin: 0 0 0.4rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.intention-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.intention-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.10);
  background: #fdf9f4;
}

/* Subscription */

#subscription.section {
  background: var(--bg-alt); /* subtle break from previous band */
}

.subscription-grid {
  align-items: center;
  gap: 40px;
}

.box-preview {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #f7ece0, #fbeff4);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.96);
}

/* text inside the preview card */
.box-preview p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.box-preview .section-lead {
  margin-top: 1rem !important;
  font-size: 0.93rem;
}

.box-preview .small {
  margin-top: 0.9rem;
}

/* About */

.about-grid {
  align-items: center;
  gap: 40px;
}

.about-card {
  background: #fffdf9;
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.96);
}

.about-card .section-lead {
  margin-bottom: 0.8rem;
}

.about-card .list {
  margin-top: 0.2rem;
}

/* Forms */

.optin-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.optin-form input {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid #dcd1c7;
  min-width: 230px;
  font-size: 0.93rem;
}

/* Contact */

.contact-grid {
  align-items: start;
}

/* Small text */

.small {
  font-size: 0.8rem;
  color: #847a70;
  margin-top: 0.5rem;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 30px;
  font-size: 0.85rem;
  color: #83796e;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  /* Header / nav */
  .header-inner {
    padding: 0;
    height: 60px;
    gap: 8px;
  }

  .logo-image {
    height: 38px;  /* slightly smaller on mobile so it fits nicely */
  }

  /* Show hamburger, override nav layout on mobile */
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(250, 246, 242, 0.98);
    border-bottom: 1px solid rgba(239, 225, 212, 0.9);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px 16px;
    gap: 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 25;
  }

  body.nav-open .nav {
    display: flex;
  }

  .cart-icon {
    margin-right: 0;
  }

  /* Hero */
  .hero {
    min-height: 65vh;
    align-items: flex-end;
  }

  .hero-inner {
    padding: 64px 0 40px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 0.93rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Pillars strip */
  .pillars-inner {
    grid-template-columns: 1fr;
    padding: 14px 0 18px;
    row-gap: 10px;
  }

  /* Sections & grids */
  .section {
    padding: 44px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .card,
  .intention-card,
  .about-card,
  .box-preview {
    margin-bottom: 14px;
  }

  .subscription-grid,
  .about-grid,
  .contact-grid {
    gap: 20px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.78rem;
  }
}
