:root {
  --bg: #1B1216;
  --bg-2: #241820;
  --card: #2E2027;
  --cream: #F6EEE0;
  --cream-dim: #C9BCA8;
  --pumpkin: #E8752C;
  --wine: #7A1F2B;
  --wine-light: #D97B77;
  --star: #E8B93C;
  --line: rgba(246, 238, 224, 0.14);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.15;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 640px;
  margin: 0 auto;
}

section {
  padding: 64px 0;
}

a {
  color: inherit;
}

button {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.brand-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav .mark {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.brand-accent {
  color: var(--pumpkin);
}

.nav-links {
  display: none;
  gap: 32px;
  font-size: 14px;
  color: var(--cream-dim);
}

.nav-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--pumpkin);
}

.nav .btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pumpkin);
  color: #1B1216;
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(232, 117, 44, 0.3);
  text-decoration: none;
}

.nav .btn-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232, 117, 44, 0.45);
  filter: brightness(1.06);
}

.nav-mobile-icon {
  display: none !important;
}

/* HERO — MOBILE FIRST */
.hero {
  padding: 16px 0 20px;
  position: relative;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.hero-copy {
  display: contents;
}

.eyebrow {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #E8B93C;
  background: rgba(232, 185, 60, 0.12);
  border: 1px solid rgba(232, 185, 60, 0.3);
  padding: 7px 18px;
  border-radius: 100px;
  margin: 0;
  animation: eyebrow-pulse 2.5s ease-in-out infinite;
}

@keyframes eyebrow-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 185, 60, 0.25);
  }

  50% {
    box-shadow: 0 0 12px 3px rgba(232, 185, 60, 0.18);
  }
}

.hero h1 {
  order: 2;
  font-size: clamp(28px, 7vw, 48px);
  letter-spacing: -0.5px;
  line-height: 1.15;
  max-width: 560px;
  margin: 0 auto;
}

.hero h1 .accent {
  color: var(--pumpkin);
  font-style: italic;
  text-shadow: 0 0 24px rgba(232, 117, 44, 0.3);
}

.hero p.sub {
  order: 3;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--cream-dim);
  margin: 0 auto;
  max-width: 450px;
}

/* REALISTIC REVIEW / SOCIAL PROOF BADGE */
.rating-badge {
  order: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(46, 32, 39, 0.65);
  border: 1px solid rgba(246, 238, 224, 0.14);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  padding: 7px 16px 7px 10px;
  border-radius: 100px;
  margin: 2px auto 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.rating-badge:hover {
  border-color: rgba(232, 117, 44, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232, 117, 44, 0.28);
}

.avatar-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatar-photo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #1B1216;
  margin-right: -6px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
}

.avatar-photo:last-child {
  margin-right: 0;
}

.rating-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.25;
  gap: 2px;
}

.rating-stars-line {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stars-gold {
  color: #E8B93C;
  font-size: 13.5px;
  letter-spacing: 1px;
  line-height: 1;
}

.rating-score {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.rating-subtext {
  font-size: 12.5px;
  color: var(--cream-dim);
  line-height: 1.2;
  white-space: nowrap;
}

.rating-subtext strong {
  color: var(--cream);
  font-weight: 600;
}

/* REALISTIC 3D EBOOK MOCKUP */
.cover-frame {
  order: 5;
  position: relative;
  width: 220px;
  margin: 6px auto 14px;
  perspective: 1200px;
  flex: none;
}

.book-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 117, 44, 0.3) 0%, rgba(122, 31, 43, 0.18) 45%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.book-3d {
  position: relative;
  z-index: 1;
  transform: rotateY(-10deg) rotateX(4deg) rotateZ(1deg);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cover-frame:hover .book-3d {
  transform: rotateY(-4deg) rotateX(2deg) translateY(-6px);
}

.book-cover-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  display: block;
  border-radius: 4px 10px 10px 4px;
  box-shadow:
    -4px 0 10px rgba(0, 0, 0, 0.5),
    5px 3px 0 #1B1216,
    9px 5px 0 #EDE5D7,
    13px 8px 0 #DECFC0,
    17px 11px 0 #D0BEAA,
    22px 20px 32px rgba(0, 0, 0, 0.65),
    0 12px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(246, 238, 224, 0.18);
}

/* CTA BLOCK — MOBILE FIRST */
.cta-block {
  order: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 0;
}

.price-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: center;
}

.price-old {
  font-size: 18px;
  color: var(--cream-dim);
  text-decoration: line-through;
  opacity: 0.7;
}

.price-new {
  font-size: 38px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--pumpkin);
  line-height: 1;
  text-shadow: 0 2px 14px rgba(232, 117, 44, 0.25);
}

.price-badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #E8B93C;
  background: rgba(232, 185, 60, 0.14);
  border: 1px solid rgba(232, 185, 60, 0.32);
  padding: 4px 10px;
  border-radius: 6px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 350px;
  background: linear-gradient(180deg, #F0873E 0%, #D8651E 100%);
  color: #1B1216;
  font-weight: 700;
  font-size: 16.5px;
  border: none;
  border-radius: 100px;
  padding: 17px 28px;
  box-shadow: 0 4px 18px rgba(232, 117, 44, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s ease, filter 0.18s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 117, 44, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: brightness(1.04);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(232, 117, 44, 0.3);
}

.btn-icon {
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(3px);
}

.microcopy {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.4;
  text-align: center;
}

/* DRIP */
.drip {
  width: 100%;
  display: block;
}

/* TRUST BAR */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  padding: 14px 16px;
  background: rgba(36, 24, 32, 0.65);
  border: 1px solid rgba(246, 238, 224, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin: 16px 0 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 117, 44, 0.12);
  border: 1px solid rgba(232, 117, 44, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pumpkin);
  flex-shrink: 0;
}

.trust-text {
  font-size: 12px;
  color: var(--cream-dim);
  line-height: 1.2;
  white-space: nowrap;
}

.trust-text strong {
  color: var(--cream);
  font-weight: 600;
}

/* SECTION HEAD */
.section-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 14.5px;
  color: var(--cream-dim);
  margin-bottom: 32px;
  max-width: 440px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* WHAT'S INSIDE — REFERENCE IMAGE DESIGN */
.inside-section {
  max-width: 620px;
  margin: 0 auto;
}

.inside-floater {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 26px;
  margin-bottom: 8px;
  position: relative;
}

.floater-burst {
  font-size: 14px;
  color: var(--pumpkin);
  margin-left: -4px;
  margin-top: -14px;
}

.inside-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(46, 32, 39, 0.7);
  border: 1px solid rgba(246, 238, 224, 0.14);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 18px;
  padding: 18px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 117, 44, 0.45);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.feature-card-content {
  flex: 1;
  text-align: left;
}

.feature-card-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.circ-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--pumpkin);
  line-height: 1;
  flex-shrink: 0;
}

.feature-card-title {
  font-family: 'Fraunces', serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}

.feature-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream-dim);
}

.feature-card-emblem {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #421A28;
  border: 2px solid rgba(232, 117, 44, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.feature-card-emblem svg {
  width: 26px;
  height: 26px;
}

.inside-more-note {
  text-align: center;
  margin-top: 22px;
}

.inside-more-note span {
  display: inline-block;
  font-size: 12.5px;
  color: var(--cream-dim);
  background: rgba(46, 32, 39, 0.55);
  border: 1px solid rgba(246, 238, 224, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
}

/* ==========================================================
   SNEAK PEEK SECTION WITH HALLOWEEN CANDY & SWEETS THEME
   ========================================================== */

.sneak-peek-section {
  position: relative;
  overflow: hidden;
  padding: 55px 0 20px;
  background:
    radial-gradient(ellipse 90% 55% at 50% 15%, rgba(232, 117, 44, 0.16) 0%, rgba(122, 31, 43, 0.09) 42%, transparent 75%),
    radial-gradient(circle at 8% 75%, rgba(147, 51, 234, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 92% 40%, rgba(232, 185, 60, 0.12) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg' opacity='0.045'%3E%3Cg fill='%23F6EEE0'%3E%3Cpath d='M25 20 L32 38 L18 38 Z'/%3E%3Ccircle cx='105' cy='35' r='7'/%3E%3Crect x='55' y='95' width='14' height='14' rx='3'/%3E%3Cpath d='M130 115 Q142 110 142 122 Q142 134 130 128 Q118 134 118 122 Q118 110 130 115'/%3E%3Cpolygon points='65,25 68,32 75,32 69,37 72,44 65,39 58,44 61,37 55,32 62,32'/%3E%3Ccircle cx='30' cy='125' r='4'/%3E%3Cpath d='M120 40 L135 48 L120 56 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-color: #160D12;
  border-top: 1px solid rgba(246, 238, 224, 0.08);
}

.sneak-peek-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Floating Halloween Candy & Sweet SVG Decorations */
.sneak-peek-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.decor-item {
  position: absolute;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
  user-select: none;
}

/* Positions for floating decorations around desktop margins */
.decor-pos-1 {
  top: 40px;
  left: 2.5%;
  animation: float-candy-1 5.5s ease-in-out infinite;
}

.decor-pos-2 {
  top: 55px;
  right: 3%;
  animation: float-candy-2 6.2s ease-in-out infinite;
}

.decor-pos-3 {
  top: 44%;
  left: 1.2%;
  animation: float-candy-3 7s ease-in-out infinite;
}

.decor-pos-4 {
  top: 46%;
  right: 1.5%;
  animation: float-candy-1 6.5s ease-in-out infinite;
}

.decor-pos-5 {
  bottom: 8px;
  left: 3%;
  animation: float-candy-2 5.8s ease-in-out infinite;
}

.decor-pos-6 {
  bottom: 8px;
  right: 2.5%;
  animation: float-candy-3 6.4s ease-in-out infinite;
}

/* Twinkles */
.decor-sparkle {
  color: #E8B93C;
  font-size: 18px;
  opacity: 0.65;
}

.decor-sp-1 {
  top: 90px;
  left: 12%;
  animation: sparkle-pulse 3s infinite;
  font-size: 24px;
  color: #F0873E;
}

.decor-sp-2 {
  top: 110px;
  right: 13%;
  animation: sparkle-pulse 3.6s infinite 0.5s;
  font-size: 18px;
  color: #E8B93C;
}

.decor-sp-3 {
  bottom: 95px;
  left: 11%;
  animation: sparkle-pulse 4.2s infinite 1s;
  font-size: 22px;
  color: #C084FC;
}

.decor-sp-4 {
  bottom: 75px;
  right: 10%;
  animation: sparkle-pulse 3.4s infinite 1.5s;
  font-size: 20px;
  color: #F0873E;
}

@keyframes float-candy-1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

@keyframes float-candy-2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(-10deg);
  }
}

@keyframes float-candy-3 {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-11px) scale(1.06) rotate(5deg);
  }
}

@keyframes sparkle-pulse {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.85);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.25);
  }
}

/* On tablet & mobile, soften background floaters */
@media (max-width: 859px) {

  .decor-pos-1,
  .decor-pos-2,
  .decor-pos-3,
  .decor-pos-4,
  .decor-pos-5,
  .decor-pos-6 {
    opacity: 0.45;
    transform: scale(0.7);
  }
}

/* Header block */
.sneak-peek-header-block {
  margin-bottom: 34px;
}

.sneak-peek-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #E8B93C;
  background: rgba(232, 185, 60, 0.12);
  border: 1px solid rgba(232, 185, 60, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.sneak-peek-section-desc {
  max-width: 620px;
  margin: 10px auto 0;
  font-size: 15.5px;
  color: var(--cream-dim);
  line-height: 1.55;
  text-align: center;
}

/* Main Card */
.sneak-peek-card {
  background: linear-gradient(160deg, rgba(52, 34, 43, 0.88) 0%, rgba(30, 19, 26, 0.94) 100%);
  border: 1px solid rgba(246, 238, 224, 0.16);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 117, 44, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-top: 28px;
}

.sneak-peek-grid {
  display: flex;
  flex-direction: column;
}

/* Left Column Content */
.sneak-peek-content {
  padding: 28px 24px;
}

@media (max-width: 480px) {
  .sneak-peek-content {
    padding: 22px 14px;
  }
}

.sneak-peek-recipe-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(246, 238, 224, 0.1);
}

.sneak-peek-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sneak-peek-emoji {
  font-size: 42px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.sneak-peek-recipe-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 4px;
}

.sneak-peek-tagline {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.45;
  font-style: italic;
}

/* Meta Stats Row */
.sneak-peek-meta {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(246, 238, 224, 0.08);
}

.sneak-peek-meta-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 4px;
  background: rgba(232, 117, 44, 0.07);
  border: 1px solid rgba(232, 117, 44, 0.18);
  border-radius: 12px;
}

.sneak-peek-meta-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--pumpkin);
  margin-bottom: 3px;
  white-space: nowrap;
}

.sneak-peek-meta-value {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .sneak-peek-meta {
    gap: 12px;
  }

  .sneak-peek-meta-item {
    padding: 10px 8px;
  }

  .sneak-peek-meta-label {
    font-size: 10.5px;
    letter-spacing: 0.8px;
  }

  .sneak-peek-meta-value {
    font-size: 14.5px;
  }
}

/* Recipe Body */
.sneak-peek-body {
  padding: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sneak-peek-body h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.sneak-peek-ingredients ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.sneak-peek-ingredients li {
  font-size: 13.5px;
  color: var(--cream-dim);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}

.sneak-peek-ingredients li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--pumpkin);
  font-size: 10px;
  top: 2px;
}

.sneak-peek-method p {
  font-size: 13.5px;
  color: var(--cream-dim);
  line-height: 1.65;
  margin: 0;
}

/* Right Column Visual Showcase */
.sneak-peek-visual {
  padding: 12px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-top: 1px solid rgba(246, 238, 224, 0.08);
}

.sneak-peek-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(246, 238, 224, 0.15);
}

.sneak-peek-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sneak-peek-img-wrapper:hover .sneak-peek-photo {
  transform: scale(1.04);
}

/* Card Footer */
.sneak-peek-footer {
  padding: 22px 24px 26px;
  background: rgba(20, 12, 17, 0.7);
  border-top: 1px solid rgba(246, 238, 224, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.sneak-peek-note {
  font-size: 13.5px;
  color: var(--cream-dim);
  font-family: 'Fraunces', serif;
  font-style: italic;
  margin: 0;
}

.sneak-peek-footer .btn-primary {
  width: 100%;
  max-width: 320px;
}

/* ========================================================
   WHAT YOU'LL GET SECTION (MATCHING WEBSITE THEME)
   ======================================================== */
.what-you-get-section {
  position: relative;
  background: linear-gradient(180deg, #24141E 0%, #1A0D15 100%);
  padding: 0 0 78px;
  color: var(--cream);
  border-bottom: 1px solid rgba(246, 238, 224, 0.06);
}

/* Confection Drip Container */
.confection-drip-container {
  width: 100%;
  height: 30px;
  margin-top: -1px;
  overflow: visible;
  position: relative;
  z-index: 4;
}

.confection-drip-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.what-you-get-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px 0;
  position: relative;
  z-index: 2;
}

.what-you-get-header {
  margin-bottom: 20px;
  text-align: center;
}

.what-you-get-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 5.5vw, 38px);
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.3px;
  margin-top: 40px;
}

/* Grid */
.what-you-get-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Card matching website theme */
.wyg-card {
  background: linear-gradient(165deg, rgba(50, 33, 42, 0.88) 0%, rgba(34, 21, 28, 0.94) 100%);
  border-radius: 22px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 238, 224, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.wyg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 117, 44, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 20px rgba(232, 117, 44, 0.14);
}

/* Icon wrap matching theme */
.wyg-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.wyg-emoji {
  font-size: 26px;
  line-height: 1;
}

.wyg-icon-pumpkin {
  background: rgba(232, 117, 44, 0.14);
  border: 1.5px solid rgba(232, 117, 44, 0.38);
  box-shadow: 0 0 16px rgba(232, 117, 44, 0.15);
}

.wyg-icon-wine {
  background: rgba(122, 31, 43, 0.22);
  border: 1.5px solid rgba(217, 123, 119, 0.35);
  box-shadow: 0 0 16px rgba(122, 31, 43, 0.15);
}

.wyg-icon-star {
  background: rgba(232, 185, 60, 0.14);
  border: 1.5px solid rgba(232, 185, 60, 0.38);
  box-shadow: 0 0 16px rgba(232, 185, 60, 0.15);
}

.wyg-icon-berry {
  background: rgba(147, 51, 234, 0.14);
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 16px rgba(147, 51, 234, 0.15);
}

/* Card Title */
.wyg-card-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin: 0 0 10px;
}

/* Card Description */
.wyg-card-desc {
  font-size: 13.5px;
  color: var(--cream-dim);
  line-height: 1.55;
  margin: 0;
}

/* Tablet (2 columns) */
@media (min-width: 560px) {
  .what-you-get-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .wyg-card {
    padding: 28px 18px 26px;
  }
}

/* Desktop (4 columns) */
@media (min-width: 960px) {
  .what-you-get-section {
    padding: 0 0 75px;
  }

  .what-you-get-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .wyg-card {
    padding: 32px 20px 28px;
  }

  .wyg-icon-wrap {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
  }

  .wyg-emoji {
    font-size: 28px;
  }

  .wyg-card-title {
    font-size: 18px;
  }
}

/* REVIEWS / TESTIMONIALS (Loved By Halloween Sweet Lovers) */
.reviews-section {
  padding: 56px 0 14px;
}

.reviews-header {
  margin-bottom: 38px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 185, 60, 0.12);
  border: 1px solid rgba(232, 185, 60, 0.3);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.reviews-stars-summary {
  color: #E8B93C;
  font-size: 14px;
  letter-spacing: 2px;
}

.reviews-badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #F6EEE0;
  letter-spacing: 0.04em;
}

.grid-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 620px) {
  .grid-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  background: var(--card);
  border: 1px solid rgba(246, 238, 224, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 117, 44, 0.4);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.testimonial .stars {
  color: #E8B93C;
  font-size: 15px;
  letter-spacing: 1.5px;
}

.verified-tag {
  font-size: 11px;
  font-weight: 600;
  color: #5BC376;
  background: rgba(91, 195, 118, 0.12);
  border: 1px solid rgba(91, 195, 118, 0.28);
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.testimonial-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.35;
}

.testimonial-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin-bottom: 18px;
  flex-grow: 1;
}

.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(246, 238, 224, 0.08);
  padding-top: 14px;
}

.testimonial .avatar-photo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(232, 117, 44, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  background: #2E1822;
}

.testimonial .name {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.testimonial .loc {
  font-size: 11.5px;
  color: var(--pumpkin);
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 2px;
}

.reviews-disclaimer {
  font-size: 12px;
  color: var(--cream-dim);
  opacity: 0.65;
  margin-top: 28px;
}

/* Reviews Load More & Hidden States */
.testimonial.review-hidden {
  display: none !important;
}

.testimonial.review-fade-in {
  animation: reviewFadeIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes reviewFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews-load-more-wrap {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 117, 44, 0.12);
  border: 1px solid rgba(232, 117, 44, 0.35);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-load-more:hover {
  background: rgba(232, 117, 44, 0.22);
  border-color: var(--pumpkin);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 117, 44, 0.25);
}

.btn-load-more svg {
  transition: transform 0.2s ease;
}

.btn-load-more:hover svg {
  transform: translateY(2px);
}

/* FAQ (Card-based Q&A design) */
.faq-section {
  padding: 24px 0 52px;
}

.faq-header-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.faq-pill-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pumpkin);
  background: rgba(232, 117, 44, 0.12);
  border: 1px solid rgba(232, 117, 44, 0.3);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.faq-container {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--card);
  border: 1px solid rgba(246, 238, 224, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(232, 117, 44, 0.35);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.faq-item.open {
  border-color: rgba(232, 117, 44, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(232, 117, 44, 0.1);
}

.faq-q {
  background: linear-gradient(135deg, #3A1E27 0%, #25121B 100%);
  padding: 17px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s ease;
}

.faq-item.open .faq-q {
  background: linear-gradient(135deg, #46222F 0%, #2D1522 100%);
}

.faq-q-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  color: #FFFFFF;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1;
}

.faq-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--pumpkin);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(232, 117, 44, 0.14);
  border: 1px solid rgba(232, 117, 44, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pumpkin);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle-icon span {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-toggle-icon {
  background: var(--pumpkin);
  border-color: var(--pumpkin);
  color: #1B1216;
}

.faq-item.open .faq-toggle-icon span {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  background: rgba(22, 13, 17, 0.6);
  opacity: 0;
  padding: 0 22px;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
  padding: 18px 22px 20px 22px;
  border-top: 1px solid rgba(246, 238, 224, 0.07);
}

.faq-a-inner {
  font-size: 14.5px;
  line-height: 1.7;
  color: #DFD5CC;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  background: linear-gradient(160deg, var(--wine), #4A121B);
  border-radius: 18px;
  padding: 44px 24px;
}

.final-cta h2 {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--cream);
}

.final-cta .sub {
  font-size: 13.5px;
  color: #EFC9C6;
  margin-bottom: 22px;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.final-cta .btn-primary {
  margin: 0 auto;
}

.final-cta .microcopy {
  color: #EFC9C6;
  margin-top: 12px;
}

footer {
  padding: 40px 0 50px;
  text-align: center;
  font-size: 12.5px;
  color: var(--cream-dim);
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-logo-img {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}

footer .mark {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-block;
  font-size: 18px;
}

.footer-copy {
  margin-top: 6px;
  color: var(--cream-dim);
  font-size: 12.5px;
}

footer .links {
  margin-top: 12px;
}

footer .links a {
  margin: 0 8px;
  color: var(--cream-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s ease;
}

footer .links a:hover {
  color: var(--pumpkin);
}

/* ===== DESKTOP ===== */
@media (min-width:860px) {
  .nav-links {
    display: flex;
  }

  .nav .btn-small {
    display: inline-flex;
    padding: 10px 20px;
  }

  .nav-mobile-icon {
    display: none;
  }

  .hero {
    padding: 44px 0 36px;
  }

  .hero-grid {
    flex-direction: row;
    text-align: left;
    gap: 52px;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1.15;
    order: unset;
  }

  .eyebrow {
    margin-left: 0;
    margin-bottom: 14px;
    font-size: 12px;
    padding: 6px 16px;
    order: unset;
  }

  .hero h1 {
    font-size: 44px;
    max-width: 530px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 14px;
    line-height: 1.18;
    letter-spacing: -0.3px;
    order: unset;
  }

  .hero p.sub {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 18px;
    max-width: 480px;
    font-size: 15.5px;
    line-height: 1.55;
    order: unset;
  }

  .rating-badge {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 6px 15px 6px 8px;
    order: unset;
  }

  .cta-block {
    align-items: flex-start;
    gap: 14px;
    margin-top: 0;
    order: unset;
  }

  .price-row {
    justify-content: flex-start;
    gap: 14px;
  }

  .btn-primary {
    width: auto;
    min-width: 230px;
    padding: 15px 30px;
    font-size: 16px;
  }

  .microcopy {
    text-align: left;
    margin-top: 2px;
    font-size: 12.5px;
  }

  .cover-frame {
    width: 310px;
    margin: 0;
    order: unset;
    flex-shrink: 0;
  }


  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 16px 24px;
    gap: 16px;
    margin: 28px 0 14px;
  }

  section {
    padding: 88px 0;
  }

  .section-sub {
    margin-left: 0;
  }

  .center {
    text-align: center;
  }

  h2.center+.section-sub.center {
    margin-left: auto;
    margin-right: auto;
  }

  .inside-section {
    max-width: 960px;
    margin: 0 auto;
  }

  .inside-cards-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
  }

  .feature-card {
    padding: 22px 22px;
    min-height: 124px;
  }

  .feature-card-title {
    font-size: 17.5px;
  }

  .feature-card-desc {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .feature-card-emblem {
    width: 62px;
    height: 62px;
  }

  .feature-card-emblem svg {
    width: 28px;
    height: 28px;
  }



  .grid-testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* SNEAK PEEK DESKTOP 2-COLUMN EXPANSION */
  .sneak-peek-section {
    padding: 60px 0 24px;
  }

  .sneak-peek-container {
    max-width: 1040px;
    padding: 0 24px;
  }

  .sneak-peek-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .sneak-peek-content {
    padding: 34px 34px 30px;
  }

  .sneak-peek-visual {
    padding: 32px 30px;
    border-top: none;
    border-left: 1px solid rgba(246, 238, 224, 0.1);
    background: rgba(18, 11, 15, 0.45);
  }

  .sneak-peek-visual .sneak-peek-img-wrapper {
    aspect-ratio: auto;
    height: 100%;
    max-height: 440px;
  }

  .sneak-peek-body {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 22px;
  }

  .sneak-peek-footer {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .sneak-peek-footer .btn-primary {
    width: auto;
    min-width: 270px;
  }
}
/* ====================================================
   FINAL CTA SECTION (Above Footer)
   ==================================================== */
.final-cta-section {
  padding: 16px 0 54px;
  position: relative;
  z-index: 2;
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  padding: 38px 24px;
  background: linear-gradient(150deg, #24141E 0%, #170E14 100%);
  border: 1px solid rgba(232, 117, 44, 0.32);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.6), 0 0 36px rgba(232, 117, 44, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.final-cta-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(232, 117, 44, 0.22) 0%, rgba(122, 31, 43, 0.12) 50%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

.final-cta-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.final-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 540px;
}

.final-cta-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8B93C;
  background: rgba(232, 185, 60, 0.12);
  border: 1px solid rgba(232, 185, 60, 0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.final-cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(23px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 8px;
}

.final-cta-title .accent {
  color: var(--pumpkin);
  font-style: italic;
}

.final-cta-book-name {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--pumpkin);
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.final-cta-sub {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.5;
  margin-bottom: 16px;
}

.final-cta-price-row {
  margin-bottom: 16px;
}

.final-cta-btn {
  width: 100%;
  max-width: 340px;
  font-size: 15.5px;
  font-weight: 700;
  padding: 15px 28px;
}

.final-cta-meta {
  font-size: 12.5px;
  color: var(--cream-dim);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* 3D Visual on Desktop */
.final-cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
}

.final-cta-book-wrap {
  position: relative;
  perspective: 900px;
}

.final-cta-book-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 4px 10px 10px 4px;
  box-shadow:
    -3px 0 8px rgba(0, 0, 0, 0.5),
    4px 3px 0 #1B1216,
    7px 4px 0 #EDE5D7,
    11px 7px 0 #DECFC0,
    15px 10px 0 #D0BEAA,
    18px 16px 28px rgba(0, 0, 0, 0.6);
  transform: rotateY(-8deg) rotateX(3deg);
  transition: transform 0.3s ease;
}

.final-cta-card:hover .final-cta-book-img {
  transform: rotateY(-3deg) rotateX(1deg) translateY(-4px);
}

/* Desktop Split Layout */
@media (min-width: 820px) {
  .final-cta-card {
    padding: 38px 48px;
  }

  .final-cta-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    text-align: left;
    gap: 40px;
  }

  .final-cta-copy {
    align-items: flex-start;
    max-width: 100%;
  }

  .final-cta-title {
    font-size: 32px;
  }

  .final-cta-price-row {
    justify-content: flex-start;
  }

  .final-cta-btn {
    margin: 0;
  }

  .final-cta-visual {
    max-width: 280px;
    justify-content: center;
  }

  .final-cta-book-img {
    max-width: 240px;
  }
}
