:root{
  --navy: #0b2545;
  --beige: #f3e9df;
  --gold: #b88b45;
  --pink: #f6b1c1;
  --muted:#6b6b6b;
  --max-width:1100px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
body{margin:0;color:var(--navy);background:var(--beige);line-height:1.45}
.container{width:calc(100% - 32px);max-width:var(--max-width);margin:0 auto;padding:24px 16px}
.header-inner{display:flex;gap:12px;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px}
.logo-img{height:64px;border-radius:8px;object-fit:contain}
.logo-text{font-size:1rem;margin:0;color:var(--navy);font-weight:800}
.phone{background:var(--gold);color:var(--navy);padding:8px 12px;border-radius:8px;text-decoration:none;font-weight:700}

.hero{background:linear-gradient(180deg, rgba(11,37,69,0.95) 0%, rgba(11,37,69,0.85) 100%);color:white;padding:36px 0;border-radius:0 0 20px 20px}
.hero-inner{display:flex;flex-wrap:wrap;gap:20px;align-items:center}
.hero-text{flex:1 1 320px}
.hero-text h2{margin:0 0 10px;font-size:1.6rem;color:var(--pink)}
.hero-text p{color:#fff;margin:0 0 12px}
.hero-photo img{width:100%;max-width:420px;border-radius:10px;display:block;box-shadow:0 8px 30px rgba(0,0,0,0.3)}
.btn{display:inline-block;padding:10px 16px;border-radius:8px;text-decoration:none;background:var(--pink);color:var(--navy);font-weight:700}
.btn.ghost{background:transparent;border:2px solid var(--pink);color:var(--pink)}

.container h3{color:var(--navy);margin-bottom:10px}
.about p{color:var(--muted)}

.services .service{background:white;padding:14px;border-radius:10px;margin-bottom:12px;box-shadow:0 2px 8px rgba(11,37,69,0.06)}
.services .price{color:var(--gold);font-weight:700;margin-top:6px}
.note, .small{color:var(--muted);font-size:0.95rem}

.gallery .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:10px;margin-top:10px}
.gallery img{width:100%;border-radius:8px;display:block;object-fit:cover;height:120px}

.contact-grid{display:flex;gap:20px;flex-wrap:wrap;align-items:flex-start}
.contact-info{flex:1 1 240px}
.contact-info a{color:var(--navy);text-decoration:none;font-weight:700}
.contact-form{flex:1 1 320px;display:flex;flex-direction:column;gap:10px}
.contact-form label{display:flex;flex-direction:column;font-size:0.95rem;color:var(--muted)}
.contact-form input,.contact-form textarea{padding:10px;border-radius:8px;border:1px solid #e5e5e5}

.form-hint{font-size:0.9rem;color:var(--muted)}

.site-footer{background:rgba(11,37,69,0.06);padding:16px 0;text-align:center;color:var(--muted);margin-top:20px}

@media (max-width:720px){
  .hero-inner{flex-direction:column-reverse;align-items:stretch}
  .header-inner{gap:8px}
  .logo-img{height:52px}
}
