/* ====================================================================
   DJ TAKE2 — DNA-inspired visual system
   ==================================================================== */

:root {
  --ink: #0A0A0A;
  --ink-2: #121212;
  --ink-3: #1A1A1A;
  --paper: #FFFFFF;
  --paper-2: #F5F5F2;
  --paper-3: #E8E6E0;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-2: rgba(255, 255, 255, 0.4);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --pink: #E72938;
  --pink-hover: #cf202e;
  --pink-soft: rgba(231, 41, 56, 0.12);
}

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

html { scroll-behavior: smooth; background: var(--ink); }

body {
  background: var(--ink);
  color: var(--paper-2);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--pink); color: var(--paper); }

/* -------- TYPE -------- */
.display, h1, h2, h3, h4 {
  font-family: 'Oswald', 'Bebas Neue', 'Helvetica Neue Condensed', Impact, sans-serif;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 0.96;
  color: var(--paper);
}

h1 { font-size: clamp(56px, 9.5vw, 156px); }
h2 { font-size: clamp(40px, 6vw, 96px); }
h3 { font-size: clamp(28px, 3.4vw, 52px); }
h4 { font-size: clamp(22px, 2vw, 32px); line-height: 1.05; }

.serif-it {
  font-family: 'Playfair Display', 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.005em;
}

/* mono / oswald-spaced label */
.label-mono {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* "EST 2013 ★ PHOENIX, ARIZONA" badge wrapper */
.est-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
}
.est-badge::before,
.est-badge::after {
  content: '';
  width: 56px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.est-badge .star { color: var(--pink); }
.est-badge.center { justify-content: center; width: 100%; }
@media (max-width: 600px) {
  .est-badge { font-size: 11px; gap: 10px; }
  .est-badge::before, .est-badge::after { width: 36px; }
}

/* -------- LAYOUT -------- */
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

section { position: relative; }

.section-pad { padding: 140px 0; }
@media (max-width: 720px) { .section-pad { padding: 88px 0; } }

.center { text-align: center; }
.center-stack { display: flex; flex-direction: column; align-items: center; gap: 24px; }

/* -------- NAV -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.nav .brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav .brand .mk {
  width: 26px; height: 26px;
  background: var(--pink);
  display: inline-block;
  position: relative;
  border-radius: 2px;
}
.nav .brand .mk::after {
  content: '★';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 14px;
}
.nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav ul a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav ul a:hover, .nav ul a.is-active { opacity: 1; }
.nav ul a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.3s ease;
}
.nav ul a:hover::after, .nav ul a.is-active::after { width: 100%; }

.nav-cta {
  background: var(--pink);
  color: var(--paper);
  padding: 12px 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
  border-radius: 4px;
  line-height: 1;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--pink-hover); }

@media (max-width: 1000px) { .nav ul { display: none; } }
@media (max-width: 720px) { .nav { padding: 14px 22px; } .nav .brand { font-size: 22px; } }

/* hide hamburger on desktop */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  margin-right: 16px;
  order: 2;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
@media (max-width: 1000px) {
  .nav { flex-wrap: wrap; }
  .nav .brand { order: 1; }
  .nav-toggle { display: flex; }
  .nav .nav-cta { order: 3; }

  /* hidden full-screen drawer below the nav bar */
  .nav .nav-menu {
    display: none;
    order: 4;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 16px 0 24px;
    margin-top: 12px;
    border-top: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.98);
  }
  .nav.is-open .nav-menu { display: flex; }
  .nav .nav-menu li { width: 100%; }
  .nav .nav-menu li a {
    display: block;
    padding: 18px 0;
    font-size: 14px;
    letter-spacing: 0.28em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav .nav-menu li:last-child a { border-bottom: none; }
  .nav .nav-menu li a::after { display: none; }

  /* prevent page scroll when menu open */
  body.nav-locked { overflow: hidden; }
}

/* extra-small phones: shrink nav-cta */
@media (max-width: 480px) {
  .nav { padding: 12px 18px; gap: 8px; }
  .nav .brand { font-size: 19px; }
  .nav .nav-cta { padding: 9px 14px; font-size: 10px; letter-spacing: 0.18em; }
  .nav-toggle { width: 40px; height: 40px; margin-right: 6px; }
}

.nav-spacer { height: 76px; }

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  line-height: 1;
}
.btn-pink {
  background: var(--pink);
  color: var(--paper);
  border-color: var(--pink);
}
.btn-pink:hover { background: var(--pink-hover); border-color: var(--pink-hover); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-large { padding: 24px 44px; font-size: 16px; }
.btn .arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* -------- HERO -------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 60px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: hero-bg-in 1.4s 0.05s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
  will-change: opacity, transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.78) 100%),
    radial-gradient(ellipse at 50% 35%, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.7) 80%);
}
.hero > *:not(.hero-bg) { position: relative; z-index: 1; }
@keyframes hero-bg-in {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

.hero .est-badge {
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.8s 0.1s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  font-size: clamp(56px, 9.5vw, 160px);
  max-width: 17ch;
  margin: 0 auto;
}
.hero-headline .row { display: block; overflow: hidden; }
.hero-headline .word {
  display: inline-block;
  transform: translateY(110%);
  animation: word-up 0.9s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}
.hero-headline .word.d-1 { animation-delay: 0.18s; }
.hero-headline .word.d-2 { animation-delay: 0.28s; }
.hero-headline .word.d-3 { animation-delay: 0.38s; }
.hero-headline .word.d-4 { animation-delay: 0.48s; }
.hero-headline .word.d-5 { animation-delay: 0.58s; }
.hero-headline .word.d-6 { animation-delay: 0.68s; }
.hero-headline .it {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.015em;
  color: var(--pink);
}
.hero-headline .it.white { color: var(--paper); }

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 54ch;
  margin: 32px auto 44px;
  opacity: 0;
  animation: fade-up 0.9s 0.8s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.hero-cta-row {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up 0.9s 1.0s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.hero-photo-band {
  position: relative;
  margin-top: 80px;
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 21/9;
  overflow: hidden;
  border-radius: 6px;
  opacity: 0;
  animation: fade-up 1s 1.1s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}
.hero-photo-band img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.55) 100%);
}
.hero-photo-band .tag {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 2;
  color: var(--paper);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-photo-band .tag::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--pink);
  display: inline-block;
  border-radius: 50%;
}

@keyframes word-up { to { transform: translateY(0); } }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .hero { padding: 40px 22px 60px; min-height: 0; }
  .hero-photo-band { margin-top: 48px; aspect-ratio: 4/3; }
}

/* -------- REVEAL -------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.85, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d-1 { transition-delay: 0.1s; }
.reveal.d-2 { transition-delay: 0.2s; }
.reveal.d-3 { transition-delay: 0.3s; }

/* -------- SECTION HEAD (centered, DNA-style) -------- */
.section-head-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 80px;
}
.section-head-c .super {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink);
}
.section-head-c h2 { max-width: 18ch; }
.section-head-c h2 .it { color: var(--pink); }
.section-head-c .sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 4px;
}

/* -------- PARTNER INTRO (3-feature) -------- */
.partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.partner .visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.partner .visual img { width: 100%; height: 100%; object-fit: cover; }
.partner .visual::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  pointer-events: none;
}
.partner .visual .stamp {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.partner .visual .stamp::before { content: ''; width: 8px; height: 8px; background: var(--pink); border-radius: 50%; }

.partner h2 { margin-bottom: 28px; }
.partner h2 .it { color: var(--pink); }
.partner .lede { font-size: 17px; line-height: 1.7; margin-bottom: 36px; color: var(--paper-2); opacity: 0.85; }

.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.feature-list li:first-child { padding-top: 0; border-top: none; }
.feature-list li .ic {
  width: 44px; height: 44px;
  background: var(--pink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 4px;
}
.feature-list li h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.feature-list li p { font-size: 15px; line-height: 1.6; color: var(--muted); }

@media (max-width: 900px) {
  .partner { grid-template-columns: 1fr; gap: 48px; }
}

/* -------- ALTERNATING BLOCK -------- */
.alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.alt-block.reverse > .copy { order: 2; }
.alt-block.reverse > .visual { order: 1; }
.alt-block .visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.alt-block .visual img { width: 100%; height: 100%; object-fit: cover; }
.alt-block .copy h2 { margin: 18px 0 24px; }
.alt-block .copy h2 .it { color: var(--pink); }
.alt-block .copy p { font-size: 17px; line-height: 1.7; color: var(--paper-2); opacity: 0.85; margin-bottom: 16px; max-width: 52ch; }
.alt-block .copy .btn { margin-top: 28px; }

@media (max-width: 900px) {
  .alt-block { grid-template-columns: 1fr; gap: 40px; }
  .alt-block.reverse > .copy, .alt-block.reverse > .visual { order: initial; }
}

/* -------- TESTIMONIALS (3-card row) -------- */
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.tcard:hover { border-color: var(--pink); transform: translateY(-3px); }
.tcard .stars {
  color: var(--pink);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
}
.tcard blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  color: var(--paper);
  flex: 1;
}
.tcard .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tcard .author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.tcard .author .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tcard .author .meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

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

/* -------- FAQ ACCORDION -------- */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.01em;
  color: var(--paper);
  transition: color 0.2s ease;
  text-transform: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pink); }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink-2);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item[open] summary { color: var(--pink); }
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--pink); }
.faq-item .answer {
  padding: 0 4px 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 70ch;
}

/* -------- PRICING / PACKAGE CARDS -------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1080px;
  margin: 0 auto;
}
.pkg {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pkg:hover { border-color: var(--pink); transform: translateY(-4px); }
.pkg.featured { border-color: var(--pink); }
.pkg.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--paper);
  padding: 6px 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 3px;
}
.pkg .pkg-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink);
}
.pkg h3 {
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 0.98;
}
.pkg h3 .it { color: var(--pink); }
.pkg .price {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--paper);
  line-height: 1;
}
.pkg .price .small {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
}
.pkg .descr { font-size: 15px; line-height: 1.6; color: var(--muted); }
.pkg ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.pkg ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--paper-2);
}
.pkg ul li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
}
.pkg .btn { margin-top: auto; justify-content: center; }

.pkg .pkg-link {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: 0.01em;
  text-align: left;
}
.pkg .pkg-link a {
  color: var(--pink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.pkg .pkg-link a:hover { border-bottom-color: var(--pink); color: var(--pink-hover); }
.pkg .pkg-link a span { display: inline-block; transition: transform 0.2s ease; }
.pkg .pkg-link a:hover span { transform: translateX(4px); }

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .pkg-grid--two { grid-template-columns: 1fr !important; }
}

/* -------- ENHANCEMENT GRID -------- */
.enh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.enh-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.enh-card:hover { border-color: var(--pink); transform: translateY(-4px); }
.enh-card .ph {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.enh-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.enh-card:hover .ph img { transform: scale(1.05); }
.enh-card .ph .num {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  border-radius: 3px;
  text-transform: uppercase;
}
.enh-card .body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.enh-card h3 { font-size: 26px; }
.enh-card h3 .it { color: var(--pink); }
.enh-card p { font-size: 14px; line-height: 1.55; color: var(--muted); flex: 1; }
.enh-card .foot {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.enh-card .foot .price { color: var(--pink); font-size: 16px; font-weight: 700; }

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

/* -------- GALLERY GRID (highlights) -------- */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gal-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-2);
}
.gal-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gal-tile:hover img { transform: scale(1.05); }
.gal-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65) 100%);
}
.gal-tile .cap {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gal-tile .cap .t {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.gal-tile .cap .s {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
}
.gal-grid .t-6 { grid-column: span 6; aspect-ratio: 4/3; }
.gal-grid .t-4 { grid-column: span 4; aspect-ratio: 1/1; }
.gal-grid .t-3 { grid-column: span 3; aspect-ratio: 3/4; }
.gal-grid .t-5 { grid-column: span 5; aspect-ratio: 3/4; }
.gal-grid .t-7 { grid-column: span 7; aspect-ratio: 4/3; }
.gal-grid .t-8 { grid-column: span 8; aspect-ratio: 16/9; }
.gal-grid .t-12 { grid-column: span 12; aspect-ratio: 21/9; }
@media (max-width: 820px) {
  .gal-grid .t-6, .gal-grid .t-4, .gal-grid .t-3, .gal-grid .t-5, .gal-grid .t-7, .gal-grid .t-8 {
    grid-column: span 12; aspect-ratio: 4/3;
  }
}

/* -------- VIDEO FEATURE -------- */
.video-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink-2);
  border-radius: 6px;
  border: 1px solid var(--line);
  cursor: pointer;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.7) 100%);
}
.video-card .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.08); background: var(--pink-hover); }
.video-card .cap {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 2;
  color: var(--paper);
}
.video-card .cap .t {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.video-card .cap .s {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* -------- CTA STRIP -------- */
.cta-strip {
  text-align: center;
  padding: 120px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-strip h2 {
  max-width: 18ch;
  margin: 24px auto 24px;
}
.cta-strip h2 .it { color: var(--pink); }
.cta-strip p {
  font-size: 18px;
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* -------- SERVICE CARDS (Pick Your Party) -------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-2);
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--pink); }
.svc-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(15%);
}
.svc-card:hover img { transform: scale(1.05); filter: grayscale(0%); }
.svc-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}
.svc-card .inner {
  position: relative;
  z-index: 2;
  padding: 36px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.svc-card .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink);
}
.svc-card h3 {
  font-size: clamp(40px, 4vw, 56px);
  line-height: 0.95;
}
.svc-card h3 .it { color: var(--pink); }
.svc-card .meta {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 2px;
}
.svc-card .go {
  margin-top: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-card .go .arrow { transition: transform 0.25s ease; display: inline-block; }
.svc-card:hover .go .arrow { transform: translateX(6px); }
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* -------- PAGE HEAD -------- */
.page-head {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--line);
}
.page-head > .wrap { position: relative; z-index: 1; }
.page-head .est-badge { margin-bottom: 32px; }
.page-head h1 { max-width: 18ch; margin: 0 auto 32px; }
.page-head h1 .it { color: var(--pink); }
.page-head .sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 64ch;
  margin: 0 auto;
}

/* -------- ABOUT BIO -------- */
.bio {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.bio .photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.bio .photo img { width: 100%; height: 100%; object-fit: cover; }
.bio .photo .stamp {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--pink);
  color: var(--paper);
  padding: 8px 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 3px;
}
.bio .copy h2 { margin-bottom: 28px; }
.bio .copy h2 .it { color: var(--pink); }
.bio .copy .pull {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  margin-bottom: 28px;
  color: var(--paper);
  border-left: 3px solid var(--pink);
  padding-left: 20px;
}
.bio .copy p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: var(--paper-2);
  opacity: 0.88;
}
.bio .copy em { color: var(--pink); font-style: italic; font-weight: 500; }

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts .fact {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}
.facts .fact:last-child { border-right: none; }
.facts .fact .v {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  display: block;
  color: var(--paper);
}
.facts .fact .v .it { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; color: var(--pink); }
.facts .fact .l {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 12px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .bio { grid-template-columns: 1fr; gap: 40px; }
  .facts { grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding: 32px 0; }
  .facts .fact:nth-child(2) { border-right: none; }
  .facts .fact:nth-child(1), .facts .fact:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 32px; }
}

/* -------- CONTACT FORM (centered stack) -------- */
.contact-stack {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.contact-stack #book-form { width: 100%; }
.contact-stack .form-submit {
  align-self: center;
  margin-top: 16px;
  min-width: 220px;
  justify-content: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.contact-info .block {
  padding: 0 24px;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info .block:last-child { border-right: none; }
.contact-info .block h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.contact-info .block p {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--paper);
}
.contact-info .block p.regular {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  color: var(--paper-2);
  line-height: 1.55;
}
.contact-info .block p.it {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--paper);
}

#book-form { display: flex; flex-direction: column; gap: 26px; }
#book-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
#book-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
#book-form input,
#book-form select,
#book-form textarea {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--paper);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  border-radius: 4px;
}
#book-form input[type="date"] {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
}
#book-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.92);
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
#book-form input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
#book-form input[type="date"]:invalid { color: var(--muted-2); }
#book-form select {
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23f5f5f2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1.5 6 6.5 11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 44px;
}
#book-form select:focus { border-color: var(--pink); }
#book-form select option {
  background: var(--ink-2);
  color: var(--paper);
}
#book-form .date-trio {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  #book-form .date-trio { grid-template-columns: 1fr; gap: 10px; }
}
#book-form input::placeholder,
#book-form textarea::placeholder { color: var(--muted-2); }
#book-form input:focus,
#book-form select:focus,
#book-form textarea:focus { border-color: var(--pink); }
#book-form textarea { resize: vertical; min-height: 120px; }

.event-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.event-chips button {
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  color: var(--paper-2);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.event-chips button:hover { border-color: var(--paper); }
.event-chips button.on {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--paper);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-stack { gap: 64px; }
  .contact-info { grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding-top: 40px; }
  .contact-info .block { border-right: none; padding: 0 16px; }
  .contact-info .block:nth-child(odd) { border-right: 1px solid var(--line); }
  #book-form .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #book-form .date-trio { grid-template-columns: 1fr; }
  #book-form input,
  #book-form select,
  #book-form textarea { font-size: 16px; padding: 14px 14px; }
  .contact-info { grid-template-columns: 1fr; gap: 28px; }
  .contact-info .block { padding: 0; border-right: none !important; }
  .contact-info .block p { font-size: 18px; }
}

/* -------- FOOTER -------- */
footer.foot {
  background: var(--ink);
  color: var(--paper-2);
  padding: 110px 0 32px;
  border-top: 1px solid var(--line);
}
footer.foot .top {
  text-align: center;
  margin-bottom: 80px;
}
footer.foot .top .est-badge { margin-bottom: 32px; }
footer.foot .top h3 {
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.96;
  margin-bottom: 32px;
}
footer.foot .top h3 .it { color: var(--pink); }
footer.foot .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
footer.foot .col h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
footer.foot .col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer.foot .col a, footer.foot .col li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--paper-2);
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}
footer.foot .col a:hover { color: var(--pink); opacity: 1; }
footer.foot .socials { display: flex; gap: 12px; flex-wrap: wrap; }
footer.foot .socials a {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
footer.foot .socials a:hover { background: var(--pink); color: var(--paper); border-color: var(--pink); }
footer.foot .legal {
  padding-top: 28px;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 820px) {
  footer.foot .grid { grid-template-columns: 1fr 1fr; }
}

/* -------- TWO COL -------- */
.two-col {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* -------- FEATURED BADGES STRIP -------- */
.badges {
  text-align: center;
  padding: 80px 0 96px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.badges .super {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.badges h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}
.badges h2 .it {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-transform: none;
  color: var(--pink);
}
.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.badges-row img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(2.2) contrast(1.4);
  opacity: 0.78;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.badges-row img:hover {
  opacity: 1;
  transform: translateY(-3px);
}
@media (max-width: 720px) {
  .badges-row { gap: 32px; }
  .badges-row img { height: 78px; }
}

/* -------- LOVING WHAT YOU SEE band -------- */
.loving {
  text-align: center;
  padding: 140px 0;
}
.loving .est-badge { margin-bottom: 28px; }
.loving h2 { max-width: 18ch; margin: 0 auto 32px; }
.loving h2 .it { color: var(--pink); }
.loving p {
  max-width: 64ch;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

/* -------- WEDDINGWIRE STATS -------- */
.ww-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}
.ww-stat {
  background: var(--ink-2);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.ww-stat .ww-stars {
  color: var(--pink);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
}
.ww-stat .ww-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.ww-stat .ww-num .it {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--pink);
}
.ww-stat .ww-l {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 820px) {
  .ww-stats { grid-template-columns: repeat(2, 1fr); }
  .ww-stat { padding: 28px 16px; }
}

/* -------- VIBO STACK (planning app screenshots) -------- */
.alt-block .visual.vibo-stack {
  position: relative;
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.vibo-stack .vibo-1 {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
  position: relative;
  z-index: 1;
}
.vibo-stack .vibo-2 {
  width: 78%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: -22%;
  margin-left: auto;
  margin-right: -4%;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
  position: relative;
  z-index: 2;
}
.vibo-stack .vibo-stamp {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  background: var(--pink);
  color: var(--paper);
  padding: 8px 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 3px;
}
/* ====================================================================
   Mobile polish — explicit overrides for narrow screens
   ==================================================================== */
@media (max-width: 720px) {
  /* let sections fill the viewport edge-to-edge with comfortable padding */
  .wrap { padding: 0 18px; }
  .section-pad { padding: 72px 0; }

  /* section head titles size down */
  .section-head-c { margin-bottom: 56px; }
  .section-head-c h2 { font-size: clamp(36px, 9vw, 56px); max-width: 100%; }
  .section-head-c .sub { font-size: 15px; }

  /* hero slideshow text scaling */
  .hero-slideshow h1 { font-size: clamp(52px, 12vw, 80px); }
  .hero-slideshow .sub { font-size: 15px; line-height: 1.55; max-width: 100%; }
  .hero-slideshow .est-badge { font-size: 10px; }
  .hero-slideshow .cta-row { margin-top: 28px; }

  /* page heads */
  .page-head { padding-top: 100px; padding-bottom: 72px; }
  .page-head h1 { font-size: clamp(64px, 14vw, 110px); margin: 0 auto 24px; max-width: 100%; }
  .page-head .sub { font-size: 15px; max-width: 100%; }

  /* package cards: stack + tighter padding */
  .pkg-grid, .pkg-grid--two { grid-template-columns: 1fr !important; gap: 28px !important; }
  .pkg { padding: 36px 24px 32px; }
  .pkg h3 { font-size: clamp(28px, 8vw, 40px); }
  .pkg .price { font-size: 40px; }
  .pkg ul li { font-size: 13.5px; }
  .pkg.featured::before { font-size: 10px; padding: 5px 12px; }

  /* enhancements cards */
  .enh-card { padding: 0; }
  .enh-card .body { padding: 24px 20px; }
  .enh-card h3 { font-size: 24px; }

  /* alt blocks */
  .alt-block .copy h2 { font-size: clamp(40px, 10vw, 64px); }
  .alt-block .copy p { font-size: 15px; }

  /* service "Pick Your Party" cards */
  .svc-card .inner { padding: 28px 22px; }
  .svc-card h3 { font-size: clamp(34px, 9vw, 48px); }

  /* slideshow controls don't fight the hero text */
  .slide-btn.prev { left: 10px; }
  .slide-btn.next { right: 10px; }

  /* loving band */
  .loving { padding: 96px 0; }
  .loving h2 { font-size: clamp(36px, 9vw, 56px); }
  .loving p { font-size: 15px; }

  /* CTA strips */
  .cta-strip { padding: 88px 0; }
  .cta-strip h2 { font-size: clamp(36px, 9vw, 56px); }
  .cta-strip p { font-size: 15px; }

  /* WeddingWire stats card */
  .ww-stats { grid-template-columns: 1fr 1fr; }
  .ww-stat { padding: 24px 14px; }
  .ww-stat .ww-num { font-size: clamp(34px, 9vw, 48px); }

  /* testimonial cards */
  .tcard { padding: 28px 22px; }
  .tcard blockquote { font-size: 18px; line-height: 1.45; }

  /* vibo stack */
  .vibo-stack { padding: 0 4px; }
  .vibo-stack .vibo-2 { margin-top: -16%; margin-right: -2%; width: 80%; }

  /* badges */
  .badges { padding: 64px 0 72px; }
  .badges h2 { font-size: clamp(24px, 6vw, 32px); margin-bottom: 40px; }
  .badges-row { gap: 28px; }
  .badges-row img { height: 70px; }

  /* footer */
  footer.foot { padding: 72px 0 28px; }
  footer.foot .top h3 { font-size: clamp(56px, 14vw, 96px); }
  footer.foot .grid { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; padding-bottom: 48px; }
  footer.foot .legal { font-size: 10px; }

  /* bio */
  .bio .copy h2 { font-size: clamp(42px, 10vw, 72px); }
  .bio .copy .pull { font-size: 18px; padding-left: 16px; }
  .bio .copy p { font-size: 15.5px; }
  .facts .fact .v { font-size: clamp(42px, 11vw, 60px); }

  /* contact info row */
  .contact-info .block p { font-size: 18px; }
  .contact-info .block p.it { font-size: 16px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .section-pad { padding: 64px 0; }
  .pkg { padding: 32px 20px 28px; }
  .pkg h3 { font-size: 28px; }
  .pkg .price { font-size: 36px; }
  .badges-row img { height: 56px; }
  .badges-row { gap: 20px; }
  .ww-stats { grid-template-columns: 1fr; }
  .ww-stat { padding: 22px 14px; }
  .hero-slideshow h1 { font-size: 48px; }
  .page-head h1 { font-size: 60px; }
}

/* -------- HERO SLIDESHOW (page-head variant) -------- */
.hero-slideshow {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding: 60px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--ink);
  border-radius: 0;
  border: none;
  aspect-ratio: auto;
}
.hero-slideshow .slides { position: absolute; inset: 0; z-index: 0; }
.hero-slideshow .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero-slideshow .slide.is-active { opacity: 1; }
.hero-slideshow .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-slideshow .slide.is-active img { transform: scale(1); }
.hero-slideshow::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.5) 45%, rgba(10,10,10,0.85) 100%),
    radial-gradient(ellipse at 50% 35%, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.55) 90%);
  z-index: 1;
  pointer-events: none;
}
.hero-slideshow .wrap,
.hero-slideshow .slide-btn,
.hero-slideshow .slide-dots,
.hero-slideshow .slide-progress { position: relative; z-index: 2; }
.hero-slideshow .slide-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  z-index: 3;
}
.hero-slideshow .slide-btn { position: absolute; }
.hero-slideshow .slide-dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}
.hero-slideshow .wrap > * + * { margin-top: 0; }
.hero-slideshow .est-badge { margin-bottom: 32px; color: var(--paper); }
.hero-slideshow h1 {
  max-width: 18ch;
  margin: 0 auto 28px;
  color: var(--paper);
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.hero-slideshow .sub {
  max-width: 60ch;
  margin: 0 auto;
  color: rgba(245, 245, 242, 0.86);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  font-size: 18px;
  line-height: 1.6;
}
.hero-slideshow .cta-row { margin-top: 36px; }

@media (max-width: 720px) {
  .hero-slideshow {
    min-height: 0;
    height: auto;
    aspect-ratio: 3/4;
    padding: 32px 18px 48px;
  }
  .hero-slideshow .slide img { object-position: center 30%; }
  .hero-slideshow .slide-dots { bottom: 18px; }
  .hero-slideshow .slide-btn { width: 38px; height: 38px; font-size: 16px; }
  .hero-slideshow .slide-btn.prev { left: 10px; }
  .hero-slideshow .slide-btn.next { right: 10px; }
  .hero-slideshow .est-badge { margin-bottom: 20px; }
  .hero-slideshow h1 { margin: 0 auto 18px; }
  .hero-slideshow .cta-row { margin-top: 24px; }
  .hero-slideshow .cta-row .btn { padding: 16px 24px; font-size: 13px; }
}
@media (max-width: 480px) {
  .hero-slideshow {
    aspect-ratio: 4/5;
    padding: 28px 16px 44px;
  }
  .hero-slideshow h1 { font-size: 44px; line-height: 0.95; }
  .hero-slideshow .sub { font-size: 14px; }
}

/* -------- SLIDESHOW -------- */
.slideshow {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.slideshow .slides { position: absolute; inset: 0; }
.slideshow .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.slideshow .slide.is-active { opacity: 1; pointer-events: auto; }
.slideshow .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slideshow::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.78) 100%);
  z-index: 1;
  pointer-events: none;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(10,10,10,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--paper);
  border: 1px solid var(--line-strong);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.slide-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-50%) scale(1.06);
}
.slide-btn.prev { left: 24px; }
.slide-btn.next { right: 24px; }

.slide-caption {
  position: absolute;
  left: 36px;
  bottom: 36px;
  z-index: 2;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slide-caption .t {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.slide-caption .t .it {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--pink);
}
.slide-caption .s {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.75;
  margin-top: 6px;
}
.slide-caption .s .accent { color: var(--pink); }

.slide-dots {
  position: absolute;
  right: 36px;
  bottom: 44px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.slide-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.slide-dots button:hover { background: rgba(255,255,255,0.55); }
.slide-dots button.is-active { background: var(--pink); transform: scale(1.3); }

.slide-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  background: var(--pink);
  z-index: 3;
  width: 0;
  transition: width 0.2s linear;
}

@media (max-width: 720px) {
  .slideshow { aspect-ratio: 4/3; }
  .slide-btn { width: 42px; height: 42px; font-size: 18px; }
  .slide-btn.prev { left: 14px; }
  .slide-btn.next { right: 14px; }
  .slide-caption { left: 20px; bottom: 56px; }
  .slide-dots { right: 20px; bottom: 22px; }
}

