/* =====================================================================
   NAKSHATRA WEDDING — A Helios Event Brand
   Bespoke stylesheet built on the LoveLove section system.
   Crafting Your Forever · www.nakshatrawedding.com
   ===================================================================== */

/* -------- 1. Brand tokens (override the LoveLove defaults) -------- */
:root {
  /* Primary brand colours (from the logo) */
  --plum:        #A3238E;
  --pink:        #EC008C;
  --green:       #BED730;
  --ink:         #2B2233;
  --mauve:       #6E6675;

  /* Neutrals & supporting tints */
  --blush:       #FBEAF4;
  --lilac:       #F1E7F2;
  --lime-mist:   #F4F9DF;
  --white:       #ffffff;
  --line:        #ece3ee;

  /* Roles */
  --heading:     var(--ink);
  --text:        var(--mauve);
  --primary:     var(--pink);
  --primary-2:   var(--plum);
  --accent:      var(--green);

  /* Type families */
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-script:  'Great Vibes', cursive;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  /* Rhythm */
  --container: 1200px;
  --radius: 10px;
  --shadow-sm: 0 6px 24px rgba(43,34,51,.07);
  --shadow:    0 18px 48px rgba(43,34,51,.12);
  --shadow-lg: 0 30px 70px rgba(163,35,142,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -------- 2. Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
/* offset anchor jumps (e.g. #inquiry-form) so the fixed header never covers the target */
#inquiry-form { scroll-margin-top: 110px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--primary-2); }
ul { margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--heading);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 600;
}
p { margin: 0 0 1.1rem; }
::selection { background: var(--pink); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 110px 0; }
.section--tight { padding: 80px 0; }
.bg-blush { background: var(--blush); }
.bg-lilac { background: var(--lilac); }
.bg-ink   { background: var(--ink); color: #cfc6d6; }
/* Nakshatra-plum section (alternates with white). White cards inside keep their own dark text;
   only section-level text on the plum bg is lightened. */
.bg-plum  { background: var(--plum); color: #f1ddec; }
/* white cards inside a plum section keep their normal dark body text */
.bg-plum .step, .bg-plum .feature, .bg-plum .cf-card, .bg-plum .calc-card,
.bg-plum .faq__item, .bg-plum .swipe-card, .bg-plum .vcard, .bg-plum .tcard,
.bg-plum .price-card, .bg-plum .gallery-item, .bg-plum .service-card { color: var(--text); }
.bg-plum .eyebrow { color: var(--green); }
.bg-plum .section-title { color: #fff; }
.bg-plum .lead { color: #f1ddec; }
.bg-plum .muted { color: #e3c8de; }
.bg-plum .estimator__grid > div:not(.calc-card),
.bg-plum .estimator__grid > div:not(.calc-card) p { color: #f1ddec; }
.bg-plum .quick-stat span { color: #e3c8de; }
.bg-plum .quick-stat strong { color: #fff; }
.bg-plum .btn--outline { color: #fff; border-color: rgba(255,255,255,.55); }
.bg-plum .btn--outline:hover { background: #fff; color: var(--plum); border-color: #fff; }
.bg-plum  { background: var(--plum); color: #f7e9f3; }
.text-center { text-align: center; }

/* -------- 3. The section-title lockup (LoveLove signature) -------- */
.eyebrow {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  color: var(--pink);
  display: block;
  margin-bottom: .25rem;
}
.section-title {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0;
}
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin-top: 1rem; font-size: 1.05rem; }

/* lime floral / heart divider */
.divider {
  width: 120px; height: 26px; margin: 18px auto 0;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.divider::before, .divider::after {
  content: ""; height: 2px; width: 44px;
  background: linear-gradient(90deg, transparent, var(--green));
}
.divider::after { background: linear-gradient(90deg, var(--green), transparent); }
.divider .heart { color: var(--green); font-size: 18px; line-height: 1; }

.display { font-family: var(--font-display); font-weight: 700; }

/* -------- 4. Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: 13.5px;
  padding: 16px 34px; border-radius: 40px; border: 2px solid transparent;
  cursor: pointer; transition: all .3s var(--ease); white-space: nowrap;
}
.btn--primary { background: var(--pink); color: #fff; box-shadow: 0 10px 26px rgba(236,0,140,.28); }
.btn--primary:hover { background: var(--plum); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(163,35,142,.34); }
.btn--secondary { background: var(--plum); color: #fff; }
.btn--secondary:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--plum); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--ink); border-color: var(--green); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--plum); border-color: #fff; }
/* Larger, more prominent hero CTA (single button) */
.btn--hero { font-size: 16px; padding: 21px 52px; letter-spacing: .14em; box-shadow: 0 14px 34px rgba(236,0,140,.34); }
@media (max-width: 600px) { .btn--hero { font-size: 15px; padding: 19px 40px; } }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
/* breathing room above lone buttons that follow a list or paragraph (e.g. Explore Planning Tiers, Get a Detailed Quote) */
.ticks + .btn, p + .btn { margin-top: 26px; }
.btn-row.center { justify-content: center; }

/* -------- 5. Header / navigation -------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: all .35s var(--ease);
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  box-shadow: 0 4px 20px rgba(43,34,51,.07);
  padding: 12px 0;
}
.site-header.solid {
  background: rgba(255,255,255,.98);
  box-shadow: 0 6px 24px rgba(43,34,51,.10);
  padding: 8px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; line-height: 0; }
/* full-colour logo everywhere; soft shadow lifts it off the hero photo, removed on the white header */
.brand-logo { height: 58px; width: auto; transition: height .3s var(--ease); }
.site-header.solid .brand-logo { height: 50px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-weight: 500; font-size: 15px; letter-spacing: .03em;
  color: var(--ink); position: relative; padding: 6px 0;
}
.nav > li { position: relative; list-style: none; }
.nav > li > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--pink); transition: width .3s var(--ease);
}
.nav > li > a:hover::after, .nav > li.current > a::after { width: 100%; }
.nav > li.current > a { color: var(--pink); }
.has-sub > a::before { content: ""; }
.submenu {
  position: absolute; top: 100%; left: -16px; min-width: 240px;
  background: #fff; border-radius: 10px; box-shadow: var(--shadow);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s var(--ease); border-top: 3px solid var(--pink);
}
.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li { list-style: none; }
.submenu a { display: block; padding: 9px 14px; border-radius: 7px; font-size: 14.5px; color: var(--ink); }
.submenu a:hover { background: var(--blush); color: var(--pink); }
.nav-cta { margin-left: 6px; }
.nav-cta .btn { padding: 12px 26px; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* mobile drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 200; display: none; overflow: hidden; }
.mobile-nav.open { display: block; }
.mobile-nav__overlay { position: absolute; inset: 0; background: rgba(43,34,51,.5); opacity: 0; transition: .3s; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(340px, 86vw);
  background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,.2);
  transform: translateX(100%); transition: transform .35s var(--ease);
  padding: 28px 24px; overflow-y: auto;
}
.mobile-nav.open .mobile-nav__overlay { opacity: 1; }
.mobile-nav.open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__close { background: none; border: 0; font-size: 26px; color: var(--ink); cursor: pointer; float: right; line-height: 1; }
.mobile-nav ul { clear: both; margin-top: 20px; }
.mobile-nav li { list-style: none; border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 14px 4px; color: var(--ink); font-weight: 500; }
.mobile-nav .submenu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; border: 0; padding: 0 0 8px 14px; }
.mobile-nav .submenu a { padding: 9px 4px; font-size: 14px; color: var(--mauve); }

/* -------- 6. Hero slider -------- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s var(--ease);
  background-size: cover; background-position: center;
  transform: scale(1.08); transition: opacity 1.4s var(--ease), transform 7s linear;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
/* Single overlay on the hero container (not per-slide) so tints can never stack
   into a heavy wash if slides ever overlap (stale cache, mid-crossfade, slow JS). */
.hero::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(43,34,51,.45), rgba(163,35,142,.35) 60%, rgba(43,34,51,.55)); }
.hero__inner {
  position: relative; z-index: 3; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 90px 24px 92px;
}
.hero__word {
  font-family: var(--font-script); font-size: clamp(40px, 8vw, 96px);
  color: var(--green); line-height: 1; margin-bottom: .1em;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.hero__title {
  font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: clamp(34px, 6vw, 76px); letter-spacing: .01em; max-width: 16ch;
  margin: 0 0 .4em; text-shadow: 0 6px 40px rgba(0,0,0,.35);
}
.hero__accent { font-family: var(--font-script); font-weight: 400; color: var(--green); font-size: 1.3em; letter-spacing: normal; }
.hero__sub { max-width: 60ch; font-size: clamp(16px,2vw,19px); color: #f3e8f1; margin-bottom: 2rem; }
.hero__dots { position: absolute; bottom: 34px; left: 0; right: 0; z-index: 4; display: flex; gap: 12px; justify-content: center; }
.hero__dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; transition: .3s; }
.hero__dots button.active { background: var(--green); border-color: var(--green); transform: scale(1.2); }

/* -------- 7. Reveal animation -------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }

/* -------- 8. Page title banner (inner pages) -------- */
.page-banner {
  position: relative; padding: 200px 0 90px; text-align: center; color: #fff;
  background: linear-gradient(rgba(43,34,51,.62), rgba(163,35,142,.55)), var(--banner, url(../images/page-title.jpg)) center/cover no-repeat;
}
.page-banner .eyebrow { color: var(--green); }
.page-banner h1 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 5vw, 60px); letter-spacing: .01em; }
.breadcrumb { display: flex; gap: 10px; justify-content: center; font-size: 14px; letter-spacing: .04em; color: #efe2ec; margin-top: 8px; }
.breadcrumb a { color: var(--green); }
.breadcrumb span { opacity: .7; }

/* -------- 9. Intro / two-column -------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.media-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-stack > .media-frame { aspect-ratio: 4/5; }
/* portrait frame (e.g. consultant photo) shows the full image without cropping */
.media-frame--portrait { aspect-ratio: 3/4; max-width: 460px; margin: 0 auto; }
.media-stack .m2 { object-fit: cover; aspect-ratio: 1/1; }
.media-stack { position: relative; }
.media-stack .m2 { position: absolute; right: -24px; bottom: -34px; width: 52%; border: 8px solid #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.badge-float {
  position: absolute; left: -22px; top: 28px; background: var(--pink); color: #fff;
  padding: 18px 22px; border-radius: 14px; box-shadow: var(--shadow); text-align: center; line-height: 1.1;
}
.badge-float strong { font-size: 30px; display: block; font-family: var(--font-display); }
.badge-float span { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

.prose h2 { font-size: clamp(24px, 2.6vw, 34px); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--plum); font-size: 1.28rem; margin-top: 1.5em; }
.prose ul.ticks { list-style: none; margin: 1rem 0 1.4rem; }
.prose ul.ticks li { position: relative; padding-left: 32px; margin-bottom: .7rem; }
.prose ul.ticks li::before {
  content: "\2665"; position: absolute; left: 0; top: 1px; color: var(--green);
  font-size: 15px; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--lime-mist); border-radius: 50%;
}
blockquote {
  margin: 1.8rem 0; padding: 24px 30px; background: var(--lilac);
  border-left: 4px solid var(--pink); border-radius: 0 12px 12px 0;
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1.4; color: var(--plum); font-style: italic;
}

/* -------- 10. Cards -------- */
.cards { display: grid; gap: 30px; }
.cards.cols-2 { grid-template-columns: repeat(2,1fr); }
.cards.cols-3 { grid-template-columns: repeat(3,1fr); }
.cards.cols-4 { grid-template-columns: repeat(4,1fr); }

.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.07); }
.service-card__num {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92);
  color: var(--pink); font-weight: 700; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 15px; box-shadow: var(--shadow-sm);
}
.service-card__body { padding: 26px 26px 30px; }
.service-card__body h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.service-card__body p { font-size: .98rem; margin-bottom: 1rem; }
.service-card__link { font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: 12.5px; }
.service-card__link::after { content: " \2192"; }

/* feature / why-us tiles */
.feature { background: #fff; border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); height: 100%; border-bottom: 3px solid transparent; transition: .35s var(--ease); }
.feature:hover { border-bottom-color: var(--green); transform: translateY(-6px); box-shadow: var(--shadow); }
.feature__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--blush); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.feature h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.feature p { font-size: .97rem; margin: 0; }

/* steps / process */
.cards { counter-reset: step; }  /* establish the step counter on the actual wrapper so .step cards number 01/02/03 */
.steps { counter-reset: step; display: grid; gap: 28px; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 32px 28px 28px; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 40px; color: var(--green);
  display: block; margin-bottom: 10px; line-height: 1;
}
.step h3 { font-size: 1.15rem; color: var(--plum); margin-bottom: .4rem; }
.step p { font-size: .96rem; margin: 0; }

/* -------- 11. Fun-fact counters -------- */
.funfacts { background: linear-gradient(135deg, var(--plum), #7d1c6e); color: #fff; }
.funfacts .counter { text-align: center; padding: 18px; }
.funfacts .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 60px); line-height: 1; color: #fff; }
.funfacts .num .plus { color: var(--green); }
.funfacts .label { text-transform: uppercase; letter-spacing: .14em; font-size: 13px; color: #f0d9ea; margin-top: 8px; }

/* -------- 12. Testimonials -------- */
.testi-track { display: flex; transition: transform .6s var(--ease); }
.testi-viewport { overflow: hidden; }
.testi {
  min-width: 100%; padding: 12px;
}
.testi__card { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 44px 46px; max-width: 820px; margin: 0 auto; text-align: center; }
.testi__stars { color: var(--green); letter-spacing: 3px; margin-bottom: 14px; }
.testi__quote { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.5; color: var(--ink); }
.testi__who { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 22px; }
.testi__who img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 3px solid var(--lilac); }
.testi__who b { color: var(--plum); display: block; }
.testi__who span { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--mauve); }
.testi-dots { display: flex; gap: 10px; justify-content: center; margin-top: 26px; }
.testi-dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: var(--lilac); cursor: pointer; transition: .3s; }
.testi-dots button.active { background: var(--pink); transform: scale(1.25); }

/* -------- 13. Portfolio / gallery grid -------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(163,35,142,.7)); opacity: 0; transition: .4s; }
.gallery-item figcaption { position: absolute; left: 18px; bottom: 14px; z-index: 2; color: #fff; opacity: 0; transform: translateY(10px); transition: .4s; }
.gallery-item figcaption b { display: block; font-size: 1.05rem; }
.gallery-item figcaption span { font-size: 12px; letter-spacing: .06em; opacity: .9; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover figcaption { opacity: 1; transform: none; }

/* portfolio with text (venues / featured) */
.feature-rows { display: grid; gap: 70px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.feature-row:nth-child(even) .feature-row__media { order: 2; }
.feature-row__media { border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; aspect-ratio: 5/4; }
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-row h3 { font-size: clamp(22px,2.4vw,30px); }
.tag { display: inline-block; background: var(--lime-mist); color: var(--plum); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; padding: 6px 14px; border-radius: 30px; margin-bottom: 14px; }

/* -------- 14. Team -------- */
.team-card { text-align: center; }
.team-card__img { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 16px; aspect-ratio: 3/4; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: .5s var(--ease); }
.team-card:hover .team-card__img img { transform: scale(1.06); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-card .role { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--pink); }

/* -------- 15. CTA banner -------- */
.cta-banner {
  position: relative; text-align: center; color: #fff; padding: 100px 0;
  background: linear-gradient(rgba(43,34,51,.6), rgba(163,35,142,.6)), var(--cta-img, url(../images/cta.jpg)) center/cover fixed no-repeat;
}
.cta-banner .eyebrow { color: var(--green); }
.cta-banner h2 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: clamp(30px,4vw,52px); max-width: 18ch; margin: 0 auto .4em; }
.cta-banner p { max-width: 56ch; margin: 0 auto 1.8rem; color: #f3e6ef; }

/* -------- 16. Partners / logos -------- */
.partner-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px; }
.partner-strip span { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px 28px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--mauve); box-shadow: var(--shadow-sm); }

/* -------- 17. FAQ accordion -------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 56px 22px 24px; position: relative; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq__q::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--pink); transition: .3s; }
.faq__item.open .faq__q::after { content: "\2013"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a-inner { padding: 0 24px 22px; }
.faq__a p { margin: 0; }

/* -------- 18. Pricing -------- */
.price-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 38px 32px; text-align: center; border: 2px solid transparent; transition: .35s var(--ease); }
.price-card.popular { border-color: var(--pink); box-shadow: var(--shadow-lg); position: relative; }
.price-card.popular::before { content: "Most Loved"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--pink); color: #fff; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; }
.price-card h3 { font-size: 1.4rem; color: var(--plum); }
.price-card .price { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--ink); margin: 6px 0 2px; }
.price-card .price small { font-size: .9rem; color: var(--mauve); font-family: var(--font-body); font-weight: 400; }
.price-card ul { list-style: none; margin: 20px 0 26px; text-align: left; }
.price-card li { padding: 9px 0 9px 28px; position: relative; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.price-card li::before { content: "\2665"; position: absolute; left: 0; color: var(--green); }

/* -------- 19. Comparison table -------- */
.table-wrap { overflow-x: auto; }
table.compare { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); min-width: 640px; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: .97rem; }
table.compare thead th { background: var(--plum); color: #fff; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }
table.compare tbody th { color: var(--ink); font-weight: 600; }
table.compare td .yes { color: #2e7d32; font-weight: 600; }
table.compare td .no { color: #b23a48; }
table.compare tr:last-child td { border-bottom: 0; }

/* -------- 20. Contact -------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.info-card { background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); padding: 30px; margin-bottom: 18px; }
.info-card .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--blush); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.info-card p { margin: 0; font-size: .98rem; }
.form-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 40px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 16px; color: var(--ink); background: #fff; transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--pink); }
.field textarea { min-height: 130px; resize: vertical; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 8px 0 4px; }
.checks label { font-weight: 400; font-size: 15px; display: flex; gap: 9px; align-items: center; color: var(--text); }
.checks input { width: auto; }
.form-note { font-size: 13px; color: var(--mauve); margin-top: 12px; }

/* -------- 21. Footer -------- */
.site-footer { background: var(--ink); color: #b6acbf; padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: 15px; margin-bottom: 22px; }
.site-footer a { color: #b6acbf; }
.site-footer a:hover { color: var(--green); }
.footer-brand img { height: 92px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: .96rem; }
.footer-links li { list-style: none; margin-bottom: 11px; }
.footer-contact li { list-style: none; margin-bottom: 14px; display: flex; gap: 12px; font-size: .95rem; }
.footer-contact .ic { color: var(--green); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; }
.socials a:hover { background: var(--pink); color: #fff; }
.footer-bottom { margin-top: 60px; border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center; font-size: 13.5px; color: #9b91a4; }
.footer-bottom .heart { color: var(--green); }

/* -------- 22. Misc / utilities -------- */
.lead { font-size: 1.12rem; color: var(--text); }
.muted { color: var(--mauve); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.pill { display:inline-block; background: var(--blush); color: var(--plum); padding: 6px 16px; border-radius: 30px; font-size: 13px; letter-spacing: .04em; font-weight: 500; }
.split-list { columns: 2; column-gap: 40px; }
.split-list li { break-inside: avoid; margin-bottom: .7rem; }

/* -------- 23. Responsive -------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .cards.cols-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  /* Solid, fully opaque header on mobile/tablet so the logo & menu never bleed
     through scrolling content (iOS Safari also lacks reliable backdrop-filter). */
  .site-header, .site-header.solid { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .section { padding: 76px 0; }
  .grid-2, .feature-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-row:nth-child(even) .feature-row__media { order: 0; }
  .cards.cols-3 { grid-template-columns: 1fr 1fr; }
  .media-stack .m2 { position: static; width: 100%; margin-top: 16px; border: 0; }
  .badge-float { left: 12px; }
  blockquote { font-size: 1.25rem; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .btn { white-space: normal; text-align: center; }
  .section-title, .hero__title, .page-banner h1 { overflow-wrap: break-word; }
  .section { padding: 60px 0; }
  .cards.cols-2, .cards.cols-3, .cards.cols-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .field-2, .checks { grid-template-columns: 1fr; }
  .split-list { columns: 1; }
  .testi__card { padding: 32px 24px; }
  .testi__quote { font-size: 1.25rem; }
  .cta-banner { background-attachment: scroll; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
}

/* -------- 24. Home budget estimator -------- */
.estimator__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
.quick-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 30px; }
.quick-stat { background: #fff; border-radius: 12px; padding: 16px 18px; box-shadow: var(--shadow-sm); }
.quick-stat span { display: block; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--mauve); margin-bottom: 6px; }
.quick-stat strong { font-family: var(--font-display); font-size: 1.18rem; color: var(--plum); line-height: 1.12; display: block; }

.calc-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 30px; }
.calc-tabs { display: flex; background: var(--blush); border-radius: 40px; padding: 5px; margin-bottom: 22px; }
.calc-tab { flex: 1; border: 0; background: none; cursor: pointer; padding: 11px; border-radius: 30px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--plum); transition: all .25s var(--ease); }
.calc-tab.active { background: var(--pink); color: #fff; box-shadow: 0 6px 16px rgba(236,0,140,.3); }
.calc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.calc-head h3 { font-size: 1.3rem; margin: 0 0 4px; }
.calc-head p { margin: 0; font-size: .95rem; }
.calc-badge { background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 20px; white-space: nowrap; }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.calc-field--full { grid-column: 1 / -1; }
.calc-field label { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--mauve); margin-bottom: 7px; font-weight: 600; }
.calc-field select {
  width: 100%; padding: 13px 38px 13px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); cursor: pointer; appearance: none; -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A3238E' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  transition: border-color .2s;
}
.calc-field select:focus { outline: 0; border-color: var(--pink); }
.calc-estimate { background: linear-gradient(135deg, var(--lilac), var(--blush)); border-radius: 14px; padding: 18px 20px; margin-bottom: 18px; }
.calc-estimate__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.calc-estimate__top > span:first-child { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--mauve); font-weight: 600; }
.calc-pill { border: 1.5px solid var(--pink); color: var(--pink); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.calc-range { font-family: var(--font-display); font-weight: 700; font-size: 2.3rem; color: var(--ink); margin: 8px 0 4px; line-height: 1; }
.calc-note { font-size: 12.5px; color: var(--mauve); margin: 0; line-height: 1.5; }
.calc-cta { width: 100%; justify-content: center; }
.calc-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; }
.calc-tile { text-align: center; border: 1px solid var(--line); border-radius: 12px; padding: 14px 8px; transition: .25s var(--ease); }
.calc-tile:hover { border-color: var(--pink); background: var(--blush); transform: translateY(-2px); }
.calc-tile strong { display: block; color: var(--ink); font-size: .95rem; }
.calc-tile span { font-size: 12px; color: var(--mauve); }

@media (max-width: 860px) {
  .estimator__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .quick-stats { grid-template-columns: 1fr; }
  .calc-fields { grid-template-columns: 1fr; }
  .calc-card { padding: 22px; }
  .calc-range { font-size: 2rem; }
}

/* -------- 25. Featured weddings 3D coverflow slider -------- */
.coverflow { position: relative; max-width: 1080px; margin: 6px auto 0; height: 540px; perspective: 1700px; user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.cf-stage { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.cf-card {
  position: absolute; top: 50%; left: 50%; width: 320px; height: 432px; margin: -216px 0 0 -160px;
  transform-style: preserve-3d; will-change: transform, opacity; cursor: pointer;
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.cf-card__inner { height: 100%; background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 24px 56px rgba(43,34,51,.26); display: flex; flex-direction: column; transition: box-shadow .5s var(--ease); }
.cf-card.is-active .cf-card__inner { box-shadow: 0 38px 84px rgba(163,35,142,.36); }
.cf-card__img { flex: 1; overflow: hidden; position: relative; }
.cf-card__img img { width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.cf-card__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 62%, rgba(43,34,51,.06)); }
.cf-card__cap { padding: 15px 14px 18px; text-align: center; background: #fff; }
.cf-card__cap b { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--ink); display: block; line-height: 1.1; }
.cf-card__cap span { font-size: 12px; letter-spacing: .05em; color: var(--pink); text-transform: uppercase; font-weight: 600; }
.cf-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 200;
  width: 52px; height: 52px; border-radius: 50%; border: 0; background: #fff; color: var(--plum);
  box-shadow: var(--shadow); font-size: 28px; line-height: 1; cursor: pointer; padding: 0 0 4px;
  display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.cf-nav:hover { background: var(--pink); color: #fff; transform: translateY(-50%) scale(1.08); }
.cf-prev { left: 4px; } .cf-next { right: 4px; }
.cf-dots { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
.cf-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--lilac); cursor: pointer; padding: 0; transition: all .3s var(--ease); }
.cf-dots button.active { background: var(--pink); width: 26px; border-radius: 6px; }

@media (max-width: 768px) {
  .coverflow { height: 470px; perspective: 1300px; }
  .cf-card { width: 262px; height: 360px; margin: -180px 0 0 -131px; }
  .cf-card__cap b { font-size: 1.15rem; }
}
@media (max-width: 480px) {
  .coverflow { height: 420px; perspective: 1000px; }
  .cf-card { width: 220px; height: 312px; margin: -156px 0 0 -110px; }
  .cf-nav { width: 44px; height: 44px; font-size: 24px; }
  .cf-prev { left: -2px; } .cf-next { right: -2px; }
}

/* -------- 26. Testimonials focus carousel -------- */
.tcarousel { position: relative; max-width: 1120px; margin: 0 auto; height: 380px; }
.tcarousel__stage { position: relative; width: 100%; height: 100%; }
.tcard {
  position: absolute; top: 50%; left: 50%; width: 580px; max-width: 90vw;
  transform: translate(-50%, -50%); transition: transform .6s var(--ease), opacity .6s var(--ease);
  will-change: transform, opacity;
}
.tcard__inner {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 40px 44px;
  box-shadow: 0 14px 40px rgba(43,34,51,.10); text-align: center; transition: background .5s var(--ease), box-shadow .5s var(--ease), color .5s var(--ease);
}
.tcard.is-active .tcard__inner {
  background: linear-gradient(150deg, var(--plum), #7d1c6e); color: #fff;
  box-shadow: 0 38px 80px rgba(163,35,142,.40); border-color: transparent;
}
.tcard__stars { color: var(--pink); letter-spacing: 4px; margin-bottom: 16px; font-size: 16px; }
.tcard.is-active .tcard__stars { color: var(--green); }
.tcard__quote { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.5; color: var(--ink); margin: 0 0 24px; }
.tcard.is-active .tcard__quote { color: #fff; }
.tcard__who { display: flex; align-items: center; gap: 14px; justify-content: center; }
.tcard__who img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.tcard__who b { display: block; color: var(--plum); font-size: 1.05rem; }
.tcard.is-active .tcard__who b { color: #fff; }
.tcard__who span { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--mauve); }
.tcard.is-active .tcard__who span { color: #f0d9ea; }
.tcard__who > div { text-align: left; }

.tcarousel__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 40px; }
.tcarousel__btn {
  width: 50px; height: 50px; border-radius: 50%; border: 0; background: #fff; color: var(--plum);
  box-shadow: var(--shadow); font-size: 26px; line-height: 1; cursor: pointer; padding: 0 0 4px;
  display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.tcarousel__btn:hover { background: var(--pink); color: #fff; transform: scale(1.08); }
.tcarousel__dots { display: flex; gap: 9px; align-items: center; }
.tcarousel__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--lilac); cursor: pointer; padding: 0; transition: all .3s var(--ease); }
.tcarousel__dots button.active { background: var(--pink); width: 24px; border-radius: 5px; }

@media (max-width: 768px) {
  .tcarousel { height: 420px; }
  .tcard__inner { padding: 30px 26px; }
  .tcard__quote { font-size: 1.22rem; }
}
@media (max-width: 480px) {
  .tcarousel { height: 460px; }
  .tcard__quote { font-size: 1.12rem; }
}

/* -------- 27. Featured venues card deck -------- */
.vfeat__grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.vdeck-wrap { position: relative; }
.vfeat__pill {
  position: absolute; top: -16px; right: 6px; z-index: 60; background: #fff; box-shadow: var(--shadow);
  border-radius: 30px; padding: 9px 18px; font-weight: 600; font-size: 13px; color: var(--ink);
  display: inline-flex; gap: 8px; align-items: center;
}
.vfeat__pill .spark { color: var(--pink); font-size: 14px; }
.vdeck { position: relative; width: 100%; max-width: 400px; height: 552px; margin: 0 auto; }
.vcard {
  position: absolute; left: 0; right: 0; top: 0; background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(43,34,51,.22); transform-origin: bottom center; cursor: pointer;
  transition: transform .55s var(--ease), opacity .55s var(--ease);
}
.vcard__img { position: relative; height: 296px; overflow: hidden; }
.vcard__img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.vcard__rating {
  position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.95); border-radius: 30px;
  padding: 7px 14px; font-weight: 700; font-size: 15px; color: var(--ink); box-shadow: var(--shadow-sm);
  display: inline-flex; gap: 6px; align-items: center;
}
.vcard__rating .star { color: #f5a623; }
.vcard__body { padding: 22px 26px 26px; }
.vcard__body h3 { font-size: 1.75rem; margin: 0 0 4px; color: var(--ink); }
.vcard__loc { display: flex; align-items: center; gap: 7px; color: var(--mauve); margin: 0 0 12px; font-size: 1rem; }
.vcard__loc svg { color: var(--pink); flex: none; }
.vcard__row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0 0; margin-top: 13px; border-top: 1px solid var(--line); }
.vcard__row span { color: var(--mauve); }
.vcard__row b { color: var(--ink); font-size: 1.12rem; font-weight: 700; }
.vcard__row b.price { color: var(--pink); }
.vdeck-dots { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
.vdeck-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--lilac); cursor: pointer; padding: 0; transition: all .3s var(--ease); }
.vdeck-dots button.active { background: var(--pink); width: 24px; border-radius: 5px; }

@media (max-width: 900px) {
  .vfeat__grid { grid-template-columns: 1fr; gap: 56px; }
  .vdeck-wrap { max-width: 400px; margin: 0 auto; width: 100%; }
}
@media (max-width: 480px) {
  .vdeck { height: 520px; }
  .vcard__img { height: 260px; }
  .vcard__body h3 { font-size: 1.5rem; }
}

/* -------- 28. Uniform (lining + tabular) figures for display numbers -------- */
.funfacts .num,
.calc-range,
.badge-float strong,
.price-card .price,
.step::before {
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

/* -------- 29. Wedding Guide: swipe rail + journey -------- */
.swipe-wrap { position: relative; }
.swipe-rail { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.swipe-rail::-webkit-scrollbar { display: none; }
.swipe-card { flex: 0 0 318px; max-width: 318px; scroll-snap-align: center; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.swipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.swipe-card__img { aspect-ratio: 4/3; overflow: hidden; }
.swipe-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.swipe-card:hover .swipe-card__img img { transform: scale(1.06); }
.swipe-card__body { padding: 22px 24px 26px; }
.swipe-card__body h3 { font-size: 1.16rem; margin-bottom: .4rem; }
.swipe-card__body p { font-size: .94rem; margin-bottom: .8rem; color: var(--mauve); }
.swipe-card__link { color: var(--pink); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.swipe-controls { display: flex; gap: 12px; justify-content: flex-end; margin-top: 4px; }
.swipe-btn { width: 46px; height: 46px; border-radius: 50%; border: 0; background: #fff; color: var(--plum); box-shadow: var(--shadow); font-size: 24px; line-height: 1; padding: 0 0 3px; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.swipe-btn:hover { background: var(--pink); color: #fff; transform: scale(1.08); }

.journey-step-title { font-family: var(--font-body); font-weight: 700; font-size: clamp(20px,2.4vw,28px); color: var(--ink); margin: 0 0 8px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.journey-step-title span { background: var(--pink); color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; font-weight: 600; }
.journey-step-lead { color: var(--mauve); margin: 0 0 26px; max-width: 72ch; }

/* anchor cards reuse feature / service-card visuals */
a.feature { text-decoration: none; color: inherit; display: block; }
a.feature h3 { color: var(--ink); }
a.service-card { text-decoration: none; color: inherit; display: block; }

@media (max-width: 600px) {
  .swipe-card { flex: 0 0 250px; max-width: 250px; }
}

/* -------- 30. Wedding Journey: centered flex grid (no orphan-card gap) -------- */
.journey-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.journey-grid > * { flex: 0 0 calc(25% - 22.5px); max-width: calc(25% - 22.5px); }
@media (max-width: 980px) {
  .journey-grid > * { flex-basis: calc(50% - 15px); max-width: calc(50% - 15px); }
}
@media (max-width: 600px) {
  .journey-grid > * { flex-basis: 100%; max-width: 100%; }
}
