
:root{
  --bg:#08101d;
  --panel:rgba(10,18,34,.84);
  --panel-2:rgba(18,30,54,.88);
  --line:rgba(255,255,255,.12);
  --text:#f6f8ff;
  --muted:#d0d9ef;
  --gold:#f0cf68;
  --blue:#83bfff;
  --shadow:0 20px 50px rgba(0,0,0,.35);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    linear-gradient(rgba(6,12,24,.84),rgba(6,12,24,.90)),
    url("../images/brand-bg.jpg") center/cover fixed no-repeat;
  min-height:100vh;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(8,16,29,.78);
  border-bottom:1px solid var(--line);
}
.nav-shell{
  max-width:1160px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  gap:18px;
  justify-content:space-between;
  align-items:center;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
  min-width:0;
}
.brand-mark{
  width:46px;height:46px;border-radius:14px;overflow:hidden;
  border:1px solid var(--line); background:rgba(255,255,255,.05);
  flex:0 0 auto;
}
.brand-copy{min-width:0}
.brand-copy strong{
  display:block;
  font-size:1rem;
  letter-spacing:.08em;
}
.brand-copy span{
  display:block;
  font-size:.77rem;
  color:var(--muted);
}
.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.nav a{
  padding:10px 13px;
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  font-size:.95rem;
}
.nav a.active,.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.09);
}
.page{
  max-width:1160px;
  margin:0 auto;
  padding:28px 18px 60px;
}
.hero{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:center;
  padding:24px 0 16px;
}
.panel{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}
.panel.pad{padding:28px}
.eyebrow{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  color:#fff5cb;
  background:rgba(240,207,104,.14);
  border:1px solid rgba(240,207,104,.28);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.hero h1,.page-title{
  margin:0 0 12px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.02em;
}
.hero h1{font-size:clamp(1.8rem,4.2vw,2.7rem)}
.page-title{font-size:clamp(1.5rem,2.5vw,1.9rem)}
.lead{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.75;
  margin:0 0 14px;
}
.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.btn{
  padding:13px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
.btn-primary{
  background:linear-gradient(180deg,#f4d77d,#e8c24c);
  color:#172035;
  border-color:rgba(255,255,255,.18);
}
.hero-card{
  padding:22px;
  background:var(--panel-2);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.hero-card img{
  border-radius:18px;
  border:1px solid var(--line);
}
.quick-grid,.feature-grid,.gallery-grid,.contact-grid,.two-col{
  display:grid;
  gap:18px;
}
.quick-grid{grid-template-columns:repeat(3,1fr); margin-top:20px}
.feature-grid{grid-template-columns:repeat(4,1fr); margin-top:20px}
.two-col{grid-template-columns:1fr 1fr}
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:var(--shadow);
}
.card h3{margin:0 0 10px;font-size:1.1rem}
.card p{margin:0;color:var(--muted);line-height:1.7}
.section{margin-top:22px}
.gallery-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0 18px;
}
.filter-btn{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  font-weight:700;
}
.filter-btn.active{background:rgba(240,207,104,.15); border-color:rgba(240,207,104,.35); color:#fff1b1}
.gallery-grid{grid-template-columns:repeat(3,1fr)}
.gallery-card{
  overflow:hidden;
  padding:0;
}
.gallery-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.gallery-meta{padding:14px 15px}
.gallery-meta small{
  color:var(--blue);
  display:block;
  margin-bottom:6px;
  font-weight:800;
}
.gallery-meta p{
  margin:0;
  color:var(--muted);
}
.about-photo{
  overflow:hidden;
  padding:0;
}
.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:320px;
}
.tips{
  margin-top:16px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(240,207,104,.28);
  background:rgba(240,207,104,.12);
  color:#fff4c9;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field label{
  font-weight:800;
  color:var(--text);
}
.field input,.field textarea,.field select{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:13px 14px;
}
.field textarea{min-height:150px; resize:vertical}
.help{
  color:var(--muted);
  font-size:.92rem;
  line-height:1.65;
}
.status{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  display:none;
}
.status.show{display:block}
.status.ok{
  background:rgba(74,222,128,.15);
  border:1px solid rgba(74,222,128,.35);
}
.status.err{
  background:rgba(248,113,113,.14);
  border:1px solid rgba(248,113,113,.35);
}
.footer{
  border-top:1px solid var(--line);
  background:rgba(8,16,29,.72);
}
.footer .inner{
  max-width:1160px;
  margin:0 auto;
  padding:20px 18px 36px;
  color:var(--muted);
  font-size:.95rem;
}
code{
  background:rgba(255,255,255,.08);
  border-radius:8px;
  padding:2px 6px;
}
@media (max-width: 960px){
  .hero,.two-col,.feature-grid,.quick-grid,.gallery-grid,.contact-grid,.form-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width: 720px){
  body{
    background:
      linear-gradient(rgba(6,12,24,.88),rgba(6,12,24,.94)),
      url("../images/brand-bg.jpg") center/cover fixed no-repeat;
  }
  .nav-shell{flex-direction:column;align-items:flex-start}
  .hero,.two-col,.feature-grid,.quick-grid,.gallery-grid,.contact-grid,.form-grid{
    grid-template-columns:1fr;
  }
  .hero-card{order:-1}
  .brand-copy strong{font-size:.95rem}
}


.social-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.08);
  color:var(--text);
  font-weight:800;
  transition:transform .15s ease, background .15s ease;
}
.social-link:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.14);
}
.social-link .fb-badge{
  width:28px;
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#1877f2;
  color:#fff;
  font-weight:900;
  font-size:1rem;
  line-height:1;
}
.footer-social{
  margin-top:12px;
}




@media (max-width: 720px){
  .btn-row{
    flex-direction: column;
    align-items: center;
  }
  .btn-row .btn{
    width: min(100%, 320px);
    text-align: center;
  }
}
