/* Tricia & Co. Events — celebration design system
 * Cream + blush + gold + deep-forest palette.
 * Fraunces display serif + Inter body + Kaushan Script accent.
 */

:root {
  --cream:       #faf3f5;
  --cream-2:     #f2e1e8;
  --paper:       #ffffff;
  --ink:         #1a1518;
  --ink-2:       #3a2f34;
  --mute:        #756968;
  --blush:       #e8a8c4;
  --blush-2:     #c66a8f;
  --blush-soft:  #f7d9e6;
  --gold:        #c9a05f;
  --gold-2:      #b48a45;
  --gold-soft:   #f4e6cc;
  --plum:        #3d2b5c;
  --plum-2:      #2a1c42;
  --periwinkle:  #a89dd6;
  --forest:      #3d2b5c;
  --forest-2:    #2a1c42;
  --line:        rgba(26,21,24,0.10);
  --line-2:      rgba(26,21,24,0.20);
  --shadow-sm:   0 2px 8px rgba(26,21,24,0.05);
  --shadow:      0 20px 50px -20px rgba(26,21,24,0.25);
  --shadow-lg:   0 40px 80px -30px rgba(26,21,24,0.35);

  --serif:       "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:        "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --script:      "Kaushan Script", "Pacifico", cursive;

  --maxw:        1180px;
  --radius:      18px;
  --radius-sm:   10px;
  --radius-lg:   28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--blush-2); }
button { font: inherit; cursor: pointer; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--cream); padding: 12px 18px; z-index: 999;
  font-weight: 700; letter-spacing: .04em; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip:focus { left: 12px; top: 12px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 18px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blush-2); font-weight: 600;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blush); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 400; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -.005em; }
p  { margin: 0 0 1em; color: var(--ink-2); font-size: 17px; }
p.lede { font-size: 20px; line-height: 1.55; color: var(--ink-2); max-width: 62ch; }

em.script { font-family: var(--script); font-style: normal; color: var(--blush-2); font-size: 1.15em; line-height: .8; display: inline-block; padding: 0 .05em; }

/* ─────────────── Announce bar ─────────────── */
.announce {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  font-size: 13px; letter-spacing: .05em;
  padding: 10px 16px;
}
.announce a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.announce a:hover { color: var(--gold-soft); }

/* ─────────────── Nav ─────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,245,238,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px 0;
}
.brand {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--blush-2); }
.brand .co { font-family: var(--script); color: var(--blush-2); font-size: 26px; line-height: .8; }
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-size: 15px; font-weight: 500;
  padding: 8px 14px; border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--blush-2); background: var(--blush-soft); }
.nav-links a.active { color: var(--forest); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: var(--cream);
  padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  transition: background .15s ease, transform .12s ease;
}
.nav-cta:hover { background: var(--forest-2); color: var(--cream); transform: translateY(-1px); }
.nav-cta svg { width: 15px; height: 15px; }
.hamburger { display: none; background: none; border: 0; color: var(--ink); padding: 8px; }
.hamburger svg { width: 26px; height: 26px; }
.mobile-menu { display: none; padding: 8px 0 20px; border-top: 1px solid var(--line); }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 4px; font-size: 17px; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
}

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 320px at 15% 20%, rgba(232,180,168,0.28), transparent 65%),
    radial-gradient(500px 260px at 90% 80%, rgba(201,160,95,0.16), transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 780px; }
.hero h1 { margin-top: 18px; }
.hero h1 .accent { font-family: var(--script); font-weight: 400; color: var(--blush-2); font-size: .95em; padding-right: .12em; }
.hero-lede { margin-top: 20px; max-width: 56ch; }
.hero-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 22px; flex-wrap: wrap; margin-top: 40px;
  padding-top: 26px; border-top: 1px dashed var(--line-2);
}
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold-2); }

/* Floating balloons in hero */
.balloons { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.balloon {
  position: absolute; width: 70px; height: 88px; border-radius: 50% 50% 48% 48% / 55% 55% 45% 45%;
  opacity: .85;
  box-shadow: inset -10px -14px 22px rgba(0,0,0,0.15), 0 20px 40px -20px rgba(0,0,0,0.25);
  animation: bob 8s ease-in-out infinite;
}
.balloon::after {
  content: ""; position: absolute; left: 50%; bottom: -60px;
  width: 1px; height: 60px; background: rgba(26,21,24,0.35); transform: translateX(-50%);
}
/* Positions target the left column (text) so balloons surround the words.
 * On mobile (single column), .b4/.b5 hide; b1/b2/b3 float around the h1. */
.balloon.b1 { top:  2%; left:  1%;  background: var(--blush);       animation-delay:  0s;   width: 78px; height: 96px; }
.balloon.b2 { top: 10%; left: 42%;  background: var(--periwinkle);  animation-delay: -3s;  width: 56px; height: 70px; opacity: .75; }
.balloon.b3 { top: 46%; left:  2%;  background: var(--gold);        animation-delay: -2s;  width: 44px; height: 56px; opacity: .7; }
.balloon.b4 { top: 66%; left: 40%;  background: var(--blush-soft);  animation-delay: -5s;  width: 40px; height: 50px; opacity: .6; }
.balloon.b5 { top: 30%; left: 34%;  background: var(--plum);        animation-delay: -1s;  width: 34px; height: 42px; opacity: .55; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) { .balloon { animation: none; } }
@media (max-width: 900px) {
  /* Single-column hero: balloons float around the text top */
  .balloon.b1 { width: 62px; height: 78px; top: 2%;  left: 2%; }
  .balloon.b2 { width: 44px; height: 56px; top: 6%;  left: auto; right: 6%; }
  .balloon.b3 { width: 36px; height: 46px; top: 32%; left: auto; right: 3%; }
  .balloon.b4, .balloon.b5 { display: none; }
}
@media (max-width: 500px) {
  .balloon.b2, .balloon.b3 { display: none; }
  .balloon.b1 { width: 52px; height: 66px; }
}

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--forest); color: var(--cream); border-color: var(--forest); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-2); color: var(--cream); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--cream); transform: translateY(-1px); }
.btn-blush { background: var(--blush); color: var(--ink); border-color: var(--blush); }
.btn-blush:hover { background: var(--blush-2); color: var(--cream); transform: translateY(-1px); }

/* ─────────────── Sections ─────────────── */
section { padding: 80px 0; position: relative; }
section.section-cream-2 { background: var(--cream-2); }
section.section-paper { background: var(--paper); }
section.section-forest { background: var(--forest); color: var(--cream); }
section.section-forest h1, section.section-forest h2, section.section-forest h3 { color: var(--cream); }
section.section-forest p { color: rgba(250,245,238,0.85); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--mute); }

/* ─────────────── Services grid ─────────────── */
.services-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  background: var(--paper); border-radius: var(--radius);
  padding: 32px 26px 28px; border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blush); }
.service-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blush-soft); color: var(--blush-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: .3em; }
.service-card p { color: var(--mute); font-size: 15.5px; flex-grow: 1; }
.service-card .learn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-weight: 600; color: var(--forest); font-size: 14px;
}
.service-card .learn svg { width: 14px; height: 14px; transition: transform .15s ease; }
.service-card:hover .learn svg { transform: translateX(3px); }

/* ─────────────── Gallery ─────────────── */
.gallery-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1; background: var(--cream-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { aspect-ratio: 4/3; }
.gallery-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blush-soft), var(--gold-soft));
  color: var(--ink-2); font-family: var(--serif); font-size: 14px;
}

/* ─────────────── Split feature ─────────────── */
.split {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.split-flip { grid-template-columns: 1fr 1.1fr; }
.split-flip .split-copy { order: 2; }
.split-flip .split-media { order: 1; }
.split-media {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; background: linear-gradient(135deg, var(--blush-soft), var(--gold-soft));
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) {
  .split, .split-flip { grid-template-columns: 1fr; gap: 40px; }
  .split-flip .split-copy, .split-flip .split-media { order: initial; }
  .split-media { aspect-ratio: 4/3; }
}

/* ─────────────── Testimonials / Kind Words ─────────────── */
.kind-words {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 48px 40px; text-align: center; border: 1px solid var(--line);
  max-width: 780px; margin: 0 auto;
}
.kind-words h3 { margin-bottom: 12px; }
.kind-words p { color: var(--mute); margin-bottom: 24px; }
.kind-words .btn { margin-top: 4px; }

/* ─────────────── FAQ ─────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question .plus { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-question .plus::before, .faq-question .plus::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--forest);
  transition: transform .18s ease;
}
.faq-question .plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-question .plus::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-question .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { padding: 12px 0 0; color: var(--ink-2); font-size: 16px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ─────────────── Contact form ─────────────── */
.form-wrap {
  background: var(--paper); border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-wrap { padding: 28px 22px; } }
.form-field label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px;
  color: var(--ink); letter-spacing: .01em;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 15px;
  border: 1.5px solid var(--line-2); border-radius: 10px;
  background: var(--cream); color: var(--ink); transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--forest); background: var(--paper);
}
.form-field textarea { min-height: 120px; resize: vertical; font-family: var(--sans); }
.form-field .hint { font-size: 12px; color: var(--mute); margin-top: 4px; }
.hp { position: absolute; left: -9999px; }
.form-actions { margin-top: 20px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.form-thanks {
  background: var(--gold-soft); border: 1px solid var(--gold);
  color: var(--ink); padding: 18px 22px; border-radius: var(--radius-sm);
  margin-bottom: 18px; font-size: 15px;
}

/* ─────────────── Coverage areas ─────────────── */
.coverage {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px;
}
.coverage .pill {
  padding: 8px 16px; border-radius: 999px; background: var(--paper);
  border: 1px solid var(--line-2); font-size: 14px; color: var(--ink-2);
}

/* ─────────────── Footer ─────────────── */
footer.site-footer {
  background: var(--forest); color: rgba(250,245,238,0.85);
  padding: 60px 0 24px; margin-top: 40px;
}
footer.site-footer a { color: var(--cream); }
footer.site-footer a:hover { color: var(--blush); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--serif); font-size: 26px; color: var(--cream); margin-bottom: 8px; display: block; }
.footer-brand .co { font-family: var(--script); color: var(--blush); font-size: 30px; }
.footer-tagline { font-size: 14px; color: rgba(250,245,238,0.7); margin: 0 0 18px; max-width: 30ch; }
.footer-heading {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(250,245,238,0.6); margin: 0 0 14px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; font-size: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(250,245,238,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, transform .12s ease;
}
.footer-social a:hover { background: var(--blush); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; color: var(--cream); }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(250,245,238,0.15);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(250,245,238,0.6);
}
.footer-bottom a { color: rgba(250,245,238,0.75); text-decoration: underline; text-underline-offset: 3px; }

/* ─────────────── Floating text + call widgets ─────────────── */
.floating-contact {
  position: fixed; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 999px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: var(--cream);
  box-shadow: 0 12px 30px -6px rgba(26,21,24,0.35);
  transition: transform .12s ease, box-shadow .15s ease;
}
.floating-contact svg { width: 18px; height: 18px; }
.floating-contact:hover { transform: translateY(-2px); color: var(--cream); }
.floating-contact.text { right: 20px; bottom: 20px; background: var(--blush-2); }
.floating-contact.text:hover { background: #c47365; }
.floating-contact.call { left: 20px; bottom: 20px; background: var(--forest); }
.floating-contact.call:hover { background: var(--forest-2); }
.floating-contact .label { display: inline; }
@media (max-width: 500px) {
  .floating-contact .label { display: none; }
  .floating-contact { padding: 14px; }
  .floating-contact.text { bottom: 16px; right: 16px; }
  .floating-contact.call { bottom: 16px; left: 16px; }
}

/* ─────────────── Partner block (injected on deploy) ─────────────── */
[data-scion-partners] {
  margin: 32px auto 0; max-width: var(--maxw); padding: 24px;
  background: rgba(250,245,238,0.06); border-radius: var(--radius-sm);
  color: rgba(250,245,238,0.75); font-size: 13px;
  text-align: center;
}
[data-scion-partners] > div:first-child {
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(250,245,238,0.6); margin-bottom: 10px; font-size: 11px;
}
[data-scion-partners] a { color: rgba(250,245,238,0.9); margin: 0 10px; }

/* ─────────────── Utility ─────────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

/* ─────────────── Brand logo image (nav + footer + hero mark) ─────────────── */
.brand { gap: 10px; }
.brand-img {
  height: 46px; width: auto; display: block;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
}
@media (max-width: 640px) { .brand-img { height: 38px; } }
.brand .co-text { display: none; }  /* logo image carries the wordmark */

.footer-brand-img {
  height: 92px; width: 92px; display: block; margin-bottom: 14px;
  border-radius: 50%; border: 2px solid rgba(250,245,238,0.15);
  background: var(--paper);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.4);
}

/* Home "brand mark" moment — large centered logo on its own */
.brand-moment {
  padding: 70px 0; text-align: center;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-moment .mark {
  max-width: 260px; margin: 0 auto 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(26,21,24,0.35);
  transition: transform .35s ease;
}
.brand-moment .mark:hover { transform: rotate(-2deg) scale(1.02); }
.brand-moment .tagline {
  font-family: var(--script); color: var(--blush-2);
  font-size: clamp(24px, 3vw, 30px); margin: 0;
}
.brand-moment .sub {
  color: var(--mute); font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; margin-top: 6px;
}

/* ─────────────── Home hero collage (right side of hero) ─────────────── */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-collage {
  position: relative; height: 520px; min-height: 400px;
}
@media (max-width: 900px) { .hero-collage { height: 380px; margin-top: 10px; } }
@media (max-width: 480px) { .hero-collage { height: 320px; } }
.hero-collage img {
  position: absolute; border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(26,21,24,0.35);
  object-fit: cover;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-collage img:hover { transform: translateY(-6px) rotate(0deg) scale(1.02); box-shadow: 0 40px 70px -20px rgba(26,21,24,0.4); z-index: 10; }
.hero-collage .c1 { top: 0;    left: 0;    width: 58%; height: 62%; transform: rotate(-4deg); z-index: 2; }
.hero-collage .c2 { top: 12%;  right: 0;   width: 52%; height: 55%; transform: rotate(3.5deg); z-index: 3; }
.hero-collage .c3 { bottom: 0; left: 18%;  width: 58%; height: 48%; transform: rotate(-1.5deg); z-index: 1; }

/* ─────────────── Marquee ticker ─────────────── */
.ticker {
  background: var(--plum); color: var(--cream);
  overflow: hidden; white-space: nowrap;
  padding: 20px 0;
  border-top: 1px solid rgba(250,245,238,0.10);
  border-bottom: 1px solid rgba(250,245,238,0.10);
}
.ticker-track {
  display: inline-flex; gap: 44px;
  font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); font-weight: 500;
  animation: ticker 42s linear infinite;
  will-change: transform;
}
.ticker-track em {
  font-family: var(--script); color: var(--blush); font-style: normal;
  font-size: 1.2em; padding: 0 8px; line-height: 0.6;
}
.ticker-track .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--periwinkle);
  display: inline-block; opacity: .5; align-self: center;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ─────────────── Stats / badges bar ─────────────── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 34px 22px; text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
@media (max-width: 720px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.stat-num {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 44px); font-weight: 500;
  color: var(--plum); line-height: 1;
}
.stat-label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute); margin-top: 8px; font-weight: 600;
}

/* ─────────────── Featured celebration (dark plum, big photo) ─────────────── */
.feature-moment {
  background: var(--plum); color: var(--cream);
  padding: 100px 0; position: relative; overflow: hidden;
}
.feature-moment::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 90% 20%, rgba(168,157,214,0.12), transparent 65%),
    radial-gradient(500px 300px at 10% 90%, rgba(232,168,196,0.08), transparent 65%);
  pointer-events: none;
}
.feature-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 800px) { .feature-inner { grid-template-columns: 1fr; gap: 40px; } }
.feature-photo {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg); transition: transform .35s ease;
}
.feature-photo:hover { transform: rotate(0deg) scale(1.01); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy .eyebrow { color: var(--blush); }
.feature-copy h2 { color: var(--cream); margin-bottom: 24px; }
.feature-copy .quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.8vw, 30px); line-height: 1.35;
  color: var(--cream); margin: 0 0 24px;
}
.feature-copy p { color: rgba(250,245,238,0.80); font-size: 17px; }
.feature-copy .signature {
  display: flex; align-items: center; gap: 14px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid rgba(250,245,238,0.15);
}
.feature-copy .signature .name {
  font-family: var(--script); color: var(--blush); font-size: 26px; line-height: 1;
}
.feature-copy .signature .role {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,245,238,0.6); font-weight: 600;
}

/* Prose (used on privacy/terms) */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 1.5em; font-size: 26px; }
.prose h3 { margin-top: 1.3em; font-size: 20px; }
.prose p, .prose li { font-size: 16px; color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
