/* ═══════════════════════════════════════════════════
   UHVATI TREN — Shared Stylesheet
   Palette: #1b1742 · #8d183e · #d4a855 · #f59fa2
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --burg:       #8d183e;
  --burg-h:     #a8204a;
  --dark:       #1b1742;
  --gold:       #d4a855;
  --gold-h:     #b8862e;
  --blush:      #f59fa2;
  --cream:      #faf7f4;
  --off-white:  #fffdf9;
  --text:       #1e1830;
  --muted:      #6b6278;
  --border:     rgba(141,24,62,.11);
  --sh-sm:      0 2px 12px rgba(27,23,66,.08);
  --sh-md:      0 8px 32px rgba(27,23,66,.13);
  --sh-lg:      0 20px 60px rgba(27,23,66,.18);
  --r:          12px;
  --r-lg:       20px;
  --ease:       cubic-bezier(.25,.8,.25,1);
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, -apple-system, sans-serif;
  --max:        1200px;
  --nav-h:      76px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--text); background: var(--off-white); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -999px; left: 8px;
  background: var(--burg); color: #fff;
  padding: 10px 20px; border-radius: 0 0 var(--r) var(--r);
  font-weight: 600; font-size: .9rem; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
section { padding: 110px 0; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.scrolled {
  background: rgba(255,253,249,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between; height: var(--nav-h);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; }
.logo-white { display: block; }
.logo-dark  { display: none; }
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-dark  { display: block; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.88);
  transition: color .2s; position: relative; white-space: nowrap;
}
.nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--burg); }
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav.scrolled .nav-links a[aria-current="page"] { color: var(--burg); font-weight: 600; }

.nav-cta {
  background: var(--burg) !important; color: #fff !important;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600 !important; font-size: .85rem !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
  display: inline-flex !important; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--burg-h) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(141,24,62,.35) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: 8px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span { width: 22px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; display: block; }
.nav.scrolled .hamburger span { background: var(--dark); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: .9rem;
  transition: all .25s var(--ease); border: none; cursor: pointer;
  font-family: var(--sans); line-height: 1; white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-primary { background: var(--burg); color: #fff; }
.btn-primary:hover { background: var(--burg-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(141,24,62,.38); }
.btn-white { background: #fff; color: var(--burg); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--burg); border: 2px solid var(--burg); }
.btn-outline:hover { background: var(--burg); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--dark); font-weight: 700; }
.btn-gold:hover { background: var(--gold-h); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,153,58,.4); }

/* ── SECTION TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--burg); font-size: .76rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--burg); flex-shrink: 0; }
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }

.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800; color: var(--dark); line-height: 1.18; margin-bottom: 18px;
}
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.78; }

/* ── HERO (homepage) ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('img/booth-couple-dance.jpeg');
  background-size: cover; background-position: center 20%;
  will-change: transform;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,23,66,.9) 0%, rgba(27,23,66,.55) 40%, rgba(27,23,66,.2) 80%, transparent 100%);
}
.hero-body {
  position: relative; z-index: 2;
  padding-bottom: 90px; max-width: 800px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 26px;
}
.hero-tag::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero-body h1 {
  font-family: var(--serif); font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 800; line-height: 1.08; color: #fff;
  margin-bottom: 24px; text-wrap: balance;
}
.hero-body h1 em { font-style: italic; color: var(--gold); }
.hero-body p { font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 540px; line-height: 1.78; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── STATS BAR ── */
.stats-bar { background: var(--dark); padding: 28px 0; }
.stats-bar .container { display: flex; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 52px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.1); }
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-lbl { font-size: .76rem; color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase; }

/* ── ABOUT (homepage) ── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img-main { grid-column: 1/-1; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; }
.about-img-main img, .about-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sm { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; }
.about-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.82; }
.about-text h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--dark); margin: 26px 0 12px; font-weight: 700; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--text); font-weight: 500; }
.check-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(141,24,62,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-dot svg { width: 11px; height: 11px; stroke: var(--burg); stroke-width: 2.5; fill: none; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 64px; }
.feature-card {
  background: var(--off-white); border-radius: var(--r-lg); padding: 38px 30px;
  border: 1px solid var(--border); transition: all .3s var(--ease);
}
.feature-card:hover { border-color: rgba(141,24,62,.24); box-shadow: var(--sh-md); transform: translateY(-4px); }
.feat-num { font-family: var(--serif); font-size: 3rem; font-weight: 800; color: rgba(141,24,62,.09); line-height: 1; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.feature-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ── GALLERY ── */
.gallery { background: var(--dark); padding: 110px 0; }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.gallery-head .section-title { color: #fff; margin-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.g-item { overflow: hidden; border-radius: var(--r); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.g-item:hover img { transform: scale(1.05); }
.g1 { grid-column: 1/5;  grid-row: 1/3; aspect-ratio: 3/4; }
.g2 { grid-column: 5/9;  grid-row: 1;   aspect-ratio: 4/3; }
.g3 { grid-column: 9/13; grid-row: 1;   aspect-ratio: 4/3; }
.g4 { grid-column: 5/8;  grid-row: 2;   aspect-ratio: 4/3; }
.g5 { grid-column: 8/13; grid-row: 2;   aspect-ratio: 4/3; }
.g6 { grid-column: 1/5;  grid-row: 3;   aspect-ratio: 4/3; }
.g7 { grid-column: 5/9;  grid-row: 3;   aspect-ratio: 4/3; }
.g8 { grid-column: 9/13; grid-row: 3;   aspect-ratio: 4/3; }

/* ── GALLERY MASONRY (multi-product) ── */
.gallery-masonry {
  column-count: 4;
  column-gap: 12px;
}
.gm-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: var(--r);
}
.gm-item img {
  width: 100%; height: auto; display: block;
  transition: transform .5s var(--ease);
}
.gm-item:hover img { transform: scale(1.05); }
@media (max-width: 1024px) { .gallery-masonry { column-count: 3; } }
@media (max-width: 680px)  { .gallery-masonry { column-count: 2; } }

/* ── PRICING ── */
.pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 64px; align-items: start; }
.p-card {
  background: var(--off-white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.p-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.p-card--feat { background: var(--dark); border-color: var(--dark); transform: translateY(-12px); box-shadow: var(--sh-lg); }
.p-card--feat:hover { transform: translateY(-16px); }
.p-label { background: var(--gold); color: var(--dark); padding: 8px 0; text-align: center; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.p-head { padding: 34px 30px 26px; }
.p-dur { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--burg); margin-bottom: 10px; }
.p-card--feat .p-dur { color: rgba(255,255,255,.45); }
.p-name { font-family: var(--serif); font-size: 1.75rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.p-card--feat .p-name { color: #fff; }
.p-price { font-family: var(--serif); font-size: 3rem; font-weight: 800; color: var(--burg); line-height: 1; }
.p-card--feat .p-price { color: #fff; }
.p-price sup { font-size: 1.3rem; vertical-align: super; font-weight: 600; }
.p-price sub { font-size: .85rem; font-weight: 400; color: var(--muted); }
.p-card--feat .p-price sub { color: rgba(255,255,255,.45); }
.p-divider { height: 1px; background: var(--border); margin: 0 30px; }
.p-card--feat .p-divider { background: rgba(255,255,255,.1); }
.p-body { padding: 26px 30px; flex: 1; }
.p-body ul { display: flex; flex-direction: column; gap: 10px; }
.p-body li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--muted); line-height: 1.55;
}
.p-card--feat .p-body li { color: rgba(255,255,255,.6); }
.p-body li::before {
  content: ''; flex-shrink: 0; margin-top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(141,24,62,.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpolyline points='1.5,5 4,7.5 8.5,2.5' stroke='%238d183e' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}
.p-card--feat .p-body li::before {
  background-color: rgba(255,255,255,.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpolyline points='1.5,5 4,7.5 8.5,2.5' stroke='%23fff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.p-body li.hl { color: var(--burg); font-weight: 600; }
.p-card--feat .p-body li.hl { color: var(--gold); }
.p-foot { padding: 6px 30px 30px; }
.p-foot .btn { width: 100%; justify-content: center; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; margin-top: 64px; position: relative; list-style: none; }
.steps-grid::before {
  content: ''; position: absolute; top: 36px;
  left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1px; background: var(--border);
}
.step { text-align: center; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; position: relative; z-index: 1;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 800; color: var(--burg);
  transition: all .3s;
}
.step:hover .step-num { background: var(--burg); color: #fff; border-color: var(--burg); box-shadow: 0 8px 24px rgba(141,24,62,.3); }
.step h3 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── EVENT CARDS ── */
.events-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 64px; }
.ev-card {
  background: var(--off-white); border-radius: var(--r-lg); padding: 34px 26px;
  border: 1px solid var(--border); transition: all .3s var(--ease);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.ev-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--burg), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.ev-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.ev-card:hover::after { transform: scaleX(1); }
.ev-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(141,24,62,.09); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 18px;
}
.ev-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ev-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; flex: 1; }
.ev-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: .85rem; font-weight: 600; color: var(--burg); transition: gap .2s; }
.ev-card:hover .ev-link { gap: 9px; }

/* ── CTA BAND ── */
.cta-band { background: var(--burg); padding: 90px 0; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 500px; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 80px; margin-top: 64px; align-items: start; }
.c-info h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.c-info > p { color: var(--muted); margin-bottom: 38px; line-height: 1.78; }
.c-detail { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.c-detail:last-of-type { border-bottom: none; }
.c-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(141,24,62,.09); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 18px; height: 18px; stroke: var(--burg); stroke-width: 1.8; fill: none; }
.c-detail h4 { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.c-detail a, .c-detail p { font-size: .95rem; color: var(--dark); font-weight: 500; }
.c-detail a:hover { color: var(--burg); }
.social-row { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.soc-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  background: rgba(141,24,62,.08); font-size: .85rem; font-weight: 600; color: var(--burg);
  transition: all .2s; border: 1px solid transparent;
}
.soc-btn svg { width: 15px; height: 15px; fill: var(--burg); flex-shrink: 0; }
.soc-btn:hover { background: var(--burg); color: #fff; }
.soc-btn:hover svg { fill: #fff; }

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--r);
  border: 1.5px solid var(--border); background: var(--off-white);
  font-family: var(--sans); font-size: .95rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--burg); box-shadow: 0 0 0 3px rgba(141,24,62,.1);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { width: 100%; justify-content: center; padding: 15px; }
.form-success {
  display: none; padding: 14px 18px; border-radius: var(--r);
  background: rgba(141,24,62,.08); color: var(--burg);
  font-size: .9rem; font-weight: 600; text-align: center;
  border: 1px solid rgba(141,24,62,.15);
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 70px) 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--burg) 100%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245,159,162,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(212,168,85,.08) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem,4.5vw,3.4rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; opacity: .82; max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .82rem; color: var(--muted); padding: 18px 0; border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--burg); font-weight: 500; }
.breadcrumb a:hover { color: var(--burg-h); }
.breadcrumb-sep { color: var(--border); }

/* ── PAGE CONTENT (sub-pages) ── */
.page-content { padding: 80px 0; }
.page-content h2 { font-family: var(--serif); font-size: clamp(1.5rem,2.5vw,2.1rem); font-weight: 700; color: var(--dark); margin: 48px 0 14px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--muted); line-height: 1.82; margin-bottom: 16px; }
.page-content p strong { color: var(--dark); font-weight: 600; }
.feat-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 36px 0 48px; }
.feat-3-card {
  background: var(--cream); border-radius: var(--r-lg); padding: 32px 26px;
  border: 1px solid var(--border); text-align: center; transition: all .3s;
}
.feat-3-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.feat-3-icon { font-size: 2rem; margin-bottom: 14px; }
.feat-3-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feat-3-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin: 0; }
.page-cta { text-align: center; margin: 56px 0 16px; }

/* ── LOCATION HERO ── */
.loc-hero {
  padding: calc(var(--nav-h) + 80px) 0 90px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--burg) 100%);
  color: #fff; text-align: center;
}
.loc-hero h1 { font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; margin-bottom: 14px; }
.loc-hero p { font-size: 1.1rem; opacity: .82; max-width: 580px; margin: 0 auto; }

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-list { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--off-white); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  font-size: 1rem; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: color .2s; background: none;
}
.faq-q:hover { color: var(--burg); }
.faq-q[aria-expanded="true"] { color: var(--burg); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border: 1.5px solid currentColor; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.faq-icon svg { width: 10px; height: 10px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform .3s; }
.faq-q[aria-expanded="true"] .faq-icon svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-grid--5 { grid-template-columns: 1.8fr 1fr 1fr 1fr 1.1fr; }

/* ── PRODUCTS SECTION (homepage) ── */
.products-section { background: var(--off-white); }
.products-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 60px;
}
.products-grid--4 { gap: 22px; }
.products-grid--4 .product-tile { min-height: 400px; padding: 34px; }
.product-tile {
  position: relative; overflow: hidden;
  border-radius: 24px;
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
  color: #fff;
  text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s;
  isolation: isolate;
}
.product-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.product-tile-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease);
}
.product-tile:hover .product-tile-bg { transform: scale(1.05); }
.product-tile::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20,16,30,.94) 0%, rgba(20,16,30,.55) 50%, rgba(20,16,30,.2) 100%);
}
.product-tile--360 .product-tile-bg { background-image: url('img/booth-couple-dance.jpeg'); }
.product-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--dark);
  padding: 5px 12px; border-radius: 50px;
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  align-self: flex-start;
  margin-bottom: 18px;
}
.product-tile h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 10px;
}
.product-tile h3 em { font-style: italic; color: var(--gold); }
.product-tile p {
  font-size: .98rem; color: rgba(255,255,255,.78);
  line-height: 1.65; margin-bottom: 22px;
  max-width: 380px;
}
.product-tile-meta {
  display: flex; gap: 20px; margin-bottom: 22px;
  font-size: .82rem;
}
.product-tile-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.7);
}
.product-tile-meta strong { color: var(--gold); font-family: var(--serif); font-weight: 700; }
.product-tile-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; color: var(--gold);
  transition: gap .2s;
}
.product-tile:hover .product-tile-cta { gap: 12px; }
.f-brand img { height: 36px; width: auto; margin-bottom: 18px; opacity: .88; }
.f-brand .tagline { font-style: italic; color: rgba(255,255,255,.25); font-size: .82rem; margin-bottom: 6px; }
.f-brand p { font-size: .875rem; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 260px; }
.footer h4 { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer ul a[aria-current="page"] { color: rgba(255,255,255,.8); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.42); }
.footer-bottom a:hover { color: #fff; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .events-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid, .footer-grid--5 { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-tile { min-height: 380px; padding: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    inset: var(--nav-h) 0 0; background: var(--off-white);
    flex-direction: column; padding: 28px 24px; gap: 6px;
    overflow-y: auto; box-shadow: var(--sh-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; font-size: 1.05rem; padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; justify-content: center; width: 100%; background: var(--burg) !important; color: #fff !important; border-radius: var(--r) !important; }

  .hero-body { padding-bottom: 60px; }
  .hero-body h1 { font-size: 2.6rem; }

  .stats-bar .container { flex-wrap: wrap; }
  .stat { width: 50%; padding: 16px 0; }
  .stat + .stat { border-left: none; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { grid-template-columns: 1fr; }
  .about-img-sm:last-child { display: none; }
  .about-img-main { aspect-ratio: 3/2; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .p-card--feat { transform: none; }
  .p-card--feat:hover { transform: translateY(-5px); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; display: grid; }
  .g1,.g2,.g3,.g4,.g5,.g6,.g7,.g8 { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .feat-3 { grid-template-columns: 1fr; }
}

/* ═══════════ SHARED PRODUCT PAGE ═══════════ */
.product-hero {
  position: relative; padding: calc(var(--nav-h) + 56px) 0 90px;
  background: linear-gradient(135deg, #1b1742 0%, #2a1f5c 55%, #8d183e 100%);
  color: #fff; overflow: hidden;
}
.product-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 30%, rgba(212,168,85,.16) 0%, transparent 55%),
              radial-gradient(ellipse at 78% 72%, rgba(245,159,162,.14) 0%, transparent 55%);
  pointer-events: none;
}
.product-hero .container { position: relative; z-index: 2; }
.product-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.product-hero .breadcrumb { border: none; padding: 0 0 22px; color: rgba(255,255,255,.55); }
.product-hero .breadcrumb a { color: var(--gold); }
.product-hero .breadcrumb-sep { color: rgba(255,255,255,.3); }
.product-hero .eyebrow { color: var(--gold); margin-bottom: 20px; }
.product-hero .eyebrow::before { background: var(--gold); }
.product-hero h1 {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px; text-wrap: balance;
}
.product-hero h1 em { font-style: italic; color: var(--gold); }
.product-hero .lead { font-size: 1.08rem; color: rgba(255,255,255,.8); line-height: 1.78; margin-bottom: 30px; max-width: 540px; }
.product-hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 34px;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12);
}
.phm-item { display: flex; flex-direction: column; gap: 2px; }
.phm-lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.45); font-weight: 600; }
.phm-val { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.product-hero-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.product-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-hero-tag {
  position: absolute; top: 22px; left: 22px; z-index: 3;
  background: var(--gold); color: var(--dark); padding: 8px 16px; border-radius: 50px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
/* spec strip (shared) */
.spec-strip { background: var(--dark); padding: 34px 0; border-top: 1px solid rgba(255,255,255,.08); }
.spec-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.spec-item { display: flex; align-items: center; gap: 14px; padding: 0 8px; }
.spec-item + .spec-item { border-left: 1px solid rgba(255,255,255,.08); padding-left: 24px; }
.spec-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(212,168,85,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.spec-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.spec-text { display: flex; flex-direction: column; gap: 1px; }
.spec-lbl { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.spec-val { font-size: .92rem; color: #fff; font-weight: 600; }
/* split content row */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-visual { border-radius: 24px; overflow: hidden; box-shadow: var(--sh-lg); }
.split-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* cross-sell */
.cross-sell {
  margin-top: 64px; padding: 36px 40px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a1f5c 100%);
  border-radius: var(--r-lg); color: #fff;
  display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center;
}
.cross-sell h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.cross-sell p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.65; }

@media (max-width: 768px) {
  .product-hero { padding-top: calc(var(--nav-h) + 32px); }
  .product-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-hero-visual { max-width: 360px; margin: 0 auto; }
  .spec-strip .container { grid-template-columns: 1fr 1fr; gap: 22px; }
  .spec-item + .spec-item { border-left: none; padding-left: 8px; }
  .spec-item:nth-child(3), .spec-item:nth-child(4) { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
  .split-row { grid-template-columns: 1fr; gap: 36px; }
  .cross-sell { grid-template-columns: 1fr; padding: 28px 24px; text-align: center; gap: 20px; }
}
@media (max-width: 480px) {
  .spec-strip .container { grid-template-columns: 1fr; }
  .spec-item { padding: 12px 0 !important; border-top: 1px solid rgba(255,255,255,.08); border-left: none !important; }
  .spec-item:first-child { border-top: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  section { padding: 80px 0; }
  .events-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat { width: 50%; }
}

/* ── PRICE TABLE (situational pricing) ── */
.price-table {
  max-width: 640px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--off-white);
  box-shadow: var(--sh-sm);
}
.pt-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--border);
}
.pt-row:last-child { border-bottom: none; }
.pt-situation { color: var(--text); font-weight: 500; font-size: .98rem; }
.pt-price {
  font-family: var(--serif); font-weight: 800; color: var(--burg);
  font-size: 1.35rem; white-space: nowrap; flex-shrink: 0;
}
.pt-note { font-size: 1rem; font-weight: 600; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.pt-row--free { background: rgba(212,168,85,.12); }
.pt-row--free .pt-price { color: var(--gold-h); }
.price-note { max-width: 640px; margin-top: 14px; font-size: .86rem; color: var(--muted); line-height: 1.6; }
.cross-sell p strong { color: var(--gold); }
@media (min-width: 769px) {
  .pricing-center { max-width: 680px; margin-inline: auto; text-align: center; }
  .pricing-center .price-table,
  .pricing-center .price-note { margin-inline: auto; }
  .pricing-center .price-note { text-align: center; }
  .pricing-center .check-list { display: inline-flex; flex-direction: column; text-align: left; }
}
@media (max-width: 480px) {
  .pt-row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 15px 20px; }
}
