/* ==========================================================================
   Live Magnets Co. — Global Stylesheet
   ========================================================================== */

:root {
  --charcoal: #17161a;
  --charcoal-2: #201f24;
  --charcoal-3: #29282e;
  --cream: #f4f0e8;
  --cream-2: #ece5d6;
  --cream-3: #e2d9c4;
  --gold: #c9a24b;
  --gold-light: #e3c887;
  --gold-dark: #9c7a34;
  --ink: #17161a;
  --ink-soft: #4a4750;
  --paper: #f4f0e8;
  --paper-soft: #5c5750;
  --line-dark: rgba(244, 240, 232, 0.14);
  --line-light: rgba(23, 22, 26, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  --radius: 4px;
  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
  --header-h: 92px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

a, button, [tabindex] { outline-offset: 3px; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 999;
  background: var(--gold);
  color: #1a1509;
  padding: 12px 20px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-img, .photo-frame.reveal { opacity: 1 !important; transform: none !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { font-family: inherit; color: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 5.8vw, 4.9rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.1rem, 4.1vw, 3.1rem); line-height: 1.1; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

.section-pad { padding: 110px 0; }
@media (max-width: 768px) { .section-pad { padding: 72px 0; } }

.bg-dark { background: var(--charcoal); color: var(--cream); }
.bg-light { background: var(--paper); color: var(--ink); }
.bg-light-alt { background: var(--cream-2); color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 18px; font-size: 1.08rem; opacity: 0.85; max-width: 640px; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.bg-dark .section-head p { color: var(--cream-2); }
.bg-light .section-head p, .bg-light-alt .section-head p { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.35s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-gold,
.btn-outline,
.btn-outline-dark {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #1a1509;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(201, 162, 75, 0.28);
}
@media (hover: hover) and (pointer: fine) {
  .btn-gold:hover,
  .btn-outline:hover,
  .btn-outline-dark:hover {
    background: #fff;
    color: #1a1509;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  }
}
.btn:active { transform: scale(0.97); transition-duration: 0.12s; }

.btn-block { width: 100%; }
.btn-lg { padding: 19px 40px; font-size: 0.98rem; }

.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(23, 22, 26, 0.0);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}
.site-header.scrolled {
  background: rgba(23, 22, 26, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  height: 76px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-head);
  color: var(--cream);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--gold-light);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav ul {
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-2);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .main-nav a:hover::after { width: 100%; }
}
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold-light); }
.nav-cta { padding: 12px 28px 15px; font-size: 0.78rem; box-shadow: 0 4px 16px rgba(201, 162, 75, 0.3); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1150px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 86vw);
    height: 100vh;
    background: var(--charcoal-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,0.4);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 26px; }
  .main-nav a { font-size: 1.1rem; }
  .nav-cta { margin-top: 10px; }
  .menu-toggle { display: flex; z-index: 600; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,14,17,0.72) 0%, rgba(15,14,17,0.55) 40%, rgba(15,14,17,0.88) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 28px); padding-bottom: 150px; max-width: 800px; }
.page-hero .hero-content { padding-bottom: 170px; }
.hero .container { padding-left: 48px; padding-right: 48px; }
@media (max-width: 640px) {
  .hero-content { padding-top: calc(var(--header-h) + 16px); padding-bottom: 120px; }
  .page-hero .hero-content { padding-bottom: 130px; }
  .hero .container { padding-left: 30px; padding-right: 30px; }
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--cream); margin-bottom: 24px; }
.hero p.lead {
  font-size: 1.2rem;
  color: var(--cream-2);
  max-width: 620px;
  margin-bottom: 42px;
}

.page-hero {
  min-height: 62vh;
  background: var(--charcoal);
  background-image: none !important;
}
.page-hero .hero-content { max-width: 720px; }
.page-hero::before { content: none; }
.page-hero::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 130%;
  height: 260%;
  transform: translate(-50%, -50%);
  background: url('../images/gold-dust-splash.webp') center / cover no-repeat;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Homepage product hero ---------- */
.hero-product {
  background: var(--charcoal);
  background-image: none !important;
}
.hero-product::before { content: none; }

.hero-video-section { position: relative; overflow: hidden; min-height: 640px; }
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,22,26,0.78) 0%, rgba(23,22,26,0.5) 45%, rgba(23,22,26,0.82) 100%);
  z-index: 1;
}
.hero-video-section .hero-content { position: relative; z-index: 2; max-width: 720px; }
@media (max-width: 640px) {
  .hero-video-section { min-height: 620px; }
  .hero-bg-video { object-fit: contain; background: var(--charcoal); }
}

.hero-product-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: none;
}
.hero-product .hero-text { max-width: 560px; }
.hero-visual {
  position: relative;
  width: 100%;
  min-height: 500px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 225%;
  height: 225%;
  transform: translate(-50%, -50%) translateZ(-460px);
  background: url('../images/gold-dust-splash.webp') center / contain no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero-collage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  z-index: 1;
}

.hero-photo {
  position: absolute;
  aspect-ratio: 1 / 1;
  transition: transform 0.4s cubic-bezier(.16,.8,.24,1);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.45));
}

.hero-photo-back { width: 44%; z-index: 1; }
.hero-photo-back img { filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.4)) brightness(0.94); }
.hero-photo-1 { top: 4%; left: 6%; transform: rotate(-7deg); }
.hero-photo-2 { top: 6%; right: 4%; transform: rotate(6deg); }

.hero-photo-front { width: 52%; z-index: 2; }
.hero-photo-3 { top: 37%; left: 0; transform: rotate(-3deg); }
.hero-photo-4 { top: 39%; right: 0; transform: rotate(4deg); }

@media (hover: hover) and (pointer: fine) {
  .hero-photo-front:hover { transform: scale(1.03) rotate(0deg); z-index: 3; }
  .hero-photo-front:hover img { filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.5)); }
}

@media (max-width: 980px) {
  .hero-product-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { min-height: 420px; min-width: 0; order: -1; max-width: 460px; width: 100%; margin: 0 auto; }
  .hero-product .hero-text { max-width: none; }
}
@media (max-width: 480px) {
  .hero-visual { min-height: 340px; }
}

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream-2);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue span {
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 2s infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s cubic-bezier(.16,.8,.24,1), transform 0.55s cubic-bezier(.16,.8,.24,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.reveal-img { opacity: 0; transform: scale(1.035); transition: opacity 0.7s cubic-bezier(.16,.8,.24,1), transform 0.9s cubic-bezier(.16,.8,.24,1); }
.reveal-img.in { opacity: 1; transform: scale(1); }
.photo-frame.reveal { opacity: 0; transform: scale(1.035); transition: opacity 0.7s cubic-bezier(.16,.8,.24,1), transform 0.9s cubic-bezier(.16,.8,.24,1); }
.photo-frame.reveal.in { opacity: 1; transform: scale(1); }

/* ---------- Grids / cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

.value-card {
  padding: 40px 32px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.bg-dark .value-card { border-color: var(--line-dark); }
.bg-light .value-card, .bg-light-alt .value-card { border-color: var(--line-light); }
@media (hover: hover) and (pointer: fine) {
  .value-card:hover { transform: translateY(-6px); border-color: var(--gold); }
}
.value-card .num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  display: block;
}
.value-card h3 { margin-bottom: 14px; }
.value-card p { opacity: 0.82; font-size: 0.98rem; }

.testimonial-card { display: flex; flex-direction: column; gap: 14px; position: relative; overflow: visible; }
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -6px; right: 18px;
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  pointer-events: none;
}
.testimonial-card p { opacity: 0.92; font-size: 0.98rem; font-style: italic; line-height: 1.65; }
.testimonial-head { display: flex; align-items: center; gap: 14px; }
.avatar-circle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1509;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.35);
}
.testimonial-name { display: block; font-family: var(--font-head); font-size: 0.98rem; font-weight: 600; color: var(--gold-light); margin-bottom: 4px; }
.testimonial-head .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2.5px; }

.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
@media (hover: hover) and (pointer: fine) {
  .photo-frame:hover img { transform: scale(1.06); }
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--gold-light) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, var(--gold-light) 1.5px, transparent 1.5px),
    linear-gradient(to left, var(--gold-light) 1.5px, transparent 1.5px),
    linear-gradient(to top, var(--gold-light) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: top left, top left, bottom right, bottom right;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .photo-frame:hover::before { opacity: 0.9; }
}
.photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(201,162,75,0.35);
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-grid .photo-frame { aspect-ratio: 1/1; }
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 100px 0;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,162,75,0.14), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 20px; }
.cta-band p { color: var(--cream-2); max-width: 560px; margin: 0 auto 42px; font-size: 1.05rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Package tiers ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tier-grid { grid-template-columns: 1fr; } }

.tier-card {
  background: var(--charcoal-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .tier-card:hover { transform: translateY(-8px); border-color: var(--gold); }
}
.tier-card.featured { border-color: var(--gold); background: linear-gradient(180deg, var(--charcoal-3), var(--charcoal-2)); }
.tier-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.tier-card h3 { color: var(--cream); margin-bottom: 6px; }
.tier-price { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 24px; text-transform: uppercase; }
.tier-card ul { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; flex-grow: 1; }
.tier-card li {
  font-size: 0.92rem;
  color: var(--cream-2);
  padding-left: 22px;
  position: relative;
}
.tier-card li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* ---------- Add-on cards ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
@media (max-width: 980px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .addon-grid { grid-template-columns: 1fr; } }
.addon-card {
  padding: 30px 24px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  text-align: left;
}
.addon-card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(201,162,75,0.14);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-head);
  font-size: 1.2rem;
}
.addon-card h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 10px; }
.addon-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Event type chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 14px; }
.chip {
  padding: 10px 22px;
  border: 1px solid rgba(244,240,232,0.3);
  border-radius: 30px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-2);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line-light);
}
.bg-dark .faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  transition: transform 0.35s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute; background: var(--gold);
  top: 50%; left: 50%;
}
.faq-q .plus::before { width: 12px; height: 1px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 1px; height: 12px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .plus { transform: rotate(135deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.98rem;
  opacity: 0.85;
}
.faq-item.open .faq-a { padding-bottom: 26px; }

/* ---------- Forms ---------- */
#event-form { scroll-margin-top: 110px; }
.form-card {
  background: var(--cream-2);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 50px;
}
@media (max-width: 640px) { .form-card { padding: 30px 22px; } }

.form-section + .form-section { margin-top: 46px; padding-top: 40px; border-top: 1px solid var(--line-light); }
.form-section-title { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 6px; }
.form-section-sub { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.form-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 680px) { .form-row, .form-row.cols-3 { grid-template-columns: 1fr; } }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.field label .req { color: var(--gold-dark); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(23,22,26,0.2);
  border-radius: 4px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 0.8rem; color: var(--paper-soft); margin-top: 6px; }

.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 680px) { .check-grid { grid-template-columns: 1fr; } }
.check-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(23,22,26,0.15);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .check-option:hover { border-color: var(--gold); }
}
.check-option input { margin-top: 3px; accent-color: var(--gold-dark); width: 18px; height: 18px; flex-shrink: 0; }
.check-option .co-text strong { display: block; font-size: 0.96rem; margin-bottom: 4px; }
.check-option .co-text span { font-size: 0.85rem; color: var(--ink-soft); }

.toggle-row { display: flex; gap: 30px; flex-wrap: wrap; }
.toggle-option { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.toggle-option input { width: 18px; height: 18px; accent-color: var(--gold-dark); }

.form-note {
  font-size: 0.85rem;
  color: var(--paper-soft);
  margin-top: 18px;
}

.form-status {
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 0.92rem;
  display: none;
}
.form-status.success { display: block; background: rgba(90,140,90,0.12); color: #3c6b3c; border: 1px solid rgba(90,140,90,0.3); }
.form-status.error { display: block; background: rgba(180,70,70,0.1); color: #a13a3a; border: 1px solid rgba(180,70,70,0.3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--cream-2); padding: 90px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand { display: flex; align-items: flex-start; gap: 16px; }
.footer-logo { width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0; }
.footer-brand h4 { font-family: var(--font-head); color: var(--cream); font-size: 1.15rem; margin-bottom: 8px; }
.footer-brand p { font-size: 0.92rem; opacity: 0.75; max-width: 300px; }

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.94rem; opacity: 0.82; transition: opacity 0.3s, color 0.3s; }
@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover { opacity: 1; color: var(--gold-light); }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: 0.8rem;
  opacity: 0.6;
}
.footer-social { display: flex; gap: 18px; }

/* ---------- misc ---------- */
.divider-gold { width: 60px; height: 1px; background: var(--gold); margin: 22px 0; }

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.badge-strip span { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: 0.04em; }
.badge-strip .sep { color: var(--gold); }

.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 860px) { .two-col-text { grid-template-columns: 1fr; gap: 30px; } }

.stat-row { display: flex; gap: 60px; flex-wrap: wrap; margin-top: 40px; }
.stat-row .stat strong { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); }
.stat-row .stat span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.75; }

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