:root {
  --ink: #17202a;
  --charcoal: #202c38;
  --charcoal-2: #111821;
  --blue: #2f5f82;
  --rust: #d16b35;
  --amber: #f3b35b;
  --paper: #f4f1ea;
  --panel: #fffaf2;
  --white: #ffffff;
  --muted: #68737d;
  --line: #ded7cd;
  --shadow: 0 18px 44px rgba(23, 32, 42, 0.12);
  --radius: 8px;
  --container: 1180px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

section[id] {
  scroll-margin-top: 150px;
}

.site-header {
  position: relative;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  color: var(--ink);
}

.header-meta-inner,
.topbar-inner {
  width: min(var(--container), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.header-meta {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.86);
}

.header-meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
}

.social-links,
.meta-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--rust);
  transform: translateY(-1px);
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.meta-contact {
  font-size: 13px;
  font-weight: 800;
}

.meta-contact a {
  white-space: nowrap;
}

.meta-contact a:hover {
  color: var(--amber);
}

.topbar {
  position: relative;
  background: rgba(255, 250, 242, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(17, 24, 33, 0.12);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  position: relative;
}

.site-header.is-scrolled .topbar {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 14px 34px rgba(17, 24, 33, 0.16);
}

.brand {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #3b4650;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.menu a:hover,
.menu a.is-active {
  background: #ece3d5;
  color: var(--ink);
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--rust);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(209, 107, 53, 0.22);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(280px, 340px);
  justify-content: center;
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
  overflow: hidden;
  padding: 70px clamp(16px, 5vw, 70px) 64px;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 33, 0.9) 0%, rgba(17, 24, 33, 0.72) 44%, rgba(17, 24, 33, 0.18) 100%),
    linear-gradient(180deg, rgba(17, 24, 33, 0.08) 0%, rgba(17, 24, 33, 0.75) 100%),
    url("../images/hero-generated.jpg") center right / cover no-repeat;
}

.hero-panel,
.quick-card {
  position: relative;
  z-index: 1;
}

.hero-panel {
  width: min(790px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border-left: 6px solid var(--rust);
  border-radius: var(--radius);
  background: rgba(23, 32, 42, 0.74);
  backdrop-filter: blur(10px);
}

.overline {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .overline,
.workflow .overline,
.contact .overline {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.hero-panel p:not(.overline) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--rust);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(209, 107, 53, 0.25);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.quick-card {
  align-self: end;
  padding: 22px;
  border-top: 5px solid var(--amber);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-card span {
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-card strong {
  display: block;
  margin: 7px 0;
  font-size: 22px;
  line-height: 1.1;
}

.quick-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, calc((var(--container) - 2px) / 3)));
  justify-content: center;
  gap: 1px;
  padding-left: clamp(16px, 5vw, 70px);
  padding-right: clamp(16px, 5vw, 70px);
  background: var(--line);
}

.metrics article {
  padding: clamp(24px, 4vw, 38px);
  background: var(--panel);
}

.metrics span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--amber);
  font-weight: 900;
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.metrics p,
.intro-copy p,
.service-card p,
.timeline p,
.proof-grid p,
.faq-answer p,
.contact-box p,
.footer p,
.estimate-grid p,
.coverage-copy p {
  color: var(--muted);
}

.section {
  padding: 90px clamp(16px, 5vw, 70px);
}

.section-kicker {
  width: min(var(--container), 100%);
  margin: 0 auto 36px;
}

.section-kicker.center {
  width: min(var(--container), 100%);
  text-align: center;
}

.section-kicker.center h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.intro,
.gallery {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 82px);
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.intro-copy {
  display: grid;
  gap: 14px;
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list span {
  padding: 16px 18px;
  border-left: 4px solid var(--rust);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 900;
}

.service-grid,
.accepted-grid,
.estimate-grid,
.proof-grid {
  display: grid;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(23, 32, 42, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card small {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rust);
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 0;
}

.accepted {
  background: #ece7df;
}

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

.accepted-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.accepted-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4e3d5;
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.accepted-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.workflow {
  background: var(--charcoal);
  color: var(--white);
}

.workflow h2 {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.timeline article {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.timeline span {
  background: var(--rust);
  color: var(--white);
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.estimate {
  background: var(--paper);
}

.estimate-panel {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.estimate-panel .section-kicker {
  margin-bottom: 26px;
}

.estimate-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.estimate-grid article {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
}

.estimate-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.estimate-grid p {
  margin: 0;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(320px, 390px);
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(32, 44, 56, 0.96), rgba(47, 95, 130, 0.88)),
    url("../images/service-clearance-generated.jpg") center / cover no-repeat;
  color: var(--white);
}

.coverage h2 {
  color: var(--white);
}

.coverage-copy {
  width: min(720px, 100%);
}

.coverage-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

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

.area-grid span {
  display: grid;
  place-items: center;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 12px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 32, 42, 0) 30%, rgba(23, 32, 42, 0.84) 100%);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 15px;
  right: 15px;
  bottom: 14px;
  color: var(--white);
  font-weight: 900;
  text-align: left;
}

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

.proof-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.07);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 20px;
}

.proof-grid span {
  color: var(--rust);
  font-weight: 900;
}

.faq {
  background: #ece7df;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item button {
  width: 100%;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--rust);
  font-size: 22px;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 20px;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 20px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 880px) auto;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 34px clamp(16px, 5vw, 70px);
  background: var(--amber);
  color: var(--ink);
}

.cta-band span,
.cta-band strong {
  display: block;
}

.cta-band span {
  color: #8b491f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band strong {
  max-width: 780px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.contact {
  background: var(--charcoal);
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: 34px;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(23, 32, 42, 0.96), rgba(47, 95, 130, 0.86)),
    url("../images/service-machine-generated.jpg") center / cover no-repeat;
  color: var(--white);
}

.contact-box h2 {
  color: var(--white);
}

.contact-box p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards div,
.contact-note {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-cards a,
.contact-cards div {
  min-height: 92px;
  padding: 16px;
}

.contact-cards span,
.contact-note strong {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.25;
}

.contact-note {
  margin-top: 12px;
  padding: 16px;
}

.contact-note p {
  margin: 6px 0 0;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
}

.quote-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .button {
  width: 100%;
}

.footer {
  padding: 54px clamp(16px, 5vw, 70px) 26px;
  background: var(--charcoal-2);
  color: var(--white);
}

.footer-inner,
.footer-bottom {
  width: min(var(--container), 100%);
  margin-left: auto;
  margin-right: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(24px, 4vw, 52px);
}

.footer-brand {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.footer-brand img {
  width: 66px;
  height: 66px;
}

.footer p {
  max-width: 720px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-col strong,
.footer-brand strong {
  color: var(--white);
}

.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32);
}

.wa-float img {
  width: 100%;
  height: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(17, 24, 33, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(1120px, 100%);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    width: auto;
    padding: 12px max(16px, calc((100vw - var(--container)) / 2 + 16px));
    background: var(--panel);
    box-shadow: 0 18px 34px rgba(17, 24, 33, 0.16);
  }

  .menu.is-open {
    display: grid;
  }

  .menu a {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
  }

  .topbar-phone {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: end;
    padding-top: 64px;
  }

  .quick-card {
    width: min(460px, 100%);
  }

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

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

  .coverage,
  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  section[id] {
    scroll-margin-top: 86px;
  }

  .header-meta-inner {
    justify-content: center;
    width: min(var(--container), calc(100% - 32px));
    min-height: 38px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .meta-contact {
    display: none;
  }

  .topbar-inner {
    width: min(var(--container), calc(100% - 32px));
    min-height: 68px;
    grid-template-columns: auto auto;
  }

  .brand,
  .brand img {
    width: 54px;
    height: 54px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 36px 16px 30px;
    gap: 12px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(17, 24, 33, 0.42) 0%, rgba(17, 24, 33, 0.78) 45%, rgba(17, 24, 33, 0.94) 100%),
      url("../images/hero-generated.jpg") 62% top / cover no-repeat;
  }

  .hero-panel {
    padding: 20px;
    border-top: 5px solid var(--rust);
    border-left: 0;
  }

  h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.02;
  }

  .hero-panel p:not(.overline),
  .coverage-copy p {
    font-size: 16px;
  }

  .quick-card {
    padding: 16px;
  }

  .metrics,
  .intro-grid,
  .service-grid,
  .accepted-grid,
  .timeline,
  .estimate-grid,
  .proof-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .section {
    padding: 70px 16px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .cta-band,
  .footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 520px) {
  .header-meta-inner {
    justify-content: flex-start;
  }

  .social-links {
    gap: 6px;
  }

  .social-links a {
    width: 26px;
    height: 26px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .accepted-grid article,
  .timeline article,
  .estimate-grid article,
  .proof-grid article {
    min-height: auto;
  }

  .contact-box,
  .estimate-panel {
    padding: 20px;
  }

  .contact-cards,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .wa-float {
    right: 14px;
    bottom: 14px;
  }
}
