/* Basic Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height: 1.6; color: #121212; background: #fff; }

/* Layout helpers */
.container { width: min(1100px, 92%); margin: 0 auto; }
.accent { color: #e11d48; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.9); backdrop-filter: blur(6px); border-bottom: 1px solid #eee; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.logo { width: 40px; height: 40px; }
.brand-text { font-family: Oswald, Arial, sans-serif; font-size: 1.1rem; letter-spacing: .5px; }

.nav a { margin-left: 18px; text-decoration: none; color: #111; font-weight: 600; }
.nav a:hover { color: #e11d48; }
.btn { display: inline-block; padding: 10px 16px; border-radius: 999px; text-decoration: none; font-weight: 700; border: 2px solid transparent; }
.btn-primary { background: #e11d48; color: #fff; }
.btn-primary:hover { filter: brightness(0.95); }
.btn-outline { border-color: #e11d48; color: #e11d48; }
.btn-outline:hover { background: #ffe4e9; }

/* Hero */
.hero { position: relative; min-height: 68vh; display: grid; place-items: center; text-align: center; color: #fff;
  background: url('img/hero.jpg') center/cover no-repeat; }
.hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35)); }
.hero-inner { position: relative; padding: 80px 0; }
.hero h1 { font-family: Oswald, Arial, sans-serif; font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 10px; }
.hero p { font-size: 1.1rem; margin: 0 0 20px; }
.hero .cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.badges { list-style: none; padding: 0; margin: 16px 0 0; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.badges li { background: rgba(255,255,255,.1); padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); }

/* Logos */
.logos { padding: 50px 0; background: #fafafa; }
.logo-grid { display: grid; grid-template-columns: repeat(5, minmax(100px, 1fr)); gap: 24px; align-items: center; }
.logo-grid img { width: 100%; max-height: 38px; object-fit: contain; filter: grayscale(1); opacity: .9; }

/* Services */
.services { padding: 60px 0; }
.services h2, .about h2, .gallery h2, .reviews h2, .contact h2 { font-family: Oswald, Arial, sans-serif; margin-bottom: 18px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { padding: 18px; border: 1px solid #eee; border-radius: 14px; background: #fff; box-shadow: 0 8px 20px rgba(17,17,17,.03); }
.card h3 { margin-top: 0; }

/* About */
.about { padding: 60px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.about-photo img { width: 100%; border-radius: 14px; box-shadow: 0 10px 25px rgba(0,0,0,.08); }
.checklist { list-style: none; padding: 0; margin: 14px 0 0; }
.checklist li::before { content: "✓"; color: #16a34a; margin-right: 8px; }

/* Gallery */
.gallery { padding: 60px 0; background: #fafafa; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.before-after figure { margin: 0; }
.before-after img { width: 100%; border-radius: 12px; border: 1px solid #eee; }

/* Reviews */
.reviews { padding: 60px 0; }
.review { margin: 0; padding: 18px; border-left: 4px solid #e11d48; background: #fff; border-radius: 8px; box-shadow: 0 6px 16px rgba(0,0,0,.04); }

/* Contact */
.contact { padding: 60px 0; background: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.form { display: grid; gap: 12px; padding: 18px; border: 1px solid #eee; border-radius: 14px; box-shadow: 0 10px 20px rgba(0,0,0,.03); }
.form h3 { margin: 0 0 6px; }
.form input, .form textarea { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 10px; font: inherit; }
.form input:focus, .form textarea:focus { outline: 2px solid #fde7ec; border-color: #e11d48; }
.form .consent { display: flex; gap: 8px; align-items: start; font-size: .9rem; }
.form .hp { display: none; } /* honeypot */
.form .form-note { font-size: .85rem; color: #555; margin: 4px 0 0; }
.map-wrap iframe { width: 100%; min-height: 260px; border: 0; border-radius: 12px; }

/* Footer */
.site-footer { background: #0f0f10; color: #e5e7eb; padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: #fff; text-decoration: none; border-bottom: 1px dotted rgba(255,255,255,.4); }
.site-footer a:hover { border-bottom-style: solid; }

/* Responsive */
@media (max-width: 960px) {
  .about-inner, .contact-inner, .before-after { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .nav a { margin-left: 12px; }
  .brand-text { display: none; }
  .hero { min-height: 64vh; }
}
