:root{
  --bg:#07080b;
  --panel:#12141b;
  --panel2:#0e1016;

  --text:#f4f5f7;
  --muted:#b0b6c2;

  --line:rgba(255,255,255,.12);
  --line2:rgba(255,255,255,.16);

  --accent:#d4af37;
  --accentGlow:rgba(212,175,55,.14);

  --radius:22px;
  --max:1180px;

  --shadow: 0 28px 70px rgba(0,0,0,.55);
  --shadow2: 0 18px 50px rgba(0,0,0,.45);
}

*{
  box-sizing:border-box;
}

html,body{
  height:100%;
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 22% 12%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(900px 600px at 78% 28%, rgba(255,255,255,.04), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%),
    var(--bg);
  color:var(--text);
  line-height:1.45;
}

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

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

a:hover{
  opacity:.96;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:26px 18px 80px;
}

/* ================= NAV ================= */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border:1px solid var(--line2);
  border-radius:999px;
  background:rgba(18,20,27,.70);
  backdrop-filter:blur(10px);
  position:sticky;
  top:14px;
  z-index:50;
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}

.navLeft{
  display:flex;
  align-items:center;
  gap:12px;
}

.navLogo{
  width:190px;
  height:44px;
  display:flex;
  align-items:center;
}

.navLogo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.55);
  transform-origin:center;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.85));
}

.navlinks{
  display:flex;
  gap:18px;
  color:var(--muted);
  font-size:14px;
}

.navlinks a{
  padding:8px 10px;
  border-radius:999px;
  transition:background .15s ease, box-shadow .15s ease;
}

.navlinks a:hover,
.navlinks a.active{
  background:rgba(255,255,255,.05);
  box-shadow:0 0 0 1px rgba(212,175,55,.18) inset;
}

.cta{
  padding:10px 18px;
  border-radius:999px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.06);
  font-weight:750;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.cta:hover{
  border-color:rgba(212,175,55,.55);
  box-shadow:0 0 0 3px var(--accentGlow);
  transform:translateY(-1px);
}

/* ================= PANELS ================= */
.panel{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(18,20,27,.78);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}

.panel::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(212,175,55,.45), transparent);
  opacity:.8;
  pointer-events:none;
}

.panelInner{
  padding:24px;
}

/* ================= HERO ================= */
.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  margin-top:22px;
}

.left{
  padding:30px;
  min-height:560px;
}

.right{
  padding:18px;
  background:rgba(14,16,22,.72);
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.22);
  color:var(--muted);
  background:rgba(255,255,255,.03);
  font-size:13px;
}

.heroLogo{
  margin:18px 0 10px;
  width:min(560px, 100%);
  height:110px;
  display:flex;
  align-items:center;
}

.heroLogo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.65);
  transform-origin:center;
  filter:
    drop-shadow(0 18px 35px rgba(0,0,0,.88))
    drop-shadow(0 0 18px rgba(255,255,255,.10));
}

.title{
  margin:12px 0 10px;
  font-size:50px;
  line-height:1.04;
  letter-spacing:-.6px;
}

.subtitle{
  margin:0;
  color:var(--muted);
  max-width:58ch;
  font-size:16px;
}

/* ================= BUTTONS ================= */
.btnrow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.btn{
  padding:12px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.btn:hover{
  transform:translateY(-2px);
  border-color:rgba(212,175,55,.35);
  box-shadow:0 0 0 3px rgba(212,175,55,.10);
}

.btn.primary{
  background:#fff;
  color:#000;
  border-color:rgba(255,255,255,.35);
  box-shadow:0 10px 24px rgba(212,175,55,.08);
}

.btn.primary:hover{
  box-shadow:0 12px 30px rgba(0,0,0,.25), 0 0 0 3px rgba(212,175,55,.10);
}

/* ================= CARDS ================= */
.cards{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.035);
  padding:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.card:hover{
  transform:translateY(-3px);
  border-color:rgba(212,175,55,.35);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.card h3{
  margin:0 0 8px;
  font-size:16px;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.service-link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.service-link:hover{
  opacity:1;
}

.service-link .card,
.card.service-link{
  cursor:pointer;
}

/* ================= RIGHT SIDE ================= */
.photo{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#000;
  height:420px;
  box-shadow:var(--shadow2);
}

.photo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:top;
  background:rgba(0,0,0,.35);
}

.brandRow{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.brandCard{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  overflow:hidden;
  aspect-ratio:1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  box-shadow:0 14px 40px rgba(0,0,0,.35);
  transition:transform .15s ease, border-color .15s ease;
}

.brandCard:hover{
  transform:translateY(-3px);
  border-color:rgba(212,175,55,.35);
}

.brandCard img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.note{
  margin-top:12px;
  color:var(--muted);
  font-size:14px;
  padding:0 2px;
}

/* ================= SECTIONS ================= */
.section{
  margin-top:22px;
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.sectionHead h2{
  margin:0;
  font-size:22px;
  letter-spacing:-.2px;
}

.sectionHead span{
  color:var(--muted);
  font-size:14px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.list{
  margin:12px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
  font-size:14px;
}

.list li{
  margin:7px 0;
}

/* ================= FEATURE / AFFILIATE ================= */
.featureCard{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  margin-bottom:10px;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.priceBox{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  padding:18px;
}

.price{
  font-size:32px;
  font-weight:800;
  line-height:1;
  margin-bottom:8px;
}

.smallMuted{
  color:var(--muted);
  font-size:13px;
}

/* ================= CALENDAR ================= */
.calendarWrap{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
  box-shadow:0 18px 50px rgba(0,0,0,.35);
}

.calendarFrame{
  width:100%;
  height:760px;
  border:0;
  display:block;
}

/* ================= CONTACT ================= */
.pillRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  font-size:14px;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.pill:hover{
  transform:translateY(-2px);
  border-color:rgba(212,175,55,.35);
  box-shadow:0 0 0 3px rgba(212,175,55,.10);
}

.pill small{
  color:var(--muted);
  font-size:12px;
}

.footer{
  margin-top:24px;
  color:var(--muted);
  font-size:13px;
  text-align:center;
  opacity:.9;
}

/* ================= PAGE HERO ================= */
.pageHero{
  margin-top:22px;
}

.pageHero .panelInner{
  padding:30px;
}

.pageTitle{
  margin:8px 0 10px;
  font-size:42px;
  line-height:1.06;
  letter-spacing:-.5px;
}

.pageIntro{
  margin:0;
  max-width:62ch;
  color:var(--muted);
  font-size:16px;
}

/* ================= MOBILE ================= */
@media (max-width: 920px){
  .hero{
    grid-template-columns:1fr;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .split,
  .featureCard{
    grid-template-columns:1fr;
  }

  .navlinks{
    display:none;
  }

  .navLogo{
    width:160px;
    height:40px;
  }

  .navLogo img{
    transform:scale(1.65);
  }

  .heroLogo{
    height:96px;
  }

  .heroLogo img{
    transform:scale(1.85);
  }

  .title{
    font-size:40px;
  }

  .pageTitle{
    font-size:34px;
  }

  .photo{
    height:360px;
  }

  .calendarFrame{
    height:820px;
  }

  .container{
    padding:18px 14px 60px;
  }

  .left,
  .pageHero .panelInner,
  .panelInner{
    padding:20px;
  }
}

@media (max-width: 560px){
  .nav{
    padding:12px 14px;
  }

  .cta{
    padding:10px 14px;
    font-size:14px;
  }

  .title{
    font-size:34px;
  }

  .subtitle,
  .pageIntro{
    font-size:15px;
  }

  .sectionHead{
    flex-direction:column;
    align-items:flex-start;
  }

  .photo{
    height:300px;
  }
  .promo {
  margin: 18px 0 10px;
  padding: 16px;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    var(--accentGlow);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.promoTop {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.promoRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.promoLeft {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.promoLabel {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.promoCode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.28);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 15px;
}

.promoNote {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.copyBtn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,.4);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.copyBtn:hover {
  transform: translateY(-1px);
  border-color: rgba(212,175,55,.7);
  box-shadow: 0 0 0 3px rgba(212,175,55,.10);
  background: rgba(212,175,55,.10);
}

.copyBtn.copied {
  background: rgba(212,175,55,.18);
  border-color: rgba(212,175,55,.9);
  color: var(--accent);
}
}