:root{
  --bg:#0f141a;
  --border:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --accent:#c96be4;
  --accent-soft:rgba(201,107,228,.18);
  --radius-xl:28px;
  --radius-lg:20px;
  --shadow:0 18px 50px rgba(0,0,0,.45);
  --max:1100px;
}

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

body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(201,107,228,.18), transparent 60%),
    linear-gradient(180deg,#0a0f14,#0f141a);
}

a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

.container{
  width:min(var(--max),calc(100% - 40px));
  margin:0 auto;
}

.section{padding:36px 0}

h1,h2,h3{
  font-family:"Playfair Display",Georgia,serif;
  margin:0 0 14px;
}

p{margin:0;line-height:1.6;color:var(--muted)}

.lead{max-width:70ch}

/* PHONE BAR */
.phone-top{
  position:sticky;
  top:0;
  z-index:100;
  background:#0a0f14;
  border-bottom:1px solid var(--border);
  text-align:center;
  padding:14px;
}
.phone-top a{
  color:#fff;
  font-size:20px;
  font-weight:800;
}

/* HEADER */
.topbar{
  position:sticky;
  top:52px;
  z-index:90;
  background:rgba(15,20,26,.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
}

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

.brand-mark{
  width:36px;
  height:36px;
  border-radius:12px;
  background:linear-gradient(145deg,#c96be4,#9e4fbe);
}

.brand-title{font-weight:700}
.brand-sub{font-size:13px;color:var(--muted)}

.nav-links{
  display:flex;
  gap:12px;
}

.nav-links a{
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
}

.nav-primary{
  background:linear-gradient(145deg,#c96be4,#9e4fbe);
  color:#fff;
}

/* HERO */
.hero{padding:36px 0}

.hero-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}

.hero-image{
  height:420px;
  background-size:cover;
  background-position:center;
}

.hero-text{
  padding:26px;
  background:#0f141a;
}

.pill{
  display:inline-block;
  margin-bottom:10px;
  padding:6px 12px;
  border-radius:999px;
  background:var(--accent-soft);
  border:1px solid var(--accent);
  font-size:13px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  padding:20px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}

/* VIDEO */
.video-wrap{
  margin-top:20px;
  aspect-ratio:16/9;
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid var(--border);
}

.video-wrap iframe{
  width:100%;
  height:100%;
  border:0;
}

/* BOOKING */
.steps{
  margin:18px 0;
  padding-left:20px;
  line-height:1.8;
}

.form-wrap{
  margin-top:24px;
  height:900px;
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid var(--border);
}

.form-wrap iframe{
  width:100%;
  height:100%;
  border:0;
}

/* FOOTER */
.footer{
  padding:32px 0;
  text-align:center;
  color:var(--muted);
  border-top:1px solid var(--border);
}

/* MOBILE */
@media (max-width:800px){

  .header-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .nav-links{
    gap:8px;
  }

  .hero-image{
    height:260px;
  }

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

  .form-wrap{
    height:1200px;
  }
}