:root {
  --bg: #f4f1eb;
  --surface: #ffffff;
  --surface-alt: #101215;
  --surface-dark: #050607;
  --text: #171717;
  --text-soft: #595f69;
  --line: rgba(23, 23, 23, 0.1);
  --gold: #f4b400;
  --gold-deep: #c68e00;
  --blue: #0f88d8;
  --blue-deep: #0a5b99;
  --asphalt: #1b1d21;
  --asphalt-soft: #2a2e34;
  --success: #2c8d52;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 136, 216, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f6f1 0%, #f4f1eb 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 0.8rem 1.5rem;
  font-size: 0.92rem;
}

.topbar__inner,
.site-header__inner,
.hero,
.section,
.footer__inner {
  width: min(calc(100% - 2.4rem), var(--max-width));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.topbar__lines {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1 1 auto;
  min-width: 0;
}

.topbar__phone {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 180, 0, 0.55);
  transition: background 0.2s ease, color 0.2s ease;
}

.topbar__phone:hover,
.topbar__phone:focus-visible {
  background: var(--gold);
  color: var(--surface-dark);
  outline: none;
}

.phone-cta {
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.15), rgba(244, 180, 0, 0.04));
  border: 1px solid rgba(244, 180, 0, 0.4);
  border-radius: var(--radius-sm);
}

.phone-cta__number {
  display: inline-block;
  margin: 0.3rem 0 0.5rem;
  font-family: "Teko", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--asphalt);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.phone-cta__number:hover,
.phone-cta__number:focus-visible {
  color: var(--gold-deep);
  outline: none;
}

.phone-cta p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 76px;
  height: auto;
}

.brand__title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand__title strong,
.hero__eyebrow,
.kicker,
.section-title__kicker,
.badge,
.cta-banner__eyebrow {
  font-family: "Teko", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__title strong {
  font-size: 1.55rem;
  line-height: 1;
}

.brand__title span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface-alt);
  color: white;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font: inherit;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav a {
  padding: 0.9rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  background: rgba(15, 136, 216, 0.08);
  color: var(--text);
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.45rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
}

.button--primary,
input[type="submit"] {
  color: var(--surface-dark);
  background: linear-gradient(135deg, #ffd65a, var(--gold) 60%, var(--gold-deep));
  box-shadow: 0 14px 28px rgba(198, 142, 0, 0.28);
}

.button--dark {
  color: white;
  background: linear-gradient(135deg, var(--asphalt-soft), var(--surface-dark));
}

.button--ghost {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-wrap {
  position: relative;
  padding: 4rem 0 2rem;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, rgba(15, 136, 216, 0.2), transparent 35%),
    repeating-linear-gradient(
      -20deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.02) 10px,
      transparent 10px,
      transparent 18px
    );
  clip-path: ellipse(125% 100% at 50% 0%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0 5rem;
}

.hero__content,
.hero__card {
  position: relative;
  z-index: 1;
}

.hero__eyebrow,
.section-title__kicker,
.cta-banner__eyebrow {
  color: var(--gold);
  font-size: 1.15rem;
}

.hero h1,
.page-hero h1 {
  font-family: "Teko", sans-serif;
  font-size: clamp(3.8rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: white;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.hero__stats article,
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
}

.hero__stats strong,
.stat-card strong {
  display: block;
  color: white;
  font-size: 1.5rem;
}

.hero__stats span,
.stat-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hero__card {
  border-radius: var(--radius);
  padding: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 10, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  color: white;
}

.hero__card img {
  width: min(100%, 350px);
  margin: 0 auto 1.5rem;
}

.hero__card ul,
.check-list,
.service-list,
.area-list,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__card li,
.check-list li,
.service-list li,
.area-list li,
.contact-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-top: 0.85rem;
  color: inherit;
}

.hero__card li::before,
.check-list li::before,
.service-list li::before,
.area-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffe081);
}

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding-top: 2.5rem;
}

.section-title {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}

.section-title h2 {
  font-family: "Teko", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.98;
}

.section-title p {
  max-width: 70ch;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1.4rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.area-card,
.contact-card,
.process-card,
.estimate-panel,
.info-panel {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card,
.service-card,
.area-card,
.contact-card,
.process-card,
.info-panel {
  padding: 1.7rem;
}

.service-card,
.process-card,
.area-card {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.process-card::after,
.area-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -55% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 136, 216, 0.18), transparent 68%);
}

.service-card h3,
.process-card h3,
.area-card h3,
.contact-card h3,
.info-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.content-spacer {
  margin-top: 1.4rem;
}

.icon-chip,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: rgba(15, 136, 216, 0.1);
  color: var(--blue-deep);
  font-weight: 900;
}

.badge {
  width: auto;
  height: auto;
  padding: 0.35rem 0.7rem;
  font-size: 0.95rem;
}

.lane-divider {
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #121418, #1d2126),
    #161a20;
  position: relative;
  overflow: hidden;
  margin: 2rem 0 0;
}

.lane-divider::before {
  content: "";
  position: absolute;
  inset: 6px 16px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--gold) 0,
      var(--gold) 34px,
      transparent 34px,
      transparent 52px
    );
  border-radius: 999px;
}

.media-frame,
.inline-photo,
.hero-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img,
.inline-photo img,
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame {
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
}

.media-frame img {
  aspect-ratio: 4 / 3;
}

.inline-photo {
  border: 1px solid var(--line);
  background: var(--surface);
}

.inline-photo img {
  aspect-ratio: 16 / 10;
}

.hero-photo {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
}

.hero-photo img {
  aspect-ratio: 4 / 4.2;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-area-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: stretch;
}

.stack-grid {
  display: grid;
  gap: 1rem;
}

.media-caption {
  padding: 1.2rem 1.3rem 1.35rem;
}

.media-caption h3 {
  margin-bottom: 0.4rem;
}

.core-services {
  display: grid;
  gap: 1.35rem;
}

.core-services__intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.core-services__copy,
.core-services__photo,
.core-service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.core-services__copy {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(15, 136, 216, 0.08), transparent 35%),
    linear-gradient(180deg, #fffdfa 0%, #f6f1e8 100%);
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.core-services__copy h2 {
  font-family: "Teko", sans-serif;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 0.92;
  max-width: 7.5ch;
}

.core-services__copy p {
  margin-top: 0.9rem;
  max-width: 42ch;
}

.core-services__photo {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: var(--surface-dark);
}

.core-services__photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.core-services__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 91, 153, 0.22), transparent 44%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.24), rgba(5, 6, 7, 0.05));
}

.core-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.core-service-card {
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(35, 39, 45, 0.98), rgba(24, 28, 34, 0.98)),
    var(--surface-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.core-service-card h3,
.core-service-card p {
  color: white;
}

.core-service-card h3 {
  margin-bottom: 0.7rem;
}

.core-service-card .badge {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.brand-highlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15, 136, 216, 0.14), transparent 26%),
    linear-gradient(135deg, #14171b 0%, #0c0f12 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.brand-highlight__media {
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(255, 196, 0, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #090b0d;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.brand-highlight__media img {
  width: min(100%, 360px);
}

.brand-highlight__content {
  color: white;
}

.brand-highlight__content h2 {
  font-family: "Teko", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 0.94;
  margin-bottom: 0.7rem;
  color: white;
  max-width: 9ch;
}

.brand-highlight__content .section-title__kicker {
  color: #ffd24f;
}

.brand-highlight__content p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
}

.brand-highlight__content p + p {
  margin-top: 0.8rem;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(125deg, rgba(15, 136, 216, 0.94), rgba(7, 29, 47, 0.98)),
    var(--blue);
  color: white;
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  font-family: "Teko", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero {
  position: relative;
  padding: 4rem 0;
  background:
    linear-gradient(115deg, rgba(5, 6, 7, 0.96), rgba(28, 32, 39, 0.94)),
    var(--surface-dark);
}

.page-hero__inner {
  width: min(calc(100% - 2.4rem), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

.page-hero p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 60ch;
}

.page-hero__panel {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.estimate-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.estimate-panel {
  padding: 2rem;
}

form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: #fffdfa;
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 136, 216, 0.25);
  border-color: rgba(15, 136, 216, 0.45);
}

.form-note,
.fine-print {
  font-size: 0.94rem;
  color: var(--text-soft);
}

.success-message {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(44, 141, 82, 0.11);
  color: var(--success);
  font-weight: 800;
}

.success-message.is-visible {
  display: block;
}

.submit-error {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(200, 35, 35, 0.09);
  border: 1px solid rgba(200, 35, 35, 0.28);
  color: #a81f1f;
  font-weight: 600;
  font-size: 0.95rem;
}

.submit-error.is-visible {
  display: block;
}

.map-block {
  min-height: 100%;
  padding: 2rem;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(160deg, rgba(10, 91, 153, 0.95), rgba(9, 18, 27, 0.98)),
    var(--blue-deep);
  box-shadow: var(--shadow);
}

.map-block h2,
.map-block h3,
.map-block p {
  color: white;
}

.map-block > p {
  color: rgba(255, 255, 255, 0.84);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.map-grid article {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.map-grid article p {
  color: rgba(255, 255, 255, 0.8);
}

.service-map-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.4rem;
  align-items: stretch;
}

.service-map-panel,
.service-map-shell {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-map-panel {
  padding: 1.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 241, 232, 0.98));
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.service-map-panel h2 {
  font-family: "Teko", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 0.95;
  margin-bottom: 0.8rem;
}

.service-map-shell {
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: #dfe8ef;
  display: flex;
}

.service-map-canvas {
  flex: 1 1 auto;
  min-height: 460px;
  height: 100%;
}

.service-map-legend {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.service-map-legend article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(15, 136, 216, 0.05);
  border: 1px solid rgba(15, 136, 216, 0.08);
}

.service-map-legend strong {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.02rem;
}

.service-map-legend strong::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

.service-map-legend article:first-child strong::before {
  background: rgba(244, 180, 0, 0.95);
}

.service-map-legend article:last-child strong::before {
  background: rgba(15, 136, 216, 0.95);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #161a20;
  color: white;
}

.leaflet-popup-content {
  margin: 0.9rem 1rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.leaflet-popup-content strong {
  display: block;
  margin-bottom: 0.35rem;
}

.site-footer {
  background: var(--surface-dark);
  color: white;
}

.footer__inner {
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1.5rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid a:hover {
  color: white;
}

.footer-brand img {
  width: 96px;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
}

.reveal {
  animation: rise 0.65s ease both;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .page-hero__inner,
  .estimate-layout,
  .contact-layout,
  .cta-banner,
  .core-services__intro,
  .brand-highlight,
  .service-map-layout,
  .service-area-showcase,
  .footer-grid,
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-banner__actions {
    justify-content: flex-start;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1.2rem;
    right: 1.2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .hero__stats,
  .form-grid,
  .map-grid,
  .photo-grid,
  .core-services__grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    font-size: 0.84rem;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__lines {
    align-items: center;
    text-align: center;
  }

  .topbar__phone {
    order: -1;
    font-size: 1rem;
    padding: 0.45rem 1.1rem;
  }

  .phone-cta__number {
    font-size: 2rem;
  }

  .site-header__inner,
  .hero,
  .section,
  .page-hero__inner,
  .footer__inner {
    width: min(calc(100% - 1.4rem), var(--max-width));
  }

  .brand img {
    width: 60px;
  }

  .brand__title strong {
    font-size: 1.25rem;
  }
}
