:root{
  --bg: #0b1220;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.09);
  --border: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --brand: #ff3d6d;
  --brand-2: #ffd166;
  --shadow: 0 18px 55px rgba(0,0,0,0.45);
  --radius: 18px;
  --max: 1180px;
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1100px 700px at 12% 10%, rgba(255,61,109,0.22), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(255,209,102,0.16), transparent 55%),
    radial-gradient(900px 600px at 40% 95%, rgba(86,214,255,0.10), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height:1.55;
}

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

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

/* Header */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.brand-dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 4px rgba(255,61,109,0.12);
  flex: 0 0 auto;
}
.brand-name{
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.brand-sub{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-top: -2px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
  text-decoration:none;
  white-space: nowrap;
}
.chip:hover{
  background: rgba(255,255,255,0.08);
  text-decoration:none;
}
.chip.primary{
  border-color: rgba(255,61,109,0.35);
  background: rgba(255,61,109,0.16);
}
.chip.primary:hover{
  background: rgba(255,61,109,0.22);
}

/* Hero */
.hero{ padding: 28px 0 16px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}
.card{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-copy{ padding: 22px; }

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}
.kicker .pill{
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}
h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.3px;
}
.lead{
  margin: 0 0 16px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  max-width: 60ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-img{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px;
  background: radial-gradient(700px 400px at 40% 20%, rgba(255,61,109,0.22), transparent 55%),
              radial-gradient(600px 380px at 70% 70%, rgba(255,209,102,0.14), transparent 55%),
              rgba(255,255,255,0.04);
}
.hero-img img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.42);
  object-fit: cover;
}

/* Sections */
.section{ padding: 18px 0 26px; }
.section h2{ margin: 0 0 10px; font-size: 20px; letter-spacing: -0.2px; }
.section p.sub{ margin: 0 0 14px; color: var(--muted); }

.features{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.feat{
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
}
.feat strong{ display:block; margin-bottom: 4px; font-size: 14px; }
.feat span{ color: var(--muted); font-size: 13px; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.shot{
  position: relative;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  min-height: 160px;
  cursor: zoom-in;
}
.shot img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 160ms ease;
}
.shot:hover img{ transform: scale(1.04); }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.contact-card{ padding: 18px; }
.contact-card h3{ margin: 0 0 10px; font-size: 16px; letter-spacing: -0.2px; }
.contact-row{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 12px;
}
.contact-item{
  display:flex;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.contact-item .label{ color: var(--muted); font-size: 12px; margin-bottom: 2px; }
.contact-item .value{ font-weight: 650; letter-spacing: 0.1px; }

.fb{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.fb img{
  width: 150px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.fb small{ color: var(--muted); }

/* Footer */
footer{
  padding: 18px 0 40px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.footer-inner{
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Lightbox */
.lb{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.78);
  z-index: 9999;
  padding: 18px;
}
.lb.open{ display:flex; }
.lb-dialog{
  width: min(1100px, 96vw);
  max-height: 92vh;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(11,18,32,0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.7);
  display:flex;
  flex-direction: column;
}
.lb-bar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.lb-title{
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70vw;
}
.lb-actions{
  display:flex;
  gap: 8px;
  align-items:center;
  flex: 0 0 auto;
}
.lb-btn{
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  cursor: pointer;
  user-select:none;
}
.lb-btn:hover{ background: rgba(255,255,255,0.10); }
.lb-imgwrap{
  position: relative;
  padding: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 1 1 auto;
  min-height: 240px;
}
.lb-img{
  max-width: 100%;
  max-height: calc(92vh - 110px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  object-fit: contain;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-grid{ grid-template-columns: 1fr; }
  .brand-sub{ max-width: 72vw; }
}
@media (max-width: 520px){
  .features{ grid-template-columns: 1fr; }
  .chip{ font-size: 13px; padding: 8px 10px; }
  .lb-title{ max-width: 58vw; }
}
