/* ============================================
   Alyce Bailey Celebrant
   Premium editorial design
   ============================================ */

:root {
  --cream: #FAF7F4;
  --terracotta: #C1705C;
  --terracotta-light: #E8B4A8;
  --sage: #7D8B76;
  --dark: #1A1816;
  --muted: #6B6560;
  --white: #FFFFFF;
  --yellow: #F4D03F;
  --radius: 100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--terracotta);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  pointer-events: none;
}

/* ── Header transitions ── */
.header {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s, backdrop-filter 0.3s;
}
body.menu-open .header { mix-blend-mode: normal; }
.header-scrolled {
  background: rgba(250,247,244,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-hidden { transform: translateY(-100%); }

/* Custom cursor */
.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
}

body:hover .cursor-dot { opacity: 1; }

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot { display: none; }
}

h1, h2, h3, h4 {
  font-family: 'Syne', 'Space Grotesk', sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

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

main { position: relative; z-index: 1; }

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

/* ── NAV ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  mix-blend-mode: difference;
}

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

.logo a {
  display: flex; flex-direction: column; align-items: flex-start;
  font-family: 'Great Vibes', cursive;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}
.logo-line1 { font-size: 1rem; line-height: 1.1; }
.logo-line2 { display: flex; align-items: center; gap: 0.35rem; font-size: 1.5rem; line-height: 1.1; }
.logo-bolt { width: 28px; height: auto; flex-shrink: 0; filter: brightness(0) invert(1); }
.logo a:hover { opacity: 0.9; }
@media (max-width: 768px) {
  .logo-line1 { font-size: 0.875rem; }
  .logo-line2 { font-size: 1.25rem; }
  .logo-bolt { width: 22px; }
}
.logo a { text-decoration: none; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--white);
  letter-spacing: 0.02em;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { opacity: 0.6; }

.nav-cta {
  background: var(--white);
  color: var(--dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s !important;
}
.nav-cta:hover { transform: scale(1.05); opacity: 1 !important; }

.mobile-menu-btn {
  display: none; background: none; border: none;
  font-size: 1.5rem; color: var(--white); cursor: none;
}

.nav-menu-corner { display: none; }

@media (max-width: 768px) {
  .header { padding: 1rem 1.25rem; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem 2rem;
    background: #1A1816;
    background-color: #1A1816;
    mix-blend-mode: normal;
    isolation: isolate;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu-corner {
    display: block;
    position: absolute;
    width: 120px;
    height: auto;
    pointer-events: none;
    opacity: 0.35;
  }
  .nav-menu-corner-tl {
    top: 2rem; left: 1.5rem;
    transform: rotate(-15deg);
  }
  .nav-menu-corner-tr {
    top: 2rem; right: 1.5rem;
    transform: rotate(12deg);
  }
  .nav-menu-corner-bl {
    bottom: 2rem; left: 1.5rem;
    transform: rotate(8deg);
  }
  .nav-menu-corner-tl { animation: nav-corner-float-tl 4s ease-in-out infinite; }
  .nav-menu-corner-tr { animation: nav-corner-float-tr 5s ease-in-out infinite 0.5s; }
  .nav-menu-corner-bl { animation: nav-corner-float-bl 4.5s ease-in-out infinite 1s; }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.5rem 0;
  }
  .nav-links .nav-cta {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 100002;
    cursor: pointer;
    font-size: 1.75rem;
    padding: 0.5rem;
    color: var(--white);
    mix-blend-mode: normal;
  }
}

@keyframes nav-corner-float-tl {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-8px) rotate(-15deg); }
}
@keyframes nav-corner-float-tr {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-8px) rotate(12deg); }
}
@keyframes nav-corner-float-bl {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-8px) rotate(8deg); }
}

/* ── BUTTONS ── */
.btn-fancy {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--terracotta); color: var(--white);
  padding: 1rem 1.25rem 1rem 2rem;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.9375rem;
  position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
}

.btn-fancy::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.btn-fancy-text {
  position: relative; z-index: 1;
  transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-fancy-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  position: relative; z-index: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s,
              width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-fancy:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 50px rgba(193, 112, 92, 0.4),
              0 0 0 1px rgba(255,255,255,0.1) inset;
}
.btn-fancy:hover::before { opacity: 1; }
.btn-fancy:hover .btn-fancy-text { letter-spacing: 0.04em; }
.btn-fancy:hover .btn-fancy-icon {
  transform: translateX(4px) rotate(-45deg);
  background: rgba(255,255,255,0.35);
  width: 40px;
}

.btn-fancy:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 8px 24px rgba(193, 112, 92, 0.3);
}

.btn-fancy-dark {
  background: var(--dark); color: var(--white);
}
.btn-fancy-dark:hover {
  box-shadow: 0 20px 50px rgba(26, 24, 22, 0.35),
              0 0 0 1px rgba(255,255,255,0.05) inset;
}
.btn-fancy-dark:active {
  box-shadow: 0 8px 24px rgba(26, 24, 22, 0.3);
}

.btn-fancy-light {
  background: var(--white); color: var(--dark);
}
.btn-fancy-light .btn-fancy-icon { background: rgba(0,0,0,0.08); }
.btn-fancy-light:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12),
              0 0 0 1px rgba(0,0,0,0.04) inset;
}
.btn-fancy-light:hover .btn-fancy-icon { background: rgba(0,0,0,0.12); }

.btn-ghost {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.9375rem;
  color: var(--white); padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  isolation: isolate;
}

.btn-ghost::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--white);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-ghost:hover {
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(255,255,255,0.15);
}
.btn-ghost:hover::before { transform: translateY(0); }

.btn-ghost:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-ghost-dark {
  color: var(--dark);
  border-color: rgba(26,24,22,0.2);
}
.btn-ghost-dark::before { background: var(--dark); }
.btn-ghost-dark:hover { color: var(--white); border-color: var(--dark); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
img.hero-bg-img,
video.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  will-change: transform; scale: 1.15;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,24,22,0.3) 0%, rgba(26,24,22,0.65) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1000px; padding: 0 1.5rem;
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 1.5rem;
}

.hero-title {
  display: flex; flex-direction: column; align-items: center;
}

.hero-title-line {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(5rem, 20vw, 14rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.05em;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.85);
  margin: 1.5rem 0 2.5rem;
}

.rotating-word { color: var(--yellow); font-style: normal; font-weight: 600; }

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-sticker {
  position: absolute; z-index: 3; pointer-events: none;
  animation: float-gentle 6s ease-in-out infinite;
}
.hero-sticker-1 { width: 110px; right: 8%; top: 25%; animation-delay: 0s; }
.hero-sticker-2 { width: 90px; left: 6%; bottom: 20%; animation-delay: 2s; }

@keyframes float-gentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

@media (max-width: 768px) {
  .hero-sticker { display: none; }
}

/* ── MARQUEE ── */
.marquee {
  background: var(--dark); color: var(--cream);
  padding: 1rem 0; overflow: hidden; white-space: nowrap;
}

.marquee-inner {
  display: inline-flex; gap: 2rem; align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-dot {
  width: 6px; height: 6px;
  background: var(--terracotta);
  border-radius: 50; flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FEATURED VIDEO ── */
.featured-video {
  background: var(--dark);
  padding: 4rem 2rem;
}
.featured-video-inner {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.featured-video-wrap {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  width: fit-content;
  max-width: 560px;
}
.featured-video-player {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  vertical-align: top;
}
.featured-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,24,22,0.25);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, background 0.3s;
}
.featured-video-play:hover {
  background: rgba(26,24,22,0.35);
}
.featured-video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.featured-video-play i {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.75rem;
  padding-left: 6px;
  box-shadow: 0 4px 20px rgba(193,112,92,0.4);
  animation: featured-video-play-pulse 2s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.featured-video-play:hover i {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 4px 28px rgba(193,112,92,0.6);
}
@keyframes featured-video-play-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(193,112,92,0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 32px rgba(193,112,92,0.7);
    transform: scale(1.05);
  }
}

/* ── EDITORIAL ── */
.editorial {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1300px; margin: 0 auto;
  padding: 8rem 2rem;
}

.editorial-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.editorial-em {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--terracotta);
}

.editorial-image {
  position: relative;
}
.editorial-image img:first-child {
  width: 100%; border-radius: 0.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-image:hover img:first-child {
  transform: scale(1.02);
}
.editorial-sticker {
  position: absolute; width: 95px;
  bottom: -20px; right: -10px;
  animation: float-gentle 5s ease-in-out infinite;
  animation-delay: 1s;
}

@media (max-width: 768px) {
  .editorial { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 1.5rem; }
}

/* ── FULLBLEED IMAGE ── */
.fullbleed-image {
  width: 100%; overflow: hidden;
  position: relative;
}
.fullbleed-img {
  width: 100%; height: 80vh;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0.5rem;
}

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1300px; margin: 0 auto;
  padding: 8rem 2rem;
}

.about-image {
  overflow: hidden; border-radius: 0.5rem;
  max-width: 420px;
  display: flex;
  justify-content: center;
}
.about-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover img {
  transform: scale(1.03);
}

.about-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}

.about-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

.about-content p { color: var(--muted); margin-bottom: 1rem; }
.about-content .btn-fancy { margin-top: 1rem; }

@media (max-width: 768px) {
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
}

/* ── SCATTERED IMAGES ── */
.image-break {
  padding: 4rem 2rem;
  max-width: 1200px; margin: 0 auto;
}

.image-break-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.scattered-img { width: 100%; }

.scattered-img {
  overflow: hidden; border-radius: 0.5rem;
}
.scattered-img img {
  width: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scattered-img:hover img {
  transform: scale(1.04);
}
.scattered-img-1 { transform: translateY(2rem); }
.scattered-img-1 img { aspect-ratio: 3/4; }
.scattered-img-2 img { aspect-ratio: 4/5; }
.scattered-img-3 { transform: translateY(4rem); }
.scattered-img-3 img { aspect-ratio: 3/4; }

@media (max-width: 768px) {
  .image-break-inner { grid-template-columns: 1fr 1fr; }
  .scattered-img-3 { display: none; }
  .scattered-img-1, .scattered-img-3 { transform: none; }
}

/* ── BIG STATEMENT ── */
.big-statement {
  padding: 8rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}

.statement-text {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  max-width: 900px; margin: 0 auto;
  color: var(--dark);
}

.statement-sticker {
  position: absolute; width: 110px;
  right: 10%; bottom: 15%;
  animation: float-gentle 5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .big-statement { padding: 5rem 1.5rem; }
  .statement-sticker { width: 70px; right: 5%; bottom: 10%; }
}

/* ── VIDEOS (refined) ── */
.videos {
  padding: 6rem 2rem;
  max-width: 1400px; margin: 0 auto;
}

.videos-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.75rem;
}

.videos-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.videos-scroll-wrap {
  overflow: hidden;
  margin: 0 -1rem;
}

.videos-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  padding: 0 1rem;
  width: max-content;
  animation: videos-scroll 35s linear infinite;
}

.videos-scroll-wrap:hover .videos-scroll { animation-play-state: paused; }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.videos-page .videos-grid .video-item { flex: none; }

@media (prefers-reduced-motion: reduce) {
  .videos-scroll { animation: none; }
}

@keyframes videos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.video-item {
  display: block; color: inherit;
  flex: 0 0 320px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-item:hover { transform: translateY(-8px); }

.video-thumb {
  position: relative; overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 3/4;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-item:hover .video-thumb img { transform: scale(1.05); }

.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,24,22,0.25);
  transition: background 0.3s, transform 0.3s;
}

.video-play i {
  width: 4rem; height: 4rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(193,112,92,0.4);
  animation: video-play-pulse 2s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-item:hover .video-play i {
  transform: scale(1.15);
  animation: none;
}

@keyframes video-play-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(193,112,92,0.4); }
  50% { box-shadow: 0 4px 28px rgba(193,112,92,0.6); }
}

.video-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  margin-top: 0.75rem; color: var(--dark);
}

@media (max-width: 900px) {
  .video-item { flex: 0 0 280px; }
}
@media (max-width: 600px) {
  .videos {
    padding: 4rem 0 4rem;
    overflow: hidden;
  }
  .videos-header { padding: 0 1.5rem; }
  .videos-scroll-wrap { margin: 0; }
  .videos-scroll { padding: 0 1.5rem; }
  .video-item { flex: 0 0 240px; }
  .video-play i { width: 3rem; height: 3rem; font-size: 1.125rem; padding-left: 3px; }
}

/* ── REVIEWS ── */
.reviews {
  text-align: center; padding: 8rem 2rem;
  position: relative; overflow: hidden;
}

.reviews-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.75rem;
}

.reviews-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.reviews-sub {
  color: var(--muted); max-width: 480px;
  margin: 0 auto 2rem; font-size: 1.0625rem;
}

.reviews-sticker {
  position: absolute; width: 95px;
  left: 8%; top: 20%;
  animation: float-gentle 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

@media (max-width: 768px) {
  .reviews { padding: 5rem 1.5rem; }
  .reviews-sticker { display: none; }
}

/* ── VIDEOS & REVIEWS TEASER ── */
.videos-reviews-teaser {
  text-align: center;
  padding: 6rem 2rem;
}
.videos-reviews-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.videos-reviews-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.videos-reviews-sub {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 1.0625rem;
}
@media (max-width: 768px) {
  .videos-reviews-teaser { padding: 4rem 1.5rem; }
}

/* ── CTA ── */
.cta {
  background: var(--dark); color: var(--white);
  padding: 8rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  margin-bottom: 1.5rem; color: var(--white);
}

.cta-sub {
  color: rgba(255,255,255,0.7);
  max-width: 480px; margin: 0 auto 2.5rem;
  font-size: 1.125rem;
}

.cta-sticker {
  position: absolute; pointer-events: none;
  animation: float-gentle 6s ease-in-out infinite;
}
.cta-sticker-1 { width: 120px; right: 8%; top: 15%; animation-delay: 0.5s; }
.cta-sticker-2 { width: 100px; left: 10%; bottom: 15%; animation-delay: 2.5s; }

@media (max-width: 768px) {
  .cta { padding: 5rem 1.5rem; }
  .cta-sticker { display: none; }
}

/* ── INSTAGRAM ── */
.insta {
  padding: 3rem 2rem; text-align: center;
}

.insta-link {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700; color: var(--dark);
  transition: color 0.3s;
}
.insta-link:hover { color: var(--terracotta); }
.insta-link i { font-size: 1.5rem; }

/* ── INSTAGRAM FEED ── */
.instagram-feed {
  padding: 5rem 2rem 6rem;
  text-align: center;
}
.instagram-feed-header { margin-bottom: 2.5rem; }
.instagram-feed-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.5rem;
}
.instagram-feed-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.instagram-feed-sub {
  color: var(--muted);
  font-size: 1.0625rem;
}
.instagram-feed-embed {
  max-width: 900px;
  margin: 0 auto;
}
.instagram-feed-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(193,112,92,0.06) 0%, rgba(193,112,92,0.02) 100%);
  border-radius: var(--radius);
  border: 2px dashed rgba(193,112,92,0.3);
  color: var(--dark);
  transition: background 0.3s, border-color 0.3s;
}
.instagram-feed-fallback:hover {
  background: linear-gradient(135deg, rgba(193,112,92,0.1) 0%, rgba(193,112,92,0.04) 100%);
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.instagram-feed-fallback i {
  font-size: 3rem;
}
.instagram-feed-fallback span:first-of-type {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.instagram-feed-cta {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .instagram-feed { padding: 4rem 1.5rem 5rem; }
}

/* ── VIDEO MODAL ── */
.video-modal {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}

.video-modal.is-open {
  opacity: 1; pointer-events: auto;
}

.video-modal-inner {
  width: 90%; max-width: 900px;
  aspect-ratio: 16/9;
  position: relative;
}

.video-modal-inner iframe {
  width: 100%; height: 100%;
  border-radius: 0.5rem;
}

.video-modal-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none;
  color: var(--white); font-size: 1.5rem;
  cursor: pointer; opacity: 0.7;
  transition: opacity 0.3s;
}

.video-modal-close:hover { opacity: 1; }

/* ── VOW BUILDER PROMO (homepage) ── */
.vb-promo {
  padding: 6rem 2rem;
  background: var(--dark); color: var(--white);
}

.vb-promo-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.vb-promo-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--terracotta-light); margin-bottom: 1rem;
}

.vb-promo-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white); margin-bottom: 1rem;
}

.vb-promo-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem; font-size: 0.9375rem;
}

.vb-promo-bonus {
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem; font-size: 0.8125rem;
}

.vb-promo-bonus strong { color: var(--yellow); }

.vb-promo-visual {
  position: relative;
  display: flex; justify-content: center;
}

.vb-promo-mockup {
  background: var(--cream); color: var(--dark);
  border-radius: 1rem; padding: 2rem;
  width: 100%; max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.vb-promo-mock-label {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.75rem;
}

.vb-promo-mock-q {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem; font-weight: 700;
  margin-bottom: 1rem;
}

.vb-promo-mock-input {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(26,24,22,0.12);
  border-radius: 0.5rem;
  color: var(--muted); font-size: 0.875rem;
  font-family: 'Space Grotesk', sans-serif;
}

.vb-promo-sticker {
  position: absolute; pointer-events: none;
  animation: float-gentle 5s ease-in-out infinite;
}

.vb-promo-sticker-1 { width: 85px; top: -20px; right: -10px; animation-delay: 0s; }
.vb-promo-sticker-2 { width: 75px; bottom: -15px; left: -10px; animation-delay: 2s; }

@media (max-width: 768px) {
  .vb-promo-inner { grid-template-columns: 1fr; gap: 2rem; }
  .vb-promo { padding: 4rem 1.5rem; }
  .vb-promo-visual { justify-content: center; }
  .vb-promo-sticker { display: none; }
}

/* ── FOOTER (rebuilt) ── */
.footer {
  background: var(--cream);
  color: var(--dark);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(26,24,22,0.06);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(26,24,22,0.08);
}

.footer-brand { max-width: 400px; }

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--dark); margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.6;
}

.footer-newsletter { text-align: right; }

.footer-newsletter-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer-grid-new {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-bottom: 4rem;
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1rem;
}

.footer-grid-new a {
  display: block; font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.3s; margin-bottom: 0.5rem;
  line-height: 1.4;
}
.footer-grid-new a:hover { color: var(--dark); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(26,24,22,0.08);
}

.footer-ack {
  font-size: 0.75rem; color: var(--muted);
  opacity: 0.7;
  margin-bottom: 1.5rem; max-width: 600px;
  line-height: 1.5;
}

.footer-bottom-row {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}

.footer-legal { font-size: 0.6875rem; color: var(--muted); opacity: 0.6; }

.footer-badges {
  display: flex; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}

.footer-tcs-link {
  display: inline-block;
  line-height: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.footer-tcs-link:hover {
  transform: scale(1.05);
  opacity: 1;
}

.footer-tcs-logo {
  width: 64px; height: 64px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-tcs-link:hover .footer-tcs-logo { opacity: 1; }

@media (max-width: 900px) {
  .footer-grid-new { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .footer-newsletter { text-align: left; }
}

@media (max-width: 600px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-newsletter { text-align: center; }
  .footer-brand { max-width: 100%; }
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-col-title { text-align: center; }
  .footer-grid-new a { display: block; margin-bottom: 0.5rem; }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-ack { text-align: center; margin-left: auto; margin-right: auto; }
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-legal { text-align: center; }
  .footer-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ── FLYING STICKERS ── */
.flying-elements {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}

.fly {
  position: absolute; width: 60px; height: 60px;
  object-fit: contain; opacity: 0.4;
  animation: fly-across 18s linear infinite;
}

.fly-1 { top: 15%; animation-duration: 24s; animation-delay: 0s; }
.fly-2 { top: 40%; animation-duration: 28s; animation-delay: -6s; animation-direction: reverse; }
.fly-3 { top: 60%; animation-duration: 22s; animation-delay: -12s; }
.fly-4 { top: 80%; animation-duration: 30s; animation-delay: -3s; animation-direction: reverse; }
.fly-5 { top: 25%; animation-duration: 26s; animation-delay: -15s; }

@keyframes fly-across {
  0% { transform: translateX(-60px) rotate(0deg); }
  100% { transform: translateX(calc(100vw + 60px)) rotate(360deg); }
}

@media (max-width: 768px) {
  .fly { width: 44px; height: 44px; opacity: 0.25; }
  .fly-3, .fly-5 { display: none; }
}

/* ============================================
   INNER PAGES
   ============================================ */

/* ── PAGE HERO (shared) ── */
.page-hero {
  min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 10rem 2rem 4rem;
  position: relative; overflow: hidden;
  color: var(--white);
}

.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,24,22,0.25) 0%, rgba(26,24,22,0.85) 100%);
}

.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }

.page-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--terracotta-light); margin-bottom: 1.5rem;
}

.page-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  margin-bottom: 1rem;
}

.page-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

/* ── ABOUT PAGE ── */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1300px; margin: 0 auto;
  padding: 6rem 2rem;
}

.about-intro-image img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: 0.5rem;
}

.about-intro-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.about-intro-text p {
  color: var(--muted); margin-bottom: 1rem;
}

.about-intro-text em { color: var(--terracotta); }

@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
}

/* Values grid */
.about-values {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.about-values-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center; margin-bottom: 3rem;
}

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

.value-card {
  padding: 2.5rem;
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.value-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--terracotta); color: var(--white);
  border-radius: 50%; font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card p { color: var(--muted); font-size: 0.9375rem; }

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-values { padding: 3rem 1.5rem 4rem; }
}

/* Fun facts */
.about-facts {
  background: var(--white);
  max-width: 1000px; margin: 0 auto;
  padding: 4rem 2rem;
}

.about-facts h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center; margin-bottom: 3rem;
}

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

.fact {
  padding: 1.5rem;
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 0.75rem;
  text-align: center;
}

.fact-label {
  display: block;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.5rem;
}

.fact-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem; font-weight: 700;
}

@media (max-width: 768px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .about-facts { padding: 3rem 1.5rem; }
}

/* ── PACKAGES PAGE ── */

/* How it works strip */
.pkg-how {
  background: var(--white);
  padding: 3rem 2rem;
}

.pkg-how-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 1000px; margin: 0 auto;
  text-align: center;
}

.pkg-how-step p {
  font-size: 0.875rem; color: var(--muted);
  margin-top: 0.5rem;
}

.pkg-how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--terracotta); color: var(--white);
  border-radius: 50%;
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem; font-weight: 800;
}

@media (max-width: 768px) {
  .pkg-how-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
  .pkg-how-inner { grid-template-columns: 1fr; }
}

.packages-section {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

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

.pkg-card {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(26, 24, 22, 0.06);
  border-radius: 1.25rem;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

.pkg-card-featured {
  background: var(--dark); color: var(--white);
  border-color: transparent;
}

.pkg-card-featured .pkg-desc,
.pkg-card-featured .pkg-features li { color: rgba(255,255,255,0.7); }
.pkg-card-featured .pkg-features li { border-color: rgba(255,255,255,0.08); }
.pkg-card-featured .pkg-features li i { color: var(--terracotta-light); }
.pkg-card-featured .pkg-tagline { color: var(--terracotta-light); }

.pkg-card-featured:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.pkg-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--terracotta); color: var(--white);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.375rem 1rem; border-radius: var(--radius);
}

.pkg-header { margin-bottom: 1.5rem; }

.pkg-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.25rem;
  line-height: 1.1;
}

.pkg-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem;
  color: var(--terracotta);
}

.pkg-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  margin-top: 0.75rem;
  letter-spacing: -0.03em;
}

.pkg-card-featured .pkg-price { color: var(--yellow); }

.pkg-desc {
  color: var(--muted); margin-bottom: 1.5rem;
  font-size: 0.875rem; line-height: 1.65;
}

.pkg-features {
  list-style: none; margin-bottom: 2rem;
}

.pkg-features li {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26, 24, 22, 0.05);
  font-size: 0.875rem; color: var(--muted);
}

.pkg-features li i {
  color: var(--sage); font-size: 1rem; flex-shrink: 0;
}

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .packages-section { padding: 3rem 1.5rem 4rem; }
}

/* ── PACKAGE BUILDER ── */
.builder-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.builder-header {
  text-align: center; max-width: 600px;
  margin: 0 auto 3rem;
}

.builder-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}

.builder-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.builder-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic; color: var(--muted);
}

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

@media (max-width: 900px) {
  .builder-wrap { grid-template-columns: 1fr; }
}

.builder-options {
  display: flex; flex-direction: column; gap: 0.75rem;
}

.builder-opt {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.builder-opt:hover {
  border-color: var(--terracotta-light);
  transform: translateY(-2px);
}

.builder-opt:has(input:checked) {
  border-color: var(--terracotta);
  background: rgba(193, 112, 92, 0.04);
}

.builder-opt input { display: none; }

.builder-opt-check {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  border: 2px solid rgba(26, 24, 22, 0.15);
  border-radius: 0.375rem;
  color: transparent;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.builder-opt:has(input:checked) .builder-opt-check {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  transform: scale(1.1);
}

.builder-opt-text { display: flex; flex-direction: column; }
.builder-opt-text strong {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem; font-weight: 700;
}
.builder-opt-text small {
  font-size: 0.75rem; color: var(--muted);
  margin-top: 0.125rem;
}

.builder-opt-price {
  margin-left: auto; flex-shrink: 0;
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem; font-weight: 700;
  color: var(--dark);
}

/* Summary */
.builder-summary {
  background: var(--cream);
  padding: 2rem;
  border-radius: 1rem;
  position: sticky; top: 6rem;
}

.builder-summary-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 1.5rem;
}

.builder-summary-header h3 {
  font-size: 1.25rem;
}

.builder-summary-count {
  font-size: 0.75rem; font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.05em; text-transform: uppercase;
}

.builder-summary-list {
  list-style: none; margin-bottom: 1.5rem;
  min-height: 60px;
}

.builder-summary-list li {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.875rem; color: var(--dark);
}

.builder-summary-list li i { color: var(--sage); font-size: 1rem; }

.builder-summary-empty {
  color: var(--muted) !important;
  font-style: italic;
}

.builder-summary-total {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(26,24,22,0.08);
  border-bottom: 1px solid rgba(26,24,22,0.08);
}

.builder-summary-total span {
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--muted);
}

.builder-summary-total strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--dark);
}

.builder-summary-note {
  font-size: 0.6875rem; color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* FAQ */
.faq-section {
  max-width: 800px; margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.faq-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.75rem;
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
  padding: 1.5rem 0;
}

.faq-item summary {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem; font-weight: 700;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s;
}

.faq-item summary:hover { color: var(--terracotta); }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem; font-weight: 300;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--muted); margin-top: 1rem;
  font-size: 0.9375rem; line-height: 1.7;
  padding-right: 2rem;
}

.faq-item a { color: var(--terracotta); text-decoration: underline; }

@media (max-width: 768px) {
  .faq-section { padding: 3rem 1.5rem 4rem; }
}

/* ── VENDORS ── */
.vendors-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.vendors-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  color: var(--muted);
}
.vendor-category {
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
  padding: 1.5rem 0;
}
.vendor-category summary {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vendor-category summary:hover { color: var(--terracotta); }
.vendor-category summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vendor-category[open] summary::after {
  transform: rotate(45deg);
}
.vendor-links {
  list-style: none;
  margin-top: 1rem;
  padding-right: 2rem;
}
.vendor-links li {
  padding: 0.5rem 0;
}
.vendor-links a {
  color: var(--terracotta);
  text-decoration: underline;
  font-size: 0.9375rem;
}
.vendor-links a:hover { opacity: 0.8; }

/* ── TRAVEL NOTE ── */
.pkg-travel-note {
  text-align: center;
  font-size: 0.75rem; color: var(--muted);
  margin-top: 2rem; font-style: italic;
}

/* ── DISCOUNTS SECTION ── */
.discounts-section {
  padding: 5rem 2rem;
  background: var(--dark); color: var(--white);
}

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

.discounts-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.discounts-sub {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
}

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

.discount-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.discount-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.discount-card-combo {
  border-color: var(--yellow);
  background: rgba(255,193,7,0.06);
}

.discount-amount {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.discount-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.discount-desc strong { color: var(--white); }
.discount-desc small { display: block; margin-top: 0.25rem; font-size: 0.6875rem; opacity: 0.5; }

@media (max-width: 768px) {
  .discounts-grid { grid-template-columns: 1fr; }
  .discounts-section { padding: 3rem 1.5rem; }
}

/* ── EXTRAS (MC & Co-Celebrant) ── */
.extras-section {
  padding: 5rem 2rem;
  max-width: 1200px; margin: 0 auto;
}

.extras-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.extras-card {
  padding: 2.5rem;
  border: 1px solid rgba(26,24,22,0.08);
  border-radius: 1rem;
  transition: border-color 0.3s;
}

.extras-card:hover { border-color: var(--terracotta); }

.extras-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.extras-card p {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 1rem;
}

.extras-price {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
}

.extras-price strong {
  font-size: 1.25rem;
  color: var(--dark);
}

.extras-card-subtle {
  border-color: rgba(26,24,22,0.06);
}
.extras-card-subtle .extras-title { font-size: 1.25rem; }

@media (max-width: 768px) {
  .extras-grid { grid-template-columns: 1fr; }
  .extras-section { padding: 3rem 1.5rem; }
}

/* ── VOW GUIDE PAGE ── */
.vow-intro {
  max-width: 800px; margin: 0 auto;
  padding: 4rem 2rem;
}

.vow-intro-inner {}

.vow-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--dark); line-height: 1.5;
  margin-bottom: 1.5rem;
}

.vow-lead em { color: var(--terracotta); }

.vow-intro-inner > p { color: var(--muted); }

/* Steps */
.vow-steps {
  max-width: 800px; margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.vow-step {
  display: flex; gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

.vow-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--terracotta-light);
  line-height: 1; flex-shrink: 0;
  min-width: 60px;
}

.vow-step-content h2 {
  font-size: 1.5rem; margin-bottom: 0.75rem;
}

.vow-step-content p { color: var(--muted); font-size: 0.9375rem; }
.vow-step-content em { color: var(--terracotta); }

@media (max-width: 600px) {
  .vow-step { flex-direction: column; gap: 0.75rem; }
  .vow-steps { padding: 1rem 1.5rem 4rem; }
}

/* Prompts */
.vow-prompts {
  max-width: 900px; margin: 0 auto;
  padding: 4rem 2rem;
}

.vow-prompts h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center; margin-bottom: 2.5rem;
}

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

.prompt-card {
  padding: 1.5rem;
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s;
}

.prompt-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta-light);
}

.prompt-card i {
  color: var(--terracotta); font-size: 1.25rem;
  margin-bottom: 0.75rem; display: block;
}

.prompt-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic;
  color: var(--dark);
}

@media (max-width: 768px) {
  .prompts-grid { grid-template-columns: 1fr 1fr; }
  .vow-prompts { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  .prompts-grid { grid-template-columns: 1fr; }
}

/* Vow tip */
.vow-tip {
  padding: 4rem 2rem;
}

.vow-tip-inner {
  max-width: 700px; margin: 0 auto;
  text-align: center; padding: 3rem;
  background: var(--white);
  border-radius: 1rem; position: relative;
}

.vow-tip-sticker {
  position: absolute; width: 85px;
  top: -25px; left: -15px;
  animation: float-gentle 5s ease-in-out infinite;
}

.vow-tip-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.vow-tip-inner p {
  color: var(--muted); margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.vow-tip-inner .btn-fancy { margin-top: 1rem; }

/* ── CONTACT PAGE ── */
.contact-section {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 4rem; align-items: start;
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

@media (max-width: 900px) {
  .contact-section { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem 4rem; }
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.02em;
}

.form-optional { font-weight: 400; color: var(--muted); font-size: 0.75rem; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(26, 24, 22, 0.12);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193, 112, 92, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select { cursor: pointer; }

.btn-submit {
  align-self: flex-start;
  border: none; cursor: pointer;
}

/* Contact info side */
.contact-info { position: relative; }

.contact-info-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 1rem;
  position: sticky; top: 6rem;
}

.contact-info-card h2 {
  font-size: 1.75rem; margin-bottom: 0.75rem;
}

.contact-info-card > p {
  color: var(--muted); margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.contact-methods { display: flex; flex-direction: column; gap: 1rem; }

.contact-method {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--dark); font-size: 0.9375rem;
  transition: color 0.3s;
  word-break: break-all;
}

.contact-method:hover { color: var(--terracotta); }

.contact-method i { font-size: 1.25rem; color: var(--terracotta); flex-shrink: 0; }

.contact-sticker {
  width: 95px; position: absolute;
  bottom: -30px; right: 0;
  animation: float-gentle 5s ease-in-out infinite;
  animation-delay: 1s;
}

/* ── FOOTER CREDIT ── */
.footer-credit {
  font-size: 0.6875rem;
  color: var(--muted);
}

.footer-credit a {
  color: var(--muted);
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--terracotta); }

/* ============================================
   BLOG / INSIGHTS
   ============================================ */

/* Index page */
.insights-intro {
  max-width: 700px; margin: 0 auto;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.insights-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--muted);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px; margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.insight-card {
  display: block;
  border-radius: 1rem; overflow: hidden;
  background: var(--white);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.5s;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

.insight-card-img {
  aspect-ratio: 16/10; overflow: hidden;
}

.insight-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card:hover .insight-card-img img { transform: scale(1.06); }

.insight-card-body {
  padding: 1.5rem;
}

.insight-card-tag {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.75rem;
  display: block;
}

.insight-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  line-height: 1.25; margin-bottom: 0.75rem;
  color: var(--dark);
}

.insight-card-excerpt {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 1rem;
}

.insight-card-read {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--terracotta);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.insight-card:hover .insight-card-read { gap: 0.75rem; }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* Blog post */
.post-hero {
  min-height: 60vh;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.post-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.post-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
}

.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,24,22,0.1) 0%, rgba(26,24,22,0.75) 100%);
}

.post-hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
}

.post-tag {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 1rem;
  display: block;
}

.post-hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--white); margin-bottom: 1rem;
  line-height: 1.05;
}

.post-meta {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  display: flex; gap: 1.5rem; align-items: center;
}

/* Blog article body */
.post-body {
  max-width: 720px; margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.post-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 3rem 0 1.25rem;
}

.post-body h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}

.post-body p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.post-body p strong { color: var(--dark); }

.post-body em { color: var(--terracotta); }

.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.post-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.post-body blockquote {
  border-left: 3px solid var(--terracotta);
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 0 0.5rem 0.5rem 0;
}

.post-body blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem; font-style: italic;
  color: var(--dark); margin-bottom: 0;
}

.post-body .post-image {
  margin: 2.5rem 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.post-body .post-image img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
}

.post-body .post-image figcaption {
  font-size: 0.75rem; color: var(--muted);
  margin-top: 0.5rem; text-align: center;
  font-style: italic;
}

/* ── RELATED POSTS ── */
.related-posts {
  max-width: 760px; margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(26,24,22,0.06);
}

.related-posts-title {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
}

.related-posts-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.related-post-card {
  display: block;
  padding: 1.5rem;
  border: 1px solid rgba(26,24,22,0.08);
  border-radius: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
}

.related-post-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.related-post-tag {
  display: inline-block;
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.5rem;
}

.related-post-title {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--dark); line-height: 1.3;
}

@media (max-width: 600px) {
  .related-posts-grid { grid-template-columns: 1fr; }
}

/* Post CTA at bottom */
.post-cta {
  max-width: 720px; margin: 0 auto;
  padding: 0 2rem 6rem;
}

.post-cta-inner {
  background: var(--dark); color: var(--white);
  padding: 3rem; border-radius: 1rem;
  text-align: center; position: relative;
}

.post-cta-inner h3 {
  font-size: 1.75rem; color: var(--white);
  margin-bottom: 0.75rem;
}

.post-cta-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem; font-size: 0.9375rem;
}

/* ============================================
   VOW BUILDER TOOL
   ============================================ */
.vb-section {
  padding: 4rem 2rem 6rem;
  max-width: 700px;
  margin: 0 auto;
}

.vb-container { position: relative; }

.vb-progress {
  height: 3px; background: rgba(26,24,22,0.06);
  border-radius: 3px; margin-bottom: 3rem;
  overflow: hidden;
}

.vb-progress-bar {
  height: 100%; width: 16.66%;
  background: var(--terracotta);
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vb-step { display: none; }
.vb-step.active { display: block; animation: vb-fade-in 0.4s ease-out; }

@keyframes vb-fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.vb-step-label {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); display: block;
  margin-bottom: 1rem;
}

.vb-step h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.vb-step > p {
  color: var(--muted); margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.vb-fields { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

.vb-field { display: flex; flex-direction: column; gap: 0.4rem; }
.vb-field label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8125rem; font-weight: 700;
}
.vb-field input,
.vb-field textarea {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(26, 24, 22, 0.12);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.vb-field input:focus,
.vb-field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193, 112, 92, 0.1);
}
.vb-field textarea { resize: vertical; min-height: 100px; }

.vb-nav-btns {
  display: flex; gap: 1rem; align-items: center;
}

/* Tone selector */
.vb-tone-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; margin-bottom: 2rem;
}

.vb-tone {
  cursor: pointer; text-align: center;
  padding: 1rem; border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-tone:hover {
  border-color: var(--terracotta-light);
  transform: translateY(-2px);
}

.vb-tone.selected,
.vb-tone:has(input:checked) {
  border-color: var(--terracotta);
  background: rgba(193, 112, 92, 0.06);
}

.vb-tone input { display: none; }

.vb-tone span {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem; font-weight: 700;
}

@media (max-width: 480px) {
  .vb-tone-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Result */
.vb-result { margin-bottom: 2rem; }

.vb-result-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  border-left: 3px solid var(--terracotta);
}

.vb-result-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.vb-result-card p:last-child { margin-bottom: 0; }

.vb-actions {
  display: flex; gap: 1rem; align-items: center;
  margin-bottom: 3rem; flex-wrap: wrap;
}

/* Upsell */
.vb-upsell {
  margin-top: 2rem;
}

.vb-upsell-inner {
  background: var(--dark); color: var(--white);
  padding: 2.5rem;
  border-radius: 1.25rem;
  position: relative; overflow: hidden;
}

.vb-upsell-sticker {
  position: absolute; width: 75px;
  top: -10px; right: 16px;
  animation: float-gentle 5s ease-in-out infinite;
}

.vb-upsell-inner h3 {
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 0.75rem;
}

.vb-upsell-inner > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem; margin-bottom: 1.5rem;
  line-height: 1.65;
}

.vb-upsell-inner > p strong { color: var(--yellow); }

.vb-upsell-bonus {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.vb-upsell-bonus i {
  color: var(--yellow); font-size: 1.25rem;
  flex-shrink: 0; margin-top: 0.125rem;
}

.vb-upsell-bonus span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.vb-upsell-actions {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-start;
}

.vb-upsell-link {
  font-size: 0.8125rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.vb-upsell-link:hover { color: var(--white); }

/* ── GLOBAL MOBILE FIXES ── */
@media (max-width: 768px) {
  .page-hero { padding: 8rem 1.5rem 3rem; min-height: 40vh; }
  .page-title { font-size: clamp(2.5rem, 12vw, 4rem); }

  .post-hero { min-height: 50vh; padding: 5rem 1.5rem 3rem; }
  .post-hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .post-meta { flex-wrap: wrap; gap: 0.75rem; }
  .post-body { padding: 3rem 1.5rem 4rem; }
  .post-cta { padding: 0 1.5rem 4rem; }

  .vb-section { padding: 3rem 1.5rem 4rem; }
  .vb-result-card { padding: 1.5rem; }
  .vb-upsell-inner { padding: 1.5rem; }
  .vb-actions { flex-direction: column; align-items: stretch; }
  .vb-actions .btn-ghost { text-align: center; }

  .builder-section { padding: 4rem 1.5rem; }
}

/* ── REVEAL ANIMATION (initial state) ── */
.anim-up, .reveal {
  opacity: 0;
  transform: translateY(40px);
}
