/* ============================
   SWEET MISCHIEF JA — styles.css
   Matching inspiration layout
   ============================ */

:root {
  --navy: #071d3b;
  --navy2: #0d2444;
  --cream: #fbf7ef;
  --ivory: #fffdf9;
  --gold: #c49a4b;
  --gold-light: #d4b06a;
  --pink: #e84e8a;
  --ink: #1d2430;
  --muted: #626773;
  --line: #e6d8c4;
  --white: #ffffff;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Montserrat, Arial, sans-serif; color: var(--ink); background: var(--ivory); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

/* CONTAINER */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,253,249,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 86px; display: flex; align-items: center;
  justify-content: space-between; gap: 34px;
  max-width: none;
  padding-left: clamp(48px, 5vw, 96px);
  padding-right: clamp(48px, 5vw, 96px);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 78px; width: auto; }
.menu {
  display: flex; align-items: center; gap: 38px; margin-left: auto;
}
.menu a {
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy); font-weight: 700; position: relative;
}
.menu a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform .25s;
}
.menu a.active::after, .menu a:hover::after { transform: scaleX(1); }
.menu a:hover { color: var(--gold); }
.nav-cta {
  display: inline-block; border: 1.5px solid var(--gold);
  padding: 16px 30px; font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700; color: var(--gold);
  background: transparent; transition: .25s; white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); color: var(--white); }
.hamburger {
  display: none; background: none; border: none; font-size: 22px;
  color: var(--navy); cursor: pointer;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block; border: 1px solid transparent;
  padding: 14px 28px; font-size: 11.5px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700; text-align: center;
  transition: .25s; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.07); }
.btn-gold { background: var(--navy); color: var(--gold); border-color: var(--gold); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-pink { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ===========================
   EYEBROW
   =========================== */
.eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}

/* ===========================
   HERO — dark editorial wedding image
   =========================== */
.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image:
    radial-gradient(circle at 76% 46%, rgba(255,255,255,.10) 0%, rgba(255,255,255,.03) 24%, transparent 48%),
    linear-gradient(90deg, rgba(5,18,38,.97) 0%, rgba(7,29,59,.92) 32%, rgba(7,29,59,.50) 56%, rgba(7,29,59,.10) 100%),
    url('/assets/hero-wedding-dark.jpg');
  background-size: cover;
  background-position: center right;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(196,154,75,.10) 0%, transparent 46%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.16));
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  min-height: 860px;
  max-width: none;
  width: 100%;
  padding-left: clamp(34px, 3.2vw, 60px);
  padding-right: clamp(24px, 4vw, 70px);
}
.hero-copy {
  padding: 110px 0 100px;
  color: var(--white);
  max-width: 650px;
  margin-left: 0;
}
.hero-eyebrow {
  display: inline-block; margin-bottom: 22px; position: relative;
}
.hero-eyebrow::after {
  content: ''; display: block; width: 260px; height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(196,154,75,.2));
  margin-top: 12px;
}
.hero h1 {
  font-size: clamp(54px, 5.9vw, 94px);
  line-height: .95;
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: -.035em;
  text-shadow: 0 3px 28px rgba(0,0,0,.68);
}
.hero-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.1;
  color: rgba(255,255,255,.96);
  margin: 0 0 22px !important;
  text-shadow: 0 3px 22px rgba(0,0,0,.55);
}
.hero p:not(.hero-subtitle) {
  font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.92);
  margin: 0 0 18px; max-width: 560px;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}

.hero-location {
  color: var(--gold-light) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin: 0 0 36px !important;
  max-width: 620px !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-actions .btn { padding: 17px 34px; font-size: 12px; }
.hero-actions .btn-gold { background: var(--gold); color: #071d3b; border-color: var(--gold); }
.hero-actions .btn-gold:hover { background: var(--gold-light); color: #071d3b; }
.hero-actions .btn-ghost { background: rgba(7,29,59,.18); color: var(--white); border-color: rgba(255,255,255,.78); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,.10); border-color: var(--gold); color: var(--gold-light); }
/* hero image shown via .hero-editorial override below */

/* ===========================
   TRUST STRIP
   =========================== */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  align-items: center; gap: 0;
}
.trust-item {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; min-height: 86px;
  border-right: 1px solid var(--line);
  color: var(--navy); letter-spacing: .14em; text-transform: uppercase;
  font-size: 11.5px; font-weight: 700;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px; font-style: italic; color: var(--navy);
  text-align: center; padding: 0 20px; margin: 0; line-height: 1.5;
}

/* ===========================
   PORTFOLIO GRID + WHY PANEL
   =========================== */
.portfolio-why { background: var(--white); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.35fr;
  /* 4 cards + why panel */
}
.feature-card {
  height: 320px; position: relative; overflow: hidden;
  background: var(--navy); display: block;
}
.feature-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: .5s ease; filter: brightness(.72);
}
.feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,29,59,.02), rgba(7,29,59,.68));
}
.feature-card:hover img { transform: scale(1.06); filter: brightness(.55); }
.card-label {
  position: absolute; inset: auto 16px 18px 16px; z-index: 2;
  text-align: center; color: var(--white);
}
.card-label span {
  font-family: 'Playfair Display', Georgia, serif;
  display: block; font-size: 22px; line-height: 1.12;
  text-transform: uppercase; letter-spacing: .05em;
}
.card-label em {
  display: inline-block; border: 1px solid rgba(255,255,255,.65);
  padding: 7px 18px; margin-top: 12px; font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}

/* WHY PANEL */
.why-panel {
  background: linear-gradient(135deg, var(--navy) 0%, #06162d 100%);
  border-left: 1px solid rgba(196,154,75,.35);
  padding: 36px 28px; display: flex; flex-direction: column;
  color: var(--white);
}
.why-divider {
  width: 30px; height: 2px; background: var(--gold);
  margin: 10px 0 24px;
}
.why-icons { display: flex; flex-direction: column; gap: 20px; flex: 1; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.why-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.why-item p {
  margin: 0; font-size: 13px; color: rgba(255,255,255,.86);
  font-weight: 600; line-height: 1.35;
}

/* ===========================
   PROOF ROW: trusted / reviews / academy
   =========================== */
.proof-row { background: var(--white); padding: 0; }
.proof-grid {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0; border-top: 1px solid var(--line);
}
.box { padding: 36px 32px; border-right: 1px solid var(--line); }

/* Trusted By */
.trusted-box { background: var(--white); }
.client-logos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 20px;
}
.client-logo {
  min-height: 70px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: var(--cream); border: 1px solid var(--line);
  padding: 10px 8px; color: var(--navy); font-weight: 900;
  font-size: 13px; line-height: 1.1; letter-spacing: .04em;
}
.client-logo span { font-weight: 500; font-size: 11px; display: block; margin-top: 2px; }
.supreme { color: #006633; }
.acropolis { font-size: 22px; font-weight: 900; }
.wray { color: #b8860b; }
.observer { font-size: 11px; }

/* Reviews */
.review-box { background: var(--white); }
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
.review { text-align: center; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: 15px; margin-bottom: 10px; }
.review p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14.5px; color: var(--navy); margin: 0; font-style: italic; line-height: 1.5;
}

/* Academy card */
.academy-card {
  background: linear-gradient(135deg, #fff0f5 0%, #fff8f0 60%);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.academy-text { padding: 36px 30px; z-index: 2; flex: 1; }
.academy-text h3 {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.15; color: var(--navy); margin: 8px 0 12px;
}
.academy-text p { color: var(--muted); font-size: 14px; margin: 0 0 20px; }
.academy-img {
  width: 100%; height: 200px; object-fit: cover;
  object-position: center 30%; flex-shrink: 0;
}

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 84px 0; }
.cream { background: var(--cream); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.portrait-wrap {
  background: var(--cream); padding: 16px;
  border: 1px solid var(--line); box-shadow: 0 18px 48px rgba(7,29,59,.08);
}
.light-wrap { background: var(--white); }
.editorial-img { width: 100%; height: 520px; object-fit: cover; object-position: center; }
.section-copy h2 {
  font-size: clamp(30px, 3.5vw, 48px); color: var(--navy);
  margin: 10px 0 18px; line-height: 1.1;
}
.lead-left { font-size: 16px; color: var(--muted); margin: 0 0 22px; }
.small-note { font-size: 14px; }

.clean-list { padding: 0; margin: 0 0 24px; list-style: none; }
.clean-list li {
  padding: 9px 0; color: var(--navy);
  border-bottom: 1px solid rgba(196,154,75,.3);
  font-size: 15px;
}

.mini-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 22px; }
.mini-cards div {
  background: var(--white); border: 1px solid var(--line); padding: 18px;
  text-align: center; color: var(--navy); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; font-size: 12px;
}

/* ===========================
   CONTACT
   =========================== */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-grid h2 { font-size: clamp(28px, 3vw, 42px); color: var(--navy); margin: 10px 0 16px; }
.whatsapp-inline {
  display: inline-block; background: #25d366; color: var(--white);
  font-weight: 800; border-radius: 999px; padding: 12px 22px;
  font-size: 14px; margin-top: 8px;
}
.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  background: var(--cream); border: 1px solid var(--line); padding: 28px;
}
.form input, .form select, .form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #d8cbb8;
  background: var(--white); color: var(--ink);
  font-family: Montserrat, Arial, sans-serif; font-size: 14px;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid rgba(196,154,75,.35); border-color: var(--gold);
}
.form textarea { grid-column: 1 / -1; min-height: 140px; resize: vertical; }
.full-btn { grid-column: 1 / -1; }
.full-btn .btn { width: 100%; }
.form-success {
  display: none; text-align: center; padding: 32px;
  background: var(--cream); border: 1px solid var(--line); color: var(--navy);
}

/* ===========================
   FOOTER
   =========================== */
footer { background: linear-gradient(135deg, var(--navy) 0%, #06162d 100%); color: var(--white); }
.footergrid {
  display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1.2fr;
  gap: 32px; padding: 48px 28px;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 12px; }
.footer-tagline { color: rgba(255,255,255,.7); font-size: 13px; margin: 0 0 16px; font-style: italic; }
.socials { display: flex; gap: 14px; }
.socials a { color: rgba(255,255,255,.7); transition: color .2s; }
.socials a:hover { color: var(--pink); }
.footergrid h3 {
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 16px; font-family: Montserrat, Arial, sans-serif;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.75); font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: rgba(255,255,255,.75); font-size: 13.5px; margin: 0 0 6px; }
.footer-cta { position: relative; }
.footer-cta p { color: rgba(255,255,255,.7); font-size: 13px; margin: 0 0 18px; }
.footer-monogram {
  position: absolute; right: 0; bottom: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 72px; font-weight: 700; color: rgba(196,154,75,.2);
  line-height: 1; pointer-events: none; letter-spacing: -.05em;
}
.copyright {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 14px 28px; color: rgba(255,255,255,.5); font-size: 12px;
}
.footer-center-tag { font-style: italic; }

/* ===========================
   WHATSAPP FAB
   =========================== */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px;
  background: #25d366; color: var(--white); border-radius: 999px;
  width: 56px; height: 56px; display: flex; align-items: center;
  justify-content: center; z-index: 9999;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform .2s;
  -webkit-transform: translateZ(0); /* force GPU layer on iOS */
  transform: translateZ(0);
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ===========================
   RESPONSIVE: tablet
   =========================== */
@media (max-width: 1100px) {
  .menu { gap: 16px; }
  .menu a { font-size: 10.5px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .why-panel { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .why-icons { flex-direction: row; flex-wrap: wrap; }
  .why-item { width: calc(33% - 10px); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .academy-card { grid-column: 1 / -1; flex-direction: row; }
  .academy-text { flex: 1; }
  .academy-img { width: 260px; height: auto; }
  .footergrid { grid-template-columns: repeat(3, 1fr); }
  .footer-cta { grid-column: 1 / -1; }
  .footer-monogram { bottom: auto; top: 0; font-size: 56px; }
  .hero { min-height: 700px; background-position: 62% center; }
  .hero-inner { min-height: 700px; }
  .hero-copy { max-width: 620px; padding: 88px 0; margin-left: 0; }
  .hero::before { content: ''; position: absolute; inset: 0; background: rgba(7,29,59,.58); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-tagline { grid-column: 1 / -1; padding: 18px; border-top: 1px solid var(--line); }
  .trust-item:last-of-type { border-right: none; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { padding: 0 18px; }
  .nav { height: 68px; padding-left: 18px; padding-right: 18px; }
  .logo { height: 48px; }
  .menu, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { min-height: 620px; background-position: 68% center; }
  .hero h1 { font-size: 42px; }
  .hero-subtitle { font-size: 24px; }
  .hero p:not(.hero-subtitle) { font-size: 14.5px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { font-size: 10.5px; min-height: 72px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { height: 220px; }
  .card-label span { font-size: 18px; }
  .why-panel { padding: 24px 18px; }
  .why-item { width: 100%; }
  .proof-grid { grid-template-columns: 1fr; }
  .academy-card { flex-direction: column; }
  .academy-img { width: 100%; height: 200px; }
  .reviews { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .editorial-img { height: 360px; }
  .mini-cards { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .form textarea { grid-column: 1; }
  .full-btn { grid-column: 1; }
  .footergrid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 36px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta { grid-column: 1 / -1; }
  .copyright { flex-direction: column; gap: 4px; text-align: center; padding: 12px 18px; }
  .whatsapp-fab { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

.why-panel .eyebrow { color: var(--gold-light); }


/* === Sweet Mischief JA V4 alignment polish: move logo/nav container and hero copy left === */
.site-header .container {
  max-width: 1680px;
  padding-left: 56px;
  padding-right: 56px;
}

.hero .container {
  max-width: 1680px;
  padding-left: 56px;
  padding-right: 56px;
}

.hero-copy {
  max-width: 560px;
  margin-left: 0;
  padding-top: 105px;
  padding-bottom: 110px;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(50px, 5vw, 76px);
  line-height: .96;
}

.hero-subtitle {
  max-width: 560px;
}

.hero p:not(.hero-subtitle) {
  max-width: 500px;
}

@media (min-width: 1400px) {
  .site-header .container,
  .hero .container {
    padding-left: 72px;
    padding-right: 72px;
  }
}

@media (max-width: 900px) {
  .site-header .container,
  .hero .container {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero-copy {
    margin-left: 0;
    max-width: 100%;
  }
  .hero h1 {
    max-width: 100%;
  }
}


@media (max-width: 900px) {
  .hero {
    min-height: 760px;
    background-position: 66% center;
    background-image:
      linear-gradient(90deg, rgba(5,18,38,.96) 0%, rgba(7,29,59,.88) 62%, rgba(7,29,59,.36) 100%),
      url('/assets/hero-wedding-dark.jpg');
  }
  .hero-inner {
    min-height: 760px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-copy { max-width: 92%; }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
}

/* ===========================
   PHASE 2 — PORTFOLIO + WEDDING SECTIONS
   =========================== */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 48px;
  align-items: end;
  padding-top: 86px;
  padding-bottom: 34px;
}
.section-heading h2 {
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: .98;
  margin: 0;
  letter-spacing: -.025em;
}
.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.portfolio-intro {
  background: linear-gradient(180deg, var(--ivory), var(--cream));
  border-bottom: 1px solid var(--line);
}
.portfolio-categories {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 92px;
}
.portfolio-card {
  min-height: 370px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196,154,75,.35);
  background: var(--navy);
  display: flex;
  align-items: flex-end;
}
.portfolio-card.large {
  grid-row: span 2;
  min-height: 758px;
}
.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(.95);
  transition: transform .65s ease, filter .65s ease;
}
.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,29,59,.04) 0%, rgba(7,29,59,.28) 42%, rgba(7,29,59,.9) 100%);
}
.portfolio-card:hover img {
  transform: scale(1.055);
  filter: brightness(.62) saturate(.9);
}
.portfolio-card-copy {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: var(--white);
}
.portfolio-tag {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 800;
}
.portfolio-card h3 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1;
  letter-spacing: -.02em;
}
.portfolio-card p {
  margin: 0 0 18px;
  max-width: 370px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.65;
}
.portfolio-card em {
  display: inline-block;
  color: var(--gold-light);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 800;
  border-bottom: 1px solid rgba(212,176,106,.65);
  padding-bottom: 6px;
}
.why-section {
  background: var(--ivory);
  padding: 0 0 84px;
}
.why-luxury-panel {
  background: linear-gradient(135deg, var(--navy) 0%, #06162d 100%);
  color: var(--white);
  padding: 46px 52px;
  border: 1px solid rgba(196,154,75,.32);
  display: grid;
  grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr);
  gap: 40px;
  align-items: center;
}
.why-panel-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
}
.why-luxury-panel .why-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.why-luxury-panel .why-item {
  text-align: center;
  color: rgba(255,255,255,.92);
}
.why-luxury-panel .why-item svg {
  color: var(--gold-light);
  margin: 0 auto 12px;
}
.why-luxury-panel .why-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.wedding-section {
  background: var(--ivory);
  padding-top: 96px;
}
.wedding-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 58px;
  align-items: center;
}
.wedding-copy h2 {
  margin: 14px 0 20px;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 64px);
  line-height: .98;
  letter-spacing: -.025em;
}
.wedding-highlights {
  display: grid;
  gap: 14px;
  margin: 30px 0 34px;
}
.wedding-highlights div {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.wedding-highlights strong {
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  line-height: 1;
}
.wedding-highlights span {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .03em;
}
.wedding-collage {
  position: relative;
  min-height: 680px;
}
.wedding-main {
  width: 74%;
  height: 640px;
  object-fit: cover;
  margin-left: auto;
  border: 10px solid var(--ivory);
  box-shadow: 0 28px 80px rgba(7,29,59,.22);
}
.wedding-small {
  position: absolute;
  object-fit: cover;
  border: 8px solid var(--ivory);
  box-shadow: 0 18px 55px rgba(7,29,59,.22);
}
.wedding-small.one {
  width: 42%;
  height: 300px;
  left: 0;
  top: 70px;
}
.wedding-small.two {
  width: 45%;
  height: 260px;
  left: 8%;
  bottom: 30px;
}
.wedding-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 72px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.process-card {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.process-card:last-child { border-right: none; }
.process-card span {
  display: block;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
}
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.wedding-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 34px 42px;
  background: var(--navy);
  color: var(--white);
}
.wedding-note p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.82);
}
.wedding-note .btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .portfolio-categories { grid-template-columns: 1fr 1fr; }
  .portfolio-card.large { grid-row: auto; min-height: 470px; grid-column: span 2; }
  .why-luxury-panel { grid-template-columns: 1fr; }
  .why-luxury-panel .why-icons { grid-template-columns: repeat(3, 1fr); }
  .wedding-hero-grid { grid-template-columns: 1fr; }
  .wedding-collage { min-height: 560px; }
  .wedding-main { height: 520px; }
  .wedding-process { grid-template-columns: repeat(3, 1fr); }
  .process-card { border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .section-heading { grid-template-columns: 1fr; gap: 18px; padding-top: 58px; }
  .portfolio-categories { grid-template-columns: 1fr; padding-bottom: 58px; }
  .portfolio-card.large { grid-column: auto; min-height: 430px; }
  .portfolio-card { min-height: 330px; }
  .portfolio-card-copy { padding: 24px; }
  .why-luxury-panel { padding: 34px 24px; }
  .why-luxury-panel .why-icons { grid-template-columns: 1fr; }
  .wedding-section { padding-top: 64px; }
  .wedding-collage { min-height: auto; display: grid; gap: 14px; }
  .wedding-main, .wedding-small.one, .wedding-small.two {
    position: static;
    width: 100%;
    height: 360px;
    margin: 0;
  }
  .wedding-process { grid-template-columns: 1fr; }
  .process-card { border-right: none; }
  .wedding-note { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}

/* Phase 2 portfolio and wedding refinements */
.portfolio-showcase {
  margin-top: -44px;
  padding: 36px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(7,29,59,.08);
}
.showcase-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.showcase-header h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}
.showcase-header a {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  white-space: nowrap;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.showcase-grid figure {
  position: relative;
  height: 210px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}
.showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) brightness(.92);
  transition: transform .55s ease;
}
.showcase-grid figure:hover img { transform: scale(1.05); }
.showcase-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: var(--white);
  background: rgba(7,29,59,.72);
  border: 1px solid rgba(212,176,106,.42);
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.wedding-gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.wedding-gallery-strip img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(7,29,59,.10);
}
.wedding-copy .eyebrow { color: var(--gold); }
.wedding-main { object-position: center; }
@media (max-width: 1100px) {
  .showcase-grid, .wedding-gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .showcase-grid figure, .wedding-gallery-strip img { height: 190px; }
}
@media (max-width: 700px) {
  .portfolio-showcase { padding: 24px 18px; margin-top: -24px; }
  .showcase-header { display: block; }
  .showcase-header a { display: inline-block; margin-top: 16px; }
  .showcase-grid, .wedding-gallery-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .showcase-grid figure, .wedding-gallery-strip img { height: 160px; }
}


/* ===========================
   PORTFOLIO PAGE
   =========================== */
.portfolio-hero {
  background:
    linear-gradient(135deg, rgba(7,29,59,.96), rgba(9,36,72,.86)),
    url('/assets/hero-wedding-dark.jpg') center right / cover no-repeat;
  color: var(--white);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.portfolio-hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -40% auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(196,154,75,.12);
  filter: blur(18px);
}
.portfolio-hero-inner { position: relative; z-index: 1; max-width: none; }
.portfolio-hero h1 {
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: .9;
  margin: 14px 0 20px;
  max-width: 860px;
  color: var(--white);
}
.portfolio-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
}
.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.portfolio-tabs a {
  color: var(--gold-light);
  border: 1px solid rgba(196,154,75,.55);
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.portfolio-tabs a:hover { background: var(--gold); color: var(--navy); }
.portfolio-category-section { padding: 92px 0; background: var(--ivory); }
.portfolio-category-section.cream { background: var(--cream); }
.portfolio-category-section.navy-block { background: var(--navy); color: var(--white); }
.portfolio-category-section.navy-block p { color: rgba(255,255,255,.76); }
.portfolio-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}
.portfolio-page-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: .95;
  margin: 10px 0 0;
  max-width: 760px;
}
.portfolio-page-heading p {
  color: var(--muted);
  font-size: 1rem;
}
.navy-block .portfolio-page-heading p { color: rgba(255,255,255,.76); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border: 1px solid rgba(196,154,75,.28);
  background: #eee;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-grid img:hover { transform: translateY(-3px); filter: brightness(.96); }
.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(5) { height: 520px; grid-row: span 2; }
.gallery-weddings img { object-position: center center; }
.narrow-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.portfolio-cta { background: var(--cream); padding: 78px 0; }
.portfolio-cta-card {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(196,154,75,.35);
  padding: clamp(34px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr .55fr;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.portfolio-cta-card::after {
  content: 'SM';
  position: absolute;
  right: 26px;
  bottom: -42px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 145px;
  color: rgba(255,255,255,.05);
}
.portfolio-cta-card h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .95;
  margin: 12px 0;
}
.portfolio-cta-card p { color: rgba(255,255,255,.76); max-width: 720px; }
.portfolio-cta-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
@media (max-width: 980px) {
  .portfolio-page-heading, .portfolio-cta-card { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid img, .gallery-grid img:nth-child(1), .gallery-grid img:nth-child(5) { height: 360px; grid-row: auto; }
}
@media (max-width: 620px) {
  .portfolio-hero { padding: 86px 0 52px; }
  .portfolio-tabs { flex-direction: column; }
  .portfolio-tabs a { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 360px; }
}

/* ===========================
   PHASE 3 — FOUNDERS, TRUST, ACADEMY, FAQ
   =========================== */
.founders-section {
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.founders-grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(280px, 1fr) minmax(240px, .8fr);
  gap: 28px;
  align-items: stretch;
}
.founders-intro {
  padding: 34px 34px 34px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founders-intro h2,
.trusted-inner h2,
.testimonials-section h2,
.academy-feature h2,
.instagram-section h2,
.faq-section h2 {
  margin: 10px 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.founder-card {
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(7,29,59,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.founder-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center top;
  background: var(--cream);
}
.founder-featured img { height: 510px; }
.founder-copy {
  padding: 28px;
}
.founder-copy span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}
.founder-copy h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1;
}
.founder-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.trusted-section {
  background: linear-gradient(135deg, var(--navy) 0%, #06162d 100%);
  color: var(--white);
  padding: 70px 0;
}
.trusted-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.trusted-inner h2 { color: var(--white); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.brand-tile {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 14px;
  border: 1px solid rgba(212,176,106,.35);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.88);
  font-weight: 800;
  letter-spacing: .05em;
}
.brand-tile span {
  font-size: 12px;
  letter-spacing: .02em;
  font-weight: 700;
  opacity: .82;
}
.brand-tile.supreme { color: #8cc63f; }
.brand-tile.acropolis { color: #fff; font-size: 34px; }
.brand-tile.wray { color: #71b84c; }
.brand-tile.observer { color: #fff; }
.compact-heading { padding-top: 0; }
.testimonials-section {
  background: var(--cream);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 30px;
  box-shadow: 0 18px 50px rgba(7,29,59,.06);
}
.testimonial-card .stars {
  color: var(--gold);
  letter-spacing: .16em;
  margin-bottom: 18px;
}
.testimonial-card p {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.32;
  font-style: italic;
  margin: 0 0 22px;
}
.testimonial-card span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.academy-feature {
  background: linear-gradient(135deg, #fff4f7 0%, var(--cream) 48%, #f7efe4 100%);
  padding: 92px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.academy-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 58px;
  align-items: center;
}
.academy-feature-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 720px;
}
.academy-offerings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 34px;
}
.academy-offerings div {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  padding: 18px;
}
.academy-offerings strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 14px;
}
.academy-offerings span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}
.academy-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.academy-actions .btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.academy-image-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: 0 24px 70px rgba(7,29,59,.10);
}
.academy-image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}
.instagram-section {
  background: var(--ivory);
  padding: 86px 0;
}
.instagram-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: center;
}
.insta-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.insta-mosaic img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(.94) brightness(.96);
}
.faq-section {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .04em;
  list-style: none;
  position: relative;
  padding-right: 34px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}
.faq-list details[open] summary::after { content: '–'; }
.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.75;
}
@media (max-width: 1100px) {
  .founders-grid,
  .trusted-inner,
  .academy-feature-grid,
  .instagram-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .founders-intro { padding: 0; }
  .founder-featured img, .founder-card img { height: 430px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .founders-grid { gap: 18px; }
  .founder-featured img, .founder-card img { height: 360px; }
  .founder-copy { padding: 22px; }
  .trusted-section, .academy-feature, .instagram-section { padding: 58px 0; }
  .brand-grid, .academy-offerings, .insta-mosaic { grid-template-columns: 1fr 1fr; }
  .academy-image-card img { height: 360px; }
  .instagram-grid { gap: 28px; }
}


/* Portfolio lightbox gallery */
.gallery-grid .gallery-item {
  margin: 0;
  min-width: 0;
}
.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-trigger img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border: 1px solid rgba(196,154,75,.28);
  background: #eee;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-trigger:hover img { transform: translateY(-3px); filter: brightness(.96); }
.gallery-item-featured .gallery-trigger img { height: 520px; }
.gallery-item figcaption {
  padding: 12px 2px 0;
  text-align: center;
}
.gallery-item figcaption strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem;
  color: var(--navy);
}
.gallery-item figcaption span {
  display: block;
  margin-top: 3px;
  font-size: .82rem;
  color: var(--muted);
}
.gallery-note {
  text-align: center;
  margin-top: 34px;
}
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 10, 22, .94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px clamp(14px, 4vw, 64px);
}
.lightbox.is-open { display: flex; }
.lightbox-content {
  width: min(1120px, 92vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
}
.lightbox-content img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(196,154,75,.38);
  background: rgba(255,255,255,.04);
}
.lightbox-meta {
  color: var(--white);
}
.lightbox-counter {
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.lightbox-meta h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin: 0 0 10px;
}
.lightbox-meta p {
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(196,154,75,.5);
  background: rgba(8,22,49,.45);
  color: var(--white);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.lightbox-close {
  top: 20px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 34px;
  line-height: 42px;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 64px;
  font-size: 30px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 900px) {
  .lightbox-content { grid-template-columns: 1fr; gap: 16px; }
  .lightbox-meta { text-align: center; }
  .lightbox-quote { display: inline-block; }
  .lightbox-nav { width: 46px; height: 54px; font-size: 24px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .gallery-item-featured .gallery-trigger img,
  .gallery-trigger img { height: 360px; }
}


/* V12 Portfolio category refinements */
.portfolio-tabs a { white-space: nowrap; }
.gallery-grid .gallery-item { margin: 0; }
.navy-block .gallery-item figcaption strong,
.navy-block .gallery-item figcaption span { color: #fff; }
.navy-block .gallery-item figcaption span { opacity: .78; }
.cream .gallery-item figcaption strong { color: var(--navy); }
.gallery-trigger { cursor: zoom-in; }
.gallery-trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (max-width: 700px) {
  .portfolio-tabs { gap: 10px; }
  .portfolio-tabs a { font-size: 11px; padding: 10px 12px; }
}


/* Mobile menu drawer */
body.mobile-menu-open { overflow: hidden; }
.hamburger.is-open { color: var(--gold); font-size: 34px; line-height: 1; }
@media (max-width: 760px) {
  .site-header { z-index: 1000; }
  .menu.is-open {
    display: flex;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--ivory);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(7, 29, 59, .16);
    padding: 22px 24px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    z-index: 999;
  }
  .menu.is-open a {
    width: 100%;
    padding: 12px 0;
    font-size: 13px;
    letter-spacing: .22em;
    border-bottom: 1px solid rgba(196, 154, 75, .18);
  }
  .menu.is-open a::after { display: none; }
}

/* V14 stronger mobile menu + lightbox polish */
@media (max-width: 760px) {
  .site-header { position: sticky; top: 0; z-index: 20000; overflow: visible; }
  .site-header .nav { position: relative; }
  .site-header .menu,
  .site-header .nav-cta { display: none !important; }
  .site-header .hamburger { display: block !important; z-index: 20003; }

  body.mobile-menu-open .site-header .menu,
  .site-header .menu.is-open {
    display: flex !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #fffdf9 !important;
    border-top: 1px solid rgba(196,154,75,.28) !important;
    border-bottom: 1px solid rgba(196,154,75,.28) !important;
    box-shadow: 0 22px 45px rgba(7,29,59,.20) !important;
    padding: 16px 26px 22px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    z-index: 20002 !important;
  }

  body.mobile-menu-open .site-header .menu a,
  .site-header .menu.is-open a {
    display: block !important;
    width: 100% !important;
    padding: 15px 0 !important;
    color: #071d3b !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(196,154,75,.18) !important;
  }

  body.mobile-menu-open .site-header .menu a:last-child,
  .site-header .menu.is-open a:last-child { border-bottom: 0 !important; }
  body.mobile-menu-open .site-header .menu a::after,
  .site-header .menu.is-open a::after { display: none !important; }

  body.mobile-menu-open .site-header .nav-cta,
  .site-header .nav-cta.is-open {
    display: none !important;
  }

  .lightbox { padding: 18px 12px !important; z-index: 30000 !important; }
  .lightbox-content { width: 96vw !important; max-height: 94vh !important; }
  .lightbox-content img { max-height: 68vh !important; }
  .lightbox-close { top: 12px !important; right: 12px !important; width: 44px !important; height: 44px !important; z-index: 30003 !important; }
  .lightbox-nav { z-index: 30002 !important; background: rgba(7,29,59,.72) !important; }
  .lightbox-prev { left: 10px !important; }
  .lightbox-next { right: 10px !important; }
}


/* ===========================
   V15 POLISH: sticky header, performance, back-to-top
   =========================== */
.site-header, .nav, .logo, .menu a, .nav-cta {
  transition: height .25s ease, padding .25s ease, transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
body.is-scrolled .site-header {
  background: rgba(255,253,249,.985);
  box-shadow: 0 12px 35px rgba(7,29,59,.08);
}
body.is-scrolled .nav { height: 72px; }
body.is-scrolled .logo { height: 62px; }
body.is-scrolled .nav-cta { padding-top: 13px; padding-bottom: 13px; }

img { opacity: 1; }
img[loading="lazy"] { opacity: 0; transition: opacity .45s ease, transform .35s ease, filter .35s ease; }
img[loading="lazy"].is-loaded { opacity: 1; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(196,154,75,.65);
  background: var(--navy);
  color: var(--gold-light);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease;
  z-index: 9998;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #0d2a54; }

@media (max-width: 820px) {
  body.is-scrolled .nav { height: 72px; }
  body.is-scrolled .logo { height: 58px; }
  .back-to-top { right: 16px; bottom: 82px; width: 44px; height: 44px; }
}

/* V16 advanced SEO/service pages */
.service-main { background:#fffaf2; }
.service-hero { padding: 170px 0 90px; background: linear-gradient(135deg, #071d3b 0%, #0b274d 48%, #051425 100%); color: #fff; }
.service-hero-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap:64px; align-items:center; }
.service-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3.2rem, 6vw, 6.2rem); line-height:.92; margin:18px 0 24px; }
.service-hero .lead-left { color: rgba(255,255,255,.86); font-size:1.1rem; max-width:720px; }
.service-hero img { width:100%; height:560px; object-fit:cover; border:1px solid rgba(203,160,82,.45); box-shadow:0 30px 90px rgba(0,0,0,.35); }
.service-actions { display:flex; gap:18px; flex-wrap:wrap; margin-top:34px; }
.btn.dark, .service-actions .btn-ghost { border-color: rgba(255,255,255,.55); color:#fff; }
.service-card-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; }
.service-card { background:#fff; border:1px solid rgba(201,169,110,.35); padding:28px; min-height:170px; box-shadow:0 16px 45px rgba(7,29,59,.06); }
.service-card span { color:#c9a96e; font-weight:800; letter-spacing:.18em; font-size:.85rem; }
.service-card p { margin:14px 0 0; color:#071d3b; line-height:1.65; font-weight:600; }
.service-seo-copy { max-width:900px; text-align:center; }
.service-seo-copy h2 { font-family:'Playfair Display', serif; color:#071d3b; font-size: clamp(2.4rem, 4vw, 4rem); margin-bottom:18px; }
.service-seo-copy p { color:#4f5870; font-size:1.08rem; line-height:1.75; margin-bottom:28px; }

@media (max-width: 900px) {
  .service-hero { padding: 130px 0 70px; }
  .service-hero-grid { grid-template-columns:1fr; gap:34px; }
  .service-hero img { height:420px; }
  .service-card-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 600px) {
  .service-hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .service-card-grid { grid-template-columns:1fr; }
  .service-hero img { height:360px; }
}


/* ===========================
   V17 Luxury Editorial Homepage
   =========================== */
.hero-editorial {
  background: linear-gradient(90deg, #071d3b 0%, #071d3b 48%, #02070d 48%, #02070d 100%);
  min-height: 790px;
  overflow: hidden;
}
.hero-editorial::before { display: none !important; }
.hero-editorial .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 790px;
  align-items: center;
  gap: 46px;
}
.hero-editorial .hero-copy { max-width: 660px; padding: 120px 0 90px; margin-left: 0; z-index: 2; }
.hero-editorial .hero-product-panel { position: relative; height: 790px; display: flex; align-items: stretch; justify-content: flex-end; overflow: visible; }
.hero-editorial .hero-cake {
  display: block !important;
  width: 100%; height: 100%; object-fit: cover; object-position: 58% center;
  filter: brightness(.92) contrast(1.04);
  border-left: 1px solid rgba(203,160,82,.25);
  box-shadow: -40px 0 80px rgba(0,0,0,.28);
}
.hero-editorial .hero-product-panel::before {
  content:''; position:absolute; inset:0 auto 0 -1px; width:38%; z-index:1;
  background: linear-gradient(90deg, #071d3b 0%, rgba(7,29,59,.84) 24%, rgba(7,29,59,.18) 74%, transparent 100%);
  pointer-events:none;
}
.hero-editorial .hero-subtitle { max-width: 720px; }
.compact-heading { margin-bottom: 34px; }
.centered-heading { text-align: center; justify-content: center; }
.centered-heading > div { margin: 0 auto; }
.homepage-services { background: #fff; }
.service-teaser-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.service-teaser {
  display: block; text-decoration: none; color: var(--navy); background: var(--cream);
  border: 1px solid var(--line); overflow: hidden; transition: .28s ease;
}
.service-teaser:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(7,29,59,.12); }
.service-teaser img { width:100%; height: 300px; object-fit: cover; display:block; filter: brightness(.9); transition: .4s ease; }
.service-teaser:hover img { transform: scale(1.04); filter: brightness(.82); }
.service-teaser div { padding: 22px 20px 24px; }
.service-teaser span { display:block; font-family:'Playfair Display', serif; font-size: 24px; line-height: 1.1; margin-bottom: 10px; }
.service-teaser p { margin:0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.featured-work { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.featured-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.featured-grid img { width:100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(7,29,59,.10); transition:.35s ease; }
.featured-grid img:hover { transform: scale(1.02); filter: brightness(.92); }
.dessert-feature { background: #fff; }
.dessert-split .btn { margin-top: 28px; }
.trusted-home { background: var(--navy); color: #fff; }
.trusted-home h2 { color: #fff; }
.trusted-logos { display:grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.trusted-logos div { min-height: 92px; display:flex; align-items:center; justify-content:center; text-align:center; border:1px solid rgba(203,160,82,.35); background: rgba(255,255,255,.04); color:#fff; font-weight:800; letter-spacing:.04em; line-height:1.15; padding: 14px 8px; }
.trusted-logos span { color: var(--gold); font-weight: 500; }
.why-testimonial-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.why-lux-card, .testimonial-lux-card { background:#fff; border:1px solid var(--line); padding:42px; box-shadow:0 20px 70px rgba(7,29,59,.08); }
.why-lux-card ul { list-style:none; padding:0; margin: 24px 0 0; display:grid; gap: 14px; }
.why-lux-card li { position:relative; padding-left: 28px; color: var(--muted); line-height:1.55; }
.why-lux-card li::before { content:'✓'; position:absolute; left:0; top:0; color:var(--gold); font-weight:800; }
.testimonial-lux-card blockquote { margin: 20px 0 0; font-family:'Playfair Display', serif; font-style: italic; font-size: 22px; line-height:1.4; color: var(--navy); border-left:2px solid var(--gold); padding-left:18px; }
.package-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.package-card { background:#fff; border:1px solid var(--line); padding:32px; box-shadow:0 18px 55px rgba(7,29,59,.08); }
.package-card h3 { font-family:'Playfair Display', serif; font-size: 28px; color:var(--navy); margin:0 0 12px; }
.package-card p, .package-card li { color: var(--muted); line-height:1.55; }
.package-card ul { padding-left: 18px; margin: 20px 0 0; }
.featured-package { border-color: rgba(203,160,82,.65); background: linear-gradient(135deg, #fff 0%, #fff8ed 100%); }
.dessert-service-hero { background: linear-gradient(135deg, #071d3b 0%, #0b274d 48%, #04101f 100%); }
.dessert-cta-section { text-align:center; }
@media (max-width: 1100px) {
  .hero-editorial .hero-inner { grid-template-columns: 1fr; gap: 0; min-height: auto; }
  .hero-editorial { background: #071d3b; }
  .hero-editorial .hero-product-panel { order: -1; height: 430px; margin-left: -22px; margin-right: -22px; }
  .hero-editorial .hero-product-panel::before { inset: auto 0 0 0; width:100%; height:60%; background:linear-gradient(0deg,#071d3b 0%,rgba(7,29,59,.55) 48%,transparent 100%); }
  .hero-editorial .hero-copy { padding: 46px 0 70px; max-width: 100%; }
  .service-teaser-grid, .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .trusted-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .hero-editorial .hero-product-panel { height: 370px; }
  .hero-editorial .hero-copy { padding: 38px 0 62px; }
  .hero-editorial h1 { font-size: clamp(44px, 13vw, 64px); }
  .service-teaser-grid, .featured-grid, .why-testimonial-grid, .package-grid { grid-template-columns: 1fr; }
  .service-teaser img { height: 260px; }
  .trusted-logos { grid-template-columns: repeat(2, 1fr); }
  .why-lux-card, .testimonial-lux-card, .package-card { padding: 28px; }
  .testimonial-lux-card blockquote { font-size: 19px; }
}


/* ===========================
   V18 EDITORIAL PAGE UPGRADES
   Weddings + Dessert Experiences
   =========================== */
.wedding-editorial-hero,
.dessert-editorial-hero {
  background:
    radial-gradient(circle at 82% 30%, rgba(196,154,75,.18), transparent 32%),
    linear-gradient(135deg, #071d3b 0%, #0c284f 54%, #04101f 100%);
}
.wedding-editorial-hero .service-hero-grid,
.dessert-editorial-hero .service-hero-grid { align-items: center; }
.wedding-editorial-hero img,
.dessert-editorial-hero img { border-radius: 0 0 90px 0; object-position: center; }
.editorial-experience .editorial-split { grid-template-columns: .92fr 1.08fr; gap: 54px; }
.luxury-check-grid,
.available-grid,
.flavour-grid,
.sweets-grid,
.process-timeline {
  display: grid;
  gap: 16px;
}
.luxury-check-grid { grid-template-columns: repeat(2,1fr); }
.luxury-check-grid div,
.available-grid div,
.flavour-grid div,
.sweets-grid div {
  background: #fff;
  border: 1px solid rgba(196,154,75,.32);
  box-shadow: 0 14px 38px rgba(7,29,59,.06);
  color: var(--navy);
  font-weight: 700;
  padding: 18px 20px;
}
.luxury-check-grid div::before { content:'✓'; color: var(--gold); font-weight: 900; margin-right: 10px; }
.process-timeline { grid-template-columns: repeat(5,1fr); }
.process-timeline > div {
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 28px 22px;
  min-height: 230px;
  box-shadow: 0 18px 55px rgba(7,29,59,.07);
}
.process-timeline span,
.package-kicker {
  display:block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 16px;
}
.process-timeline h3 { margin: 0 0 12px; color: var(--navy); font-size: 26px; }
.process-timeline p { margin:0; color: var(--muted); line-height: 1.62; }
.flavour-grid { grid-template-columns: repeat(4,1fr); }
.available-grid { grid-template-columns: repeat(5,1fr); }
.available-grid div { min-height: 132px; display: grid; place-items: center; text-align: center; gap: 8px; }
.available-grid span { font-size: 30px; line-height: 1; }
.premium-packages .package-card { position: relative; overflow: hidden; }
.premium-packages .featured-package::before {
  content:'Signature'; position:absolute; top:18px; right:-38px; transform: rotate(35deg);
  background: var(--gold); color: var(--navy); font-weight: 800; letter-spacing:.12em; text-transform:uppercase; font-size:11px;
  padding: 8px 50px;
}
.sweets-grid { grid-template-columns: repeat(5,1fr); }
.dessert-cart-feature { background: #fff; }
.final-service-cta { text-align:center; }
@media (max-width: 1050px) {
  .process-timeline { grid-template-columns: repeat(2,1fr); }
  .available-grid, .sweets-grid, .flavour-grid { grid-template-columns: repeat(2,1fr); }
  .editorial-experience .editorial-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .luxury-check-grid, .process-timeline, .available-grid, .sweets-grid, .flavour-grid { grid-template-columns: 1fr; }
  .wedding-editorial-hero img, .dessert-editorial-hero img { height: 390px; border-radius: 0 0 44px 0; }
}


/* ===== V19 PHASE A - HERO REDESIGN ===== */
.hero.hero-editorial{
  background-image:none;
  background:linear-gradient(90deg,#06172f 0%,#071d3b 45%,#0a1f3f 100%);
  min-height:760px;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:clamp(32px,4vw,70px);
  align-items:center;
  min-height:760px;
}
.hero-copy{
  max-width:620px;
}
.hero-product-panel{
  display:flex;
  justify-content:center;
  align-items:center;
}
.hero-cake{
  width:min(100%,650px);
  max-height:700px;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

@media (max-width: 980px){
  .hero-inner{
    grid-template-columns:1fr;
    text-align:center;
    min-height:auto;
    padding-top:50px;
    padding-bottom:60px;
  }
  .hero-copy{
    max-width:700px;
    margin:0 auto;
  }
  .hero-eyebrow::after{
    margin-left:auto;
    margin-right:auto;
  }
  .hero-product-panel{
    order:-1;
    margin-top:20px;
  }
  .hero-cake{
    max-width:420px;
    max-height:420px;
  }
}


/* ===========================
   V19 PHASE B - HOMEPAGE SIMPLIFICATION + ABOUT
   =========================== */
.founders-home { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founders-home-grid { display:grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px,5vw,72px); align-items:center; }
.founders-home-image { position:relative; min-height: 520px; }
.founders-home-image img { position:absolute; width: 54%; height: 440px; object-fit:cover; object-position:center top; border:10px solid #fffaf2; box-shadow:0 26px 70px rgba(7,29,59,.16); }
.founders-home-image img:first-child { left:0; top:0; z-index:2; }
.founders-home-image img:last-child { right:0; bottom:0; z-index:1; }
.founders-home-copy h2 { font-size: clamp(38px,4.5vw,68px); line-height:.98; color:var(--navy); margin:10px 0 20px; }
.founders-home-copy p { color:var(--muted); font-size:17px; line-height:1.75; max-width:680px; margin-bottom:28px; }
.stats-strip { background: var(--navy); color:#fff; padding: 38px 0; }
.stats-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; text-align:center; }
.stats-grid div { border-right:1px solid rgba(201,169,110,.35); padding: 10px 18px; }
.stats-grid div:last-child { border-right:0; }
.stats-grid strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size: clamp(30px,3.2vw,48px); color:var(--gold-light); line-height:1; margin-bottom:10px; }
.stats-grid span { display:block; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.78); font-weight:700; }
.about-hero { background: linear-gradient(135deg, #071d3b 0%, #0b274d 48%, #051425 100%); color:#fff; padding: 160px 0 90px; }
.about-hero-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap:60px; align-items:center; }
.about-hero h1 { font-size: clamp(54px,7vw,104px); line-height:.9; color:#fff; margin:16px 0 22px; }
.about-hero p { color:rgba(255,255,255,.82); font-size:18px; line-height:1.75; max-width:720px; margin-bottom:32px; }
.about-hero img { width:100%; height:560px; object-fit:cover; object-position:center top; border:1px solid rgba(201,169,110,.35); box-shadow:0 30px 90px rgba(0,0,0,.35); }
.about-story-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:52px; align-items:start; }
.about-story-grid h2 { color:var(--navy); font-size: clamp(36px,4vw,64px); line-height:1; margin:10px 0 22px; }
.about-story-grid p { color:var(--muted); line-height:1.8; font-size:16px; }
.about-values-card { background: var(--cream); border:1px solid var(--line); padding:36px; box-shadow:0 18px 55px rgba(7,29,59,.08); }
.about-values-card h3 { color:var(--navy); font-family:'Playfair Display',Georgia,serif; font-size:34px; margin:0 0 18px; }
.about-values-card ul { margin:0; padding-left:20px; color:var(--muted); line-height:1.8; }
.about-founder-grid { display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.about-founder-card { background:#fff; border:1px solid var(--line); display:grid; grid-template-columns: .85fr 1fr; gap:0; box-shadow:0 18px 55px rgba(7,29,59,.08); overflow:hidden; }
.about-founder-card img { width:100%; height:380px; object-fit:cover; object-position:center top; }
.about-founder-card div { padding:32px; display:flex; flex-direction:column; justify-content:center; }
.about-founder-card span { color:var(--gold); font-size:11px; letter-spacing:.18em; text-transform:uppercase; font-weight:800; }
.about-founder-card h3 { color:var(--navy); font-size:34px; margin:10px 0 14px; }
.about-founder-card p { color:var(--muted); line-height:1.7; margin:0; }
.timeline-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.timeline-grid div { background:var(--navy); color:#fff; padding:32px; border:1px solid rgba(201,169,110,.35); }
.timeline-grid strong { display:block; color:var(--gold-light); font-family:'Playfair Display',Georgia,serif; font-size:42px; margin-bottom:10px; }
.timeline-grid span { color:rgba(255,255,255,.82); line-height:1.6; }
.final-cta-section { background:var(--navy); color:#fff; text-align:center; }
.final-cta-section h2 { color:#fff; }
.final-cta-section p { color:rgba(255,255,255,.78); }
@media (max-width: 900px){ .founders-home-grid,.about-hero-grid,.about-story-grid,.about-founder-grid { grid-template-columns:1fr; } .founders-home-image { min-height: 460px; } .stats-grid,.timeline-grid { grid-template-columns:1fr 1fr; } .about-founder-card { grid-template-columns:1fr; } .about-hero { padding-top:130px; } }
@media (max-width: 620px){ .founders-home-image { min-height: 380px; } .founders-home-image img { height:330px; width:58%; } .stats-grid,.timeline-grid { grid-template-columns:1fr; } .stats-grid div { border-right:0; border-bottom:1px solid rgba(201,169,110,.25); } .about-hero img { height:380px; } }


/* ===== V19 PHASE C - DESSERT EXPERIENCE LUXURY PAGE ===== */
.available-for-section .package-grid,
.signature-packages-section .package-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
}
.package-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  padding:32px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,.06);
}
.featured-package{
  border:1px solid rgba(201,169,110,.45);
  transform:translateY(-6px);
}


/* ===== V19 PHASE D - CORPORATE PAGE UPGRADE ===== */
.corporate-hero{
  background:
    linear-gradient(135deg, rgba(7,29,59,.96), rgba(5,14,29,.92)),
    url('/assets/corporate-jwn-headquarters.jpg') center right / cover no-repeat;
}
.corporate-hero .service-hero-grid > img{
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.corporate-service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
}
.corporate-service-card{
  background:#fff;
  border:1px solid rgba(201,169,110,.25);
  padding:32px;
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.06);
}
.corporate-service-card h3{
  font-family:'Playfair Display', Georgia, serif;
  color:#071d3b;
  font-size:1.7rem;
  margin:0 0 12px;
}
.corporate-service-card p{
  color:#4f5870;
  line-height:1.65;
  margin:0;
}

.corporate-feature-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:54px;
  align-items:center;
}
.corporate-feature-copy h2{
  font-family:'Playfair Display', Georgia, serif;
  color:#071d3b;
  font-size:clamp(2.8rem,5vw,5rem);
  line-height:.95;
  margin:14px 0 22px;
}
.corporate-checklist{
  list-style:none;
  padding:0;
  margin:28px 0 34px;
  display:grid;
  gap:12px;
}
.corporate-checklist li{
  color:#071d3b;
  font-weight:700;
}
.corporate-checklist li::before{
  content:'✓';
  color:#c9a96e;
  margin-right:10px;
}
.corporate-feature-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.corporate-feature-images img{
  width:100%;
  height:310px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 18px 55px rgba(7,29,59,.16);
}
.corporate-feature-images img:first-child{
  grid-column:1 / -1;
  height:390px;
}

.corporate-trust-section{
  background:#071d3b;
  color:#fff;
}
.corporate-trust-section h2{
  color:#fff;
}
.corporate-logos div{
  background:rgba(255,255,255,.06);
  border-color:rgba(201,169,110,.35);
}

.corporate-process .process-card{
  background:#fff;
}
.corporate-cta-section{
  background:#fffaf2;
}

@media(max-width:900px){
  .corporate-feature-grid{
    grid-template-columns:1fr;
  }
  .corporate-feature-images img,
  .corporate-feature-images img:first-child{
    height:300px;
  }
}


/* ===== V20 NAVIGATION UPGRADE ===== */
.nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
}
.nav-dropdown > .nav-drop-link::after{
  content:' ▾';
  font-size:.7em;
  color:#c9a96e;
}
.nav-dropdown-menu{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%) translateY(12px);
  min-width:230px;
  background:#fffaf2;
  border:1px solid rgba(201,169,110,.35);
  box-shadow:0 18px 45px rgba(7,29,59,.15);
  padding:12px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.25s ease;
  z-index:999;
}
.nav-dropdown-menu a{
  display:block;
  padding:12px 14px;
  color:#071d3b;
  text-decoration:none;
  letter-spacing:.08em;
  font-size:.78rem;
  white-space:nowrap;
}
.nav-dropdown-menu a:hover{
  background:rgba(201,169,110,.12);
  color:#c9a96e;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.hero-service-link{
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid rgba(201,169,110,.55);
}
.hero-service-link:hover{
  color:#c9a96e;
}

/* keep dropdown usable on mobile by showing links inline */
@media(max-width:900px){
  .nav-dropdown{
    display:block;
    width:100%;
  }
  .nav-dropdown > .nav-drop-link{
    display:block;
  }
  .nav-dropdown-menu{
    position:static;
    transform:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    box-shadow:none;
    border:0;
    background:transparent;
    padding:0 0 0 12px;
    min-width:0;
  }
  .nav-dropdown-menu a{
    padding:9px 0;
    font-size:.75rem;
    color:#4f5870;
  }
}


/* ===== V23 SERVICE PREVIEW GALLERIES ===== */
.featured-preview-section{position:relative;}
.featured-preview-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px;}
.featured-preview-card{display:block;position:relative;overflow:hidden;border-radius:18px;text-decoration:none;background:#071d3b;box-shadow:0 18px 45px rgba(7,29,59,.14);min-height:320px;}
.featured-preview-card img{width:100%;height:320px;object-fit:cover;display:block;transition:transform .55s ease,opacity .55s ease;}
.featured-preview-card::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,29,59,0) 35%,rgba(7,29,59,.88));}
.featured-preview-card span,.featured-preview-card small{position:absolute;left:20px;right:20px;z-index:2;color:#fff;}
.featured-preview-card span{bottom:48px;font-family:'Playfair Display',Georgia,serif;font-size:1.55rem;line-height:1.05;}
.featured-preview-card small{bottom:22px;font-family:'Montserrat',Arial,sans-serif;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:#f4d08b;}
.featured-preview-card:hover img{transform:scale(1.06);opacity:.9;}
.featured-preview-actions{text-align:center;margin-top:32px;}
.navy-block .featured-preview-card{box-shadow:0 18px 45px rgba(0,0,0,.25);}

/* Final hero visibility safety */
.hero-image-wrap,.hero-product-panel{display:flex !important;}
.hero-cake{display:block !important;}

@media(max-width:1100px){.featured-preview-grid{grid-template-columns:repeat(3,1fr)}.featured-preview-card,.featured-preview-card img{min-height:300px;height:300px}}
@media(max-width:720px){.featured-preview-grid{grid-template-columns:1fr 1fr;gap:12px}.featured-preview-card,.featured-preview-card img{min-height:240px;height:240px}.featured-preview-card span{font-size:1.15rem;bottom:42px}.featured-preview-card small{font-size:.66rem}}
@media(max-width:460px){.featured-preview-grid{grid-template-columns:1fr}.featured-preview-card,.featured-preview-card img{min-height:280px;height:280px}}


/* ===== V21 HEADER SIMPLIFICATION ===== */
.logo img,.brand img{max-width:150px}.menu{gap:clamp(18px,2.1vw,34px)}.menu>a,.menu .nav-drop-link{font-size:clamp(.72rem,.72vw,.86rem);letter-spacing:.18em;white-space:nowrap}.nav-dropdown-menu{min-width:245px}.quote-btn,.btn-quote,.header-cta,.nav-cta{white-space:nowrap}@media(max-width:1200px){.logo img,.brand img{max-width:135px}.menu{gap:18px}.menu>a,.menu .nav-drop-link{letter-spacing:.14em;font-size:.72rem}}@media(max-width:900px){.logo img,.brand img{max-width:145px}}


/* ===== V24 SERVICE NAV + HORIZONTAL PREVIEW FIX ===== */

/* Cleaner top navigation: Services dropdown + Portfolio dropdown */
.menu{
  gap: clamp(22px, 2.4vw, 42px);
}

.nav-dropdown-menu{
  min-width: 255px;
}

/* Service-page preview photos: 4 horizontal images on desktop */
.featured-preview-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px;
}

/* Show only 4 preview images on each service page */
.featured-preview-grid .featured-preview-card:nth-child(n+5){
  display: none;
}

.featured-preview-card,
.featured-preview-card img{
  min-height: 280px;
  height: 280px;
}

@media(max-width: 900px){
  .featured-preview-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .featured-preview-card,
  .featured-preview-card img{
    min-height: 240px;
    height: 240px;
  }
}

@media(max-width: 520px){
  .featured-preview-grid{
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }
  .featured-preview-card,
  .featured-preview-card img{
    min-height: 210px;
    height: 210px;
  }
}

/* ===========================
   FORM LABELS
   =========================== */
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full-width { grid-column: 1 / -1; }
.form-field label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 16px; border: 1px solid #d8cbb8; background: var(--white); color: var(--ink); font-family: Montserrat, Arial, sans-serif; font-size: 14px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid rgba(196,154,75,.35); border-color: var(--gold); }
.form-field textarea { min-height: 130px; resize: vertical; }

/* ===========================
   TESTIMONIALS WITH NAMES
   =========================== */
.testimonial-item { margin: 0 0 20px; padding: 0 0 20px; border-bottom: 1px solid var(--line); }
.testimonial-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.t-stars { color: var(--gold); font-size: 14px; letter-spacing: .1em; margin-bottom: 8px; }
.testimonial-item blockquote { font-family: 'Playfair Display', Georgia, serif; font-size: 15px; color: var(--navy); font-style: italic; line-height: 1.55; margin: 0 0 8px; }
.testimonial-item figcaption { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.testimonial-item figcaption span { color: var(--gold); font-weight: 500; }

/* ===========================
   SEO BRAND SECTION
   =========================== */
.seo-brand-section { border-top: 1px solid var(--line); }
.seo-brand-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; }
.seo-brand-grid h2 { font-size: clamp(24px, 3vw, 36px); color: var(--navy); margin: 10px 0 16px; }
.seo-brand-grid p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.seo-brand-grid p strong { color: var(--navy); }
.seo-brand-links ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.seo-brand-links li { border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.seo-brand-links a { font-size: 14px; color: var(--navy); font-weight: 600; text-decoration: none; }
.seo-brand-links a:hover { color: var(--gold); }
@media (max-width: 760px) {
  .seo-brand-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===========================
   ACADEMY PAGE
   =========================== */
.academy-hero-section { background: linear-gradient(135deg, #071d3b 0%, #0d2444 60%, #051425 100%); color: #fff; padding: 120px 0 80px; }
.academy-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.academy-hero-grid h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(38px, 5vw, 68px); line-height: 1; margin: 14px 0 20px; color: #fff; }
.academy-hero-grid .eyebrow { color: var(--gold); }
.academy-hero-grid p { color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.academy-hero-img { width: 100%; height: 500px; object-fit: cover; object-position: center top; border: 1px solid rgba(203,160,82,.3); }
.academy-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.academy-product-card { background: #fff; border: 1px solid var(--line); padding: 32px 28px; position: relative; }
.academy-product-card .card-num { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.academy-product-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.academy-product-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.academy-product-card .card-details { list-style: none; padding: 0; margin: 0 0 22px; border-top: 1px solid var(--line); padding-top: 14px; }
.academy-product-card .card-details li { font-size: 13px; color: var(--navy); padding: 5px 0; border-bottom: 1px solid rgba(196,154,75,.2); }
.academy-product-card .card-details li::before { content: "✓ "; color: var(--gold); font-weight: 700; }
.academy-price { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .05em; margin-bottom: 16px; }
.academy-price strong { font-size: 24px; color: var(--gold); }
.bootcamp-highlight { background: var(--navy); color: #fff; }
.bootcamp-highlight h3, .bootcamp-highlight p, .bootcamp-highlight li { color: rgba(255,255,255,.9); }
.bootcamp-highlight h3 { color: #fff; }
.bootcamp-highlight .card-details { border-color: rgba(255,255,255,.15); }
.bootcamp-highlight .card-details li { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.9); }
.bootcamp-highlight .academy-price { color: rgba(255,255,255,.8); }
.bootcamp-highlight .academy-price strong { color: var(--gold); }
.bootcamp-tag { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; padding: 5px 10px; }
.academy-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.academy-who-card { background: var(--cream); border: 1px solid var(--line); padding: 24px 22px; text-align: center; }
.academy-who-card .who-icon { font-size: 28px; margin-bottom: 12px; }
.academy-who-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; font-family: 'Playfair Display', Georgia, serif; }
.academy-who-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.academy-cta-band { background: var(--gold); padding: 56px 0; text-align: center; }
.academy-cta-band h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 3.5vw, 44px); color: var(--navy); margin-bottom: 12px; }
.academy-cta-band p { color: rgba(7,29,59,.8); font-size: 16px; margin-bottom: 28px; }
@media (max-width: 900px) {
  .academy-hero-grid { grid-template-columns: 1fr; }
  .academy-hero-img { height: 320px; }
  .academy-product-grid { grid-template-columns: 1fr; }
  .academy-who-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .academy-who-grid { grid-template-columns: 1fr; }
}

/* ================================================
   UPGRADE 1: SCROLL SECTION THEMING
   ================================================ */
body {
  --scroll-bg: #fffdf9;
  --scroll-text: #1d2430;
  transition: background-color .7s ease;
}
main { background: transparent; }
[data-section-theme="dark"] {
  background: #071d3b !important;
  color: #fff;
}
[data-section-theme="dark"] h2,
[data-section-theme="dark"] h3,
[data-section-theme="dark"] strong { color: #fff; }
[data-section-theme="dark"] p,
[data-section-theme="dark"] span { color: rgba(255,255,255,.78); }
[data-section-theme="dark"] .eyebrow { color: var(--gold); }
[data-section-theme="dark"] .trusted-logos div { border-color: rgba(203,160,82,.3); color: #fff; }
[data-section-theme="dark"] .stats-grid div strong { color: var(--gold); }
[data-section-theme="dark"] .stats-grid div span { color: rgba(255,255,255,.7); }

/* ================================================
   UPGRADE 2: MULTI-STEP INQUIRY WIZARD
   ================================================ */
.wizard-section { background: var(--ivory); }
.wizard-outer { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start; }
.wizard-intro h2 { font-size: clamp(28px,3.2vw,42px); color: var(--navy); margin: 10px 0 16px; }
.wizard-intro .lead-left { color: var(--muted); margin-bottom: 20px; }
.wizard-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.wizard-trust span { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.wizard-card { background: var(--white); border: 1px solid var(--line); padding: 32px 36px; }

/* Progress */
.wizard-progress { margin-bottom: 28px; }
.wizard-progress-track { height: 3px; background: var(--line); border-radius: 2px; margin-bottom: 12px; }
.wizard-progress-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width .4s ease; }
.wizard-steps-labels { display: flex; justify-content: space-between; gap: 4px; overflow: hidden; }
.ws-label { font-size: 9px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); transition: color .3s; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 20%; }
.ws-label.active { color: var(--gold); max-width: none; }

/* Steps */
.wizard-step { display: none !important; }
.wizard-step.active { display: block !important; }
.step-title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.step-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.wizard-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.wizard-nav .btn { min-width: 120px; }

/* Occasion grid */
.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 4px; }
.occasion-card { cursor: pointer; }
.occasion-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.oc-inner { border: 2px solid var(--line); overflow: hidden; transition: border-color .2s, transform .2s; }
.oc-inner:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.occasion-card input:checked ~ .oc-inner { border-color: var(--gold); }
.oc-img { height: 100px; background-size: cover; background-position: center; filter: brightness(.85); }
.oc-label { padding: 12px 12px 14px; background: var(--white); }
.oc-label strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; letter-spacing: .04em; margin-bottom: 3px; }
.oc-label span { font-size: 11px; color: var(--muted); line-height: 1.4; }
.occasion-card input:checked ~ .oc-inner .oc-label { background: rgba(196,154,75,.06); }

/* Scale grid */
.scale-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.scale-card { cursor: pointer; }
.scale-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.scale-card span { display: block; text-align: center; border: 2px solid var(--line); padding: 16px 8px 8px; font-size: 20px; font-weight: 700; color: var(--navy); transition: border-color .2s, background .2s; }
.scale-card small { display: block; font-size: 11px; color: var(--muted); text-align: center; margin-top: 4px; letter-spacing: .04em; }
.scale-card input:checked ~ span { border-color: var(--gold); background: rgba(196,154,75,.06); color: var(--gold); }
.scale-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Details grid */
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.details-grid .full-width { grid-column: 1 / -1; }

/* Drop zone */
.drop-zone { border: 2px dashed var(--line); background: var(--cream); text-align: center; padding: 32px 20px; transition: border-color .2s, background .2s; cursor: pointer; margin-bottom: 12px; }
.drop-zone.drag-over { border-color: var(--gold); background: rgba(196,154,75,.06); }
.drop-icon { font-size: 32px; margin-bottom: 10px; }
.drop-zone p { margin: 0 0 6px; font-size: 14px; color: var(--navy); }
.drop-sub { font-size: 13px !important; color: var(--muted) !important; }
.drop-browse { background: none; border: none; color: var(--gold); font-weight: 700; cursor: pointer; font-size: 13px; text-decoration: underline; font-family: inherit; }
.drop-hint { font-size: 11px !important; color: var(--muted) !important; margin-top: 8px !important; }
.drop-preview { position: relative; }
.drop-preview img { max-height: 200px; max-width: 100%; object-fit: contain; border: 1px solid var(--line); }
.drop-remove { display: block; margin: 8px auto 0; background: none; border: 1px solid #e34948; color: #e34948; padding: 6px 14px; font-size: 12px; cursor: pointer; font-family: inherit; }
.skip-note { font-size: 13px; color: var(--muted); text-align: center; }
.skip-link { background: none; border: none; color: var(--gold); font-weight: 700; cursor: pointer; font-family: inherit; font-size: 13px; text-decoration: underline; }

/* Review card */
.review-card { background: var(--cream); border: 1px solid var(--line); padding: 20px 24px; }
.review-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.review-row:last-child { border-bottom: none; }
.review-row .rk { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.review-row .rv { color: var(--navy); font-weight: 600; }
.review-has-img { display: flex; align-items: center; gap: 10px; padding: 10px 0; }
.review-thumb { width: 60px; height: 60px; object-fit: cover; border: 1px solid var(--line); }

/* Success */
.form-success { text-align: center; padding: 40px 24px; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: #1baf7a; color: #fff; font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

/* ================================================
   UPGRADE 3: ACADEMY MASTERCLASS MATRIX
   ================================================ */
.masterclass-matrix { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); }
.mc-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; align-items: center; gap: 0; border-bottom: 1px solid var(--line); transition: background .2s; }
.mc-row:last-child { border-bottom: none; }
.mc-row:hover { background: rgba(196,154,75,.04); }
.mc-row.mc-header { background: var(--navy); color: #fff; }
.mc-cell { padding: 14px 18px; font-size: 13px; }
.mc-header .mc-cell { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); font-weight: 700; }
.mc-title { color: var(--navy); font-weight: 700; font-size: 14px; display: block; margin-bottom: 3px; }
.mc-type { font-size: 11px; color: var(--muted); }
.mc-date { color: var(--navy); font-weight: 500; }
.mc-seats { display: inline-block; padding: 4px 10px; border-radius: 99px; font-size: 11px; font-weight: 700; }
.seats-low { background: #fcebeb; color: #a32d2d; }
.seats-ok { background: #e1f5ee; color: #0f6e56; }
.seats-full { background: #f0efec; color: #888; }
.mc-price { color: var(--navy); font-weight: 700; }
.mc-action .btn { font-size: 10px; padding: 9px 14px; white-space: nowrap; }
.mc-full-tag { font-size: 10px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.academy-matrix-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 16px; }

/* ================================================
   UPGRADE 4: LOOKBOOK LAYOUT (portfolio sculpted)
   ================================================ */
.lookbook-section { background: #07111e; }
.lookbook-section .portfolio-page-heading { padding-bottom: 28px; }
.lookbook-section .portfolio-page-heading h2,
.lookbook-section .portfolio-page-heading p { color: rgba(255,255,255,.9); }
.lookbook-grid { display: flex; flex-direction: column; gap: 0; }
.lookbook-entry { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 520px; border-bottom: 1px solid rgba(255,255,255,.08); }
.lookbook-entry:nth-child(even) { direction: rtl; }
.lookbook-entry:nth-child(even) > * { direction: ltr; }
.lookbook-photo { position: relative; overflow: hidden; }
.lookbook-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; display: block; transition: transform .6s ease; }
.lookbook-entry:hover .lookbook-photo img { transform: scale(1.03); }
.lookbook-spec { background: #0d1e30; padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.lookbook-num { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: rgba(196,154,75,.6); margin-bottom: 18px; }
.lookbook-spec h3 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(24px, 2.5vw, 34px); color: #fff; margin-bottom: 20px; line-height: 1.1; }
.spec-table { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.spec-row { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.spec-row:last-child { border-bottom: none; }
.spec-key { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); font-weight: 700; }
.spec-val { font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.5; }
.lookbook-cta { display: inline-block; border: 1px solid rgba(196,154,75,.5); color: var(--gold); padding: 12px 22px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; text-decoration: none; transition: .2s; align-self: flex-start; }
.lookbook-cta:hover { background: var(--gold); color: var(--navy); }
.lookbook-more { display: grid; grid-template-columns: repeat(4, 1fr); }
.lookbook-more-item { aspect-ratio: 1; overflow: hidden; }
.lookbook-more-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); transition: .4s; }
.lookbook-more-item:hover img { filter: brightness(.9); transform: scale(1.04); }
@media (max-width: 900px) {
  .lookbook-entry { grid-template-columns: 1fr; min-height: auto; }
  .lookbook-entry:nth-child(even) { direction: ltr; }
  .lookbook-photo img { min-height: 320px; }
  .lookbook-spec { padding: 32px 24px; }
  .lookbook-more { grid-template-columns: repeat(2, 1fr); }
  .wizard-outer { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .scale-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: 1fr; }
  .mc-row { grid-template-columns: 1fr 1fr; }
  .mc-row.mc-header { display: none; }
  .mc-cell { padding: 10px 14px; }
}
@media (max-width: 600px) {
  .wizard-card { padding: 22px 18px; }
  .occasion-grid { grid-template-columns: 1fr 1fr; }
  .scale-fields { grid-template-columns: 1fr; }
}

/* V24 Academy refinements */
.v24-featured-courses .academy-product-card { min-height: 100%; }
.flower-highlight { background: linear-gradient(135deg, var(--navy), #102943); }
.academy-price span { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; color: inherit; opacity: .9; }
.student-success-section .academy-who-card { background: #fff; }
@media (max-width: 800px) {
  .academy-product-grid { grid-template-columns: 1fr; }
  .bootcamp-tag { position: static; display: inline-block; margin-bottom: 16px; }
}


/* ================================================
   PRICING ANCHOR BADGE
   ================================================ */
.pricing-anchor {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 10px;
  background: rgba(196,154,75,.1); border: 1px solid rgba(196,154,75,.35);
  padding: 12px 18px; margin-bottom: 22px;
}
.pa-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em;
  color: var(--gold); font-weight: 700;
}
.pa-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; color: var(--navy);
}
.pa-note {
  font-size: 12px; color: var(--muted); width: 100%;
  margin-top: 2px; letter-spacing: .02em;
}
.service-hero .pricing-anchor .pa-price { color: #fff; }
.service-hero .pricing-anchor .pa-label { color: var(--gold); }
.service-hero .pricing-anchor .pa-note { color: rgba(255,255,255,.65); }
.service-hero .pricing-anchor { background: rgba(196,154,75,.12); border-color: rgba(196,154,75,.4); }


/* ================================================
   CLIENT LOGO CAROUSEL
   ================================================ */
.client-carousel-section {
  background: #071d3b;
  padding: 64px 0 48px;
  overflow: hidden;
}
.carousel-heading {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 40px;
}
.carousel-heading h2 {
  font-size: clamp(20px, 2.8vw, 32px);
  color: #fff;
  margin: 10px 0 0;
  font-family: 'Playfair Display', Georgia, serif;
}
.carousel-track-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
  animation: logo-scroll 55s linear infinite;
}
.carousel-track:hover {
  animation-play-state: paused;
}
@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 36px;
  min-width: 160px;
  max-width: 160px;
  flex: 0 0 160px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
  cursor: default;
}
.carousel-tile:hover {
  background: rgba(255,255,255,.04);
}
.carousel-tile img {
  max-width: 110px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity .3s, transform .3s;
}
.carousel-tile:hover img {
  opacity: 1;
  transform: scale(1.08);
}
.carousel-tile span {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
  transition: color .2s;
}
.carousel-tile:hover span {
  color: rgba(255,255,255,.8);
}
.carousel-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  font-style: italic;
  letter-spacing: .04em;
  padding: 0 24px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
  .carousel-track-outer { overflow-x: auto; }
}

@media (max-width: 600px) {
  .carousel-tile { 
    padding: 14px 18px; 
    min-width: 130px; 
    max-width: 130px;
    flex: 0 0 130px;
  }
  .carousel-tile img { max-width: 90px; max-height: 50px; }
  .carousel-tile span { font-size: 9px; }
  .wizard-card { padding: 18px 14px; }
  .occasion-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .oc-img { height: 70px; }
  .oc-label { padding: 8px 8px 10px; }
  .oc-label strong { font-size: 11px; }
  .oc-label span { font-size: 10px; }
  .scale-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .scale-card span { font-size: 16px; padding: 12px 6px 6px; }
  .scale-fields { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .wizard-nav { flex-direction: column-reverse; gap: 8px; }
  .wizard-nav .btn { min-width: 100%; text-align: center; }
  .step-title { font-size: 18px; }
  .wizard-outer { gap: 28px; }
  .wizard-progress { margin-bottom: 20px; }
}

/* ================================================
   MOBILE FIXES — scale card inner wrapper
   ================================================ */
.scale-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scale-card input:checked ~ .scale-card-inner span {
  border-color: var(--gold);
  background: rgba(196,154,75,.06);
  color: var(--gold);
}
.scale-card-inner span {
  display: block;
  text-align: center;
  border: 2px solid var(--line);
  padding: 16px 8px 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.scale-card-inner small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ================================================
   MOBILE: WIZARD FULL OVERHAUL
   ================================================ */
@media (max-width: 480px) {
  /* Wizard layout */
  .wizard-outer { grid-template-columns: 1fr !important; gap: 20px; }
  .wizard-card { padding: 16px 14px !important; }
  .wizard-intro { display: none; } /* move trust info into card on smallest screens */

  /* Progress labels — show dots not text */
  .wizard-steps-labels { display: none; }
  .wizard-progress-track { margin-bottom: 6px; }

  /* Steps */
  .wizard-step { display: none !important; }
  .wizard-step.active { display: block !important; }
  .step-title { font-size: 17px !important; margin-bottom: 4px; }
  .step-sub { font-size: 13px !important; margin-bottom: 16px; }

  /* Occasion grid — 2 cols */
  .occasion-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .oc-img { height: 65px !important; }
  .oc-label { padding: 8px !important; }
  .oc-label strong { font-size: 12px !important; }
  .oc-label span { font-size: 10px !important; line-height: 1.3; }

  /* Scale grid — 2 cols */
  .scale-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .scale-card-inner span { font-size: 16px !important; padding: 12px 4px 6px !important; }
  .scale-card-inner small { font-size: 10px !important; }

  /* Fields */
  .scale-fields { grid-template-columns: 1fr !important; gap: 10px; }
  .details-grid { grid-template-columns: 1fr !important; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px !important; } /* prevent iOS zoom */

  /* Nav buttons */
  .wizard-nav { flex-direction: column-reverse !important; gap: 8px; }
  .wizard-nav .btn { width: 100% !important; min-width: unset !important; text-align: center; }

  /* Drop zone */
  .drop-zone { padding: 20px 12px; }

  /* Review card */
  .review-row { flex-direction: column; gap: 2px; }
  .review-row .rv { font-size: 13px; }
}

/* ================================================
   MOBILE: CAROUSEL HARD FIX
   ================================================ */
@media (max-width: 480px) {
  .carousel-tile {
    min-width: 120px !important;
    max-width: 120px !important;
    flex: 0 0 120px !important;
    padding: 12px 14px !important;
  }
  .carousel-tile img {
    max-width: 80px !important;
    max-height: 44px !important;
  }
  .carousel-tile span { font-size: 8px !important; }
  .carousel-heading h2 { font-size: 18px; }
}


/* V29 Phase 1 — Dessert Experiences Overhaul */
.dessert-luxury-page .section { overflow: hidden; }
.dessert-v29-hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  background:linear-gradient(90deg, rgba(7,29,59,.86), rgba(7,29,59,.42)), url('/assets/luxury-dessert-table-jamaica-night.jpg') center/cover no-repeat;
  color:#fff;
}
.dessert-v29-hero .eyebrow{color:#f6d98a;}
.dessert-hero-content{position:relative; z-index:2; max-width:850px;}
.dessert-hero-content h1{font-size:clamp(3rem, 7vw, 6.8rem); line-height:.92; margin:.25rem 0 1rem;}
.dessert-hero-content p{font-size:clamp(1.05rem, 2vw, 1.45rem); max-width:680px; color:rgba(255,255,255,.92);}
.dessert-v29-split{display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:clamp(2rem,5vw,5rem); align-items:center;}
.dessert-v29-split.reverse .dessert-v29-media-card{order:1;}
.dessert-v29-split.reverse .dessert-v29-copy{order:2;}
.dessert-v29-copy h2{font-size:clamp(2rem,4vw,4rem); line-height:1.02; margin:.4rem 0 1rem;}
.dessert-v29-copy p{font-size:1.02rem; line-height:1.8;}
.dessert-v29-image-stack{display:grid; grid-template-columns:1fr 1fr; gap:1rem; align-items:stretch;}
.dessert-v29-image-stack img, .dessert-v29-media-card img{
  width:100%; height:100%; min-height:460px; object-fit:cover; border-radius:28px; box-shadow:0 24px 65px rgba(7,29,59,.18);
}
.dessert-v29-image-stack img:nth-child(2){margin-top:3rem;}
.luxury-check-list{list-style:none; padding:0; margin:1.4rem 0 2rem; display:grid; gap:.65rem;}
.luxury-check-list li{position:relative; padding-left:1.7rem;}
.luxury-check-list li:before{content:"✔"; position:absolute; left:0; color:#b99045; font-weight:800;}
.pill-badge{display:inline-flex; align-items:center; width:max-content; border-radius:999px; padding:.5rem .85rem; background:#071d3b; color:#f6d98a; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; font-weight:800;}
.feature-chip-grid{display:flex; flex-wrap:wrap; gap:.65rem; margin:1.4rem 0 2rem;}
.feature-chip-grid span{border:1px solid rgba(7,29,59,.16); background:#fff; padding:.65rem .85rem; border-radius:999px; font-weight:700; color:#071d3b; box-shadow:0 10px 30px rgba(7,29,59,.06);}
.dessert-card-grid{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.2rem;}
.dessert-signature-card{background:#fff; border-radius:26px; overflow:hidden; box-shadow:0 18px 50px rgba(7,29,59,.08); border:1px solid rgba(7,29,59,.08);}
.dessert-signature-card img{width:100%; height:260px; object-fit:cover; display:block;}
.dessert-signature-card div{padding:1.25rem;}
.dessert-signature-card h3{margin:0 0 .45rem; color:#071d3b;}
.dessert-signature-card p{margin:0; line-height:1.65;}
.occasion-grid-v29{display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:1rem;}
.occasion-grid-v29 div{background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); border-radius:22px; padding:1.3rem 1rem; text-align:center; color:#fff;}
.five-package-grid{grid-template-columns:repeat(5,minmax(0,1fr));}
.dessert-tabs-row{display:flex; flex-wrap:wrap; gap:.7rem; margin-bottom:1.2rem;}
.dessert-tabs-row a{border:1px solid rgba(7,29,59,.15); border-radius:999px; padding:.65rem .95rem; color:#071d3b; font-weight:800; text-decoration:none; background:#fff;}
.dessert-scroll-gallery{display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1rem;}
.dessert-scroll-gallery img{width:100%; height:310px; object-fit:cover; border-radius:22px; box-shadow:0 14px 40px rgba(7,29,59,.12);}
.centered-actions{justify-content:center;}
.mobile-dessert-cta{display:none;}

@media (max-width: 1100px){
  .five-package-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .occasion-grid-v29{grid-template-columns:repeat(3,minmax(0,1fr));}
  .dessert-card-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 760px){
  .dessert-v29-hero{min-height:74vh; align-items:flex-end; padding:8rem 0 4.5rem; background-position:center;}
  .dessert-hero-content h1{font-size:3.45rem;}
  .dessert-hero-content p{font-size:1.05rem;}
  .dessert-v29-split,.dessert-v29-split.reverse{grid-template-columns:1fr; gap:2rem;}
  .dessert-v29-split.reverse .dessert-v29-media-card,.dessert-v29-split.reverse .dessert-v29-copy{order:initial;}
  .dessert-v29-image-stack{display:flex; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:.8rem; margin-right:-1.25rem;}
  .dessert-v29-image-stack img,.dessert-v29-media-card img{min-height:360px; border-radius:24px;}
  .dessert-v29-image-stack img{min-width:82%; scroll-snap-align:start; margin-top:0!important;}
  .dessert-card-grid{display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:1rem; padding-bottom:1rem; margin-right:-1.25rem;}
  .dessert-signature-card{min-width:84%; scroll-snap-align:start;}
  .dessert-signature-card img{height:260px;}
  .occasion-grid-v29{grid-template-columns:repeat(2,minmax(0,1fr));}
  .five-package-grid{display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:1rem; padding-bottom:1rem; margin-right:-1.25rem;}
  .five-package-grid .package-card{min-width:82%; scroll-snap-align:start;}
  .dessert-tabs-row{flex-wrap:nowrap; overflow-x:auto; padding-bottom:.5rem; margin-right:-1.25rem;}
  .dessert-tabs-row a{white-space:nowrap;}
  .dessert-scroll-gallery{display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:1rem; padding-bottom:1rem; margin-right:-1.25rem;}
  .dessert-scroll-gallery img{min-width:86%; height:420px; scroll-snap-align:start;}
  .service-actions{gap:.75rem;}
  .service-actions .btn{width:100%; justify-content:center;}
  body{padding-bottom:76px;}
  .mobile-dessert-cta{position:fixed; z-index:9999; left:0; right:0; bottom:0; display:grid; grid-template-columns:repeat(3,1fr); background:#071d3b; box-shadow:0 -16px 40px rgba(0,0,0,.2);}
  .mobile-dessert-cta a{color:#fff; text-decoration:none; text-align:center; padding:.85rem .25rem; font-size:.82rem; font-weight:800; border-right:1px solid rgba(255,255,255,.12);}
  .mobile-dessert-cta a:nth-child(2){background:#b99045;}
}

/* V29B polish — align Dessert Experiences with Sweet Mischief site */
.dessert-luxury-page .navy-block{background:#071d3b;color:#fff;}
.dessert-luxury-page .navy-block h2,.dessert-luxury-page .navy-block .eyebrow{color:#fff;}
.dessert-luxury-page .navy-block .eyebrow{color:#f6d98a;}
.dessert-luxury-page .occasion-grid-v29 span{display:block;margin-top:.45rem;font-weight:800;}
.dessert-luxury-page .final-service-cta{background:linear-gradient(135deg,#071d3b,#0d2b55);color:#fff;text-align:center;}
.dessert-luxury-page .final-service-cta h2,.dessert-luxury-page .final-service-cta p{color:#fff;}
.dessert-luxury-page .final-service-cta .eyebrow{color:#f6d98a;}
@media (max-width:760px){.dessert-luxury-page .section{padding-top:70px;padding-bottom:70px}.dessert-luxury-page .section-heading{padding-top:0}.dessert-luxury-page h2{font-size:2.15rem}.dessert-v29-copy h2{font-size:2.35rem}.whatsapp-fab{bottom:86px}}


/* ===========================
   V29 FULL — Dessert Experiences Production Fix
   =========================== */
.dessert-v29-production .section{position:relative; overflow:hidden;}
.dessert-v29-hero{
  min-height:78vh; display:flex; align-items:center; color:#fff; position:relative;
  background-image:linear-gradient(90deg,rgba(7,29,59,.96),rgba(7,29,59,.64),rgba(7,29,59,.18)),url('/assets/luxury-dessert-table-jamaica-night.jpg');
  background-size:cover; background-position:center; padding:120px 0 90px;
}
.dessert-v29-hero::after{content:""; position:absolute; inset:0; background:radial-gradient(circle at 70% 20%,rgba(196,154,75,.22),transparent 38%); pointer-events:none;}
.dessert-hero-content{position:relative; z-index:1; max-width:820px; margin-left:0;}
.dessert-v29-hero h1{font-size:clamp(52px,7vw,108px); line-height:.92; margin:0 0 18px; color:#fff;}
.dessert-v29-hero p{font-size:clamp(17px,2vw,24px); line-height:1.65; max-width:760px; color:rgba(255,255,255,.92);}
.dessert-v29-split{display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,76px); align-items:center;}
.dessert-v29-split.reverse .dessert-v29-media-card{order:1}.dessert-v29-split.reverse .dessert-v29-copy{order:2}
.dessert-v29-copy h2{font-size:clamp(36px,4vw,64px); line-height:1.02; margin:8px 0 18px; color:var(--navy);}
.dessert-v29-copy p{font-size:16px; line-height:1.85; color:var(--muted);}
.dessert-v29-image-stack{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.dessert-v29-image-stack img,.dessert-v29-media-card>img{width:100%; min-height:520px; object-fit:cover; border-radius:30px; box-shadow:0 28px 80px rgba(7,29,59,.16);}
.dessert-v29-image-stack img:nth-child(2){margin-top:58px;}
.luxury-check-list{list-style:none; padding:0; margin:22px 0 26px; display:grid; gap:12px;}
.luxury-check-list li{position:relative; padding-left:28px; color:var(--navy); font-weight:600;}
.luxury-check-list li::before{content:"✓"; position:absolute; left:0; color:var(--gold); font-weight:800;}
.pill-badge{display:inline-flex; align-items:center; width:max-content; border:1px solid rgba(196,154,75,.45); background:#fff7e6; color:var(--navy); padding:8px 14px; border-radius:999px; font-size:11px; letter-spacing:.16em; text-transform:uppercase; font-weight:800; margin-bottom:14px;}
.pink-badge{background:#fff0f6; border-color:rgba(232,78,138,.3); color:var(--pink);}
.feature-chip-grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin:24px 0 28px;}
.feature-chip-grid span{border:1px solid rgba(196,154,75,.28); background:#fff; border-radius:999px; padding:12px 16px; color:var(--navy); font-weight:700; font-size:13px; box-shadow:0 10px 30px rgba(7,29,59,.06);}
.cart-collage .mini-collage-row{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:14px;}
.cart-collage .mini-collage-row img{height:180px; width:100%; object-fit:cover; border-radius:20px; box-shadow:0 20px 48px rgba(7,29,59,.12);}
.blush-block{background:linear-gradient(135deg,#fff8fb 0%,#fffdf9 50%,#fbf7ef 100%); border-top:1px solid rgba(232,78,138,.08); border-bottom:1px solid rgba(232,78,138,.08);}
.kids-cart-feature{display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px,4vw,56px); align-items:center;}
.kids-cart-gallery-card{background:#fff; border:1px solid rgba(232,78,138,.14); padding:12px; border-radius:30px; box-shadow:0 30px 90px rgba(232,78,138,.13);}
.kids-cart-gallery-card img{width:100%; border-radius:22px; object-fit:cover;}
.kids-cart-copy h3{font-family:'Playfair Display',Georgia,serif; font-size:clamp(32px,3.4vw,54px); line-height:1.05; color:var(--navy); margin:8px 0 16px;}
.kids-cart-copy p{color:var(--muted); line-height:1.85;}
.kids-addons-grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; margin:24px 0 26px;}
.kids-addons-grid div{background:#fff; border:1px solid rgba(232,78,138,.12); border-radius:18px; padding:16px; box-shadow:0 15px 42px rgba(7,29,59,.05);}
.kids-addons-grid strong{display:block; color:var(--navy); font-size:14px; margin-bottom:4px;}.kids-addons-grid span{display:block; color:var(--muted); font-size:12px; line-height:1.55;}
.dessert-card-grid{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px;}
.dessert-signature-card{background:#fff; border:1px solid rgba(196,154,75,.18); border-radius:26px; overflow:hidden; box-shadow:0 22px 66px rgba(7,29,59,.08);}
.dessert-signature-card img{height:260px; width:100%; object-fit:cover;}.dessert-signature-card div{padding:22px;}.dessert-signature-card h3{margin:0 0 8px; color:var(--navy); font-size:26px;}.dessert-signature-card p{margin:0; color:var(--muted); font-size:14px; line-height:1.7;}
.navy-block{background:var(--navy); color:#fff;}.navy-block h2{color:#fff}.navy-block .eyebrow{color:var(--gold-light)}
.occasion-grid-v29{display:grid; grid-template-columns:repeat(6,1fr); gap:14px;}
.occasion-grid-v29 div{background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:20px; padding:24px 12px; text-align:center; color:#fff;}.occasion-grid-v29 strong{display:block; font-size:30px; margin-bottom:8px;}.occasion-grid-v29 span{font-size:12px; text-transform:uppercase; letter-spacing:.12em; font-weight:800;}
.five-package-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:18px;}.premium-packages .package-card{background:#fff; border:1px solid rgba(196,154,75,.18); border-radius:24px; padding:26px; box-shadow:0 18px 55px rgba(7,29,59,.07);}.premium-packages .featured-package{border-color:var(--gold); transform:translateY(-8px); box-shadow:0 28px 80px rgba(196,154,75,.18);}.package-kicker{font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); font-weight:800;}.premium-packages h3{margin:8px 0 10px; color:var(--navy); font-size:28px}.premium-packages p,.premium-packages li{color:var(--muted); font-size:13px;}.premium-packages ul{padding-left:18px;}
.dessert-tabs-row{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px;}.dessert-tabs-row a{border:1px solid rgba(196,154,75,.28); border-radius:999px; padding:10px 15px; background:#fff; color:var(--navy); font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;}
.dessert-scroll-gallery{display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:14px; -webkit-overflow-scrolling:touch;}.dessert-scroll-gallery img{min-width:min(420px,78vw); height:360px; object-fit:cover; border-radius:24px; scroll-snap-align:start; box-shadow:0 22px 58px rgba(7,29,59,.1);}.kids-scroll-gallery{margin-top:30px;}
.faq-grid-v29{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}.faq-grid-v29 article{background:#fff; border:1px solid rgba(196,154,75,.16); border-radius:22px; padding:24px; box-shadow:0 18px 50px rgba(7,29,59,.06);}.faq-grid-v29 h3{color:var(--navy); margin:0 0 10px; font-size:24px}.faq-grid-v29 p{margin:0; color:var(--muted); line-height:1.75;}
.final-service-cta{background:linear-gradient(135deg,var(--navy),#0f2e58); color:#fff;}.final-service-cta h2,.final-service-cta p{color:#fff}.final-service-cta .btn-ghost.dark{border-color:rgba(255,255,255,.55); color:#fff;}
.mobile-dessert-cta{display:none;}
@media(max-width:980px){.dessert-v29-split,.dessert-v29-split.reverse,.kids-cart-feature{grid-template-columns:1fr;}.dessert-v29-split.reverse .dessert-v29-media-card,.dessert-v29-split.reverse .dessert-v29-copy{order:initial}.dessert-card-grid{grid-template-columns:1fr 1fr}.five-package-grid{grid-template-columns:1fr 1fr}.occasion-grid-v29{grid-template-columns:repeat(3,1fr)}.faq-grid-v29{grid-template-columns:1fr}.dessert-v29-image-stack{display:flex; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:12px; margin-right:-28px}.dessert-v29-image-stack img{min-width:80%; scroll-snap-align:start; margin-top:0!important}.feature-chip-grid,.kids-addons-grid{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.dessert-v29-hero{min-height:76vh; padding:100px 0 76px; background-position:center}.dessert-v29-hero h1{font-size:54px}.dessert-v29-hero p{font-size:16px}.hero-actions{display:grid; gap:12px}.dessert-v29-copy h2,.kids-cart-copy h3{font-size:36px}.dessert-v29-image-stack img,.dessert-v29-media-card>img{min-height:340px}.cart-collage .mini-collage-row{grid-template-columns:1fr}.cart-collage .mini-collage-row img{height:220px}.dessert-card-grid,.five-package-grid,.occasion-grid-v29,.feature-chip-grid,.kids-addons-grid{grid-template-columns:1fr}.premium-packages .featured-package{transform:none}.dessert-signature-card img{height:230px}.dessert-scroll-gallery img{min-width:84vw;height:330px}.mobile-dessert-cta{position:fixed; left:10px; right:10px; bottom:10px; z-index:70; display:grid; grid-template-columns:1fr 1fr 1fr; gap:8px; background:rgba(255,253,249,.94); border:1px solid rgba(196,154,75,.22); border-radius:18px; padding:8px; box-shadow:0 18px 50px rgba(7,29,59,.22); backdrop-filter:blur(10px)}.mobile-dessert-cta a{display:flex; align-items:center; justify-content:center; min-height:46px; border-radius:12px; font-size:10px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; background:var(--navy); color:#fff}.mobile-dessert-cta a:first-child{background:#25D366;color:#fff}.mobile-dessert-cta a:last-child{background:var(--pink);color:#fff}body{padding-bottom:70px}.whatsapp-fab{display:none!important}}


/* ===========================
   V29 Phase 4 — Dessert Experience Planner™
   =========================== */
.planner-page{background:#fffdf9;color:var(--navy);}
.planner-hero{position:relative;padding:130px 0 80px;background:linear-gradient(135deg,#fff8fb 0%,#fffdf9 42%,#f8efe4 100%);overflow:hidden;}
.planner-hero:before{content:"";position:absolute;right:-12vw;top:-16vw;width:44vw;height:44vw;border-radius:50%;background:rgba(232,78,138,.08);}
.planner-hero-grid{display:grid;grid-template-columns:1fr .9fr;gap:clamp(32px,5vw,78px);align-items:center;position:relative;z-index:1;}
.planner-hero-copy h1{font-size:clamp(48px,6vw,92px);line-height:.94;margin:10px 0 18px;color:var(--navy);}
.planner-hero-copy p{font-size:clamp(17px,2vw,23px);line-height:1.7;color:var(--muted);max-width:700px;}
.planner-hero-card{background:#fff;border:1px solid rgba(196,154,75,.18);border-radius:34px;padding:14px;box-shadow:0 28px 90px rgba(7,29,59,.14);}
.planner-hero-card>img{width:100%;height:460px;object-fit:cover;border-radius:26px;display:block;}
.planner-hero-mini{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px;}
.planner-hero-mini img{width:100%;height:170px;object-fit:cover;border-radius:18px;display:block;}
.planner-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);gap:clamp(24px,4vw,56px);align-items:start;}
.planner-card,.planner-summary-card{background:#fff;border:1px solid rgba(196,154,75,.18);border-radius:30px;box-shadow:0 24px 80px rgba(7,29,59,.08);}
.planner-card{padding:clamp(20px,3vw,42px);}
.planner-summary-card{padding:30px;position:sticky;top:110px;}
.planner-progress{margin-bottom:30px;}
.planner-progress span{display:block;font-weight:800;letter-spacing:.14em;text-transform:uppercase;font-size:11px;color:var(--gold);margin-bottom:10px;}
.planner-progress div{height:8px;background:#f1e8dc;border-radius:999px;overflow:hidden;}
.planner-progress i{display:block;height:100%;width:20%;background:linear-gradient(90deg,var(--gold),var(--pink));border-radius:999px;transition:width .3s ease;}
.planner-step{display:none;}
.planner-step.active{display:block;animation:plannerFade .25s ease;}
@keyframes plannerFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.planner-step h2{font-size:clamp(32px,4vw,54px);line-height:1.05;margin:6px 0 10px;color:var(--navy);}
.planner-step>p{color:var(--muted);line-height:1.75;margin:0 0 24px;}
.planner-choice-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.planner-choice-grid label,.planner-enhancement-grid label,.planner-dessert-groups label{cursor:pointer;}
.planner-choice-grid input,.planner-enhancement-grid input,.planner-dessert-groups input{position:absolute;opacity:0;pointer-events:none;}
.planner-choice-grid span{display:block;height:100%;background:#fff;border:1px solid rgba(7,29,59,.12);border-radius:22px;padding:20px;box-shadow:0 12px 40px rgba(7,29,59,.05);transition:.2s ease;}
.planner-choice-grid span>span{display:inline;background:transparent;border:none;padding:0;box-shadow:none;}
.planner-choice-grid strong{display:block;font-size:18px;color:var(--navy);margin:8px 0 6px;}
.planner-choice-grid small{display:block;color:var(--muted);line-height:1.55;}
.planner-choice-grid input:checked+span,.planner-enhancement-grid input:checked+span,.planner-dessert-groups input:checked+span{border-color:var(--gold);background:#fff8ed;box-shadow:0 16px 45px rgba(196,154,75,.14);}
.guest-choice-grid strong{font-size:34px;}
.planner-dessert-groups{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.planner-dessert-groups>div{background:#fff;border:1px solid rgba(7,29,59,.1);border-radius:22px;padding:20px;box-shadow:0 14px 40px rgba(7,29,59,.04);}
.planner-dessert-groups h3{margin:0 0 12px;color:var(--navy);font-size:20px;}
.planner-dessert-groups label,.planner-enhancement-grid label{display:block;margin:8px 0;}
.planner-dessert-groups label span,.planner-enhancement-grid label span{display:block;}
.planner-dessert-groups label,.planner-enhancement-grid label{position:relative;border:1px solid rgba(7,29,59,.1);border-radius:16px;padding:13px 14px;background:#fff;color:var(--navy);font-weight:700;transition:.2s ease;}
.planner-dessert-groups label:has(input:checked),.planner-enhancement-grid label:has(input:checked){border-color:var(--pink);background:#fff5f9;color:var(--navy);}
.planner-enhancement-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-bottom:24px;}
.planner-mini-fields{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:20px;}
.planner-mini-fields .full-width{grid-column:1/-1;}
.planner-actions{display:flex;justify-content:space-between;gap:12px;margin-top:32px;border-top:1px solid rgba(7,29,59,.08);padding-top:24px;}
.planner-status{margin:16px 0 0;color:var(--navy);font-weight:700;}
.summary-list{border-top:1px solid rgba(7,29,59,.08);padding:16px 0;display:grid;gap:5px;}
.summary-list strong{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);}
.summary-list span{color:var(--navy);line-height:1.55;}
.planner-summary-card h2{font-size:34px;line-height:1.05;margin:8px 0 12px;color:var(--navy);}
.planner-summary-card p{color:var(--muted);line-height:1.7;}
.planner-investment-guide{background:#fff8ed;border:1px solid rgba(196,154,75,.2);border-radius:22px;padding:20px;margin-top:18px;}
.planner-investment-guide h3{margin:0 0 8px;color:var(--navy);}
.planner-investment-guide ul{padding-left:18px;color:var(--muted);font-size:13px;line-height:1.7;}
.planner-next-steps .section-lead{color:rgba(255,255,255,.82);}
.dessert-planner-teaser{background:linear-gradient(135deg,#fffdf9,#fff5f9);}
@media(max-width:980px){.planner-hero-grid,.planner-layout{grid-template-columns:1fr}.planner-summary-card{position:relative;top:0}.planner-choice-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.planner-hero-card>img{height:380px}}
@media(max-width:680px){.planner-hero{padding:105px 0 56px}.planner-hero-copy h1{font-size:48px}.planner-hero-card>img{height:330px}.planner-hero-mini img{height:140px}.planner-card,.planner-summary-card{border-radius:24px;padding:20px}.planner-choice-grid,.planner-dessert-groups,.planner-enhancement-grid,.planner-mini-fields{grid-template-columns:1fr}.planner-actions{flex-direction:column-reverse}.planner-actions .btn{width:100%;justify-content:center}.planner-choice-grid span{padding:18px}.guest-choice-grid strong{font-size:30px}}


/* ===========================
   V29 Phase 4B — Dessert Planner Luxury Styling Fix
   Aligns planner page with Dessert Experiences styling
   =========================== */
.dessert-planner-page{background:var(--ivory);}
.planner-v29-hero{
  background-image:
    linear-gradient(90deg,rgba(5,18,38,.96),rgba(7,29,59,.84),rgba(7,29,59,.28)),
    url('/assets/luxury-dessert-table-jamaica-night.jpg');
  background-size:cover;
  background-position:center;
  min-height:72vh;
}
.planner-v29-hero .dessert-hero-content{max-width:860px;}
.planner-v29-hero h1{max-width:820px;}
.planner-section{background:linear-gradient(180deg,var(--cream),var(--ivory));}
.planner-page-heading{margin-bottom:34px;}
.planner-page-heading h2{color:var(--navy);}
.planner-layout{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);gap:clamp(24px,4vw,52px);align-items:start;}
.planner-card,.planner-summary-card{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(196,154,75,.22);
  border-radius:30px;
  box-shadow:0 24px 80px rgba(7,29,59,.10);
}
.planner-card{padding:clamp(22px,3vw,44px);}
.planner-summary-card{padding:32px;position:sticky;top:112px;}
.planner-step h2{font-size:clamp(34px,4vw,58px);line-height:1.02;margin:8px 0 12px;color:var(--navy);}
.planner-step>p,.planner-summary-card p{color:var(--muted);line-height:1.8;}
.planner-choice-grid span,
.planner-dessert-groups>div,
.planner-dessert-groups label,
.planner-enhancement-grid label{
  border-color:rgba(196,154,75,.18);
  background:#fffdf9;
}
.planner-choice-grid span{border-radius:20px;}
.planner-choice-grid strong{color:var(--navy);font-family:'Playfair Display',Georgia,serif;font-size:22px;}
.guest-choice-grid strong{font-size:42px;line-height:1;}
.planner-dessert-groups h3{font-family:'Playfair Display',Georgia,serif;color:var(--navy);}
.planner-choice-grid input:checked+span,
.planner-enhancement-grid label:has(input:checked),
.planner-dessert-groups label:has(input:checked){
  border-color:var(--gold);
  background:linear-gradient(180deg,#fff8ed,#fffdf9);
  box-shadow:0 14px 38px rgba(196,154,75,.14);
}
.planner-progress span{color:var(--gold);}
.planner-progress div{background:#efe3d4;}
.planner-progress i{background:linear-gradient(90deg,var(--gold),var(--pink));}
.summary-list{display:grid;grid-template-columns:120px 1fr;gap:12px;border-top:1px solid rgba(196,154,75,.18);padding:14px 0;color:var(--muted);}
.summary-list strong{color:var(--navy);font-size:12px;letter-spacing:.12em;text-transform:uppercase;}
.planner-investment-guide{background:#fff8ed;border:1px solid rgba(196,154,75,.22);border-radius:22px;padding:22px;margin-top:20px;}
.planner-investment-guide h3{color:var(--navy);}
.planner-actions{display:flex;justify-content:space-between;gap:12px;margin-top:34px;border-top:1px solid rgba(196,154,75,.18);padding-top:24px;}
.planner-status{margin:16px 0 0;color:var(--navy);font-weight:800;}
.planner-preview-gallery{background:var(--ivory);}
.dessert-planner-page .btn-ghost{color:#fff;border-color:rgba(255,255,255,.72);}
@media(max-width:980px){
  .planner-layout{grid-template-columns:1fr;}
  .planner-summary-card{position:relative;top:0;}
  .planner-choice-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:680px){
  .planner-v29-hero{min-height:72vh;padding:105px 0 70px;background-position:center;}
  .planner-v29-hero h1{font-size:48px;}
  .planner-v29-hero p{font-size:16px;}
  .planner-card,.planner-summary-card{border-radius:24px;padding:20px;}
  .planner-choice-grid,.planner-dessert-groups,.planner-enhancement-grid,.planner-mini-fields{grid-template-columns:1fr;}
  .planner-actions{flex-direction:column-reverse;}
  .planner-actions .btn{width:100%;display:flex;justify-content:center;}
  .summary-list{grid-template-columns:1fr;gap:2px;}
  .guest-choice-grid strong{font-size:36px;}
}


/* ===== V30 FLAVOURS & FILLINGS SECTION ===== */
.signature-flavours-section{position:relative;overflow:hidden;}
.signature-flavours-section::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 12% 8%,rgba(232,78,138,.08),transparent 30%),radial-gradient(circle at 88% 16%,rgba(196,154,75,.10),transparent 34%);pointer-events:none;}
.signature-flavours-section>.container{position:relative;z-index:1;}
.flavour-collection-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;align-items:start;}
.flavour-collection-card{background:rgba(255,255,255,.92);border:1px solid rgba(196,154,75,.28);border-radius:28px;padding:30px;box-shadow:0 22px 60px rgba(7,29,59,.08);}
.flavour-collection-card.premium-card{border-color:rgba(196,154,75,.48);background:linear-gradient(180deg,#fff 0%,#fff9ee 100%);}
.flavour-collection-card.fillings-card{grid-column:1/-1;background:linear-gradient(135deg,#fff 0%,#fff7fb 100%);}
.flavour-card-header{display:flex;gap:16px;align-items:flex-start;margin-bottom:20px;}
.flavour-icon{width:42px;height:42px;flex:0 0 42px;border-radius:50%;display:grid;place-items:center;background:var(--navy);color:var(--gold);font-weight:900;box-shadow:0 12px 34px rgba(7,29,59,.16);}
.flavour-card-header h3{font-size:clamp(25px,3vw,36px);line-height:1.05;margin:0 0 8px;color:var(--navy);}
.flavour-card-header p{margin:0;color:var(--muted);line-height:1.65;}
.flavour-pill-grid{display:flex;flex-wrap:wrap;gap:10px;}
.flavour-pill-grid span{display:inline-flex;align-items:center;gap:8px;padding:11px 15px;border-radius:999px;background:#fff;border:1px solid rgba(7,29,59,.10);color:var(--navy);font-weight:700;font-size:13px;box-shadow:0 8px 22px rgba(7,29,59,.04);}
.premium-flavours span{border-color:rgba(196,154,75,.34);background:#fffaf0;}
.filling-flavours span{border-color:rgba(232,78,138,.20);background:#fff7fb;}
.flavour-pill-grid span::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--gold);display:inline-block;}
.filling-flavours span::before{background:var(--pink);}
.pairing-menu{display:grid;grid-template-columns:.82fr 1.18fr;gap:28px;margin-top:28px;background:var(--navy);border-radius:30px;padding:34px;box-shadow:0 24px 65px rgba(7,29,59,.18);color:#fff;}
.pairing-copy h3{font-size:clamp(28px,3vw,44px);line-height:1.05;margin:8px 0 12px;color:#fff;}
.pairing-copy p{margin:0;color:rgba(255,255,255,.78);line-height:1.75;}
.pairing-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.pairing-grid div{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);border-radius:18px;padding:16px;}
.pairing-grid strong{display:block;color:var(--gold);margin-bottom:4px;}
.pairing-grid span{display:block;color:rgba(255,255,255,.86);font-size:13px;line-height:1.5;}
.planner-flavour-panel{margin-top:24px;background:linear-gradient(135deg,#fff 0%,#fff8ef 100%);border:1px solid rgba(196,154,75,.30);border-radius:24px;padding:24px;box-shadow:0 16px 46px rgba(7,29,59,.05);}
.planner-flavour-columns{display:grid;grid-template-columns:1fr 1.25fr 1fr;gap:18px;}
.planner-flavour-columns>div{background:#fff;border:1px solid rgba(7,29,59,.08);border-radius:18px;padding:18px;}
.planner-flavour-columns h4{font-family:'Playfair Display',Georgia,serif;color:var(--navy);font-size:22px;margin:0 0 12px;}
.planner-checkbox-grid{display:grid;gap:8px;}
.planner-checkbox-grid label{display:block;position:relative;border:1px solid rgba(7,29,59,.10);border-radius:14px;padding:11px 12px;background:#fff;color:var(--navy);font-weight:700;cursor:pointer;transition:.2s ease;}
.planner-checkbox-grid input{margin-right:8px;accent-color:var(--pink);}
.planner-checkbox-grid label:has(input:checked){border-color:var(--gold);background:#fff7e8;box-shadow:0 10px 24px rgba(196,154,75,.12);}
@media(max-width:980px){.flavour-collection-grid,.pairing-menu,.planner-flavour-columns{grid-template-columns:1fr}.flavour-collection-card.fillings-card{grid-column:auto}.pairing-grid{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.flavour-collection-card,.pairing-menu,.planner-flavour-panel{border-radius:22px;padding:22px}.flavour-card-header{gap:12px}.flavour-icon{width:36px;height:36px;flex-basis:36px}.flavour-pill-grid span{width:100%;justify-content:flex-start}.pairing-grid{grid-template-columns:1fr}.signature-flavours-section .section-lead{text-align:left}.planner-flavour-columns>div{padding:16px}}


/* ===== V30B BUG FIXES: portfolio card captions + planner footer ===== */
/* Prevent card title/description overlap on service preview image cards */
.featured-preview-card{
  isolation:isolate;
}
.featured-preview-card::after{
  background:linear-gradient(180deg,rgba(7,29,59,0) 28%,rgba(7,29,59,.52) 58%,rgba(7,29,59,.94) 100%) !important;
}
.featured-preview-card span,
.featured-preview-card small{
  text-shadow:0 2px 12px rgba(0,0,0,.5);
}
.featured-preview-card span{
  bottom:82px !important;
  font-size:clamp(1.18rem,1.45vw,1.52rem) !important;
  line-height:1.04 !important;
}
.featured-preview-card small{
  bottom:24px !important;
  font-size:.76rem !important;
  line-height:1.38 !important;
  letter-spacing:.12em !important;
  max-width:88%;
}
@media(max-width:900px){
  .featured-preview-card span{bottom:76px !important;font-size:1.22rem !important;}
  .featured-preview-card small{bottom:22px !important;font-size:.68rem !important;line-height:1.32 !important;}
}
@media(max-width:520px){
  .featured-preview-card span{bottom:72px !important;font-size:1.05rem !important;}
  .featured-preview-card small{bottom:20px !important;font-size:.62rem !important;line-height:1.28 !important;letter-spacing:.09em !important;}
}

/* Make any newer footer markup behave like the main site footer */
.site-footer{
  background:var(--navy);
  color:#fff;
  padding:70px 0 28px;
}
.site-footer .footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:36px;
}
.site-footer .footer-grid a{
  display:block;
  color:rgba(255,255,255,.75);
  margin:0 0 8px;
}
.site-footer .footer-grid h4{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  margin:0 0 16px;
}
.site-footer .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:42px;
  padding-top:20px;
  color:rgba(255,255,255,.6);
  font-size:.85rem;
}
@media(max-width:760px){
  .site-footer .footer-grid{grid-template-columns:1fr;gap:24px;}
}


/* V29.1 — Dessert Planner UX Repair: no horizontal scroll, compact hero, above-fold planner */
html, body {
  max-width: 100%;
}
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe { max-width: 100%; }

.dessert-planner-page,
.dessert-planner-page section,
.dessert-planner-page .container,
.dessert-planner-page .planner-layout {
  max-width: 100%;
}

.dessert-planner-page .planner-v29-hero {
  min-height: auto !important;
  padding: clamp(54px, 6vw, 82px) 0 clamp(34px, 4vw, 52px) !important;
}
.dessert-planner-page .planner-v29-hero .dessert-hero-content {
  min-height: 0 !important;
}
.dessert-planner-page .planner-v29-hero h1 {
  font-size: clamp(42px, 5.2vw, 76px) !important;
  line-height: .96 !important;
  max-width: 980px;
}
.dessert-planner-page .planner-v29-hero p {
  max-width: 760px;
  margin-bottom: 22px;
}
.dessert-planner-page .hero-actions {
  margin-top: 24px;
  flex-wrap: wrap;
}
.planner-hero-inspiration {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 980px;
}
.planner-hero-inspiration img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(196,154,75,.22);
  box-shadow: 0 18px 48px rgba(7,29,59,.11);
  display: block;
}
.dessert-planner-page .planner-section {
  padding: clamp(44px, 5vw, 68px) 0 clamp(70px, 7vw, 96px) !important;
}
.dessert-planner-page .planner-page-heading {
  margin-bottom: 22px !important;
}
.dessert-planner-page .planner-page-heading h2 {
  font-size: clamp(32px, 3.6vw, 54px);
}
.dessert-planner-page .planner-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr) !important;
  gap: clamp(18px, 3vw, 40px) !important;
}
.dessert-planner-page .planner-card {
  overflow: hidden;
}
.dessert-planner-page .planner-choice-grid,
.dessert-planner-page .planner-dessert-groups,
.dessert-planner-page .planner-enhancement-grid,
.dessert-planner-page .planner-mini-fields,
.dessert-planner-page .planner-flavour-columns,
.dessert-planner-page .planner-checkbox-grid {
  min-width: 0;
}
.dessert-planner-page .planner-preview-gallery {
  padding: clamp(44px, 5vw, 70px) 0 !important;
}
.dessert-planner-page .dessert-scroll-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  max-width: 100%;
}
.dessert-planner-page .dessert-scroll-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}
.dessert-planner-page .navy-block {
  padding: clamp(58px, 6vw, 88px) 0 !important;
}

/* Footer spacing repair */
.site-footer .footer-logo {
  display: block;
  height: auto;
  max-height: 78px;
  max-width: 230px;
  margin-bottom: 18px;
}
.site-footer .footer-grid a + a { margin-top: 8px; }

/* Celebration preview card readability repair */
.featured-preview-card, .portfolio-card { isolation: isolate; }
.featured-preview-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(7,29,59,0) 0%, rgba(7,29,59,.70) 48%, rgba(7,29,59,.94) 100%);
  pointer-events: none;
  z-index: 1;
}
.featured-preview-card span,
.featured-preview-card small {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.featured-preview-card span { bottom: 78px !important; line-height: 1.05 !important; }
.featured-preview-card small { bottom: 24px !important; line-height: 1.35 !important; }

@media (max-width: 980px) {
  .dessert-planner-page .planner-layout { grid-template-columns: 1fr !important; }
  .dessert-planner-page .planner-summary-card { position: relative !important; top: auto !important; }
  .planner-hero-inspiration { grid-template-columns: repeat(3, minmax(170px, 1fr)); overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .planner-hero-inspiration img { scroll-snap-align: start; }
  .dessert-planner-page .dessert-scroll-gallery { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:10px; }
  .dessert-planner-page .dessert-scroll-gallery img { min-width: 76%; scroll-snap-align:start; }
}
@media (max-width: 680px) {
  .dessert-planner-page .planner-v29-hero { padding: 104px 0 34px !important; }
  .dessert-planner-page .planner-v29-hero h1 { font-size: 42px !important; }
  .planner-hero-inspiration { grid-template-columns: repeat(3, 78vw); margin-top:22px; }
  .planner-hero-inspiration img { height: 180px; }
  .dessert-planner-page .planner-section { padding-top: 38px !important; }
  .dessert-planner-page .planner-card,
  .dessert-planner-page .planner-summary-card { padding: 20px !important; border-radius: 24px !important; }
  .dessert-planner-page .planner-actions { flex-direction: column-reverse; }
  .dessert-planner-page .planner-actions .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   V30 MOBILE OPTIMIZATION — Sweet Mischief JA
   Focus: mobile spacing, galleries, featured clients, forms,
   sticky CTA safety, and overflow prevention.
   ========================================================= */
html { max-width: 100%; overflow-x: hidden; }
body { max-width: 100%; } /* NOTE: overflow-x:hidden on body breaks position:fixed on iOS — applied to html only */
img, video, iframe { max-width: 100%; height: auto; }
.container, section, header, footer, main { max-width: 100%; }

/* Safer tap targets */
.btn, .nav-cta, button, input[type="submit"], .hero-actions a, .featured-preview-actions a {
  min-height: 44px;
}

/* Homepage / general mobile polish */
@media (max-width: 900px) {
  body { -webkit-text-size-adjust: 100%; }
  .section, section { padding-left: 18px; padding-right: 18px; }
  .container { padding-left: 18px; padding-right: 18px; }
  .hero, .page-hero, .planner-hero, .luxury-hero {
    min-height: auto !important;
    padding-top: 58px !important;
    padding-bottom: 46px !important;
  }
  h1, .hero h1, .page-hero h1, .planner-hero h1 {
    font-size: clamp(2.25rem, 12vw, 4.1rem) !important;
    line-height: .96 !important;
    letter-spacing: -0.045em;
  }
  h2 { font-size: clamp(1.85rem, 8vw, 3rem) !important; line-height: 1.03 !important; }
  p, li { font-size: 1rem; line-height: 1.65; }
  .eyebrow { letter-spacing: .16em; }
  .hero-actions, .cta-actions, .featured-preview-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .btn, .nav-cta { width: 100%; justify-content: center; text-align: center; padding: 14px 18px; }
}

/* Mobile galleries should feel more like swipe cards */
@media (max-width: 760px) {
  .gallery-grid,
  .featured-grid,
  .showcase-grid,
  .wedding-gallery-strip,
  .dessert-gallery,
  .planner-inspiration-grid {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78%, 1fr);
    grid-template-columns: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-grid > *,
  .featured-grid > *,
  .showcase-grid > *,
  .wedding-gallery-strip > *,
  .dessert-gallery > *,
  .planner-inspiration-grid > * {
    scroll-snap-align: start;
    min-width: 0;
  }
  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(5),
  .featured-grid img,
  .showcase-grid figure,
  .wedding-gallery-strip img,
  .gallery-trigger img,
  .gallery-item-featured .gallery-trigger img {
    height: 330px !important;
    width: 100%;
    object-fit: cover;
    grid-row: auto !important;
  }
}

/* Celebration/portfolio card caption readability */
.featured-preview-card::after,
.gallery-trigger::after {
  pointer-events: none;
}
.featured-preview-card span,
.featured-preview-card small {
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
@media (max-width: 900px) {
  .featured-preview-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .featured-preview-card, .featured-preview-card img { height: 360px !important; min-height: 360px !important; }
  .featured-preview-card span { font-size: 1.45rem !important; bottom: 56px !important; }
  .featured-preview-card small { bottom: 24px !important; line-height: 1.35; }
}

/* Featured clients/logos mobile optimization */
@media (max-width: 900px) {
  .client-logos, .trusted-logos, .corporate-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .client-logo, .trusted-logos div, .corporate-logos div {
    min-height: 76px !important;
    padding: 10px 8px !important;
  }
  .client-logo img, .corporate-logos img, .trusted-logos img {
    max-height: 48px !important;
    width: auto !important;
    object-fit: contain;
  }
}

/* Forms: easier mobile completion */
@media (max-width: 760px) {
  input, select, textarea, .form-control {
    font-size: 16px !important;
    min-height: 48px;
  }
  textarea { min-height: 130px; }
  .form-grid, .quote-grid, .planner-grid, .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .upload-box, .file-upload, .dropzone {
    padding: 22px 16px !important;
  }
}

/* Planner fixes carried into V30 */
.planner-page, .planner-shell, .planner-section { max-width: 100%; overflow-x: hidden; }
.planner-hero { min-height: auto !important; }
@media (min-width: 901px) {
  .planner-hero { padding-top: 72px !important; padding-bottom: 58px !important; }
}
@media (max-width: 760px) {
  .planner-hero { padding-top: 46px !important; padding-bottom: 34px !important; }
}

/* Footer spacing fix */
.footer-links, .site-footer nav, footer nav { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.footer-links a, .site-footer nav a, footer nav a { margin-right: 0 !important; }
.footer-logo, footer img { max-width: 180px; object-fit: contain; }

/* Sticky mobile CTA should not hide content */
@media (max-width: 760px) {
  body { padding-bottom: 76px; }
  .mobile-sticky-cta, .sticky-mobile-cta, .bottom-cta-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(7,29,59,.18);
  }
  .mobile-sticky-cta a, .sticky-mobile-cta a, .bottom-cta-bar a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .72rem;
    line-height: 1.15;
    padding: 8px;
  }
}


/* V30D planner UX + wedding tasting updates */
html{overflow-x:hidden;max-width:100%;}
.planner-v29-hero{min-height:auto!important;padding:110px 0 70px!important;}
.planner-hero-inspiration{margin-top:34px;display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:14px;max-width:980px;}
.planner-hero-inspiration img{width:100%;height:220px;object-fit:cover;border-radius:24px;box-shadow:0 18px 50px rgba(7,29,59,.12);}
.planner-hero-inspiration img:first-child{height:220px;}
.planner-helper-note{margin-top:18px;color:var(--muted);font-size:14px;line-height:1.6;background:#fff8ed;border:1px solid rgba(196,154,75,.22);border-radius:18px;padding:14px 16px;}
.planner-flavour-panel{background:#fff;border:1px solid rgba(196,154,75,.18);border-radius:24px;padding:clamp(18px,2.5vw,30px);box-shadow:0 18px 50px rgba(7,29,59,.06);}
.planner-flavour-columns{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:18px;}
.planner-flavour-columns>div:last-child{grid-column:1/-1;}
.planner-checkbox-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}
.planner-checkbox-grid label{border:1px solid rgba(7,29,59,.1);border-radius:14px;padding:11px 12px;background:#fff;display:block;font-weight:700;color:var(--navy);}
.planner-checkbox-grid label:has(input:checked){border-color:var(--pink);background:#fff5f9;}
.planner-section{padding-top:70px!important;}
.wedding-tasting-section{background:linear-gradient(135deg,#fffdf9 0%,#fff8fb 50%,#f8efe4 100%);}
.tasting-split{align-items:center;gap:clamp(34px,5vw,80px);}
.tasting-gallery{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.tasting-gallery img{width:100%;height:520px;object-fit:cover;border-radius:30px;box-shadow:0 24px 80px rgba(7,29,59,.12);}
.tasting-gallery img:first-child{margin-top:42px;}
.tasting-pairings{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:24px 0;}
.tasting-pairings div{background:#fff;border:1px solid rgba(196,154,75,.18);border-radius:18px;padding:15px 16px;box-shadow:0 12px 36px rgba(7,29,59,.05);}
.tasting-pairings strong{display:block;color:var(--navy);font-family:'Playfair Display',Georgia,serif;font-size:20px;margin-bottom:4px;}
.tasting-pairings span{color:var(--muted);font-size:13px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;}
@media(max-width:980px){.planner-hero-inspiration{grid-template-columns:1fr 1fr}.planner-hero-inspiration img:first-child{grid-column:1/-1}.planner-layout{grid-template-columns:1fr!important}.tasting-gallery{order:2}.tasting-copy{order:1}.tasting-gallery img{height:420px}.planner-flavour-columns{grid-template-columns:1fr}.planner-flavour-columns>div:last-child{grid-column:auto}}
@media(max-width:680px){.planner-v29-hero{padding:90px 0 46px!important}.planner-hero-inspiration{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:8px}.planner-hero-inspiration img{min-width:82%;height:240px;scroll-snap-align:start}.planner-section{padding-top:45px!important}.planner-checkbox-grid,.tasting-pairings{grid-template-columns:1fr}.tasting-gallery{grid-template-columns:1fr}.tasting-gallery img,.tasting-gallery img:first-child{height:330px;margin-top:0}.wedding-tasting-section .btn{width:100%;justify-content:center}.planner-card{scroll-margin-top:92px}}

/* V30 Phase 2 UX + Mobile Optimization */
html { max-width: 100%; overflow-x: hidden; }
body { max-width: 100%; } /* NOTE: overflow-x:hidden on body breaks position:fixed on iOS — applied to html only */
img, video { max-width: 100%; height: auto; }
.container, section, main, header, footer { max-width: 100%; }

.v30-review-grid { align-items: stretch; }
.v30-kind-words h2 { color: var(--navy); margin: 0 0 22px; font-size: clamp(32px, 3.3vw, 48px); line-height: 1.05; }
.v30-review-list { display: grid; gap: 18px; max-height: 620px; overflow: auto; padding-right: 8px; }
.v30-review-list .testimonial-item { background: #fffdf9; border: 1px solid rgba(196,154,75,.18); border-radius: 22px; padding: 22px; margin: 0; box-shadow: 0 12px 38px rgba(7,29,59,.05); }
.v30-review-list .testimonial-item blockquote { border-left: 2px solid var(--gold); padding-left: 16px; margin: 10px 0; }
.review-more-btn { margin-top: 22px; width: fit-content; }

.portfolio-card-copy { z-index: 2; }
.portfolio-card h3 { text-shadow: 0 2px 12px rgba(0,0,0,.55); }
.portfolio-card p, .portfolio-card em { text-shadow: 0 2px 10px rgba(0,0,0,.65); }
.portfolio-card::after { background: linear-gradient(180deg, rgba(7,29,59,0) 28%, rgba(7,29,59,.78) 100%); }

.planner-v29-hero { min-height: auto !important; padding: clamp(90px, 9vw, 140px) 0 clamp(50px, 6vw, 84px) !important; }
.planner-hero-inspiration { margin-top: 32px; }
.planner-section { padding-top: clamp(48px, 6vw, 78px); }
.planner-card { scroll-margin-top: 110px; }
.planner-step { min-height: auto; }
.planner-actions .btn { min-height: 50px; }
.site-footer a { display: inline-block; margin: 0 14px 10px 0; }
.footer-logo { max-width: 170px; height: auto; }

@media (max-width: 980px) {
  .why-testimonial-grid, .v30-review-grid { grid-template-columns: 1fr; }
  .v30-review-list { max-height: none; overflow: visible; }
  .service-actions, .hero-actions { gap: 12px; flex-wrap: wrap; }
  .btn { min-height: 48px; }
}

@media (max-width: 680px) {
  .section { padding-top: 62px; padding-bottom: 62px; }
  .planner-v29-hero { padding-top: 88px !important; padding-bottom: 46px !important; }
  .planner-v29-hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .planner-v29-hero p { font-size: 16px; }
  .planner-hero-inspiration { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
  .planner-hero-inspiration img { min-width: 78vw; height: 270px; object-fit: cover; border-radius: 22px; scroll-snap-align: start; }
  .planner-choice-grid, .planner-dessert-groups, .planner-enhancement-grid, .planner-mini-fields { grid-template-columns: 1fr !important; }
  .planner-card, .planner-summary-card, .why-lux-card, .testimonial-lux-card { padding: 24px !important; border-radius: 24px; }
  .v30-kind-words h2 { font-size: 34px; }
  .v30-review-list .testimonial-item { padding: 18px; }
  .v30-review-list .testimonial-item blockquote { font-size: 16px; }
  .portfolio-card-copy { padding: 22px !important; }
  .portfolio-card h3 { font-size: 24px !important; line-height: 1.05; }
  .portfolio-card p, .portfolio-card em { font-size: 12px !important; letter-spacing: .12em; }
  .site-footer .footer-grid { gap: 28px; }
  .site-footer a { display: block; margin: 0 0 10px; }
}

/* ================================================
   GOOGLE RATING BADGE
   ================================================ */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 16px;
  margin-bottom: 22px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.google-rating-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(7,29,59,.08);
}
.google-g { flex-shrink: 0; }
.grb-stars {
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: .06em;
  line-height: 1;
}
.grb-text {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.3;
}
.grb-score {
  font-weight: 700;
  font-size: 16px;
}
.grb-link {
  color: #4285F4;
  font-weight: 600;
  font-size: 12px;
}

/* ================================================
   CONTACT MAP EMBED
   ================================================ */
.contact-map {
  margin-top: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 200px;
}
@media (max-width: 600px) {
  .google-rating-badge { flex-wrap: wrap; gap: 8px; }
  .contact-map iframe { height: 170px; }
}

/* ================================================
   ACADEMY — IN PROGRESS BADGE + NEXT COHORT
   ================================================ */
.in-progress-note { font-size: 12px; color: var(--muted); }
.in-progress-note span { display: block; font-weight: 600; color: var(--gold); margin-bottom: 4px; }

/* ================================================
   WIZARD — CONDITIONAL BUDGET NOTE
   ================================================ */
.budget-wedding-note {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: 5px;
  padding: 6px 10px;
  background: rgba(196,154,75,.08);
  border-left: 2px solid var(--gold);
}
