:root {
  --bg: #f7f5f1;
  --card: #ffffff;
  --text: #131920;
  --muted: #5f6975;
  --line: #dde3ea;
  --navy: #123d67;
  --dark: #0d141c;
  --soft: #eef2f5;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.brand img { height: 78px; width: auto; }
.desktop-nav { display: flex; gap: 28px; font-weight: 600; color: var(--muted); }
.desktop-nav a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px; padding: 13px 20px; font-weight: 700; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-light { background: #fff; border: 1px solid var(--line); }
.btn-outline { border: 1px solid var(--line); background: white; }
.hero { padding: 60px 0 32px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center; }
.eyebrow {
  display: inline-block; margin-bottom: 14px; font-size: 12px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--navy);
}
.hero h1, .section h2, .cta-band h2 { margin: 0 0 16px; line-height: 1.05; letter-spacing: -.03em; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); max-width: 720px; }
.hero p { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 640px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px;
}
.hero-stats div { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 18px; box-shadow: 0 10px 28px rgba(0,0,0,.04); }
.hero-stats strong { display: block; font-size: 26px; }
.hero-stats span { color: var(--muted); font-size: 14px; }
.hero-card { background: white; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; box-shadow: 0 18px 50px rgba(17, 24, 39, .08); }
.hero-card img { height: 520px; width: 100%; object-fit: cover; }
.hero-card-text { padding: 22px; }
.hero-card-text h3 { margin: 0 0 8px; font-size: 22px; }
.hero-card-text p { margin: 0; color: var(--muted); }
.trust-strip { padding: 10px 0 0; }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.trust-grid span {
  background: white; border: 1px solid var(--line); border-radius: 16px; padding: 14px;
  font-weight: 700; text-align: center; color: #314050;
}
.section { padding: 84px 0; }
.section.alt { background: #fff; }
.section.dark { background: var(--dark); color: white; }
.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head p, .why-grid p, .area-grid p, .contact-card p, .card p, .why-cards p, .gallery-card figcaption, .cta-band p { color: var(--muted); }
.section.dark p, .section.dark .eyebrow { color: rgba(255,255,255,.72); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: white; border: 1px solid var(--line); border-radius: 28px; padding: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.04);
}
.card h3 { margin: 0 0 10px; font-size: 24px; }
.card p { margin: 0; line-height: 1.7; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-card {
  background: white; border: 1px solid var(--line); border-radius: 26px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.04);
}
.gallery-card img { width: 100%; height: 280px; object-fit: cover; }
.gallery-card.tall img { height: 580px; }
.gallery-card figcaption { padding: 16px 18px 18px; font-weight: 700; color: var(--text); }
.before-after-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.ba-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ba-card { background: white; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; }
.ba-card img { height: 340px; width: 100%; object-fit: cover; }
.ba-card figcaption { padding: 16px; font-weight: 800; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-cards article { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 26px; padding: 24px; }
.why-cards h3 { margin-top: 0; }
.cta-band { padding: 26px 0; }
.cta-band-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  background: white; border: 1px solid var(--line); border-radius: 30px; padding: 32px;
  box-shadow: 0 12px 30px rgba(0,0,0,.04);
}
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.area-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chips span { background: white; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-weight: 700; }
.contact-card {
  background: white; border: 1px solid var(--line); border-radius: 30px; padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,.04);
}
.contact-form { display: grid; gap: 12px; margin-top: 18px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid #cfd6de; border-radius: 16px; padding: 14px 16px;
  font: inherit; background: #fff;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.hidden-field { position: absolute; left: -5000px; }
.contact-direct { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; font-weight: 700; }
.site-footer { background: #0b1118; color: white; padding: 34px 0 84px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; align-items: start; }
.footer-logo { width: 300px; margin-bottom: 12px; }
.site-footer h4 { margin: 0 0 10px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.75); display: block; margin: 6px 0; }
.mobile-bar {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30;
  background: rgba(13,20,28,.98); border-radius: 18px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,.22);
}
.mobile-bar a {
  flex: 1; text-align: center; color: white; font-weight: 800; padding: 16px 12px; border-right: 1px solid rgba(255,255,255,.12);
}
.mobile-bar a:last-child { border-right: 0; background: var(--navy); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero-grid, .before-after-grid, .why-grid, .area-grid, .footer-grid, .service-grid, .gallery-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-card img { height: 360px; }
  .gallery-card.tall img { height: 280px; }
  .cta-band-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { flex-wrap: wrap; }
  .nav-actions { width: 100%; justify-content: space-between; }
  .brand img { height: 62px; }
  .hero-grid, .service-grid, .gallery-grid, .before-after-grid, .ba-cards, .why-grid, .why-cards, .area-grid, .footer-grid, .trust-grid, .hero-stats { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding-top: 34px; }
  .hero-card img, .gallery-card img, .gallery-card.tall img, .ba-card img { height: auto; max-height: 420px; }
  .btn { width: 100%; }
  .hero-actions, .cta-band-actions { flex-direction: column; }
  .mobile-bar { display: flex; }
}
