/* ========================================
   SIMPLY LIVING — Brutally Simple
   One page. Logo. Links. Products. Done.
   ======================================== */

:root {
  --cream: #FAF6F1;
  --warm-bg: #F5EDE3;
  --bark: #3D2B1F;
  --bark-soft: #6B5E54;
  --sage: #4A5D4E;
  --honey: #C8A26E;
  --text-light: #8B7D72;
  --border: #E8DFD4;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  color: var(--bark);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ======== Page — full height, spread apart ======== */
.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  position: relative;
}

/* ======== Logo — pinned top ======== */
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.logo {
  height: 252px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-top: 6.15vh;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--bark);
}

/* ======== Navigation — dead center ======== */
.main-nav {
  display: flex;
  gap: 5.11rem;
  margin-bottom: auto;
  padding-top: calc(2rem + 13vh);
  align-items: center;
  position: relative;
}

.main-nav a {
  font-family: 'Amatic SC', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bark-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bark);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--bark);
}

.main-nav a:hover::after {
  width: 100%;
}

/* ======== Footer ======== */
.bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-row {
  display: flex;
  gap: 1.5rem;
}

.social-row a {
  color: var(--bark-soft);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.social-row a:hover {
  opacity: 1;
  color: var(--bark);
}

.bottom-bar p {
  font-family: 'Amatic SC', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ======== Inner Pages (Our Story, Upcoming) ======== */
.inner-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  background: var(--cream);
}

.back-link {
  align-self: flex-start;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  margin-bottom: 4rem;
}

.back-link:hover {
  color: var(--bark);
}

/* Mini logo — centered at top of sub-pages */
.mini-logo-link {
  display: flex;
  justify-content: center;
  align-self: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mini-logo-link:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

.mini-logo {
  width: 40px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.inner-content {
  max-width: 600px;
  width: 100%;
  flex: 1;
}

.inner-content h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--bark);
  line-height: 1.1;
  margin-bottom: 3rem;
  text-align: center;
}

/* ======== OUR STORY PAGE ======== */
.story-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 3rem;
  background: var(--cream);
}

.story-heading {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--bark-soft);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-image {
  width: 100%;
  max-width: 800px;
  margin-bottom: 3rem;
  border-radius: 2px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-image-note {
  display: block;
  text-align: right;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--bark-soft);
  opacity: 0.6;
  margin-top: 0.5rem;
  font-style: italic;
}

.story-text {
  max-width: 540px;
  text-align: center;
}

.story-text p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.story-lead {
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  color: var(--bark) !important;
  margin-bottom: 0.3rem !important;
}

.story-emphasis {
  font-style: italic;
  color: var(--bark-soft) !important;
  margin-bottom: 2rem !important;
}

.story-promise {
  font-weight: 400 !important;
  color: var(--bark) !important;
  font-size: 1.1rem !important;
  margin-top: 0.5rem;
}

.story-closer {
  font-weight: 500 !important;
  color: var(--bark) !important;
  margin-top: 1rem;
}

/* ======== VOTING PAGE ======== */
.vote-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 3rem;
  background: var(--cream);
}

.vote-heading {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--bark-soft);
  text-align: center;
  margin-bottom: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vote-subheading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--bark);
  text-align: center;
  max-width: 480px;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.vote-intro {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  text-align: center;
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Community counter */
.vote-community {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 0.7rem 1.8rem;
  border: 1.5px solid #7A8B6F;
  border-radius: 2px;
  background: rgba(122, 139, 111, 0.06);
}

.community-count {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #4A5B3F;
}

.community-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: #5A6B4F;
}

/* Leaderboard */
.vote-board {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

/* Vote row base */
.vote-row {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  user-select: none;
  transition: all 0.4s ease;
  min-height: 72px;
}

/* ===== PER-COLOR HOVER STATES ===== */
.vote-row.color-green:hover {
  border-color: #7A8B6F;
  box-shadow: 0 6px 24px rgba(90, 107, 79, 0.15);
  transform: translateY(-2px);
}
.vote-row.color-blue:hover {
  border-color: #6B8EA0;
  box-shadow: 0 6px 24px rgba(75, 120, 143, 0.15);
  transform: translateY(-2px);
}
.vote-row.color-amber:hover {
  border-color: #C4A535;
  box-shadow: 0 6px 24px rgba(170, 145, 40, 0.15);
  transform: translateY(-2px);
}
.vote-row.color-lavender:hover {
  border-color: #8B7AAF;
  box-shadow: 0 6px 24px rgba(120, 100, 155, 0.15);
  transform: translateY(-2px);
}

/* ===== PER-COLOR LIT STATES ===== */
.vote-row.color-green.lit {
  border-color: #6B7D5F;
  box-shadow: 0 0 28px rgba(90, 107, 79, 0.3), 0 0 56px rgba(90, 107, 79, 0.12), 0 8px 24px rgba(90, 107, 79, 0.18);
  transform: translateY(-3px);
  animation: litPulse 0.6s ease;
}
.vote-row.color-blue.lit {
  border-color: #5A7F92;
  box-shadow: 0 0 28px rgba(75, 120, 143, 0.3), 0 0 56px rgba(75, 120, 143, 0.12), 0 8px 24px rgba(75, 120, 143, 0.18);
  transform: translateY(-3px);
  animation: litPulse 0.6s ease;
}
.vote-row.color-amber.lit {
  border-color: #AA9128;
  box-shadow: 0 0 28px rgba(170, 145, 40, 0.3), 0 0 56px rgba(170, 145, 40, 0.12), 0 8px 24px rgba(170, 145, 40, 0.18);
  transform: translateY(-3px);
  animation: litPulse 0.6s ease;
}
.vote-row.color-lavender.lit {
  border-color: #7A69A0;
  box-shadow: 0 0 28px rgba(120, 100, 155, 0.3), 0 0 56px rgba(120, 100, 155, 0.12), 0 8px 24px rgba(120, 100, 155, 0.18);
  transform: translateY(-3px);
  animation: litPulse 0.6s ease;
}

@keyframes litPulse {
  0% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-4px) scale(1.012); }
  100% { transform: translateY(-3px) scale(1); }
}

/* ===== REVEALED STATE ===== */
.vote-row.color-green.revealed { border-color: #8A9B7F; }
.vote-row.color-blue.revealed { border-color: #8BB5C9; }
.vote-row.color-amber.revealed { border-color: #D4B84A; }
.vote-row.color-lavender.revealed { border-color: #A594C4; }

.vote-row.revealed {
  cursor: default;
  opacity: 0.8;
}

/* ===== PER-COLOR BACKGROUND FILLS ===== */
.vote-row-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.color-green .vote-row-bg {
  background: linear-gradient(90deg, rgba(122, 139, 111, 0.2), rgba(106, 128, 92, 0.38));
}
.color-blue .vote-row-bg {
  background: linear-gradient(90deg, rgba(107, 142, 160, 0.2), rgba(75, 122, 143, 0.35));
}
.color-amber .vote-row-bg {
  background: linear-gradient(90deg, rgba(196, 165, 53, 0.15), rgba(170, 145, 40, 0.32));
}
.color-lavender .vote-row-bg {
  background: linear-gradient(90deg, rgba(139, 122, 175, 0.15), rgba(107, 90, 143, 0.32));
}

/* Brighter fill during lit state */
.color-green.lit .vote-row-bg {
  background: linear-gradient(90deg, rgba(122, 139, 111, 0.28), rgba(106, 128, 92, 0.48));
}
.color-blue.lit .vote-row-bg {
  background: linear-gradient(90deg, rgba(107, 142, 160, 0.28), rgba(75, 122, 143, 0.45));
}
.color-amber.lit .vote-row-bg {
  background: linear-gradient(90deg, rgba(196, 165, 53, 0.22), rgba(170, 145, 40, 0.42));
}
.color-lavender.lit .vote-row-bg {
  background: linear-gradient(90deg, rgba(139, 122, 175, 0.22), rgba(107, 90, 143, 0.42));
}

/* Content */
.vote-row-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.vote-row-left {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.vote-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 0.15rem;
  transition: color 0.3s ease;
}

.vote-desc {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.4;
}

.vote-row-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 1rem;
}

/* Vote numbers — hidden by default */
.vote-numbers {
  text-align: right;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.vote-numbers.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Per-color vote count text */
.color-green .vote-count { color: #3A4A30; }
.color-blue .vote-count { color: #2E5A6B; }
.color-amber .vote-count { color: #7A6510; }
.color-lavender .vote-count { color: #4A3A6B; }

.vote-count {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
}

.vote-remaining {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--text-light);
  display: block;
  margin-top: 0.15rem;
}

/* Count bump */
.count-bump {
  animation: bump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 200;
}

.particle {
  position: absolute;
  border-radius: 50%;
  width: var(--size, 4px);
  height: var(--size, 4px);
  animation: particlePop 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes particlePop {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.3);
  }
}

/* Thank you float */
.vote-thanks {
  position: fixed;
  z-index: 100;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: #4A5B3F;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: none;
  text-shadow: 0 1px 8px rgba(90, 107, 79, 0.15);
}

.vote-thanks.show {
  animation: thankFloat 1.4s ease-out forwards;
}

@keyframes thankFloat {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  20% { opacity: 1; transform: translate(-50%, -55%) scale(1.05); }
  40% { opacity: 1; transform: translate(-50%, -70%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -130%) scale(0.9); }
}

/* Divider */
.vote-divider {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.vote-divider::before,
.vote-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #7A8B6F;
  opacity: 0.4;
}

.vote-divider span {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 1.4rem;
  color: #4A5B3F;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Unlocked cards — golden */
.coming-grid {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.coming-card {
  padding: 1.5rem 2rem;
  border: 1.5px solid #C4A535;
  border-radius: 2px;
  background: rgba(196, 165, 53, 0.05);
}

.coming-card-inner { text-align: center; }

.coming-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 0.3rem;
}

.coming-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.coming-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.coming-date {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: #8B7A20;
  font-style: italic;
}

.coming-eta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--bark);
}

/* ======== About Page ======== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo { z-index: 10; }

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--bark-soft);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.nav-link:hover { color: var(--bark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  z-index: 10;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--bark);
  transition: all 0.3s ease;
}

/* About Hero */
.about-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: var(--warm-bg);
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bark);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.about-hero p {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--honey);
  margin-bottom: 1rem;
}

/* About Content */
.about-content {
  padding: 5rem 2rem;
  background: var(--cream);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-block {
  margin-bottom: 3rem;
}

.about-block h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--bark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-block p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.beliefs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.belief {
  background: var(--warm-bg);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 3px solid var(--honey);
}

.belief h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--bark);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.belief p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

.about-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sidebar-img {
  border-radius: 4px;
  overflow: hidden;
}

.sidebar-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.sidebar-stat {
  background: var(--warm-bg);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
}

.sidebar-stat .stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sage);
  display: block;
}

.sidebar-stat p {
  color: var(--text-light);
  font-size: 0.8rem;
  margin: 0;
}

/* Quote */
.quote-section {
  background: var(--sage);
  padding: 5rem 2rem;
}

.quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-inner blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: white;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.quote-inner cite {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* About CTA */
.about-cta {
  padding: 5rem 2rem;
  background: var(--cream);
  text-align: center;
}

.about-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-cta p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--bark);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--sage);
}

/* Footer (inner pages) */
.footer {
  background: var(--bark);
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 30px;
  width: auto;
  opacity: 0.6;
}

.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.footer-social a:hover { opacity: 0.9; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.4;
}

/* ======== Coming Soon / Voting Page ======== */
.page-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: var(--warm-bg);
}

.page-hero-inner {
  max-width: 550px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 0.8rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.page-hero p, .page-hero-sub {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.voting-section {
  padding: 4rem 2rem 6rem;
  background: var(--cream);
}

.voting-inner {
  max-width: 900px;
  margin: 0 auto;
}

.vote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vote-card {
  background: var(--warm-bg);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.vote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(61, 43, 31, 0.06);
  border-color: var(--border);
}

.vote-img-area {
  background: var(--cream);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-emoji { font-size: 2.5rem; }

.vote-body { padding: 1.5rem; }

.vote-body h3 {
  font-family: var(--font-serif);
  color: var(--bark);
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.vote-body p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.vote-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.vote-ingredients span {
  background: rgba(74, 93, 78, 0.1);
  color: var(--sage);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 500;
}

.vote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.vote-count { font-size: 0.8rem; color: var(--text-light); }
.count-num { font-family: var(--font-serif); font-size: 1.2rem; color: var(--bark); }

.vote-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--bark);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vote-btn:hover { background: var(--bark); color: var(--cream); }

.vote-bar-bg { height: 2px; background: var(--border); overflow: hidden; }
.vote-bar { height: 100%; background: var(--sage); transition: width 0.5s ease; }

.vote-note { text-align: center; margin-top: 3rem; }
.vote-note p { color: var(--text-light); font-size: 0.85rem; font-weight: 300; }
.vote-note a { color: var(--sage); font-weight: 500; border-bottom: 1px solid var(--sage); }

/* ======== Animations ======== */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.vis { opacity: 1; transform: translateY(0); }

/* ======== SHOP PAGE ======== */
.shop-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 3rem;
  background: var(--cream);
  transition: opacity 0.3s ease;
}

.shop-page.hidden {
  display: none;
}

.shop-page .back-link {
  align-self: flex-start;
  margin-bottom: 0;
}

/* Product Grid */
.shop-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  padding: 2rem 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-width: 240px;
  width: 100%;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  max-width: 100%;
  height: auto;
}

.product-card:hover .product-card-name {
  color: var(--bark);
}

.product-card-img {
  width: 200px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  mix-blend-mode: multiply;
  filter: brightness(1.12) saturate(1.05);
}

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

.product-card-name {
  font-family: 'Amatic SC', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bark-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* Shop tagline */
.shop-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  padding: 2rem 0 1rem;
}

/* ======== PRODUCT DETAIL VIEW ======== */
.product-detail {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 50;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  isolation: isolate;
}

.product-detail.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mini logo in detail view — centered at top */
.detail-logo-link {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 56;
  margin-bottom: 0;
}

.detail-logo-link .mini-logo {
  mix-blend-mode: multiply;
}

.detail-close {
  position: fixed;
  top: 2rem;
  left: 2rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--bark-soft);
  cursor: pointer;
  z-index: 55;
  transition: color 0.3s ease;
  font-family: var(--font-sans);
}

.detail-close:hover {
  color: var(--bark);
}

.detail-content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-image {
  width: 100%;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.detail-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: brightness(1.12) saturate(1.05);
}

.detail-info {
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.detail-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--bark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.detail-price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--bark-soft);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.detail-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--bark);
  border: none;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-bottom: 3rem;
  padding: 0.5rem;
}

.detail-add-btn:hover {
  opacity: 0.5;
}

.detail-section {
  text-align: left;
  margin-bottom: 2rem;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.detail-section-title {
  font-family: 'Amatic SC', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.detail-uses {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2;
}

.detail-uses li::before {
  content: '•  ';
  color: var(--bark-soft);
}

.detail-ingredients {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-ingredients li::before {
  content: '•  ';
  color: var(--bark-soft);
}

.ingredients-pride {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bark-soft);
  margin-top: 1rem;
}

/* ======== SLIDE-IN CART ======== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 43, 31, 0.12);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  max-width: 90vw;
  background: var(--cream);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 1px solid var(--border);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-title {
  font-family: 'Amatic SC', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--bark-soft);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.cart-close:hover {
  color: var(--bark);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 50px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cart-item-name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--bark);
}

.cart-item-price {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--bark);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.qty-btn:hover {
  border-color: var(--bark);
  background: var(--warm-bg);
}

.qty-num {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--bark);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 0.3rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.cart-item-remove:hover {
  opacity: 1;
}

.cart-footer {
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.cart-subtotal span:first-child {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--bark-soft);
  letter-spacing: 0.04em;
}

.cart-subtotal span:last-child {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--bark);
}

.apple-pay-btn {
  width: 100%;
  padding: 0.8rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  transition: opacity 0.2s ease;
  letter-spacing: 0.02em;
}

.apple-pay-btn:hover {
  opacity: 0.85;
}

.checkout-btn {
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--bark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: var(--bark);
  color: var(--cream);
}

.cart-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-empty p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
}

/* Floating cart icon */
.cart-icon-btn {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 80;
  transition: all 0.3s ease;
  color: var(--bark);
}

.cart-icon-btn:hover {
  border-color: var(--bark);
  background: var(--warm-bg);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--sage);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======== Responsive ======== */
@media (max-width: 768px) {
  .main-nav { gap: 2rem; }
  .product-thumb { width: 65px; height: 65px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--cream);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 5;
  }
  .nav-links.open .nav-link {
    color: var(--bark);
    font-size: 1.3rem;
    font-family: var(--font-serif);
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar-stat { flex: 1; min-width: 100px; }
  .sidebar-img { max-width: 300px; }

  .vote-grid { grid-template-columns: 1fr; }

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

  /* Shop responsive */
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1rem 0;
  }
  .product-card-img {
    max-width: 180px;
  }
  .detail-content {
    padding: 5rem 1.5rem 4rem;
  }
  .detail-image {
    max-width: 300px;
  }
  .detail-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .main-nav { flex-direction: column; gap: 1.2rem; align-items: center; }
  .product-row { gap: 0.8rem; }
  .product-thumb { width: 55px; height: 55px; }

  .product-card-img {
    width: 150px;
    height: 200px;
  }
  .product-card-name {
    font-size: 1.2rem;
  }
  .email-capture { padding: 2rem 1.25rem; }
  .email-form { flex-direction: column; }
  .email-form input, .email-form button { width: 100%; }
  .cta-btn { padding: 0.8rem 2rem; font-size: 0.85rem; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ======== EMAIL CAPTURE ======== */
.email-capture {
  width: 100%;
  max-width: 480px;
  text-align: center;
  padding: 2.5rem 2rem;
}

.email-capture h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 0.4rem;
}

.email-capture p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.email-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
  color: var(--bark);
  outline: none;
  transition: border-color 0.3s ease;
}

.email-form input:focus {
  border-color: var(--bark-soft);
}

.email-form input::placeholder {
  color: var(--text-light);
}

.email-form button {
  padding: 0.7rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--bark);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.email-form button:hover {
  background: var(--bark-soft);
  transform: translateY(-1px);
}

.email-success {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--sage);
  display: none;
  animation: fadeUp 0.5s ease;
}

.email-success.show {
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======== CTA BUTTON ======== */
.cta-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: var(--bark);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background: var(--bark-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.2);
}

.cta-section {
  text-align: center;
  margin: 2rem 0;
}

/* ======== PRODUCT CARD ENHANCEMENTS ======== */
.product-card-type {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.product-card-price {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bark);
  margin-top: 0.4rem;
}

.product-card-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sage);
  border: 1px solid rgba(74, 93, 78, 0.3);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  margin-top: 0.5rem;
  background: rgba(74, 93, 78, 0.06);
}

/* Starter Kit card */
.product-card.starter-kit {
  border: 1.5px solid var(--honey);
  border-radius: 2px;
  background: rgba(200, 162, 110, 0.04);
}

.product-card.starter-kit:hover {
  border-color: #b8923d;
  box-shadow: 0 8px 32px rgba(200, 162, 110, 0.15);
}

.starter-kit-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B6B2A;
  background: rgba(200, 162, 110, 0.15);
  border: 1px solid rgba(200, 162, 110, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.35rem;
}

.starter-kit-savings {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--sage);
  margin-top: 0.25rem;
}

/* ======== FAQ / TRUST SIGNALS ======== */
.trust-section {
  width: 100%;
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.trust-heading {
  font-family: 'Amatic SC', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bark-soft);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.faq-item {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
}

.faq-item h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

/* ======== POLISH: SMOOTH SCROLL + HOVER EFFECTS ======== */
html { scroll-behavior: smooth; }

/* Product card hover lift */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 43, 31, 0.08);
}

/* FAQ item hover */
.faq-item {
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item:hover {
  border-color: var(--bark-soft);
  background: rgba(255,255,255,0.5);
}

/* Subtle fade-in on page load */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.page, .shop-page, .story-page, .vote-page, .inner-page {
  animation: pageIn 0.6s ease;
}

/* Footer legal links */
.bottom-bar a {
  transition: color 0.3s ease;
}
.bottom-bar a:hover {
  color: var(--bark) !important;
}

/* CTA button pulse on homepage */
.cta-section .cta-btn {
  position: relative;
  overflow: hidden;
}
.cta-section .cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: none;
}
.cta-section .cta-btn:hover::after {
  animation: shimmer 0.6s ease;
}
@keyframes shimmer {
  to { transform: translateX(100%); }
}

