/* =============================================
   GARAGE REPAIR LA — Main Stylesheet v3
   Orange #E8621A | Blue #1A2B4A | White #FFF | Gray #F5F5F5
   STRICT 1200px max-width on all content
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E8621A;
  --orange-dark: #C4501A;
  --blue: #1A2B4A;
  --blue-light: #2B4A7A;
  --white: #FFFFFF;
  --gray-bg: #F5F5F5;
  --gray-mid: #E0E0E0;
  --gray-text: #666;
  --text: #222;
  --shadow: 0 2px 12px rgba(0,0,0,0.09);
  --shadow-hover: 0 8px 28px rgba(0,0,0,0.14);
  --radius: 6px;
  --font: 'Segoe UI', Arial, Helvetica, sans-serif;
  --max: 1200px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── WRAPPER — constrains ALL content to 1200px ── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── TOP BAR ── */
.topbar { background: var(--blue); color: rgba(255,255,255,.85); font-size:.82rem; padding:6px 24px; }
.topbar .wrap { display:flex; justify-content:center; align-items:center; gap:18px; flex-wrap:wrap; }
.topbar a { color:var(--orange); font-weight:700; }

/* ── HEADER ── */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 3px 20px rgba(0,0,0,.15); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { height: 56px; width: auto; }
.header-phone { text-align: center; }
.header-phone a {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: .5px;
  line-height: 1.1;
}
.header-phone small { font-size: .72rem; color: var(--gray-text); font-weight: 500; display: block; }

/* ── HAMBURGER ── */
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:8px; flex-direction:column; gap:5px; }
.hamburger span { display:block; width:26px; height:2px; background:var(--blue); border-radius:2px; transition:all .3s; }
.hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.active span:nth-child(2){opacity:0;}
.hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ── DESKTOP NAV ── */
nav.main-nav { background: var(--blue); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}
nav.main-nav a {
  color: var(--white);
  padding: 13px 15px;
  font-size: .87rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: background .2s;
  white-space: nowrap;
  border: none;
}
nav.main-nav a:hover,
nav.main-nav a.active { background: var(--orange); }
.nav-call { margin-left:auto; background:var(--orange) !important; padding:10px 22px !important; }
.nav-call:hover { background: var(--orange-dark) !important; }

/* Dropdowns */
.dropdown { position: relative; }
.dropdown > a::after { content:' ▾'; font-size:.7rem; margin-left:2px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--blue);
  min-width: 230px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  border-top: 3px solid var(--orange);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block !important;
  padding: 11px 18px !important;
  font-size: .85rem !important;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu.two-col {
  min-width: 460px;
  display: none;
  grid-template-columns: 1fr 1fr;
}
.dropdown:hover .two-col { display: grid; }

/* ── MOBILE NAV ── */
.mobile-nav { display:none; background:var(--blue); border-top:2px solid var(--orange); overflow-y:auto; max-height:80vh; }
.mobile-nav.open { display:block; }
.mobile-nav a { display:block; padding:12px 20px; color:var(--white); font-weight:600; font-size:.9rem; border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-nav a:hover { background:rgba(255,255,255,.08); }
.mob-section { background:rgba(255,255,255,.06); color:var(--orange) !important; font-size:.72rem !important; text-transform:uppercase; letter-spacing:1px; padding:9px 20px !important; cursor:default; }
.mob-call { background:var(--orange) !important; text-align:center; font-size:1rem !important; padding:15px 20px !important; }
.mob-call:hover { background:var(--orange-dark) !important; }

/* ── HERO BANNER — full 1200px wide, centered ── */
/* Hero — constrained to 1200px, never wider */
.hero-wrap {
  width: 100%;
  background: var(--blue);
}

/* ── SERVICE HERO — max 1200px, centered ── */
.svc-hero {
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
}
.svc-hero img { width:100%; height:300px; object-fit:cover; display:block; }
.svc-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(26,43,74,.85) 45%,transparent 100%);
  display:flex; align-items:center; padding:0 48px;
}
.svc-hero-text h1 { font-size:2.1rem; font-weight:900; color:var(--white); line-height:1.15; margin-bottom:8px; }
.svc-hero-text p { color:rgba(255,255,255,.9); font-size:.98rem; max-width:420px; }

/* ── TRUST BAR ── */
.trust-bar { background:var(--orange); padding:13px 24px; color:var(--white); }
.trust-bar .wrap { display:flex; justify-content:center; align-items:center; gap:6px 22px; flex-wrap:wrap; font-size:.9rem; font-weight:700; }
.trust-bar span { white-space:nowrap; }

/* ── SECTIONS ── */
.section { padding:64px 24px; }
.section-gray { background:var(--gray-bg); }
.section-blue { background:var(--blue); color:var(--white); }

.section-title { font-size:2rem; font-weight:800; color:var(--blue); text-align:center; margin-bottom:8px; line-height:1.2; }
.section-title span { color:var(--orange); }
.section-sub { text-align:center; color:var(--gray-text); margin-bottom:42px; font-size:1rem; max-width:640px; margin-left:auto; margin-right:auto; }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  padding:13px 28px; border-radius:var(--radius);
  font-weight:700; font-size:.95rem; cursor:pointer;
  transition:transform .15s, box-shadow .15s, background .2s;
  text-align:center; border:2px solid transparent;
}
.btn:hover { transform:translateY(-2px); box-shadow:var(--shadow-hover); }
.btn-orange { background:var(--orange); color:var(--white); border-color:var(--orange); }
.btn-orange:hover { background:var(--orange-dark); border-color:var(--orange-dark); }
.btn-blue { background:var(--blue); color:var(--white); border-color:var(--blue); }
.btn-outline { background:transparent; border-color:var(--white); color:var(--white); }
.btn-outline:hover { background:rgba(255,255,255,.15); }

/* ── CARDS ── */
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.card { background:var(--white); border-radius:8px; box-shadow:var(--shadow); overflow:hidden; display:flex; flex-direction:column; transition:transform .2s, box-shadow .2s; }
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-hover); }
.card-img-wrap { height:185px; overflow:hidden; }
.card-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.card:hover .card-img-wrap img { transform:scale(1.04); }
.card-icon { height:185px; display:flex; align-items:center; justify-content:center; font-size:3.2rem; }
.card-body { padding:20px; flex:1; display:flex; flex-direction:column; }
.card-body h3 { font-size:1.05rem; color:var(--blue); font-weight:700; margin-bottom:8px; line-height:1.3; }
.card-body p { font-size:.87rem; color:var(--gray-text); line-height:1.65; flex:1; margin-bottom:16px; }
.card-body .btn { width:100%; margin-top:auto; }

/* ── CITY SERVICE CARDS ── */
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.svc-card { background:var(--white); border-radius:8px; box-shadow:var(--shadow); overflow:hidden; display:flex; flex-direction:column; border-top:3px solid var(--orange); transition:transform .2s, box-shadow .2s; }
.svc-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.svc-card-img { height:140px; overflow:hidden; position:relative; }
.svc-card-img img { width:100%; height:100%; object-fit:cover; }
.svc-card-icon { height:140px; display:flex; align-items:center; justify-content:center; font-size:2.8rem; }
.svc-card-body { padding:16px; flex:1; display:flex; flex-direction:column; }
.svc-card-body h3 { font-size:.97rem; color:var(--blue); font-weight:700; margin-bottom:6px; line-height:1.3; }
.svc-card-body p { font-size:.84rem; color:var(--gray-text); line-height:1.6; flex:1; margin-bottom:12px; }
.svc-card-body .btn { width:100%; padding:9px; font-size:.83rem; }

/* ── SERVICES PAGE GRID ── */
.services-page-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.svc-page-card {
  background:var(--white); border-radius:10px; box-shadow:var(--shadow);
  overflow:hidden; display:flex; flex-direction:row;
  transition:transform .2s, box-shadow .2s;
  border-left:4px solid var(--orange);
}
.svc-page-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.svc-page-card-img { width:160px; min-width:160px; overflow:hidden; flex-shrink:0; }
.svc-page-card-img img { width:100%; height:100%; object-fit:cover; }
.svc-page-card-icon { width:160px; min-width:160px; display:flex; align-items:center; justify-content:center; font-size:3rem; }
.svc-page-card-body { padding:20px; display:flex; flex-direction:column; flex:1; }
.svc-page-card-body h3 { font-size:1.1rem; color:var(--blue); font-weight:800; margin-bottom:6px; }
.svc-page-card-body p { font-size:.87rem; color:var(--gray-text); line-height:1.65; flex:1; margin-bottom:14px; }
.svc-page-card-body .btn { align-self:flex-start; padding:9px 20px; font-size:.85rem; }

/* ── CITIES PAGE ── */
.city-region { margin-bottom:48px; }
.city-region h3 { font-size:1.1rem; font-weight:700; color:var(--blue); margin-bottom:14px; padding-bottom:8px; border-bottom:2px solid var(--orange); display:flex; align-items:center; gap:8px; }
.city-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.city-btn {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:4px; background:var(--white); border:1.5px solid var(--gray-mid);
  border-radius:var(--radius); padding:12px 10px;
  color:var(--blue); font-weight:600; font-size:.85rem;
  text-align:center; transition:all .2s;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
}
.city-btn .ci { font-size:1.3rem; }
.city-btn:hover { background:var(--orange); color:var(--white); border-color:var(--orange); transform:translateY(-2px); box-shadow:0 4px 14px rgba(232,98,26,.25); }

/* ── WHY US ── */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.why-item { text-align:center; }
.why-icon { width:68px; height:68px; background:var(--orange); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.8rem; margin:0 auto 14px; box-shadow:0 4px 16px rgba(232,98,26,.3); }
.why-item h3 { font-size:1rem; font-weight:700; color:var(--blue); margin-bottom:8px; }
.why-item p { font-size:.87rem; color:var(--gray-text); line-height:1.65; }

/* ── REVIEWS ── */
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.review-card { background:var(--white); border-radius:8px; padding:24px; box-shadow:var(--shadow); border-left:4px solid var(--orange); }
.review-stars { color:#f4a623; font-size:1.1rem; margin-bottom:10px; letter-spacing:2px; }
.review-text { font-style:italic; color:var(--gray-text); line-height:1.7; margin-bottom:14px; font-size:.9rem; }
.review-author { font-weight:700; color:var(--blue); font-size:.87rem; }
.review-service { font-size:.8rem; color:var(--gray-text); margin-top:2px; }

/* ── CTA ── */
.cta-section { background:var(--blue); color:var(--white); text-align:center; padding:64px 24px; }
.cta-section h2 { font-size:2rem; font-weight:800; margin-bottom:12px; }
.cta-section p { font-size:1rem; opacity:.9; max-width:580px; margin:0 auto 20px; }
.phone-big { display:inline-block; font-size:2.4rem; font-weight:900; color:var(--orange); margin:10px 0 20px; letter-spacing:.5px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ── SERVICE CONTENT ── */
.svc-content { max-width:900px; margin:0 auto; padding:48px 24px; }
.svc-content h1 { font-size:2rem; color:var(--blue); font-weight:800; margin-bottom:16px; }
.svc-content h2 { font-size:1.3rem; color:var(--orange); font-weight:700; margin:30px 0 10px; padding-bottom:6px; border-bottom:2px solid var(--gray-mid); }
.svc-content p { line-height:1.8; color:var(--gray-text); margin-bottom:14px; }
.svc-content ul { padding-left:22px; margin-bottom:14px; }
.svc-content li { line-height:1.85; color:var(--gray-text); }
.svc-content strong { color:var(--text); }
.alert-box { background:#fff3cd; border:2px solid var(--orange); border-radius:var(--radius); padding:20px 24px; margin:28px 0; }
.alert-box a { color:var(--orange); font-weight:700; font-size:1.4rem; display:inline-block; margin-top:6px; }

/* ── CITY HERO ── */
.city-hero { background:linear-gradient(135deg,var(--blue) 0%,var(--blue-light) 100%); color:var(--white); padding:60px 24px; text-align:center; }
.city-hero h1 { font-size:2.2rem; font-weight:900; margin-bottom:12px; }
.city-hero p { font-size:1rem; opacity:.9; max-width:640px; margin:0 auto 28px; }

/* ── ABOUT PAGE ── */
.about-hero { background:linear-gradient(135deg,var(--blue),var(--blue-light)); color:var(--white); padding:72px 24px; }
.about-hero .wrap { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.about-hero h1 { font-size:2.4rem; font-weight:900; line-height:1.2; margin-bottom:16px; }
.about-hero p { font-size:1.02rem; line-height:1.8; opacity:.9; margin-bottom:14px; }
.about-stat-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:28px; }
.about-stat { background:rgba(255,255,255,.1); border-radius:8px; padding:18px; text-align:center; }
.about-stat .num { font-size:2rem; font-weight:900; color:var(--orange); display:block; }
.about-stat .lab { font-size:.82rem; opacity:.8; margin-top:4px; }
.about-img-block { position:relative; }
.about-img-block img { border-radius:10px; box-shadow:0 12px 40px rgba(0,0,0,.3); width:100%; }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.team-card { background:var(--white); border-radius:8px; box-shadow:var(--shadow); overflow:hidden; text-align:center; }
.team-card-img { height:160px; display:flex; align-items:center; justify-content:center; font-size:4rem; }
.team-card-body { padding:18px; }
.team-card-body h3 { color:var(--blue); font-weight:700; font-size:1rem; margin-bottom:4px; }
.team-card-body .role { color:var(--orange); font-size:.82rem; font-weight:600; margin-bottom:8px; }
.team-card-body p { font-size:.82rem; color:var(--gray-text); line-height:1.6; }
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.value-item { display:flex; gap:16px; align-items:flex-start; }
.value-icon { font-size:1.8rem; flex-shrink:0; margin-top:2px; }
.value-item h3 { font-size:1rem; color:var(--blue); font-weight:700; margin-bottom:4px; }
.value-item p { font-size:.87rem; color:var(--gray-text); line-height:1.65; }

/* ── REVIEWS PAGE ── */
.rating-hero { background:linear-gradient(135deg,var(--blue),var(--blue-light)); color:var(--white); padding:56px 24px; text-align:center; }
.rating-hero .big-rating { font-size:5rem; font-weight:900; color:var(--orange); line-height:1; }
.rating-hero .stars { font-size:2rem; letter-spacing:4px; color:#f4a623; margin:8px 0; }
.rating-hero p { opacity:.85; font-size:1rem; }
.platform-badges { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; margin-top:24px; }
.badge { background:rgba(255,255,255,.1); border:1.5px solid rgba(255,255,255,.25); border-radius:var(--radius); padding:10px 20px; font-weight:700; font-size:.9rem; }
.reviews-masonry { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.review-full { background:var(--white); border-radius:8px; padding:24px; box-shadow:var(--shadow); border-top:3px solid var(--orange); break-inside:avoid; }
.review-full .rhead { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.review-full .avatar { width:44px; height:44px; border-radius:50%; background:var(--blue); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1.1rem; flex-shrink:0; }
.review-full .rmeta h4 { font-size:.95rem; color:var(--blue); font-weight:700; }
.review-full .rmeta .rdate { font-size:.78rem; color:var(--gray-text); }
.review-full .rtext { font-size:.87rem; color:var(--gray-text); line-height:1.7; }
.review-full .rtag { display:inline-block; margin-top:10px; background:var(--gray-bg); color:var(--blue); font-size:.75rem; padding:3px 10px; border-radius:20px; font-weight:600; }
.platform-tag { font-size:.75rem; color:var(--gray-text); margin-top:6px; }

/* ── SITEMAP PAGE ── */
.sitemap-hero { background:var(--blue); color:var(--white); padding:48px 24px; text-align:center; }
.sitemap-hero h1 { font-size:2rem; font-weight:800; }
.sitemap-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.sitemap-col h2 { font-size:1rem; font-weight:700; color:var(--blue); margin-bottom:14px; padding-bottom:6px; border-bottom:2px solid var(--orange); text-transform:uppercase; letter-spacing:.5px; }
.sitemap-col a { display:flex; align-items:center; gap:6px; padding:5px 0; font-size:.87rem; color:var(--gray-text); border-bottom:1px solid var(--gray-mid); transition:color .2s; }
.sitemap-col a:hover { color:var(--orange); }
.sitemap-col a::before { content:'›'; color:var(--orange); font-weight:700; }
.sitemap-cities { display:grid; grid-template-columns:repeat(3,1fr); gap:4px 16px; }
.sitemap-cities a { border-bottom:none; padding:3px 0; }

/* ── BREADCRUMB ── */
.breadcrumb { background:var(--gray-bg); padding:9px 24px; font-size:.82rem; color:var(--gray-text); border-bottom:1px solid var(--gray-mid); }
.breadcrumb .wrap { display:flex; gap:5px; align-items:center; flex-wrap:wrap; }
.breadcrumb a { color:var(--blue); font-weight:500; }
.breadcrumb a:hover { color:var(--orange); }
.breadcrumb .sep { color:var(--gray-mid); }

/* ── CONTACT FORM ── */
.contact-form { background:var(--gray-bg); border-radius:8px; padding:32px; }
.contact-form h3 { font-size:1.25rem; color:var(--blue); margin-bottom:22px; font-weight:700; }
.form-group { margin-bottom:15px; }
.form-group label { display:block; font-size:.84rem; color:var(--text); margin-bottom:5px; font-weight:600; }
.form-group input,.form-group select,.form-group textarea {
  width:100%; padding:11px 14px; border:1.5px solid var(--gray-mid);
  border-radius:var(--radius); font-family:var(--font); font-size:.9rem;
  color:var(--text); background:var(--white); transition:border-color .2s;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline:none; border-color:var(--orange); }
.form-group textarea { height:100px; resize:vertical; }

/* ── FOOTER ── */
footer { background:var(--blue); color:var(--white); padding:56px 24px 24px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-col h3 { color:var(--orange); font-size:.82rem; font-weight:700; margin-bottom:14px; text-transform:uppercase; letter-spacing:.8px; }
.footer-col p,.footer-col a { font-size:.85rem; line-height:2; color:rgba(255,255,255,.7); display:block; }
.footer-col a:hover { color:var(--orange); }
.footer-logo { height:50px; margin-bottom:14px; border-radius:4px; }
.footer-phone { color:var(--orange) !important; font-size:1.1rem !important; font-weight:700 !important; line-height:1.5 !important; margin-top:8px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:.79rem; color:rgba(255,255,255,.42); padding-top:22px; }
.footer-bottom a { color:rgba(255,255,255,.42); }
.footer-bottom a:hover { color:var(--orange); }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width:1024px) {
  .cards-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .reviews-grid,.reviews-masonry { grid-template-columns:repeat(2,1fr); }
  .svc-grid { grid-template-columns:repeat(2,1fr); }
  .city-grid-4 { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .about-hero .wrap { grid-template-columns:1fr; }
  .about-img-block { display:none; }
  .sitemap-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .values-grid { grid-template-columns:1fr; }
  .services-page-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .nav-inner { display:none; }
  .hamburger { display:flex; }
  .header-inner { padding:10px 16px; }
  .logo img { height:44px; }
  .header-phone a { font-size:1.2rem; }
  .section { padding:40px 16px; }
  .cta-section { padding:40px 16px; }
  .svc-content { padding:32px 16px; }
  .section-title { font-size:1.55rem; }
  .city-hero h1 { font-size:1.6rem; }
  .svc-hero-text h1 { font-size:1.4rem; }
  .cta-section h2 { font-size:1.55rem; }
  .phone-big { font-size:1.75rem; }
  .cards-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .reviews-grid,.reviews-masonry { grid-template-columns:1fr; }
  .svc-grid { grid-template-columns:1fr 1fr; }
  .city-grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; gap:24px; }
  .hero-inner img,.hero-fullbleed img { height:240px; }
  .svc-hero img { height:200px; }
  .svc-hero-overlay { padding:0 20px; }
  .svc-page-card { flex-direction:column; }
  .svc-page-card-img,.svc-page-card-icon { width:100%; height:140px; min-width:unset; }
  .sitemap-grid { grid-template-columns:1fr; }
  .sitemap-cities { grid-template-columns:1fr 1fr; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .rating-hero .big-rating { font-size:3.5rem; }
  .about-stat-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .svc-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .city-grid-4 { grid-template-columns:1fr 1fr; }
  .header-phone a { font-size:1.05rem; }
  .phone-big { font-size:1.5rem; }
  .team-grid { grid-template-columns:1fr; }
  .sitemap-cities { grid-template-columns:1fr 1fr; }
}
