/* ============================================
   32North Events — shared stylesheet
   ============================================ */

:root {
  --charcoal: #1a2332;
  --charcoal-2: #243047;
  --cream: #f7f8fb;
  --cream-2: #eef1f6;
  --white: #ffffff;
  /* Accent palette: coral + navy */
  --gold: #e8637a;
  --gold-deep: #1e3a5f;
  --gold-light: #ffd9cc;
  --ink: #1a2332;
  --muted: #5a6578;
  --line: #dde3ea;
  --text-on-dark: #c5d0de;
  --text-on-dark-muted: #b8c4d4;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 14px 34px rgba(28, 26, 23, 0.10);
  --shadow-sm: 0 6px 16px rgba(28, 26, 23, 0.08);
  --maxw: 1180px;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Fun / party accent gradient — used on the Home + Photo Booth pages */
  --grad-1: #ff5e7e; /* hot pink */
  --grad-2: #ff9a56; /* orange */
  --grad-3: #ffd166; /* gold-yellow */
  --grad-4: #8a63ff; /* purple */
  --btn-gradient: linear-gradient(135deg, var(--grad-1) 0%, var(--grad-2) 55%, var(--grad-3) 100%);
  --glow-1: rgba(255, 94, 126, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--charcoal);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--ink); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, background-position 0.35s ease, color 0.2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-deep); }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: #000; }

.btn-gradient {
  background-image: var(--btn-gradient);
  background-size: 170% 170%;
  background-position: 0% 50%;
  color: var(--white);
  box-shadow: 0 12px 26px var(--glow-1);
}
.btn-gradient:hover {
  background-position: 100% 50%;
  box-shadow: 0 16px 34px var(--glow-1);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap.nav {
  padding: 14px 40px;
}

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

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: transparent;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a { padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { border-bottom-color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 28px 22px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; }
  .nav-toggle { display: block; }
  .nav-cta .btn { padding: 12px 16px; font-size: 0.85rem; }
  .site-header .wrap.nav { padding: 12px 24px; }
  .brand-logo { height: 36px; }
}

@media (max-width: 400px) {
  .nav-cta .btn { padding: 10px 12px; font-size: 0.8rem; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}
.hero h1 { color: var(--white); }
.hero .lead { color: var(--text-on-dark); }
.hero .eyebrow,
.section-charcoal .eyebrow,
.cta-band .eyebrow,
.service-card .eyebrow {
  color: var(--gold-light);
}
.hero-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .hero-photo { order: -1; max-height: 340px; }
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-tight { padding: 60px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-charcoal { background: var(--charcoal); color: var(--white); }
.section-charcoal h2, .section-charcoal h3 { color: var(--white); }
.section-charcoal .lead { color: var(--text-on-dark); }

.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.card .step-num {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; }

.photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.photo-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.photo-card .cap {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

.mosaic { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.mosaic img { width: 100%; }

.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mosaic-grid .mosaic {
  aspect-ratio: 1;
}
.mosaic-grid .mosaic img,
.mosaic--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mosaic--cover {
  aspect-ratio: 4 / 5;
  max-height: 460px;
}
.hero-photo--about {
  max-height: 440px;
  aspect-ratio: 4 / 5;
}

/* ---------- Lightbox (enlarge print samples) ---------- */
.lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  appearance: none;
  font: inherit;
  color: inherit;
  text-align: left;
  position: relative;
  cursor: zoom-in;
}
.photo-card.lightbox-trigger {
  background: var(--white);
  border: 1px solid var(--line);
}
.lightbox-trigger img {
  transition: transform 0.35s ease;
}
.lightbox-trigger:hover img,
.lightbox-trigger:focus-visible img {
  transform: scale(1.03);
}
.lightbox-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 99, 122, 0.4);
}
.lightbox-trigger__hint {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 35, 50, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.lightbox-trigger:hover .lightbox-trigger__hint,
.lightbox-trigger:focus-visible .lightbox-trigger__hint {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: rgba(10, 14, 22, 0.88);
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none; }
.lightbox__dialog {
  position: relative;
  max-width: min(1280px, 100%);
  max-height: 100%;
  outline: none;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 56px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #111;
  cursor: zoom-out;
}
.lightbox__close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--charcoal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}
.lightbox__close:hover {
  transform: scale(1.06);
  background: var(--cream);
}
.lightbox__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 99, 122, 0.5);
}
body.lightbox-open { overflow: hidden; }

@media (max-width: 640px) {
  .lightbox { padding: 56px 12px 18px; }
  .lightbox__close {
    top: -48px;
    right: 0;
  }
  .lightbox-trigger__hint { opacity: 1; transform: none; }
}

/* ---------- Before/after image comparison slider ---------- */
.compare-slider {
  position: relative;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  --compare-pos: 50%;
}
.compare-slider__after img,
.compare-slider__before img {
  width: 100%;
  display: block;
  pointer-events: none;
}
.compare-slider__before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--compare-pos)) 0 0);
}
.compare-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  margin-left: 0;
  outline: none;
}
.compare-slider__handle:focus-visible .compare-slider__knob {
  box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--gold);
}
.compare-slider__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
}
.compare-slider__knob {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow);
  border: 2px solid var(--line);
}
.compare-slider__labels {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px 16px;
  pointer-events: none;
}
.compare-slider__labels span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(28, 26, 23, 0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-slider.is-dragging {
  cursor: grabbing;
}
.compare-slider.is-dragging .compare-slider__knob {
  transform: scale(1.08);
}

/* ---------- Steps / timeline ---------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.step .n {
  font-family: var(--sans);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.step h4 { margin: 0 0 6px; font-size: 1.02rem; font-family: var(--sans); font-weight: 700; }
.step p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.price-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.price-card .amount {
  font-family: var(--sans);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.price-card .amount span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.price-card ul { margin: 0; padding-left: 0; list-style: none; }
.price-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink);
}
.price-card li:first-child { border-top: none; }

.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.package-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .package-grid { grid-template-columns: repeat(2, 1fr); } .package-grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .package-grid { grid-template-columns: 1fr; } }

.package-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.package-card.featured {
  border-color: rgba(232, 99, 122, 0.55);
  box-shadow: var(--shadow);
}
.package-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  background-image: var(--btn-gradient);
  color: var(--white);
  margin-bottom: 12px;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.package-card .name { font-weight: 700; margin-bottom: 6px; }
.package-card .qty { color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; }
.package-card .price {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.package-card .desc { font-size: 0.85rem; color: var(--muted); }

.includes-block {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.includes-block h3 {
  font-size: 1.05rem;
  font-family: var(--sans);
  font-weight: 700;
  margin: 0 0 18px;
  text-align: center;
  color: var(--charcoal);
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.includes-grid li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.95rem;
  color: var(--ink);
}
.includes-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 700;
}

.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .addon-grid { grid-template-columns: 1fr; } }
.addon-card { background: var(--cream-2); border-radius: var(--radius-md); padding: 22px; }
.addon-card .amt { font-weight: 700; color: var(--gold-deep); font-family: var(--sans); font-size: 1.3rem; margin-bottom: 4px; }
.addon-card .t { font-weight: 600; margin-bottom: 4px; }
.addon-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h4 { margin: 0 0 8px; font-family: var(--sans); font-size: 1.02rem; }
.faq-item p { margin: 0; color: var(--muted); }

/* ---------- Callout / note ---------- */
.callout {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  border: 1px solid var(--line);
}
.callout .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
  display: block;
}

/* ---------- Service split cards (home) ---------- */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 860px) { .service-split { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  box-shadow: var(--shadow);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,26,23,0) 30%, rgba(20,18,15,0.92) 100%);
}
.service-card .content { position: relative; padding: 34px; z-index: 2; }
.service-card h3 { color: var(--white); font-size: 1.7rem; margin-bottom: 10px; }
.service-card p { color: #e7e3da; margin-bottom: 18px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: center;
}
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: var(--text-on-dark); }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; padding: 36px 26px; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal-2);
  color: var(--text-on-dark-muted);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-grid h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-grid a, .footer-grid p { color: var(--text-on-dark-muted); font-size: 0.94rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid #38332c;
  padding-top: 22px;
  font-size: 0.82rem;
  color: #948d80;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.text-muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); border: none; margin: 40px 0; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink);
  border: 1px solid var(--line);
}

/* ============================================
   "Fun" theme — Home + Photo Booth pages.
   Adds colorful gradient glows and accents on
   top of the base styles above. The Memory
   Digitization page intentionally does NOT get
   this class, so it stays calm and muted.
   ============================================ */

.theme-fun .hero {
  position: relative;
  overflow: hidden;
}
.theme-fun .hero::before,
.theme-fun .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.theme-fun .hero::before {
  width: 440px;
  height: 440px;
  background: var(--grad-1);
  top: -160px;
  right: 8%;
}
.theme-fun .hero::after {
  width: 380px;
  height: 380px;
  background: var(--grad-4);
  bottom: -180px;
  left: 4%;
}
.theme-fun .hero .wrap { position: relative; z-index: 1; }

.theme-fun .step .n,
.theme-fun .card .step-num {
  background-image: var(--btn-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.theme-fun .photo-card,
.theme-fun .package-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.theme-fun .photo-card:hover,
.theme-fun .package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(232, 99, 122, 0.22);
  border-color: rgba(232, 99, 122, 0.4);
}

.theme-fun .pill {
  background: linear-gradient(135deg, rgba(232, 99, 122, 0.12), rgba(255, 200, 184, 0.28));
  border-color: rgba(232, 99, 122, 0.35);
}

.theme-fun .service-card::after {
  background: linear-gradient(180deg, rgba(28,26,23,0) 20%, rgba(20,18,15,0.92) 100%);
}
.theme-fun .service-card:hover img { transform: scale(1.04); }
.theme-fun .service-card img { transition: transform 0.4s ease; }

.theme-fun .cta-band,
.theme-fun .section-charcoal {
  background: linear-gradient(135deg, var(--charcoal) 35%, var(--gold-deep) 100%);
}

/* ---------- Inquiry / contact forms (Netlify Forms) ---------- */
.inquiry-form {
  display: grid;
  gap: 14px;
  text-align: left;
}
.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) {
  .inquiry-form .form-row { grid-template-columns: 1fr; }
}
.inquiry-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form input[type="date"],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.12);
}
.inquiry-form select option {
  color: var(--charcoal);
}
.inquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}
.inquiry-form fieldset {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px 16px 16px;
}
.inquiry-form legend {
  padding: 0 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-on-dark);
}
.inquiry-form .checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 4px;
}
.inquiry-form .checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0;
}
.inquiry-form .checkbox-row input {
  width: auto;
  accent-color: var(--gold);
}
.inquiry-form .honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.inquiry-form button[type="submit"] {
  justify-self: start;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}
.form-note { color: var(--text-on-dark); }
.form-note a { color: #fff; }

/* ---------- Past events gallery ---------- */
.event-gallery {
  margin-top: 8px;
}
.event-gallery__stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.event-gallery__frame {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--cream-2);
}
.event-gallery__frame .event-gallery__bg {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: cover;
  filter: blur(28px) saturate(1.08) brightness(0.9);
  transform: scale(1.06);
  pointer-events: none;
  user-select: none;
}
.event-gallery__frame img.event-gallery__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}
.event-gallery__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.event-gallery__nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 99, 122, 0.45);
}
.event-gallery__nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--gold);
}
.event-gallery__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-sm);
}
.event-gallery__counter {
  margin: 8px 0 16px;
  font-size: 0.9rem;
  font-weight: 600;
}
.event-gallery__caption {
  margin: 14px 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.event-gallery__caption:empty {
  display: none;
}
.event-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.event-gallery__thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 66px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-2);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.event-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-gallery__thumb:hover {
  transform: translateY(-2px);
}
.event-gallery__thumb.is-active {
  border-color: var(--gold);
}
.event-gallery__thumb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 99, 122, 0.35);
}
.event-gallery.is-loading .event-gallery__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.event-gallery.is-loading .event-gallery__img,
.event-gallery.is-loading .event-gallery__bg {
  display: none;
}
@media (max-width: 640px) {
  .event-gallery__stage { gap: 8px; }
  .event-gallery__nav { width: 38px; height: 38px; }
  .event-gallery__thumb { flex-basis: 72px; width: 72px; height: 54px; }
}
