:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#6b7280;
  --nav:#0b1220;
  --nav2:#0e1a2f;
  --card:#ffffff;
  --border:rgba(15,23,42,.08);
  --shadow:0 10px 30px rgba(2,6,23,.08);
  --accent1:#ff2d55;
  --accent2:#ff006a;
  --max:1120px;
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 20px;}
/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, rgba(11,18,32,.95), rgba(11,18,32,.82));
  backdrop-filter:saturate(120%) blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:64px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700; color:#fff;
}
.brand img{height:28px; width:auto}
.nav{
  display:flex; align-items:center; gap:22px;
  color:rgba(255,255,255,.9);
  font-size:14px;
}
.nav a{opacity:.9}
.nav a:hover{opacity:1}
.nav a.active{color:#ffd2dd}
/* Hero */
.hero{
  background:
    linear-gradient(90deg, rgba(10,14,24,.70) 0%, rgba(10,14,24,.40) 55%, rgba(10,14,24,.25) 100%),
    url("../img/hero-bg.jpeg") center/cover no-repeat;
  min-height:420px;
  display:flex; align-items:center;
  border-bottom:1px solid rgba(15,23,42,.06);
}
.hero .content{max-width:620px; padding:70px 0;}
.hero h1{
  color:#fff;
  font-size:56px; line-height:1.05;
  margin:0 0 12px 0;
  letter-spacing:-.02em;
}
.hero p{
  color:rgba(255,255,255,.82);
  margin:0 0 22px 0;
  font-size:16px;
}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(90deg, var(--accent1), var(--accent2));
  color:#fff;
  font-weight:700;
  box-shadow:0 18px 35px rgba(255,0,80,.18);
}
.btn svg{width:18px;height:18px;opacity:.95}
.section{padding:54px 0}
.section h2{
  text-align:center;
  font-size:26px;
  margin:0 0 26px 0;
  letter-spacing:.02em;
  color:#111827;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 12px 25px rgba(2,6,23,.05);
  padding:22px 22px 20px;
}
.card .icon{
  width:44px;height:44px;border-radius:12px;
  background:linear-gradient(180deg, #ff2d55, #ff005f);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 26px rgba(255,0,90,.22);
  margin-bottom:12px;
}
.card .icon svg{width:22px;height:22px; fill:white}
.card h3{margin:0 0 8px 0; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:13px; line-height:1.5}
.genres{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.genre{
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px 10px;
  text-align:center;
  background:#fff;
  box-shadow:0 10px 22px rgba(2,6,23,.04);
}
.genre .emoji{font-size:22px; margin-bottom:8px}
.genre .label{font-size:12px; color:#374151}
/* CTA */
.cta{
  background:
    linear-gradient(90deg, rgba(4,10,22,.76) 0%, rgba(4,10,22,.56) 60%, rgba(4,10,22,.50) 100%),
    url("../img/cta-bg.jpeg") center/cover no-repeat;
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.cta-inner{
  padding:64px 0;
  text-align:center;
}
.cta h2{color:#fff; margin:0 0 10px 0; font-size:42px; letter-spacing:-.01em}
.cta p{color:rgba(255,255,255,.82); margin:0 0 18px 0}
.cta .btn{padding:12px 26px}
/* Footer */
.site-footer{
  background:linear-gradient(180deg, #0b1220, #070b14);
  color:rgba(255,255,255,.86);
  padding:36px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:26px;
  align-items:start;
}
.footer-brand{
  display:flex; gap:12px; align-items:flex-start;
}
.footer-brand img{height:28px}
.footer-brand p{margin:6px 0 0; color:rgba(255,255,255,.66); font-size:13px; line-height:1.5}
.footer-col h4{margin:0 0 10px 0; font-size:13px; color:#fff}
.footer-col a{display:block; padding:6px 0; color:rgba(255,255,255,.70); font-size:13px}
.footer-col a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:22px; padding-top:16px;
  text-align:center;
  color:rgba(255,255,255,.55);
  font-size:12px;
}
/* About page */
.page-hero{
  height:180px;
  display:flex; align-items:center; justify-content:center;
  background:
    linear-gradient(180deg, rgba(7,10,16,.35), rgba(7,10,16,.55)),
    url("../img/about-hero.jpeg") center/cover no-repeat;
}
.page-hero h1{color:#fff; font-size:44px; margin:0}
.split{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap:34px;
  align-items:center;
}
.badge{
  width:42px;height:42px;border-radius:12px;
  background:linear-gradient(180deg, #ff2d55, #ff005f);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 26px rgba(255,0,90,.22);
}
.badge svg{width:22px;height:22px; fill:#fff}
.copy h3{margin:0 0 10px 0; font-size:22px}
.copy p{margin:0; color:var(--muted); line-height:1.7}
.media{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(2,6,23,.14);
  border:1px solid rgba(255,255,255,.3);
}
.values{
  text-align:center;
}
.values h2{margin-bottom:12px}
.value-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.value-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 18px;
  text-align:left;
  box-shadow:0 12px 26px rgba(2,6,23,.04);
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.value-num{
  width:34px;height:34px;border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,45,85,.12);
  color:var(--accent2);
  font-weight:800;
}
.value-item strong{display:block; margin-bottom:4px}
.value-item span{display:block; color:var(--muted); font-size:13px}
/* Contact page */
.contact-hero{
  height:220px;
  display:flex; align-items:center; justify-content:center;
  background:
    linear-gradient(180deg, rgba(7,10,16,.35), rgba(7,10,16,.62)),
    url("../img/contact-hero.jpeg") center/cover no-repeat;
}
.contact-hero h1{color:#fff; font-size:44px; margin:0}
.contact-hero p{color:rgba(255,255,255,.75); margin:10px 0 0; text-align:center}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}
.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:22px;
}
.field{margin-bottom:14px}
label{display:block; font-size:12px; color:#374151; margin-bottom:6px}
input,textarea{
  width:100%;
  border:1px solid rgba(15,23,42,.12);
  border-radius:12px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
}
textarea{min-height:120px; resize:vertical}
small.help{display:block; color:var(--muted); font-size:12px; margin-top:6px}
.btn-secondary{
  width:100%;
  justify-content:center;
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.info-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 12px 26px rgba(2,6,23,.04);
  padding:18px;
}
.info-card .top{
  display:flex; align-items:center; gap:10px; margin-bottom:10px
}
.pill{
  width:38px;height:38px;border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}
.pill.blue{background:#2563eb}
.pill.green{background:#16a34a}
.pill.red{background:#ef4444}
.pill.gray{background:#6b7280}
.pill svg{width:18px;height:18px; fill:#fff}
.info-card h4{margin:0; font-size:14px}
.info-card p{margin:6px 0 0; font-size:13px; color:var(--muted); line-height:1.5}
.info-card a{color:var(--accent2); font-weight:600}
.hours{
  margin-top:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:0 12px 26px rgba(2,6,23,.04);
}
.hours h4{margin:0 0 10px 0}
.hours-row{
  display:flex; justify-content:space-between;
  padding:8px 0;
  border-top:1px dashed rgba(15,23,42,.12);
  font-size:13px; color:var(--muted)
}
.hours-row:first-of-type{border-top:none}
/* Responsive */
@media (max-width: 980px){
  .hero h1{font-size:44px}
  .grid-3{grid-template-columns:1fr}
  .genres{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .value-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .nav{gap:14px; font-size:13px}
  .hero{min-height:380px}
  .hero .content{padding:56px 0}
  .hero h1{font-size:36px}
  .cta h2{font-size:30px}
  .genres{grid-template-columns:repeat(2,1fr)}
  .info-grid{grid-template-columns:1fr}
}