:root {
  --navy: #0a1430;
  --navy-2: #122247;
  --navy-3: #1b3060;
  --gold-1: #f7e7b0;
  --gold-2: #d4af52;
  --gold-3: #b8862f;
  --gold-line: rgba(212, 175, 82, 0.45);
  --cream: #efe7d2;
  --cream-soft: #cdc6b4;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(212, 175, 82, 0.12), transparent 60%),
    radial-gradient(900px 600px at 85% 100%, rgba(212, 175, 82, 0.10), transparent 60%),
    linear-gradient(165deg, var(--navy), var(--navy-2) 55%, var(--navy));
  background-attachment: fixed;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; line-height: 1.15; margin: 0; }
a { color: inherit; }

.gold-text {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* NAV */
.sp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--gold-line);
  background: rgba(10, 20, 48, 0.6); backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.sp-nav .back { text-decoration: none; color: var(--cream-soft); font-weight: 700; font-size: 0.95rem; }
.sp-nav .back:hover { color: var(--gold-1); }
.sp-nav .nav-brand { font-family: "Fraunces", serif; font-weight: 700; letter-spacing: 0.04em; font-size: 1.15rem; }
@media (max-width: 560px) { .sp-nav .nav-brand { display: none; } }

/* BUTTONS */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: "Nunito", sans-serif; font-weight: 800; font-size: 1.05rem;
  padding: 1rem 2.2rem; border-radius: 999px; text-decoration: none; cursor: pointer;
  color: var(--navy); border: none;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 10px 30px rgba(212, 175, 82, 0.35);
  transition: transform var(--ease) 220ms, box-shadow var(--ease) 220ms;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(212, 175, 82, 0.5); }
.btn-gold.sm { padding: 0.6rem 1.3rem; font-size: 0.92rem; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 800; font-size: 1.05rem; padding: 1rem 2.2rem; border-radius: 999px;
  text-decoration: none; color: var(--gold-1); border: 1.5px solid var(--gold-line);
  transition: border-color 220ms, color 220ms, transform var(--ease) 220ms;
}
.btn-outline:hover { border-color: var(--gold-1); transform: translateY(-2px); }
:focus-visible { outline: 3px solid var(--gold-1); outline-offset: 3px; }

/* CONTAINER */
.wrap { max-width: 1100px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 4vw, 2.5rem); }
.section { padding: clamp(2rem, 4vw, 3.5rem) 0; border-top: 1px solid var(--gold-line); }
.section:first-of-type { border-top: none; }

/* HERO */
.hero {
  text-align: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.2rem, 4vw, 2.5rem) clamp(2rem, 5vw, 4rem);
  max-width: 1100px; margin: 0 auto;
}
.kicker { letter-spacing: 0.32em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold-1); font-weight: 700; margin: 0 0 1rem; }
.hero h1 { font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem); font-weight: 600; margin-bottom: 0.4rem; }
.hero h2 { font-size: clamp(1.2rem, 0.9rem + 1vw, 1.6rem); font-weight: 400; font-style: italic; color: var(--gold-1); margin-bottom: 1.5rem; }
.hero p.lead { max-width: 56ch; margin: 0 auto 2rem; font-size: 1.1rem; color: var(--cream); }

.event-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin: 2rem auto 0; max-width: 900px;
}
.event-strip > div {
  border: 1px solid var(--gold-line); border-radius: 12px; padding: 1rem 0.6rem;
  background: rgba(255, 255, 255, 0.02); text-align: center;
}
.event-strip .lbl { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-1); font-weight: 800; margin-bottom: 0.3rem; }
.event-strip .val { font-size: 0.92rem; color: var(--cream); }
@media (max-width: 720px) { .event-strip { grid-template-columns: repeat(2, 1fr); } }

/* SECTION HEADINGS */
.section h2 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem); color: var(--gold-1); margin-bottom: 1.5rem; text-align: center; }
.section p { max-width: 65ch; margin: 0 auto 1.2rem; color: var(--cream); font-size: 1.05rem; }
.section p strong { color: var(--gold-1); }

/* LETTER */
.letter { max-width: 740px; margin: 0 auto; }
.letter h2 { text-align: left; font-size: clamp(1.4rem, 1rem + 1.2vw, 1.9rem); margin-bottom: 1rem; }
.letter p { margin-left: 0; margin-right: 0; text-align: left; }

/* WAYS GRID (How your business can help) */
.ways {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; max-width: 980px; margin: 0 auto;
}
.way {
  border: 1px solid var(--gold-line); border-radius: 14px; padding: 1.3rem 1.1rem;
  background: rgba(255, 255, 255, 0.02); text-align: center;
}
.way .ico { color: var(--gold-1); margin-bottom: 0.6rem; display: inline-flex; }
.way .ico svg { width: 28px; height: 28px; }
.way p { margin: 0; font-size: 0.95rem; color: var(--cream); font-weight: 600; }

/* PACKAGES GRID */
.packages {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .packages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .packages { grid-template-columns: 1fr; } }

.pkg {
  border: 1px solid var(--gold-line); border-radius: 18px;
  padding: 1.6rem 1.3rem 1.4rem;
  background: linear-gradient(180deg, rgba(212, 175, 82, 0.06), rgba(255, 255, 255, 0));
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform var(--ease) 250ms, border-color 250ms, box-shadow 250ms;
  position: relative;
}
.pkg:hover { transform: translateY(-4px); border-color: var(--gold-1); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45); }
.pkg--flagship {
  background: linear-gradient(180deg, rgba(212, 175, 82, 0.16), rgba(212, 175, 82, 0.03));
  border-color: var(--gold-2);
}
.pkg--flagship::before {
  content: "Flagship"; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--navy); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}
.pkg .pkg-name { font-family: "Fraunces", serif; font-size: 1.25rem; color: var(--gold-1); font-weight: 700; }
.pkg .pkg-price { font-family: "Fraunces", serif; font-size: 1.8rem; color: #fff; font-weight: 700; }
.pkg .pkg-price small { font-family: "Nunito"; font-size: 0.78rem; font-weight: 600; color: var(--cream-soft); display: block; letter-spacing: 0.05em; }
.pkg-includes { list-style: none; padding: 0; margin: 0.4rem 0 0; display: grid; gap: 0.45rem; }
.pkg-includes li { font-size: 0.92rem; color: var(--cream); position: relative; padding-left: 1.4rem; }
.pkg-includes li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-1); font-weight: 800;
}

/* CTA */
.cta-card {
  max-width: 760px; margin: 0 auto; padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--gold-line); border-radius: 22px;
  background: linear-gradient(180deg, rgba(212, 175, 82, 0.08), rgba(255, 255, 255, 0));
  text-align: center;
}
.cta-card h2 { color: var(--gold-1); }
.cta-card .btn-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.cta-card .email-direct { font-size: 0.9rem; color: var(--cream-soft); margin-top: 1.2rem; }
.cta-card .email-direct a { color: var(--gold-1); font-weight: 700; }

/* FOOTER */
.sp-footer {
  text-align: center; padding: 2.5rem 1.5rem 3.5rem;
  border-top: 1px solid var(--gold-line);
}
.sp-footer p { font-family: "Fraunces", serif; font-style: italic; color: var(--gold-1); margin: 0; font-size: 1.1rem; }
.sp-footer .small { font-style: normal; font-family: "Nunito"; font-size: 0.85rem; color: var(--cream-soft); margin-top: 0.8rem; }
.sp-footer .small a { color: var(--gold-1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-gold:hover, .btn-outline:hover, .pkg:hover { transform: none; }
  body { background-attachment: scroll; }
}

/* POSTER + LIGHTBOX */
.poster-wrap { text-align: center; }
.poster-tag {
  font-family: "Nunito", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 231, 176, 0.7);
  margin-bottom: 1rem;
}
.poster-trigger {
  position: relative;
  display: inline-block;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(212, 175, 82, 0.45);
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.poster-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
  border-color: rgba(247, 231, 176, 0.85);
}
.poster-trigger img { display: block; width: 100%; height: auto; }
.poster-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(10, 20, 48, 0.85);
  border: 1px solid rgba(247, 231, 176, 0.6);
  border-radius: 50%;
  color: #f7e7b0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.2s ease;
}
.poster-zoom svg { width: 20px; height: 20px; }
.poster-trigger:hover .poster-zoom { transform: scale(1.08); }
.poster-trigger:focus-visible { outline: 3px solid #f7e7b0; outline-offset: 4px; }

.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}
.lb-backdrop.open { opacity: 1; pointer-events: auto; }
.lb-stage { position: relative; max-width: 100%; max-height: 100%; }
.lb-stage img {
  display: block;
  max-width: min(96vw, 1100px);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(247, 231, 176, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  transform: scale(0.96);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.lb-backdrop.open .lb-stage img { transform: scale(1); }
.lb-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(247, 231, 176, 0.12);
  border: 1px solid rgba(247, 231, 176, 0.5);
  color: #f7e7b0;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lb-close:hover { transform: rotate(90deg); background: rgba(247, 231, 176, 0.25); }
body.lb-open { overflow: hidden; }
@media (max-width: 600px) {
  .lb-close { top: -46px; right: 8px; width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .lb-backdrop, .lb-stage img, .poster-trigger { transition: none; }
}
