:root{
  --bg: #07070a;
  --bg2:#0c0b10;
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);

  --accent: #ff2d7a;
  --accent2: #b40cff;
  --wine: #7b0d2a;
  --glow: 0 0 32px rgba(255,45,122,.25);

  --shadow: 0 20px 60px rgba(0,0,0,.60);
  --radius: 18px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
  line-height:1.55;
  background:
    radial-gradient(900px 500px at 18% 12%, rgba(255,45,122,.10), transparent 60%),
    radial-gradient(800px 450px at 85% 20%, rgba(180,12,255,.08), transparent 55%),
    radial-gradient(700px 400px at 65% 95%, rgba(123,13,42,.10), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:1;text-decoration:underline}
.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}

/* Sexy serif headings */
h1,h2,h3{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing:-0.4px;
}

.topbar{
  position:sticky;top:0;z-index:20;
  background: rgba(7,7,10,.70);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.09);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:14px 0;
}

.brand{display:flex;align-items:center;gap:12px}
.brand__mark{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background:
    radial-gradient(12px 12px at 35% 35%, rgba(255,45,122,.55), transparent 70%),
    rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.35), var(--glow);
}
.brand__text{display:flex;flex-direction:column;gap:2px}
.brand__text span{font-size:12px;color:var(--muted)}

.nav{display:flex;align-items:center;gap:14px;font-size:14px}
.nav__btn{
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(255,45,122,.16), rgba(180,12,255,.10));
  box-shadow: var(--glow);
}
.nav__btn:hover{text-decoration:none;opacity:1}

.hero{padding:34px 0 10px}
.hero__grid{display:grid;grid-template-columns: 1.2fr .8fr;gap:18px;align-items:stretch}
.hero__copy{
  border:1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius: var(--radius);
  padding:26px;
  box-shadow: var(--shadow);
}
.kicker{
  margin:0 0 10px;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.hero h1{margin:0 0 10px;font-size:40px;letter-spacing:-.8px}
.lead{margin:0;color:var(--muted);max-width:62ch}

.chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.chip{
  font-size:12px;padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  letter-spacing:.14em;
  text-transform:uppercase;
}

.cta{display:flex;gap:10px;margin-top:18px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(255,45,122,.18), rgba(180,12,255,.12));
  box-shadow: 0 10px 30px rgba(0,0,0,.25), var(--glow);
  text-decoration:none;
}
.btn:hover{opacity:1;text-decoration:none}
.btn--ghost{
  background: transparent;
  box-shadow:none;
  border:1px solid rgba(255,255,255,.12);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.03);
}

.btn--of{
  background: linear-gradient(90deg, rgba(255,45,122,.22), rgba(255,255,255,.06));
  border-color: rgba(255,45,122,.28);
}
.btn--of:hover{
  border-color: rgba(255,45,122,.40);
}
.contact-actions{margin-top:12px}

.hero__media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  min-height: 360px;
}
.hero__media img{
  width:100%;height:100%;
  display:block;
  object-fit:cover;
}

.section{padding:26px 0}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{display:flex;justify-content:space-between;align-items:flex-end;gap:14px;margin-bottom:14px}
.section__head h2{margin:0;font-size:22px}
.section__head p{margin:0;color:var(--muted);font-size:14px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  margin:0;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,45,122,.22);
  box-shadow: 0 18px 55px rgba(0,0,0,.45), var(--glow);
}
.card img{
  width:100%;height:320px;display:block;
  object-fit:cover;
}

.card--info{display:grid;place-items:stretch}
.info{
  padding:16px;
  color:var(--muted);
  display:flex;flex-direction:column;gap:10px;
}
.info strong{color:var(--text)}
.muted{color:var(--muted)}
.small{font-size:13px}

.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.panel{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 14px 50px rgba(0,0,0,.35);
}
.panel h3{margin:0 0 10px}
.list{margin:10px 0 0 18px;color:var(--muted)}

.kv{display:flex;flex-direction:column;gap:10px;margin-top:10px}
.kv div{display:flex;justify-content:space-between;gap:10px}
.kv .k{color:var(--muted)}
.kv .v{color:var(--text)}

.contactbox{
  margin-top:12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding:14px;
  background: rgba(255,255,255,.03);
  display:flex;flex-direction:column;gap:6px;
}
.label{
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.16em;
}
.email{font-weight:800}

.links{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}
.links a{
  border:1px solid rgba(255,255,255,.12);
  padding:8px 12px;border-radius:999px;
  background: rgba(255,255,255,.04);
}
.links a:hover{text-decoration:none;opacity:1;border-color: rgba(255,45,122,.20)}

.footer{padding:20px 0 40px}
.footer__inner{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:16px;
  display:flex;justify-content:space-between;gap:12px;align-items:center;
}
.footer__links{display:flex;gap:14px}

.legal{padding:26px 0}
.legal__inner{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: var(--shadow);
}
.legal h1{margin:0 0 6px}
.legal h2{margin:18px 0 8px}
.legal ul{color:var(--muted)}
.back{margin-top:18px}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  padding: 2px 6px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

@media (max-width: 950px){
  .hero__grid{grid-template-columns: 1fr}
  .hero__media{min-height: 320px}
  .grid{grid-template-columns: repeat(2, 1fr)}
  .two{grid-template-columns: 1fr}
}
@media (max-width: 560px){
  .nav{display:none}
  .grid{grid-template-columns: 1fr}
  .card img{height: 280px}
}
