
/* ---- CSS VARIABLES ---- */
:root {
  --navy:        #1a2860;
  --navy-dark:   #0d1845;
  --silver:      #c0c8d8;
  --silver-light:#e8ecf4;
  --red:         #8b1a1a;
  --red-bright:  #b22222;
  --white:       #ffffff;
  --off-white:   #f4f6fb;
  --text-dark:   #1a1e2e;
  --text-mid:    #3a4060;
  --text-light:  #4a5068;
  --card-bg:     #ffffff;
  --border:      #dde2ee;
  --shadow:      rgba(26, 40, 96, 0.10);
  --shadow-md:   rgba(26, 40, 96, 0.18);
  --header-bg:   #ffffff;
  --footer-bg:   #0d1845;
  --footer-text: #c0c8d8;
  --sp-bg:       #0d1845;
  --sp-text:     #e8ecf4;
  --transition:  0.28s ease;
  --radius:      6px;
  --radius-lg:   12px;
}

body.dark-mode {
  --off-white: #12172a;
  --text-dark: #f0f3fa;
  --text-mid:  #d8dff0;
  --text-light: #fff;
  --card-bg: #1a2246;
  --border: #2a3660;
  --shadow: rgba(0,0,0,0.30);
  --shadow-md: rgba(0,0,0,0.45);
  --header-bg: #0d1438;
  --silver-light: #1e2a50;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--off-white);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red-bright);
}

ul {
  list-style: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, .h2, .h3, .h4 {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  transition: color var(--transition);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode .h2,
body.dark-mode .h3,
body.dark-mode .h4 {
  color: var(--white);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2, .h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3, .h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
h4, .h4 { font-size: 1.1rem; }

/* ---- LAYOUT HELPERS ---- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 680px;
}

body.dark-mode .section-sub {
  color: var(--text-mid);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--red-bright);
  color: var(--white);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
  box-shadow: 0 3px 12px rgba(178, 34, 34, 0.3);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

body.dark-mode .btn-secondary {
  color: var(--silver);
  border-color: var(--silver);
}

body.dark-mode .btn-secondary:hover {
  background: var(--silver);
  color: var(--navy-dark);
}

/* ---- SITE HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--header-bg);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 16px var(--shadow);
  transition: background var(--transition);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .header-inner {
    padding: 0 80px 0 20px;
  }
}

.logo-link {
  display: flex;
  align-items: center;
}

.site-logo {
  height: auto;
  width: 120;
  position: relative;
  top: 25px;
  z-index: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 9px;
  border-radius: 10px;
  transition: background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--red-bright);
  color: var(--white);
}

/* ---- MODE BUTTON ---- */
.mode-btn {
  background: none;
  border: 2px solid var(--navy);
  border-radius: 10px;
  color: var(--text-mid);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.mode-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--silver-light);
}

body.dark-mode .mode-btn {
  border-color: var(--silver);
  color: var(--silver);
}

/* ---- HAMBURGER (.box pattern) ---- */
.box {
  display: block;
  position: fixed;
  border: 2px solid var(--navy);
  border-radius: 10px;
  padding: 1px 4px;
  right: 20px;
  top: 18px;
  z-index: 1000;
  cursor: pointer;
  background: transparent;
}

@media (min-width: 901px) {
  .box {
    display: none;
  }
}

body.dark-mode .box {
  background: transparent;
  border-color: var(--silver);
}

.bar1,
.bar2,
.bar3 {
  width: 30px;
  height: 4px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 3px;
  position: relative;
  transition: 0.3s;
}

body.dark-mode .bar1,
body.dark-mode .bar2,
body.dark-mode .bar3 {
  background: var(--silver);
}

.change .bar1 {
  background-color: #FF0000 !important;
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  background-color: #FF0000 !important;
  -webkit-transform: rotate(45deg) translate(-6px, -7px);
  transform: rotate(45deg) translate(-6px, -7px);
}

/* ---- SIDE PANEL ---- */
.sidepanel {
  width: 0;
  height: 100%;
  position: fixed;
  z-index: 950;
  right: 0;
  top: 0;
  overflow-x: hidden;
  transition: 0.5s;
  border-left: 0;
}

.sidepanel.open {
  width: 300px;
  height: 100%;
  background-color: #f5f5f5;
  color: #000000;
  overflow-y: scroll;
}

body.dark-mode .sidepanel.open {
  background-color: var(--navy);
  color: #ffffff;
}

@media screen and (max-width: 500px) {
  .sidepanel.open {
    width: 100%;
  }
}

.sidepanel-inner {
  padding: 80px 24px 40px;
  min-width: 260px;
}

.sp-section {
  margin-bottom: 28px;
}

.sp-label {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #000000;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #cccccc;
}

body.dark-mode .sp-label {
  color: #c0c0c0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sp-section a {
  display: block;
  color: var(--navy);
  padding: 10px 0;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #cccccc;
  transition: color 0.2s, padding-left 0.2s;
}

body.dark-mode .sp-section a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sp-section a:hover {
  color: var(--red-bright);
  padding-left: 6px;
}

body.dark-mode .sp-section a:hover {
  color: var(--silver);
}

.sp-section a i {
  margin-right: 8px;
  color: #888888;
  font-size: 0.9rem;
}

body.dark-mode .sp-section a i {
  color: #c0c0c0;
}

/* ---- OVERLAY ---- */
#panel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 940;
}

#panel-overlay.active {
  display: block;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.72), rgba(13,24,69,.60), rgba(13,24,69,.40));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

.hero-content h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-sub {
  color: var(--silver);
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-exp {
  color: var(--silver);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 13px 24px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn-hero-call:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy);
  padding: 18px 20px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.trust-item i {
  color: var(--silver);
  font-size: 1.1rem;
}

/* ---- SERVICES SECTION ---- */
.services-section {
  padding: 72px 0;
  background: var(--off-white);
  transition: background var(--transition);
}

.services-section h2,
.reviews-section h2,
.area-section h2,
.about-section h2,
.estimate-section h2 {
  margin-bottom: 12px;
}

.services-section .section-sub,
.reviews-section .section-sub,
.area-section .section-sub {
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-md);
  border-color: var(--navy);
}

.sc-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-card h3 {
  color: var(--navy);
  margin: 0;
  font-size: 1.15rem;
  transition: color var(--transition);
}

body.dark-mode .service-card h3 {
  color: var(--white);
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red-bright);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
  transition: gap 0.18s ease, color var(--transition);
}

.service-card:hover .sc-link {
  gap: 10px;
  color: var(--red);
}

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 72px 0;
  background: var(--silver-light);
  transition: background var(--transition);
}

body.dark-mode .about-section {
  background: var(--navy-dark);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-md);
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.about-list li i {
  color: var(--red-bright);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- SERVICE AREA SECTION ---- */
.area-section {
  padding: 64px 0;
  background: var(--off-white);
  transition: background var(--transition);
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-chip {
  display: inline-block;
  background: var(--card-bg);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.area-chip:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px var(--shadow-md);
}

body.dark-mode .area-chip {
  background: var(--card-bg);
  border-color: var(--silver);
  color: var(--silver);
}

body.dark-mode .area-chip:hover {
  background: var(--silver);
  color: var(--navy-dark);
}

/* ---- REVIEWS SECTION ---- */
.reviews-section {
  padding: 72px 0;
  background: var(--navy);
}

.reviews-section h2,
.reviews-section h3,
.reviews-section h4,
.reviews-section .h4 {
  color: var(--white);
}

.reviews-section .section-sub {
  color: var(--silver);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: #f5c518;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card p {
  color: #ffffff;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  flex: 1;
}

.review-card strong {
  color: #c8d4f0;
  font-size: 0.88rem;
}

/* ---- ESTIMATE SECTION ---- */
.estimate-section {
  padding: 72px 0;
  background: var(--silver-light);
  text-align: center;
  transition: background var(--transition);
}

body.dark-mode .estimate-section {
  background: var(--navy-dark);
}

.estimate-inner {
  max-width: 760px;
}

.estimate-inner h2 {
  margin-bottom: 16px;
}

.estimate-inner p {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.estimate-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---- CTA STRIP ---- */
.cta-strip {
  background: var(--red-bright);
  padding: 28px 20px;
}

.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-strip-text h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.cta-strip-text p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.cta-strip-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.cta-strip-btns .btn-primary {
  background: var(--white);
  color: var(--red-bright);
  box-shadow: none;
}

.cta-strip-btns .btn-primary:hover {
  background: var(--off-white);
  color: var(--red);
  transform: translateY(-2px);
}

.cta-strip-btns .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.cta-strip-btns .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ---- FOOTER BRAND COL — centered ---- */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  display: block;
  margin: 0 auto 14px;
}

.footer-brand h4 {
  color: var(--white);
  margin-bottom: 10px;
  text-align: center;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--footer-text);
  margin-bottom: 10px;
  text-align: center;
}

.footer-license {
  font-size: 0.82rem;
  color: var(--silver);
  margin-bottom: 18px;
  text-align: center;
}

/* ---- FOOTER COLS ---- */
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col h5 {
  color: var(--white);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red-bright);
  display: inline-block;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col ul li a {
  color: var(--footer-text);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

/* ---- SCROLLABLE AREAS LIST ---- */
.footer-areas-list {
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red-bright) rgba(255,255,255,0.1);
  padding-right: 6px;
}

.footer-areas-list::-webkit-scrollbar {
  width: 4px;
}

.footer-areas-list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

.footer-areas-list::-webkit-scrollbar-thumb {
  background: var(--red-bright);
  border-radius: 2px;
}

/* ---- CONTACT LIST ---- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--footer-text);
  line-height: 1.5;
}

.contact-list li i {
  color: var(--silver);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-list li a:hover {
  color: var(--white);
}

.btn-estimate-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--red-bright);
  color: var(--white);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}

.btn-estimate-footer:hover {
  background: var(--red);
  color: var(--white);
}

/* ---- FOOTER BOTTOM — centered, icons then h5 then h6 ---- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: var(--silver);
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: var(--white);
}

.footer-bottom h5 {
  font-size: 0.82rem;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.footer-bottom h6 {
  font-size: 0.76rem;
  font-family: system-ui, -apple-system, Arial, sans-serif;
  font-weight: 400;
  color: var(--footer-text);
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-img-wrap {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .header-phone span {
    display: none;
  }

  .header-phone {
    padding: 9px 12px;
    font-size: 1.1rem;
  }

  .hero {
    min-height: 800px;
  }

  .hero-content {
    padding: 44px 20px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar-inner {
    gap: 16px 28px;
  }

  .trust-item span {
    font-size: 0.88rem;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.4rem; }

  .hero {
    min-height: 600px;
  }
}

/* ---- UTILITY ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- FADE IN ---- */
.fade-in-init {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- SCROLL TO TOP ---- */
#scroll-top-btn {
  position: fixed;
  bottom: 140px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: 2px inset #808080;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

#scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  color: var(--white);
}

#scroll-top-btn:hover {
  background: var(--red-bright);
  color: var(--white);
}

/* ---- GALLERY ---- */
.gallery-section {
  padding: 72px 0;
  background: var(--silver-light);
  transition: background var(--transition);
}

body.dark-mode .gallery-section {
  background: var(--navy-dark);
}

.gallery-section h4 {
  margin-bottom: 12px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.photo-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--border);
}

.photo-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.photo-item:hover img {
  transform: scale(1.06);
}

/* Lightbox overlay */
.gallery-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.gallery-overlay.active {
  display: flex;
}

.gallery-overlay img {
  max-width: 80vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  display: block;
  user-select: none;
}

/* Close button — top right */
.gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--red-bright);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2010;
  transition: background 0.2s;
}

.gallery-close:hover {
  background: var(--red);
}

/* Prev / Next arrows */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2010;
  transition: background 0.2s, border-color 0.2s;
}

.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(255,255,255,0.30);
  border-color: rgba(255,255,255,0.8);
}

@media (max-width: 480px) {
  .gallery-overlay img {
    max-width: 95vw;
    max-height: 75vh;
  }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
}

@media (max-width: 1024px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding: 64px 0;
  background: var(--off-white);
  transition: background var(--transition);
}

body.dark-mode .contact-section {
  background: var(--navy);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-text p.h3 {
  color: var(--navy);
  margin-bottom: 14px;
}

body.dark-mode .contact-text p.h3 {
  color: #ffffff;
}

.contact-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

body.dark-mode .contact-text p {
  color: var(--silver);
}

.contact-perks {
  margin-bottom: 28px;
}

.contact-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

body.dark-mode .contact-perks li {
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-perks li i {
  color: var(--navy);
  font-size: 0.9rem;
  flex-shrink: 0;
}

body.dark-mode .contact-perks li i {
  color: var(--silver);
}

.contact-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 4px 20px var(--shadow);
}

body.dark-mode .contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

.cf-group {
  margin-bottom: 16px;
}

.cf-group input,
.cf-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-family: system-ui, -apple-system, Arial, sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}

body.dark-mode .cf-group input,
body.dark-mode .cf-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: var(--text-light);
}

body.dark-mode .cf-group input::placeholder,
body.dark-mode .cf-group textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--navy);
  background: #ffffff;
}

body.dark-mode .cf-group input:focus,
body.dark-mode .cf-group textarea:focus {
  border-color: var(--silver);
  background: rgba(255,255,255,0.12);
}

.cf-group textarea {
  resize: vertical;
  min-height: 110px;
}

.cf-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---- SMS NOTICE ---- */
.sms-notice {
  font-size: 0.82rem;
  color: #3a3f5a;
  background: var(--silver-light);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.sms-notice i {
  margin-right: 6px;
  color: var(--navy);
}

body.dark-mode .sms-notice {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--silver);
  color: var(--silver);
}

body.dark-mode .sms-notice i {
  color: var(--silver);
}

/* ---- DESKTOP NAV ---- */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.desktop-nav > a,
.nav-dropdown-toggle {
  color: var(--text-dark);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--red-bright);
  background: var(--silver-light);
}

body.dark-mode .desktop-nav > a,
body.dark-mode .nav-dropdown-toggle {
  color: var(--text-dark);
}

body.dark-mode .desktop-nav > a:hover,
body.dark-mode .nav-dropdown-toggle:hover,
body.dark-mode .nav-dropdown.open .nav-dropdown-toggle {
  background: rgba(255,255,255,0.08);
  color: var(--silver);
}

.nav-estimate {
  color: var(--text-dark) !important;
  background: none !important;
  padding: 6px 10px !important;
  border-radius: var(--radius) !important;
}

.nav-estimate:hover {
  color: var(--red-bright) !important;
  background: var(--silver-light) !important;
}

body.dark-mode .nav-estimate {
  color: var(--text-dark) !important;
}

body.dark-mode .nav-estimate:hover {
  background: rgba(255,255,255,0.08) !important;
  color: var(--silver) !important;
}

/* ---- DROPDOWNS ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--header-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px var(--shadow-md);
  min-width: 210px;
  z-index: 890;
  padding: 6px 0;
  max-height: 420px;
  overflow-y: auto;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  color: var(--text-dark);
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--silver-light);
  color: var(--red-bright);
}

body.dark-mode .nav-dropdown-menu {
  background: var(--navy-dark);
  border-color: var(--border);
}

body.dark-mode .nav-dropdown-menu a {
  color: #ffffff;
}

body.dark-mode .nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--silver);
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
}

/* ---- DARK MODE CONTRAST OVERRIDES ---- */
/* Ensures all .h3 .h4 class elements are visible on dark backgrounds */
body.dark-mode .h3,
body.dark-mode .h4 {
  color: var(--white);
}

/* Service cards in dark mode */
body.dark-mode .service-card h3,
body.dark-mode .service-card h4,
body.dark-mode .service-card .h4 {
  color: var(--white);
}

body.dark-mode .service-card p {
  color: var(--text-mid);
}

/* Area chips in dark mode */
body.dark-mode .area-chip {
  background: var(--card-bg);
  border-color: var(--silver);
  color: var(--silver);
}

body.dark-mode .area-chip:hover {
  background: var(--silver);
  color: var(--navy-dark);
}

/* Gallery section dark mode */
body.dark-mode .gallery-section h4,
body.dark-mode .gallery-section .h4 {
  color: var(--white);
}

/* Estimate section dark mode */
body.dark-mode .estimate-section .h4 {
  color: var(--white);
}

body.dark-mode .estimate-inner p {
  color: var(--text-mid);
}

/* About section dark mode */
body.dark-mode .about-text h2,
body.dark-mode .about-text h4,
body.dark-mode .about-text .h4 {
  color: var(--white);
}

body.dark-mode .about-list li {
  color: var(--text-dark);
}

/* ---- REVIEW BUTTON ---- */
.reviews-cta {
  text-align: center;
  margin-top: 36px;
}

.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-bright);
  color: #ffffff;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
  box-shadow: 0 3px 14px rgba(178,34,34,0.35);
}

.btn-review:hover {
  background: var(--red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178,34,34,0.45);
}

/* ---- LIGHTBOX CAPTION ---- */
.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.95rem;
  pointer-events: none;
}

#lightbox-counter {
  color: var(--silver);
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ---- SHORT HERO ---- */
.hero-short {
  min-height: 340px;
}

/* ---- CONTACT SEPARATOR ---- */
.contact-sep {
  background: var(--navy);
  padding: 16px 20px;
}

.contact-sep-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-sep-inner i {
  margin-right: 6px;
  color: var(--silver);
}

.contact-sep-inner a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-sep-inner a:hover {
  color: var(--silver);
}

.sep-divider {
  color: rgba(255,255,255,0.3);
}

/* ---- CONTACT PAGE SECTION ---- */
.contact-page-section {
  padding: 64px 0;
  background: var(--off-white);
  transition: background var(--transition);
}

body.dark-mode .contact-page-section {
  background: var(--navy-dark);
}

.contact-page-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* ---- FORM SIDE ---- */
.contact-page-form h2 {
  margin-bottom: 10px;
}

.form-intro {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-intro a {
  color: var(--navy);
  font-weight: 600;
}

body.dark-mode .form-intro {
  color: var(--text-mid);
}

.cpf-group {
  margin-bottom: 18px;
}

.cpf-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 0.03em;
}

body.dark-mode .cpf-group label {
  color: var(--text-dark);
}

.req {
  color: var(--red-bright);
}

.cpf-group input,
.cpf-group select,
.cpf-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-family: system-ui, -apple-system, Arial, sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

body.dark-mode .cpf-group input,
body.dark-mode .cpf-group select,
body.dark-mode .cpf-group textarea {
  background: rgba(255,255,255,0.07);
  border-color: var(--border);
  color: #ffffff;
}

.cpf-group input:focus,
.cpf-group select:focus,
.cpf-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,40,96,0.12);
}

body.dark-mode .cpf-group input:focus,
body.dark-mode .cpf-group select:focus,
body.dark-mode .cpf-group textarea:focus {
  border-color: var(--silver);
  box-shadow: 0 0 0 3px rgba(192,200,216,0.12);
}

.cpf-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a2860' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cpf-group textarea {
  resize: vertical;
  min-height: 120px;
}

.cpf-submit {
  width: 100%;
  justify-content: center;
  gap: 8px;
  font-size: 1.05rem;
  padding: 14px;
  margin-top: 4px;
}

.cpf-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cpf-note i {
  color: var(--navy);
}

body.dark-mode .cpf-note {
  color: var(--text-mid);
}

/* ---- INFO SIDE ---- */
.cpi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: background var(--transition);
}

body.dark-mode .cpi-card {
  background: var(--card-bg);
  border-color: var(--border);
}

.cpi-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.cpi-icon-red {
  background: var(--red-bright);
}

.cpi-card h3,
.cpi-card .h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.cpi-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cpi-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

body.dark-mode .cpi-list li {
  color: var(--text-mid);
}

.cpi-list li i {
  color: var(--red-bright);
  flex-shrink: 0;
  font-size: 0.85rem;
}

.cpi-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cpi-services-grid span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

body.dark-mode .cpi-services-grid span {
  color: var(--text-mid);
}

.cpi-services-grid span i {
  color: var(--navy);
  font-size: 0.8rem;
}

body.dark-mode .cpi-services-grid span i {
  color: var(--silver);
}

.cpi-phone-link {
  display: block;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  margin: 8px 0;
  transition: color var(--transition);
}

body.dark-mode .cpi-phone-link {
  color: #ffffff;
}

.cpi-phone-link:hover {
  color: var(--red-bright);
}

.cpi-hours {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

body.dark-mode .cpi-hours {
  color: var(--text-mid);
}

/* ---- MAP SECTION ---- */
.map-section {
  padding: 64px 0;
  background: var(--silver-light);
  transition: background var(--transition);
}

body.dark-mode .map-section {
  background: var(--navy-dark);
}

.map-section h4 {
  margin-bottom: 10px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow-md);
  margin: 28px 0 16px;
  border: 3px solid var(--navy);
}

#service-area-map {
  width: 100%;
  height: 480px;
  background: #e8f0f8;
}

.map-note {
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: center;
}

.map-note i {
  color: var(--red-bright);
  margin-right: 4px;
}

.map-note a {
  color: var(--navy);
  font-weight: 600;
}

body.dark-mode .map-note {
  color: var(--text-mid);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .cpi-services-grid {
    grid-template-columns: 1fr;
  }

  #service-area-map {
    height: 340px;
  }

  .hero-short {
    min-height: 260px;
  }
}

/* ---- SVG SERVICE AREA MAP ---- */
.service-area-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- CITY INTRO SECTION ---- */
.city-intro-section {
  padding: 64px 0;
  background: var(--off-white);
  transition: background var(--transition);
}

body.dark-mode .city-intro-section {
  background: var(--navy-dark);
}

.city-intro-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.city-intro-text p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.7;
}

.city-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 28px var(--shadow-md);
}

.city-intro-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .city-intro-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .city-intro-img {
    order: -1;
  }
}

/* ---- GLOBAL ABOUT LIST (used on location pages) ---- */
.city-intro-text .about-list {
  margin: 20px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.city-intro-text .about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.city-intro-text .about-list li i {
  color: var(--red-bright);
  font-size: 1rem;
  flex-shrink: 0;
}

body.dark-mode .city-intro-text .about-list li {
  color: #ffffff;
}

@media (max-width: 600px) {
  .city-intro-text .about-list {
    grid-template-columns: 1fr;
  }
}

