
:root{
  --bg:#0b1220;
  --surface:rgba(255,255,255,.05);
  --surface2:rgba(255,255,255,.035);
  --text:#e7ecff;
  --muted:#b7c0ff;
  --border:rgba(255,255,255,.12);
  --accent1:rgba(124,242,154,.38);
  --accent2:rgba(124,199,255,.28);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(124,199,255,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(124,242,154,.18), transparent 55%),
    var(--bg);
}
a{color:#7cc7ff;text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1100px,92%);margin:0 auto}

.site-header{
  position:sticky;top:0;z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.65);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  border:1px solid var(--border);
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  font-size:20px;
}
.brand-name{font-weight:900;letter-spacing:.2px}
.brand-sub{color:var(--muted);font-size:13px;margin-top:2px}

.header-cta{display:flex;gap:10px;align-items:center}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  border:1px solid var(--border);
  color:var(--text);
  font-weight:800;
}
.btn:hover{transform: translateY(-1px); text-decoration:none}
.btn-outline{background:transparent}

.hero{
  position:relative;
  min-height: 72vh;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,18,32,.55), rgba(11,18,32,.78));
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  padding:52px 0;
  align-items:stretch;
}
.hero-copy h1{font-size:44px;line-height:1.05;margin:0 0 12px}
.hero-copy p{color:var(--muted);font-size:16px;margin:0 0 16px}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.hero-pills{display:flex;gap:10px;flex-wrap:wrap}
.hero-pills span{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
}

.hero-card{
  border:1px solid var(--border);
  background: rgba(16,26,51,.72);
  border-radius:20px;
  padding:18px;
}
.hero-card-title{font-weight:900;margin-bottom:10px}
.hero-card-row{display:flex;justify-content:space-between;gap:12px;padding:8px 0;border-bottom:1px dashed rgba(255,255,255,.12)}
.hero-card-row:last-of-type{border-bottom:none}
.hero-card-row span{color:var(--muted)}
.hero-card-note{margin-top:12px;color:var(--muted);font-size:12px}

.section{padding:44px 0}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px;font-size:28px}
.section-head p{margin:0;color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap:14px;
}
.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:20px;
  padding:16px;
}
.card h3{margin:0 0 6px}
.card p{margin:0 0 10px;color:var(--muted)}
.chip{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  font-weight:800;
  font-size:13px;
}
.chip-quote{opacity:.9}

.banner{
  position:relative;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.banner-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter: blur(0px) saturate(1.05);}
.banner-overlay{position:absolute;inset:0;background: rgba(11,18,32,.78);}
.banner-inner{
  position:relative;
  padding:28px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.banner-copy h2{margin:0 0 6px;font-size:22px}
.banner-copy p{margin:0;color:var(--muted)}

.form{
  border:1px solid var(--border);
  background: rgba(16,26,51,.55);
  border-radius:20px;
  padding:16px;
  display:grid;
  gap:12px;
  max-width: 780px;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
label{display:grid;gap:6px;color:var(--muted);font-size:13px}
input, textarea, select{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(11,18,32,.6);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus, select:focus{border-color: rgba(124,242,154,.55)}
.fineprint{font-size:12px;color:var(--muted);margin:0}

.pairs{display:grid;gap:14px}
.pair{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.shot{
  margin:0;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius:18px;
  overflow:hidden;
}
.shot img{width:100%;display:block;aspect-ratio: 16/10;object-fit:cover}
.shot figcaption{
  padding:10px 12px;
  font-weight:900;
  color:var(--text);
  background: rgba(11,18,32,.6);
  border-top:1px solid var(--border);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.gallery img{
  width:100%;
  display:block;
  border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  aspect-ratio: 4/3;
  object-fit:cover;
}

.site-footer{
  padding:22px 0;
  border-top:1px solid var(--border);
  background: rgba(11,18,32,.65);
}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;color:var(--muted);font-size:13px}
.footer-links{display:flex;gap:10px;align-items:center;flex-wrap:wrap}

@media (max-width: 920px){
  .hero-inner{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .hero-copy h1{font-size:36px}
}
@media (max-width: 560px){
  .grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .pair{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .header-cta{display:none}
}


.brand-mark{overflow:hidden;}
.brand-mark img{width:100%;height:100%;object-fit:cover;display:block;}

.maps-reviews{
  display:grid;
  grid-template-columns: 1.4fr .6fr;
  gap:14px;
}
.map-wrap{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.map-wrap iframe{
  width:100%;
  height:320px;
  border:0;
}
.reviews-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  background: rgba(16,26,51,.55);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.stars{
  font-size:24px;
  margin-bottom:6px;
}
.reviews-text{
  color:var(--muted);
  margin-bottom:10px;
}
@media (max-width: 760px){
  .maps-reviews{grid-template-columns:1fr}
}
