@charset "UTF-8";

/* ─── Design tokens ─────────────────────────────────────────── */
:root {
  --cream:     #faf8f5;
  --amber:     #b45309;
  --amber-l:   #d97706;
  --amber-lt:  #fef3c7;
  --stone-9:   #1c1917;
  --stone-8:   #292524;
  --stone-7:   #44403c;
  --stone-5:   #78716c;
  --stone-3:   #d6d3d1;
  --stone-1:   #f5f5f4;
  --white:     #ffffff;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
}

/* ─── Accessibility ──────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 2px;
}
body::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:active {
  background: var(--amber-l);
}
body::-webkit-scrollbar-track {
  background: var(--stone-1);
}
html, body {
  overflow-x: hidden; /* Prevent x scrollbar */
  scrollbar-color: var(--amber) var(--stone-1);
}

/* ─── Scroll-reveal animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-l.visible {
  opacity: 1;
  transform: none;
}

.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-r.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── Shared section styles ──────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--stone-9);
  line-height: 1.15;
}

.section-title em {
  color: var(--amber);
  font-weight: 300;
}

.divider {
  width: 3rem;
  height: 1px;
  background: var(--amber);
  margin-bottom: 1.5rem;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--amber);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--amber-l);
  box-shadow: 0 0 32px rgba(180, 83, 9, 0.35);
  transform: scale(1.02);
}
.btn-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--stone-9);
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  color: var(--amber);
  background: rgba(180, 83, 9, 0.05);
}
.btn-ghost svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ─── Header ─────────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stone-3);
  height: 72px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo svg {
  width: 32px;
  height: 32px;
  color: var(--amber);
  flex-shrink: 0;
}
.logo span {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--stone-9);
}

/* ─── Nav (desktop) ──────────────────────────────────────────── */
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav ul a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--stone-5);
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--amber);
}

/* Elements visible only in the mobile overlay */
.nav-close,
.nav-order-btn {
  display: none;
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover {
  background: var(--amber-l);
  transform: scale(1.04);
}
.btn-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 10;
}
.hamburger span {
  display: none;
  width: 22px;
  height: 2px;
  background: var(--stone-7);
  margin-block: 5px;
  transition: 0.3s;
}
.hamburger:hover span {
  background: var(--amber-l);
}

/* ─── Mobile nav ───────────────────────────────────────────────── */
/*
 * The #mainNav is a normal inline element on desktop.
 * On mobile it becomes a full-screen overlay when .nav--open is toggled.
 * display:none when closed means links are unreachable by keyboard —
 * no extra inert/aria-hidden needed.
 */
@media (max-width: 768px) {
  .hamburger, .hamburger span {
    display: block;
  }
  #mainNav {
    display: flex;
    height: 100dvh;
    width: min(500px, 100%);
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    z-index: 100;
    background: var(--cream);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    transition: 200ms;
    border-left: 1px solid var(--stone-3);
  }
  #mainNav.nav--open {
    transform: translateX(0);
  }

  #mainNav ul {
    flex-direction: column;
    gap: 0;
  }
  #mainNav ul a {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--stone-9);
    display: block;
    padding-block: 1rem 0.5rem;
    border-bottom: 1px solid var(--stone-3);
  }
  #mainNav ul a:hover {
    color: var(--amber-l);
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--stone-7);
    align-items: center;
    justify-content: center;
  }
  .nav-close svg {
    width: 28px;
    height: 28px;
  }

  .nav-order-btn {
    display: inline-flex;
    width: max-content;
  }
}

/* ─── Overlay ───────────────────────────────────────────────── */
#overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.5);
  transition: 300ms;
}
#overlay.--active {
  display: block;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid #fde68a;
  background: #fffbeb;
  color: #78350f;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-l);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--stone-9);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  color: var(--amber);
  font-weight: 300;
}

.hero > .container > .hero-inner > .reveal-l > p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--stone-5);
  max-width: 440px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-img-col {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: 999px 999px 1.5rem 1.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 8px solid var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-tag {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: 1rem 0 0 1rem;
  border-left: 4px solid var(--amber);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
}
.hero-float-tag small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone-5);
  font-weight: 700;
}
.hero-float-tag strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--stone-9);
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 80%;
  border-radius: 50%;
  background: rgba(254, 243, 199, 0.5);
  filter: blur(80px);
  /* Promotes to compositor layer, avoids main-thread repaint */
  will-change: transform;
  transform: translateZ(0);
  pointer-events: none;
  z-index: -1;
}

/* ─── Proof bar ──────────────────────────────────────────────── */
.proof-bar {
  background: var(--stone-9);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--stone-8);
}

.proof-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #e7e5e4;
  font-size: 0.92rem;
  font-weight: 500;
}
.proof-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.proof-item:first-child svg { color: #fbbf24; }
.proof-item:nth-child(2) svg { color: var(--stone-5); }
.proof-item:last-child svg { color: #4ade80; }

/* ─── Our Story ──────────────────────────────────────────────── */
#about {
  padding: 7rem 0;
  background: var(--white);
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-body {
  margin-top: 1.75rem;
}
.story-body p {
  color: var(--stone-5);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.story-highlight {
  color: var(--stone-8) !important;
  font-weight: 500 !important;
  padding-top: 1rem;
  border-top: 1px solid #e7e5e4;
  margin-bottom: 0 !important;
}

.story-img-wrap {
  position: relative;
}
.story-img-main {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-img-thumb {
  position: absolute;
  bottom: -2.5rem;
  left: -3rem;
  z-index: 10;
  width: 11rem;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  transform: rotate(-4deg);
}
.story-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.8);
}

/* ─── Problem section ────────────────────────────────────────── */
#problem {
  padding-block: 7rem;
  background: var(--cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-img-wrap {
  position: relative;
}
.problem-img-main {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.problem-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.55), transparent);
  border-radius: 1.25rem;
}
.problem-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-quote {
  position: absolute;
  bottom: -2rem;
  right: -3rem;
  z-index: 10;
  background: var(--white);
  padding: 1.75rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 280px;
  border: 1px solid rgba(251, 191, 36, 0.1);
}
.problem-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--stone-7);
  line-height: 1.55;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.problem-quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone-9);
}
.problem-quote figcaption::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.problem-body {
  margin-top: 2rem;
}
.problem-body p {
  color: var(--stone-5);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.problem-highlight {
  color: var(--stone-9) !important;
  font-weight: 500 !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(251, 191, 36, 0.35);
}

/* ─── How It Works ───────────────────────────────────────────── */
#process {
  padding: 7rem 0;
  background: var(--white);
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}
.process-header p {
  color: var(--stone-5);
  max-width: 320px;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
}
.process-label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.process-label-row .section-label {
  margin-bottom: 0;
}
.process-label-row .divider {
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  list-style: none;
}
.steps::before {
  content: '';
  position: absolute;
  top: 3.25rem;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--stone-3);
  pointer-events: none;
}

.step {
  position: relative;
}
.step-num {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stone-3);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s;
}
.step:hover .step-num {
  border-color: #fde68a;
}
.step-num span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--amber);
}

.step-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s;
}
.step:nth-child(1) .step-img { border-radius: 40px 10px 40px 10px; }
.step:nth-child(2) .step-img { border-radius: 10px 40px 10px 40px; }
.step:nth-child(3) .step-img { border-radius: 40px 10px 40px 10px; }
.step:hover .step-img {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}
.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.step:hover .step-img img {
  transform: scale(1.07);
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--stone-9);
  margin-bottom: 0.6rem;
}
.step p {
  color: var(--stone-5);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Features / Ingredients ─────────────────────────────────── */
#ingredients {
  padding: 7rem 0;
  background: var(--stone-9);
  color: var(--white);
}

.features-header {
  margin-bottom: 4rem;
  max-width: 520px;
}
.features-header .section-title {
  color: var(--white);
}
.features-header p {
  color: #a8a29e;
  font-weight: 300;
  font-size: 1.1rem;
  margin-top: 1rem;
}

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

.feature-card {
  position: relative;
  height: 400px;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}
.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.feature-card:hover img {
  transform: scale(1.1);
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.5) 50%, transparent 100%);
}

.feature-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 2rem;
}
.feature-line {
  width: 3rem;
  height: 1px;
  background: #f59e0b;
  margin-bottom: 1.25rem;
  transition: width 0.5s ease;
}
.feature-card:hover .feature-line {
  width: 6rem;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #d6d3d1;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.feature-card:hover p {
  opacity: 1;
  transform: none;
}

/* ─── Testimonials ───────────────────────────────────────────── */
#reviews {
  padding: 7rem 0;
  background: var(--cream);
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}
.reviews-header .section-title { margin-bottom: 0; }
.reviews-header p {
  color: var(--stone-5);
  font-weight: 300;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 1rem auto 0;
}

.avatar-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.avatar-row img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  object-fit: cover;
  margin-left: -10px;
  transition: transform 0.2s;
}
.avatar-row img:first-child { margin-left: 0; }
.avatar-row img:hover {
  transform: scale(1.15);
  z-index: 2;
}

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

.review-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--stone-1);
  transition: transform 0.45s ease;
}
.review-card:nth-child(1) { transform: rotate(-2deg); border-radius: 4px 20px 4px 24px; }
.review-card:nth-child(2) { transform: rotate(2deg);  border-radius: 20px 4px 24px 4px; }
.review-card:nth-child(3) { transform: rotate(-1deg); border-radius: 4px 24px 4px 20px; }
.review-card:hover { transform: rotate(0deg); }

/* Stars via CSS — replaces 15 duplicated SVGs */
.stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  margin-bottom: 1.25rem;
  height: 18px;
}
.stars::before {
  content: '★★★★★';
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.review-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--stone-8);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stone-1);
  background: none;
}
.reviewer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s;
}
.review-card:hover .reviewer img {
  filter: none;
}
.reviewer strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--stone-9);
}
.reviewer small {
  color: var(--stone-5);
  font-size: 0.8rem;
}

/* ─── Product carousel / Menu ────────────────────────────────── */
#menu {
  padding: 7rem 0;
  background: var(--white);
  overflow: hidden;
}
#menu .section-title {
  text-align: center;
}
.menu-subtitle {
  text-align: center;
  color: var(--stone-5);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 1rem auto 3.5rem;
}

.carousel-wrap {
  position: relative;
}
.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem 1.5rem;
}

.carousel::-webkit-scrollbar {
  display: none;
}
.product-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--cream);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--stone-1);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}
.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.product-row h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--stone-9);
  line-height: 1.3;
}
.product-price {
  background: var(--amber-lt);
  color: var(--amber);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}
.product-body > p {
  font-size: 0.88rem;
  color: var(--stone-5);
  font-weight: 300;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--stone-9);
  color: var(--white);
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
  margin-top: auto;
}
.btn-order:hover {
  background: var(--stone-8);
}
.btn-order svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--stone-3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}
.carousel-dots button.active {
  background: var(--amber);
  width: 24px;
  border-radius: 5px;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
#faq {
  padding: 7rem 0;
  background: var(--cream);
}
#faq .section-title {
  text-align: center;
}
.faq-subtitle {
  text-align: center;
  color: var(--stone-5);
  font-weight: 300;
  max-width: 540px;
  margin: 1rem auto 3rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--stone-1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-question span {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--stone-9);
}

.faq-icon {
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--stone-5);
  font-weight: 300;
  line-height: 1.75;
  font-size: 0.97rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0.25rem 1.5rem 1.25rem;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.92), rgba(28, 25, 23, 0.65) 50%, rgba(28, 25, 23, 0.35));
}

.cta-body {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 1.5rem;
}

.cta-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  background: rgba(28, 25, 23, 0.5);
  backdrop-filter: blur(8px);
  color: #fef3c7;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.cta-live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.cta-body h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-body h2 em {
  color: #fcd34d;
  font-weight: 300;
}

.cta-body p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--amber-l);
  color: var(--white);
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 0 50px rgba(217, 119, 6, 0.45);
  transition: background 0.2s, transform 0.15s;
}
.btn-cta-big:hover {
  background: var(--amber);
  transform: scale(1.03);
}
.btn-cta-big svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--stone-9);
  color: #a8a29e;
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--amber);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo span {
  color: var(--white);
}
.footer-brand p {
  font-size: 0.9rem;
  color: #78716c;
  line-height: 1.7;
  margin: 1rem 0;
}

.social-row {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--stone-8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8a29e;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover {
  background: var(--amber);
  color: var(--white);
}
.social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul a {
  font-size: 0.9rem;
  color: #78716c;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: #f59e0b;
}

/* Address / contact */
address { font-style: normal; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #78716c;
}
.contact-item + .contact-item {
  margin-top: 0.75rem;
}
.contact-item svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item a {
  color: #78716c;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #f59e0b;
}

/* Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--stone-8);
  margin-bottom: 0.6rem;
}
.hours-row dt { color: #78716c; }
.hours-row dd { color: var(--white); }
.hours-closed dd { color: #f59e0b; }

.footer-bottom {
  border-top: 1px solid var(--stone-8);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: #78716c;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* btn-cta hidden on mobile — Order Now is inside the nav overlay */
  .btn-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }

  /* ─── Hero ───────────────────────────────────────────────────── */
  .hero {
    padding-bottom: 4rem;
  }
  .hero-inner,
  .story-grid,
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-img-col {
    order: -1;
  }
  .hero-img-wrap {
    border-radius: 1.5rem;
    aspect-ratio: 4 / 3;
  }
  .hero-float-tag {
    display: none;
  }

  /* ─── Proof bar ──────────────────────────────────────────────── */
  .proof-item:nth-child(2), .proof-item:nth-child(3) {
    display: none;
  }

  /* ─── Our Story ──────────────────────────────────────────────── */
  #about {
    padding-block: 5rem 4.5rem;
  }
  .story-img-thumb {
    width: 7rem;
    left: -1rem;
    bottom: -1.5rem;
  }

  /* ─── Problem section ────────────────────────────────────────── */
  #problem {
    padding-block: 4.5rem;
  }
  .problem-quote {
    right: -0.5rem;
    max-width: 220px;
  }
  .process-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .problem-grid {
    gap: 6rem;
  }

  /* ─── How It Works ───────────────────────────────────────────── */
  #process {
    padding-block: 4.5rem;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps::before {
    display: none;
  }
  
  .step-num {
    height: 4rem;
    width: 4rem;
    margin-bottom: 1.5rem;
  }

  /* ─── Features / Ingredients ─────────────────────────────────── */
  #ingredients {
    padding-block: 4.5rem;
  }

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

  /* ─── Testimonials ───────────────────────────────────────────── */
  #reviews {
    padding-block: 4.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid .review-card {
    transform: none !important;
  }

  /* ─── Product carousel / Menu ────────────────────────────────── */
  #menu {
    padding-block: 4.5rem;
  }
  .product-card {
    flex: 0 0 80vw;
  }

  /* ─── FAQ ────────────────────────────────────────────────────── */
  #faq {
    padding-block: 4.5rem;
  }

  /* ─── Final CTA ──────────────────────────────────────────────── */
  .cta-section {
    padding-block: 4rem;
  }

  /* ─── Footer ─────────────────────────────────────────────────── */
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
