/* ── TOKENS ── */
:root {
  --navy:      #1B2B6B;
  --navy-dk:   #111D4A;
  --pink:      #F0C4D4;
  --pink-mid:  #E8AFC5;
  --pink-lt:   #FAF0F5;
  --cream:     #FDF6F0;
  --white:     #FFFFFF;

  /* Accent palette pulled from Katherine's painted banners */
  --coral:     #F07060;
  --gold:      #E6B84A;
  --teal:      #4BBFA8;
  --lavender:  #9B8EC4;
  --rose:      #E8558A;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body:  'Outfit', system-ui, sans-serif;

  --lucky:     13; /* ✦ */

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 4px 20px rgba(27, 43, 107, 0.10);
  --shadow-lg: 0 10px 40px rgba(27, 43, 107, 0.18);

  --stripe: rgba(240, 196, 212, 0.50);
}

/* ── TAYLOR SWIFT EASTER EGGS ✦ (for the swifties who inspect) ── */
::selection        { background: rgba(155, 27, 48, 0.18); } /* Red era */
::-moz-selection   { background: rgba(155, 27, 48, 0.18); }

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

a    { color: inherit; text-decoration: none; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TYPE ── */
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 1rem;
  color: rgba(27, 43, 107, 0.62);
  margin-bottom: 48px;
  max-width: 540px;
}
.section-sub a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ── STRIPE BG ── */
.stripe-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--white);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 26px,
    var(--stripe) 26px,
    var(--stripe) 50px
  );
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-dk);
  border-color: var(--navy-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 43, 107, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(27, 43, 107, 0.28);
}
.btn--ghost:hover {
  background: rgba(27, 43, 107, 0.06);
  border-color: var(--navy);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--pink-lt);
  border-color: var(--pink-lt);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 1rem;
  padding: 16px 36px;
}

/* ── HEADER / NAV ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(240, 196, 212, 0.4);
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(27, 43, 107, 0.72);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-menu a:hover {
  color: var(--navy);
  background: var(--pink-lt);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover {
  background: var(--navy-dk) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero::before { /* ✦ lucky number ✦ */
  content: '13';
  position: absolute;
  right: 6%;
  bottom: 8%;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  font-weight: 700;
  color: rgba(240, 196, 212, 0.20);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid var(--pink);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 14vw, 7.5rem);
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero-heading em   { font-weight: 400; font-style: italic; }
.hero-heading strong { font-weight: 700; font-style: normal; }

.hero-sub {
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: rgba(27, 43, 107, 0.65);
  line-height: 1.7;
  margin-bottom: 22px;
}

.hero-price-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 34px;
}
.hero-price-badge b { font-weight: 800; }

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating emoji stickers */
.sticker {
  position: absolute;
  font-size: 2.2rem;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.sticker--1 { top: 18%;  left: 7%;  animation: fearless 4.0s ease-in-out infinite 0.0s; }
.sticker--2 { top: 20%;  right: 7%; animation: fearless 4.2s ease-in-out infinite 1.1s; }
.sticker--3 { bottom: 18%; left: 5%;  animation: fearless 3.8s ease-in-out infinite 2.0s; }
.sticker--4 { bottom: 20%; right: 6%; animation: fearless 4.5s ease-in-out infinite 0.6s; }

@keyframes fearless { /* ✦ 1989 ✦ */
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-12px) rotate(4deg); }
}

/* ── TICKER ── */
.ticker {
  background: var(--navy);
  padding: 13px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-ticker 26s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-list {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-list li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 18px;
  white-space: nowrap;
}

.ticker-list .dot {
  color: var(--pink);
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
}

@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services {
  padding: 96px 0;
  background: var(--cream);
}

.services .container > .eyebrow { margin-bottom: 8px; }
.services .container > h2       { margin-bottom: 48px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scard {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.scard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.scard-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.scard--coral   .scard-bar { background: var(--coral); }
.scard--lavender .scard-bar { background: var(--lavender); }
.scard--teal    .scard-bar { background: var(--teal); }

.scard-emoji {
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 4px;
}

.scard p {
  font-size: 0.93rem;
  color: rgba(27, 43, 107, 0.62);
  line-height: 1.65;
  flex: 1;
}

.scard-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1.5px solid rgba(240, 196, 212, 0.5);
  margin-top: auto;
}

.price-from {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(27, 43, 107, 0.38);
}

.price-num {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.scard-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.15s;
}
.scard-link:hover { opacity: 0.6; }

/* ── OCCASIONS ── */
.occasions {
  padding: 96px 0;
  background: var(--white);
}

.occasions .container > h2 { margin-bottom: 12px; }

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}

.ocard {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(240, 196, 212, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ocard:hover { /* ✦ polaroid moment ✦ */
  transform: translateY(-4px) rotate(1.5deg);
  box-shadow: 0 8px 28px rgba(27, 43, 107, 0.12);
  border-color: var(--c);
}

.ocard-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.ocard-emoji {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.ocard h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.ocard p {
  font-size: 0.78rem;
  color: rgba(27, 43, 107, 0.58);
  line-height: 1.5;
}

.occasions-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.occasions-cta p {
  font-size: 0.95rem;
  color: rgba(27, 43, 107, 0.58);
}

/* ── HOW TO ORDER ── */
.order {
  position: relative;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}

.order-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--pink-lt);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 26px,
    rgba(240, 196, 212, 0.38) 26px,
    rgba(240, 196, 212, 0.38) 50px
  );
}

.order-wrap {
  position: relative;
  z-index: 1;
}

.order h2 { margin-bottom: 56px; }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 52px;
}

.step {
  flex: 1;
  max-width: 300px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  width: 54px;
  height: 54px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.step h3 { margin-bottom: 10px; }

.step p {
  font-size: 0.9rem;
  color: rgba(27, 43, 107, 0.65);
  line-height: 1.65;
}
.step p a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--pink-mid));
  margin-top: 27px;
  flex-shrink: 0;
}

/* ── INSTAGRAM SECTION ── */
.ig-section {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
}

.ig-inner {
  max-width: 560px;
  margin: 0 auto;
}

.ig-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
}
.ig-icon-wrap svg { width: 30px; height: 30px; }

.ig-eyebrow { color: var(--pink-mid); }

.ig-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.ig-section p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dk);
  padding: 52px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.footer-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 6px 0;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--pink); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 4px;
}

.ts-cat { /* ✦ meredith, olivia & benjamin ✦ */
  display: inline-block;
  opacity: 0.35;
  font-size: 0.9rem;
  margin-left: 6px;
  vertical-align: middle;
  transition: opacity 0.3s, transform 0.3s;
  cursor: default;
}
.ts-cat:hover {
  opacity: 1;
  transform: scale(1.4) rotate(-8deg);
}

/* ── ABOUT PAGE ── */
.about-hero {
  position: relative;
  padding: 140px 20px 72px;
  text-align: center;
  overflow: hidden;
}
.about-hero-inner { position: relative; z-index: 1; }
.about-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-top: 12px;
}
.about-hero-heading em {
  font-style: italic;
  color: var(--rose);
}

.about-main { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-photo-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pink-lt);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
  gap: 12px;
}
.about-stat { text-align: center; flex: 1; }
.about-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.about-stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(27, 43, 107, 0.55);
  margin-top: 4px;
}
.about-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(27, 43, 107, 0.12);
  flex-shrink: 0;
}

.about-content { padding-top: 12px; }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 24px;
}
.about-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(27, 43, 107, 0.8);
  margin-bottom: 16px;
}
.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo-wrap { aspect-ratio: 4 / 5; }
  .about-cta-row { flex-direction: column; }
  .about-cta-row .btn { text-align: center; }
}

/* ── GALLERY TABS ── */
.gallery-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 24px;
}
.gallery-tabs::-webkit-scrollbar { display: none; }

.gtab {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(27,43,107,0.65);
  background: var(--cream);
  border: 1.5px solid rgba(240,196,212,0.5);
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.gtab:hover  { border-color: var(--navy); color: var(--navy); }
.gtab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 48px;
}

.pgrid-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}

.pgrid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.pgrid-item:hover img { transform: scale(1.05); }

.pgrid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,43,107,0.78) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 12px;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.pgrid-item:hover .pgrid-overlay { opacity: 1; }

.pgrid-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 3px;
}
.pgrid-cap {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17,29,74,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-img-wrap {
  max-width: min(90vw, 900px);
  max-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 80svh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}

.lb-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.lb-close:hover { background: rgba(255,255,255,0.28); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.24); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-info {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lb-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.lb-cap {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.lb-counter {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

/* ── CONTACT ── */
.contact {
  padding: 96px 0;
  background: var(--cream);
}

.contact-wrap > .eyebrow { margin-bottom: 8px; }
.contact-wrap > h2       { margin-bottom: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(240, 196, 212, 0.45);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink-mid);
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--pink);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.checklist p {
  font-size: 0.82rem;
  color: rgba(27, 43, 107, 0.58);
  line-height: 1.4;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.contact-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(27, 43, 107, 0.5);
  margin-top: -8px;
}

/* Info tiles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-tile {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1.5px solid rgba(240, 196, 212, 0.4);
  transition: border-color 0.2s, transform 0.2s;
}
.info-tile:hover {
  border-color: var(--pink-mid);
  transform: translateX(4px);
}

.info-tile-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.info-tile strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.info-tile p {
  font-size: 0.85rem;
  color: rgba(27, 43, 107, 0.65);
  line-height: 1.4;
}

.info-tile small {
  font-size: 0.75rem;
  color: rgba(27, 43, 107, 0.4);
}

/* ── MOBILE STICKY BAR ── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--navy);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(27, 43, 107, 0.25);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mobile-bar.visible { transform: translateY(0); }

.mobile-bar-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mobile-bar-brand {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.mobile-bar-price {
  font-size: 0.75rem;
  color: var(--pink);
  font-weight: 600;
}

.mobile-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.mobile-bar-btn:hover {
  background: var(--pink-lt);
  transform: scale(1.02);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 940px) {
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid  {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Contact grid stacks on tablet */
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info  { flex-direction: row; flex-wrap: wrap; }
  .info-tile     { flex: 1 1 calc(50% - 7px); }
}

/* Mobile nav + layout */
@media (max-width: 700px) {
  /* Show mobile sticky bar */
  .mobile-bar { display: flex; }
  /* Nav */
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 24px;
    gap: 2px;
    border-bottom: 1px solid rgba(240, 196, 212, 0.4);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1rem; padding: 12px 14px; }
  .nav-cta { text-align: center; border-radius: 12px !important; margin-top: 4px; }

  /* Hero */
  .hero { padding: 88px 20px 60px; }
  .sticker--3, .sticker--4 { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; }

  /* Steps */
  .steps { flex-direction: column; align-items: center; gap: 32px; }
  .step  { max-width: 360px; padding: 0 16px; }
  .step-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--pink), var(--pink-mid));
    margin-top: 0;
  }

  /* Services */
  .services-grid { max-width: 100%; }

  /* Occasions */
  .occasions-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Photo grid — 2 col on mobile */
@media (max-width: 700px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pgrid-overlay { opacity: 1; } /* always show overlay on touch */

  /* Lightbox controls */
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 1.3rem; }
  .lb-info  { bottom: 16px; padding: 0 12px; }

  /* Contact info tiles stack on mobile */
  .contact-info  { flex-direction: column; }
  .info-tile     { flex: none; }

  /* Extra bottom padding so sticky bar doesn't overlap footer */
  .footer { padding-bottom: 80px; }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-heading { font-size: clamp(3rem, 16vw, 3.8rem); }
  h2 { font-size: 1.8rem; }
  .btn--lg { padding: 14px 28px; font-size: 0.95rem; }
  .photo-grid { gap: 6px; }
}
