:root {
  --bg: #f2f0e9;
  --paper: #fffdf8;
  --ink: #17201c;
  --muted: #687169;
  --deep: #0f1a16;
  --deep-2: #172820;
  --line: #d9ddd6;
  --accent: #c7f36a;
  --accent-2: #a5d84a;
  --whatsapp: #25d366;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(15, 26, 22, 0.12);
  --container: min(1180px, calc(100% - 40px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}
body.lightbox-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  background: #fff;
  color: #111;
  padding: 10px 16px;
  z-index: 9999;
  border-radius: 8px;
}
.skip-link:focus {
  top: 18px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 26, 22, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: var(--deep);
  font-weight: 900;
  letter-spacing: -0.05em;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.02em;
}
.brand-copy small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #eef4ef;
  font-size: 14px;
  font-weight: 700;
}
.main-nav > a:not(.nav-call) {
  position: relative;
}
.main-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: 0.25s;
}
.main-nav > a:not(.nav-call):hover::after {
  width: 100%;
}
.nav-call {
  background: var(--accent);
  color: var(--deep);
  padding: 11px 17px;
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
  padding: 46px 0 82px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -130px;
  top: -180px;
  background: radial-gradient(
    circle,
    rgba(199, 243, 106, 0.22),
    transparent 68%
  );
}
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  left: -150px;
  bottom: -220px;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark {
  color: #5f764f;
}
.hero h1 {
  font-size: clamp(44px, 6.3vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 18px 0 26px;
  max-width: 820px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-copy > p {
  font-size: 18px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--accent);
  color: var(--deep);
  box-shadow: 0 12px 24px rgba(199, 243, 106, 0.15);
}
.btn-primary:hover {
  background: #d2ff77;
}
.btn-whatsapp {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-whatsapp:hover {
  border-color: var(--whatsapp);
  color: #fff;
  background: rgba(37, 211, 102, 0.08);
}
.btn-light {
  background: #fff;
  color: var(--deep);
}
.btn-outline-dark {
  background: transparent;
  border-color: #98a298;
  color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.btn-block {
  width: 100%;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}
.hero-panel {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #e3e7df;
  border-radius: 20px;
  pointer-events: none;
}
.panel-kicker {
  position: relative;
  z-index: 1;
  color: #708164;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero-panel h2 {
  position: relative;
  z-index: 1;
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 11px 0 11px;
}
.hero-panel p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 14px;
}
.quick-form {
  position: relative;
  z-index: 1;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quick-form label,
.contact-form label {
  display: block;
  margin-bottom: 13px;
}
.quick-form label > span,
.contact-form label > span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #657066;
  margin-bottom: 7px;
}
.quick-form input,
.quick-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8ddd6;
  background: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  color: var(--ink);
  transition: 0.2s;
}
.quick-form input:focus,
.quick-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #8bac52;
  box-shadow: 0 0 0 3px rgba(199, 243, 106, 0.18);
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  min-height: 21px;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
}
.form-status.is-success {
  color: #2f7a43;
}
.form-status.is-error {
  color: #b93838;
}
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid > div {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:first-child {
  padding-left: 0;
}
.trust-grid > div:last-child {
  border-right: 0;
}
.trust-grid strong,
.trust-grid span {
  display: block;
}
.trust-grid strong {
  font-size: 15px;
}
.trust-grid span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.section {
  padding: 96px 0;
}
.section-head {
  margin-bottom: 36px;
}
.split-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 60px;
  align-items: end;
}
.section-head h2,
.about-copy h2,
.contact-copy h2,
.map-band h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 12px 0 0;
}
.split-head > p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 7px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card {
  position: relative;
  min-height: 205px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid #e0e4dc;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--accent);
  right: -65px;
  bottom: -65px;
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #ced6c4;
}
.service-card:hover::after {
  transform: scale(1.45);
}
.service-num {
  font-size: 11px;
  color: #879085;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.service-icon {
  display: block;
  font-size: 30px;
  margin-top: 28px;
  color: #6c8b4f;
}
.service-card h3 {
  font-size: 17px;
  line-height: 1.22;
  margin: 12px 0 16px;
  max-width: 170px;
}
.service-link {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #58684f;
}
.service-link span {
  display: inline-block;
  transition: 0.2s;
}
.service-card:hover .service-link span {
  transform: translateX(4px);
}
.service-cta {
  margin-top: 18px;
  background: var(--deep);
  color: #fff;
  border-radius: 24px;
  padding: 30px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.service-cta h3 {
  margin: 8px 0 0;
  font-size: 26px;
  line-height: 1.2;
  max-width: 760px;
}
.section-dark {
  background: var(--deep);
  color: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 470px;
  border-radius: 30px;
  background: linear-gradient(145deg, #21372d, #0b120f);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.metal-shape {
  position: absolute;
  border: 1px solid rgba(199, 243, 106, 0.4);
}
.shape-one {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  left: -70px;
  top: 50px;
}
.shape-two {
  width: 270px;
  height: 90px;
  right: -20px;
  top: 105px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, rgba(199, 243, 106, 0.11), transparent);
}
.shape-three {
  width: 190px;
  height: 190px;
  right: 80px;
  bottom: -50px;
  transform: rotate(45deg);
  border-radius: 28px;
}
.about-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 175px;
  height: 175px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--accent);
  color: var(--deep);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}
.about-badge strong {
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.08em;
}
.about-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 10px;
  font-weight: 850;
}
.about-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}
.about-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.text-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border: 0;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #dfe3dc;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.03);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.56));
  opacity: 0;
  transition: 0.25s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gallery-overlay b {
  font-size: 23px;
}
.gallery-extra {
  display: none;
}
.gallery-grid.is-expanded .gallery-extra {
  display: block;
}
.gallery-actions {
  text-align: center;
  margin-top: 28px;
}
.contact-section {
  background: #172820;
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}
.contact-copy > p {
  color: rgba(255, 255, 255, 0.66);
  max-width: 560px;
}
.contact-list {
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.contact-list a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.contact-list span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 850;
}
.contact-list strong {
  font-size: 15px;
  font-weight: 650;
}
.contact-card {
  background: var(--paper);
  color: var(--ink);
  padding: 30px;
  border-radius: 24px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 11px;
  color: #7e887e;
  margin: 10px 0 0;
}
.map-band {
  background: #e4e8df;
  padding: 54px 0;
}
.map-band-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
.map-band h2 {
  font-size: 37px;
}
.map-band p {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 700px;
}
.site-footer {
  background: #09100d;
  color: #fff;
  padding: 62px 0 22px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}
.footer-brand > p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  font-size: 14px;
  margin: 20px 0 0;
}
.footer-cta {
  text-align: right;
}
.footer-cta > span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-bottom: 12px;
}
.footer-cta > div {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.footer-bottom a {
  color: #fff;
}
.brand-footer .brand-mark {
  width: 40px;
  height: 40px;
}
.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  z-index: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}
.floating-call {
  bottom: 82px;
  background: #192c23;
}
.floating-whatsapp {
  bottom: 20px;
  background: var(--whatsapp);
  font-size: 12px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(3, 7, 5, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.is-open {
  display: flex;
}
.lightbox-stage {
  max-width: min(1200px, 88vw);
  max-height: 88vh;
  text-align: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  margin: auto;
  border-radius: 8px;
}
.lightbox-stage span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  margin-top: 12px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 50%;
}
.lightbox-close {
  right: 22px;
  top: 22px;
  width: 48px;
  height: 48px;
  font-size: 30px;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 40px;
  line-height: 1;
}
.lightbox-prev {
  left: 22px;
}
.lightbox-next {
  right: 22px;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
  .hero-grid,
  .about-grid,
  .contact-grid {
    gap: 42px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    background: #16251e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding: 10px 8px;
  }
  .nav-call {
    text-align: center;
  }
  .hero {
    padding: 64px 0;
  }
  .hero-grid,
  .about-grid,
  .contact-grid,
  .split-head,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 40px;
  }
  .hero h1 {
    font-size: clamp(43px, 11vw, 65px);
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid > div {
    border-bottom: 1px solid var(--line);
  }
  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-cta,
  .map-band-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-visual {
    min-height: 380px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cta {
    text-align: left;
  }
  .footer-cta > div {
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .section {
    padding: 76px 0;
  }
  .split-head {
    gap: 18px;
  }
}
@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }
  .nav-wrap {
    min-height: 70px;
  }
  .brand-copy strong {
    font-size: 15px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-points {
    display: grid;
    gap: 8px;
  }
  .hero-panel {
    padding: 24px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid > div {
    border-right: 0;
    padding-left: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 180px;
  }
  .service-cta {
    padding: 25px 22px;
  }
  .service-cta .btn {
    width: 100%;
  }
  .about-visual {
    min-height: 320px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    aspect-ratio: 4/3;
  }
  .contact-card {
    padding: 22px 18px;
  }
  .contact-list a {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .map-band h2 {
    font-size: 31px;
  }
  .map-band .btn {
    width: 100%;
  }
  .footer-cta > div {
    flex-direction: column;
  }
  .footer-cta .btn {
    width: 100%;
  }
  .floating-call,
  .floating-whatsapp {
    width: 48px;
    height: 48px;
  }
  .lightbox {
    padding: 12px;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 34px;
    background: rgba(0, 0, 0, 0.45);
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
  .lightbox-close {
    right: 10px;
    top: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.map-band-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
}
.map-directions {
  margin-top: 22px;
}
.map-frame {
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #cad0c6;
  box-shadow: 0 18px 45px rgba(15, 26, 22, 0.12);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}
@media (max-width: 820px) {
  .map-band-grid {
    grid-template-columns: 1fr;
  }
  .map-frame {
    width: 100%;
  }
}
