:root{
  --bg:#0b0d10;
  --ink:#f3f4f6;
  --muted:rgba(243,244,246,.75);
  --line:rgba(243,244,246,.18);
  --card:rgba(16,19,24,.72);
  --accent:#ffffff;
  --shadow: 0 12px 40px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1100px;
  --font: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  letter-spacing:.2px;
}

/* NAV */
.nav{
  position:absolute;
  top:0; left:0; right:0;
  z-index:3;
  padding:18px 18px;
  display:flex;
  justify-content:center;
}
.nav-inner{
  width:min(var(--max), 100%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  font-family:var(--font);
  font-size:18px;
  letter-spacing:.6px;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--ink);
  white-space:nowrap;
}
.brand-dot{
  width:9px;height:9px;border-radius:50%;
  background:var(--accent);
  opacity:.95;
  box-shadow:0 0 0 6px rgba(255,255,255,.08);
}
.links{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.links a{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.9px;
  padding:10px 10px;
  border-radius:12px;
  transition:all .2s ease;
}
.links a:hover{
  color:var(--ink);
  background:rgba(255,255,255,.08);
}

/* HERO */
.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:96px 18px 36px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;

  background-image:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.78)),
    url("/assets/hero-love-concert.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* optional: keeps the image from “jumping” when scaling */
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(40% 35% at 70% 80%, rgba(255,255,255,.08), transparent 65%);
  pointer-events:none;
  z-index:1;
}

/* CONTENT GRID */
.content{
  position:relative;
  z-index:2;
  width:min(var(--max), 100%);
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .content{grid-template-columns:1fr}
  .links{gap:8px}
  .links a{padding:10px 8px}
}

.panel{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* MAIN PANEL */
.main{ padding:34px 30px 30px; }
.eyebrow{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.1px;
  margin:0 0 10px;
}
h1{
  font-family:var(--font);
  font-weight:600;
  font-size:44px;
  line-height:1.05;
  margin:0 0 10px;
}
.tagline{
  font-family:var(--font);
  font-size:18px;
  color:rgba(243,244,246,.92);
  margin:0 0 18px;
}
.divider{
  height:1px;
  background:var(--line);
  margin:18px 0;
}
.copy{
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
  margin:0;
  max-width:65ch;
}
.bullets{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.bullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(243,244,246,.88);
  font-size:14px;
  line-height:1.5;
}
.mark{
  width:10px;height:10px;border-radius:50%;
  background:rgba(255,255,255,.85);
  margin-top:6px;
  flex:0 0 auto;
  box-shadow:0 0 0 5px rgba(255,255,255,.06);
}

/* CONTACT PANEL */
.side{
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:16px;
}
.contact-title{
  font-family:var(--font);
  font-size:20px;
  margin:0 0 4px;
}
.contact-sub{
  margin:0 0 14px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.contact-row{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  text-decoration:none;
  color:var(--ink);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.pill:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.24);
}
.pill small{
  display:block;
  color:var(--muted);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.9px;
  margin-bottom:2px;
}
.pill strong{
  font-size:14px;
  font-weight:600;
  letter-spacing:.2px;
}

/* FOOTER */
.site-footer{
  position:relative;
  z-index:2;
  padding:18px;
  display:flex;
  justify-content:center;
}
.footer-inner{
  width:min(var(--max), 100%);
  border-top:1px solid var(--line);
  padding-top:12px;
  color:rgba(243,244,246,.55);
  font-size:12px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-inner a{
  color:rgba(243,244,246,.68);
  text-decoration:none;
}
.footer-inner a:hover{color:var(--ink)}

