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

:root {
  /* Brand blues - #0e4385 is the authentic logo blue */
  --blue: #0e4385;          /* primary - from logo */
  --blue-secondary: #02529d; /* secondary lighter blue */
  --blue-dark: #0a335f;
  --blue-darker: #051f3d;
  --blue-light: #1a6dbc;
  --blue-pale: #e8f1fa;
  --orange: #e0770a;
  --orange-light: #f08a23;
  --orange-dark: #b85f08;

  /* Neutrals */
  --black: #0e131b;
  --dark: #1a2230;
  --gray-900: #2a3344;
  --gray-700: #4a5364;
  --gray-500: #6c7587;
  --gray-400: #8d96a8;
  --gray-300: #b8c0cc;
  --gray-200: #d8dde5;
  --gray-100: #ebeef2;
  --gray-50: #f5f7fa;
  --off-white: #fafbfd;
  --white: #ffffff;

  --text: #1a2230;
  --text-muted: #5d6679;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "tnum" 0, "ss01";
}

/* SAFETY: prevent SVGs from blowing up if any CSS fails */
svg {
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d-1 { transition-delay: 0.08s; }
.reveal-d-2 { transition-delay: 0.16s; }
.reveal-d-3 { transition-delay: 0.24s; }
.reveal-d-4 { transition-delay: 0.32s; }

/* ====== HEADER / NAV ====== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  z-index: 1;
}
header.scrolled {
  box-shadow: 0 4px 20px rgba(14, 67, 133, 0.1);
  border-color: transparent;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.92; }
.logo-container {
  background: var(--blue);
  padding: 8px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(14, 67, 133, 0.18);
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(224, 119, 10, 0.3);
}
.nav-cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.nav-cta svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  background: var(--blue);
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 84px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 20% 100%, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--orange);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero-content { min-width: 0; }

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(240, 138, 35, 0.45);
  border-radius: 100px;
  background: rgba(240, 138, 35, 0.08);
  animation: fadeUp 0.7s ease forwards;
}
.hero-overline::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange-light);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Saira Condensed', 'Inter', sans-serif;
  
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.0;
  color: white;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 28px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeUp 0.8s ease 0.25s forwards;
  opacity: 0;
}

/* Two phone call cards in hero */
.hero-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 540px;
  animation: fadeUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  color: var(--blue);
  text-decoration: none;
  padding: 18px 22px;
  border-radius: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.hero-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.hero-phone .phone-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-phone .phone-icon svg {
  width: 18px;
  height: 18px;
  color: white;
  display: block;
}
.hero-phone .phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.hero-phone .phone-city {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.hero-phone .phone-number {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.2px;
  white-space: nowrap;
}

/* Hero visual: logo display */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
}
.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 32px 24px;
  text-align: center;
}
.hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
}
.hero-visual-card .visual-tagline {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero-visual-card .visual-tagline strong {
  color: var(--orange-light);
  font-weight: 700;
}

/* ====== SECTION COMMON ====== */
section { padding: 110px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(224, 119, 10, 0.3);
  background: rgba(224, 119, 10, 0.07);
  border-radius: 100px;
}

.section-title {
  font-family: 'Saira Condensed', 'Inter', sans-serif;
  
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
}
.section-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 18px;
}

/* ====== SERVICES ====== */
.services {
  background: linear-gradient(180deg, #eef3fa 0%, #e3ecf5 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  padding: 36px 30px;
  border: 1px solid #d0dce8;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(2, 82, 157, 0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(2, 82, 157, 0.18);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--blue);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.3s ease;
}
.service-card:hover .service-icon svg {
  stroke: white;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ====== WHY US ====== */
.why-us {
  background: var(--blue-secondary);
  position: relative;
  color: white;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.why-us::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.why-us .container { position: relative; z-index: 2; }

.why-us .section-label {
  color: var(--orange-light);
  border-color: rgba(240, 138, 35, 0.4);
  background: rgba(240, 138, 35, 0.1);
}
.why-us .section-title { color: white; }
.why-us .section-subtitle { color: rgba(255, 255, 255, 0.75); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(240, 138, 35, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(224, 119, 10, 0.3);
}
.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.why-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.why-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

/* ====== REVIEWS ====== */
.reviews {
  background: #ffffff;
  position: relative;
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 56px;
  padding: 32px 40px;
  background: white;
  border: 1px solid #e0e8f0;
  border-radius: 14px;
  max-width: 520px;
  box-shadow: 0 8px 28px rgba(14, 67, 133, 0.08);
}
.summary-score {
  font-size: 72px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -2px;
}
.summary-info {
  flex: 1;
}
.summary-stars {
  display: flex;
  gap: 3px;
  color: var(--orange);
  margin-bottom: 8px;
}
.summary-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.summary-text strong {
  color: var(--blue);
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: white;
  padding: 32px 28px;
  border: 1px solid #e0e8f0;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(14, 67, 133, 0.05);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 67, 133, 0.12);
  border-color: rgba(224, 119, 10, 0.3);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--blue-pale);
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--orange);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.review-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue-secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.author-info { line-height: 1.3; }
.author-info strong {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  display: block;
}
.author-info span {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 500;
}

/* ====== LOCATIONS ====== */
.locations {
  background: linear-gradient(180deg, #e8eef5 0%, #d8e2ed 100%);
  position: relative;
  border-top: 1px solid #d0dce8;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.location-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(2, 82, 157, 0.1);
  border: 1px solid #e0e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2, 82, 157, 0.15);
}

.location-header {
  background: var(--blue);
  padding: 28px 32px;
  color: white;
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 4px solid var(--orange);
}
.location-header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.location-header-logo img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}
.location-header-text {
  flex: 1;
  min-width: 0;
}
.location-header-text .city {
  font-family: 'Saira Condensed', 'Inter', sans-serif;
  
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.location-header-text .service-tags {
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.4;
}

.location-body { padding: 32px; }

.location-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.location-info-row:first-child { padding-top: 0; }
.location-info-row:last-of-type { border-bottom: 1px solid var(--gray-100); margin-bottom: 24px; }

.location-info-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}
.location-info-text { flex: 1; min-width: 0; }
.location-info-text .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 3px;
  display: block;
}
.location-info-text .value {
  font-size: 16px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  display: block;
  transition: color 0.2s;
}
.location-info-text a.value:hover { color: var(--orange); }
.location-info-text .value-secondary {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.location-hours-block {
  margin-bottom: 20px;
}
.location-hours-block:last-child { margin-bottom: 0; }

.location-hours-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
}
.location-hours-title svg {
  width: 14px; height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.4;
}

.location-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.location-hours-row:last-child { border-bottom: none; }
.location-hours-row .day { color: var(--text-muted); }
.location-hours-row .time { color: var(--text); font-weight: 700; }

.location-hours-row.today {
  background: rgba(224, 119, 10, 0.07);
  padding: 8px 12px;
  margin: 0 -12px;
  border-radius: 6px;
  border-bottom-color: transparent;
}
.location-hours-row.today .day { color: var(--orange); font-weight: 700; }
.location-hours-row.today .time { color: var(--orange); }

.location-map {
  height: 260px;
  width: 100%;
  background: var(--gray-100);
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ====== FOOTER ====== */
footer {
  background: var(--blue-darker);
  color: white;
  padding: 70px 0 28px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 78px;
  width: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1.7;
  display: block;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange-light); }
.footer-col .footer-phone {
  font-weight: 700;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile menu — hidden by default (always), only visible when .open inside mobile media */
.mobile-menu { display: none; }

/* ====== MOBILE ====== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    position: fixed;
    top: 84px;
    left: 0; right: 0; bottom: 0;
    background: white;
    z-index: 999;
    padding: 28px;
    overflow-y: auto;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a.menu-link {
    display: block;
    color: var(--blue);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .mobile-menu a.menu-link:hover { color: var(--orange); }
  .mobile-menu .mobile-phones {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--orange);
  }
  .mobile-menu .mobile-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--blue);
    text-decoration: none;
    padding: 14px;
    background: var(--blue-pale);
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .mobile-menu .mobile-phone .icon {
    width: 38px;
    height: 38px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mobile-menu .mobile-phone .icon svg { width: 16px; height: 16px; color: white; }
  .mobile-menu .mobile-phone small {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-weight: 700;
  }
  .mobile-menu .mobile-phone .num {
    font-size: 17px;
    font-weight: 800;
    color: var(--blue);
  }

  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 22px; }
  .hero h1 { font-size: 32px; }
  .hero-phones { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { gap: 20px; padding: 24px; }
  .summary-score { font-size: 56px; }
  .location-body { padding: 24px; }
  .location-header { padding: 20px; gap: 14px; }
  .location-header-logo img { height: 48px; }
  .location-header-text .city { font-size: 26px; }
}
