:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #52525b;
  --muted-light: #a1a1aa;
  --line: #e4e4e7;
  --card: #fafafa;
  --dark: #0b0c10;
  --dark-2: #111827;
  --gold: #facc15;
  --gold-soft: rgba(250, 204, 21, 0.18);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
iframe { border: 0; display: block; width: 100%; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.brand strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.brand small {
  color: #d4d4d8;
  font-size: 12px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #ca8a04);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.28);
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.site-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
.site-nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #111827 !important;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 700;
}
.nav-cta:hover { background: #fde047; color: #111827 !important; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.hero {
  background: linear-gradient(135deg, #000, #18181b 55%, #27272a 100%);
  color: #fff;
  padding: 72px 0 88px;
}
.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
}
.hero h1 span { color: var(--gold); }
.lead {
  margin-top: 18px;
  color: #d4d4d8;
  font-size: 18px;
  line-height: 1.7;
}
.lead-secondary {
  margin-top: 10px;
}
.cta-bubble {
  margin-top: 36px;
  padding: 28px;
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  text-align: center;
}
.cta-bubble h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--text);
}
.cta-bubble p {
  margin: 0 0 18px;
  color: var(--muted);
}
.hero-image-wrap,
.about-image-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.hero-image-wrap {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
.credit {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted-light);
}
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.credential-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 12px 14px;
}
.credential-card strong {
  display: block;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
}
.credential-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: #111827;
}
.btn-primary:hover { background: #fde047; }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.section { padding: 84px 0; }
.section-light { background: #fff; }
.section-soft { background: #f8fafc; }
.section-dark { background: var(--dark); color: #fff; }
.section-head { margin-bottom: 28px; }
.section-head.no-margin { margin-bottom: 0; }
.section-head.narrow { max-width: 820px; }
.section-head h2,
.gallery-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
}
.section-head p,
.gallery-head p,
.section p,
.option-copy,
.proof-top p {
  color: var(--muted);
}
.section-dark .section-head p,
.section-dark .option-copy,
.section-dark .phase-meta,
.section-dark .disclaimer,
.section-dark .eyebrow,
.section-dark .option-sidebox p,
.section-dark .option-card p,
.section-dark li,
.dark-head p {
  color: #d4d4d8;
}
.card-grid {
  display: grid;
  gap: 22px;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card,
.testimonial-card,
.proof-card,
.option-card,
.gallery-card,
.contact-info,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.info-card,
.testimonial-card,
.proof-card,
.option-card { padding: 24px; }
.info-card h3,
.testimonial-card h3,
.proof-card h3,
.option-card h3,
.option-featured h3 { margin-top: 0; font-size: 24px; }
.testimonial-top,
.proof-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.testimonial-top p,
.proof-top p { margin: 4px 0 0; font-size: 14px; }
.pill {
  border-radius: 999px;
  background: var(--gold-soft);
  color: #a16207;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}
.testimonial-card h3 { margin-bottom: 4px; }
.testimonial-sub {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.vimeo-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1a1a2e;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.vimeo-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vimeo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(0,0,0,0.7);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.vimeo-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-left: 26px;
  margin-top: -8px;
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #fff;
}
.vimeo-facade:hover .vimeo-play { background: rgba(0,0,0,0.9); }
.vimeo-facade iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-grid { align-items: start; }
.credential-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.credential-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}
.credential-list li span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  margin-top: 7px;
  flex: 0 0 auto;
}
.credential-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
.proof-stack {
  display: grid;
  gap: 28px;
}
.embed-wrap {
  overflow: hidden;
  border-radius: 18px;
  margin-top: 20px;
  border: 1px solid var(--line);
  background: #fff;
}
.video-wrap { background: #000; }
.flyer-frame { height: 720px; }
.video-frame { aspect-ratio: 16 / 9; min-height: 360px; }
.options-container { max-width: 1240px; }
.options-stack {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}
.option-featured,
.option-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}
.option-featured {
  border-color: rgba(250,204,21,0.35);
  border-radius: 24px;
  padding: 28px;
}
.option-card {
  color: #fff;
  display: flex;
  flex-direction: column;
}
.option-card .action-row { margin-top: auto; }
.option-featured-top,
.phase-grid {
  display: grid;
  gap: 22px;
}
.option-featured-top { grid-template-columns: 1.15fr 0.85fr; }
.phase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 24px; }
.option-sidebox,
.phase-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 18px;
}
.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
}
.price {
  margin: 8px 0 0;
  font-size: 36px;
  font-weight: 800;
  color: #fde047;
}
.price span {
  font-size: 16px;
  font-weight: 500;
  color: #d4d4d8;
}
.phase-box h4,
.option-sidebox h4 { margin: 0 0 6px; font-size: 20px; }
.phase-meta { margin: 0 0 10px; font-size: 14px; }
.phase-box ul,
.option-card ul { padding-left: 20px; }
.phase-box li,
.option-card li { margin: 10px 0; }
.phase-gap { margin-top: 24px !important; }
.disclaimer {
  margin: 0;
  font-size: 14px;
}
.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.gallery-card {
  overflow: hidden;
}
.gallery-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #f0f0f0; }
.gallery-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  font-size: 12px;
  color: var(--muted);
}
.gallery-card figcaption small,
.gallery-card figcaption a {
  color: var(--muted-light);
  text-decoration: none;
  flex: 0 0 auto;
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #1877f2;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.social-link:hover { background: #0d65d9; }
.social-phone { background: #22c55e; }
.social-phone:hover { background: #16a34a; }
.social-messenger { background: linear-gradient(135deg, #00b2ff, #006aff); }
.social-messenger:hover { background: linear-gradient(135deg, #009ae0, #0058d6); }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-instagram:hover { filter: brightness(0.9); background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-grid { align-items: start; }
.contact-info,
.contact-form { padding: 24px; }
.contact-info dt {
  font-size: 14px;
  color: var(--muted);
}
.contact-info dd {
  margin: 6px 0 0;
  font-weight: 700;
}
.contact-info dl {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.contact-form {
  display: grid;
  gap: 16px;
  background: #fafafa;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d4d4d8;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
}
.form-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted-light);
}
.site-footer {
  background: #000;
  color: #a1a1aa;
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.site-footer a { color: #d4d4d8; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-note {
  margin-top: 12px;
  font-size: 12px;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.video-modal-content {
  position: relative;
  width: min(900px, calc(100% - 32px));
}
.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.video-modal-close:hover { color: var(--gold); }
.video-modal-player {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}
.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .option-featured-top,
  .phase-grid,
  .three-up {
    grid-template-columns: 1fr;
  }
  .two-up,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .site-nav.open { display: flex; }
  .two-up,
  .credential-grid,
  .form-grid,
  .contact-info dl {
    grid-template-columns: 1fr;
  }
  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .flyer-frame { height: 520px; }
}
