:root {
  --navy-950: #061b35;
  --navy-900: #08284e;
  --blue-700: #0754b8;
  --blue-600: #0968d8;
  --blue-100: #e9f3ff;
  --cyan-500: #16a7d8;
  --green-600: #178a4a;
  --ink: #13243a;
  --muted: #5b6b7e;
  --line: #dce6f1;
  --surface: #f4f8fc;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(6, 27, 53, 0.08);
  --shadow-lg: 0 24px 70px rgba(6, 27, 53, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 8vw, 108px) 0;
}

.section--soft {
  background: var(--surface);
}

.section--dark {
  background: var(--navy-950);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan-500);
  content: "";
}

.section--dark .eyebrow,
.cta-band .eyebrow {
  color: #8edfff;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-950);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 6vw, 4.85rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  letter-spacing: -0.02em;
}

.section--dark h2,
.section--dark h3,
.cta-band h2 {
  color: var(--white);
}

p {
  margin-top: 0;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.section-heading .lede {
  margin-bottom: 0;
}

.topbar {
  background: var(--navy-950);
  color: #dcecff;
  font-size: 0.82rem;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 230, 241, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 240px;
  max-width: 58vw;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 25px;
}

.desktop-nav > a:not(.button) {
  position: relative;
  color: #27405e;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue-600);
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav > a[aria-current="page"]::after,
.desktop-nav > a:hover::after {
  transform: scaleX(1);
}

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-950);
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -7px;
}

.menu-icon::after {
  position: absolute;
  top: 7px;
}

.mobile-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(310px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.mobile-menu__panel a {
  display: block;
  min-height: 48px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu__panel a:last-child {
  border-bottom: 0;
  background: var(--blue-700);
  color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 820;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(7, 84, 184, 0.22);
}

.button--primary:hover {
  background: #06499f;
}

.button--whatsapp {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(23, 138, 74, 0.2);
}

.button--whatsapp:hover {
  background: #10753e;
}

.button--outline {
  border-color: #9fb6ce;
  background: var(--white);
  color: var(--navy-950);
}

.button--outline:hover {
  border-color: var(--blue-700);
  color: var(--blue-700);
}

.button--small {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 11px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 10%, rgba(22, 167, 216, 0.12), transparent 31%),
    linear-gradient(135deg, #f7fbff 0%, #e9f3ff 100%);
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 660px;
  align-items: center;
  gap: 48px;
  padding-block: clamp(58px, 8vw, 104px);
}

.hero__content {
  max-width: 720px;
}

.hero__content .lede {
  max-width: 650px;
  margin-bottom: 28px;
}

.hero__content strong {
  color: var(--navy-950);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  margin: 24px 0 0;
  padding: 0;
  color: #334c68;
  font-size: 0.9rem;
  font-weight: 720;
  list-style: none;
}

.hero__meta li::before {
  margin-right: 7px;
  color: var(--green-600);
  content: "✓";
  font-weight: 900;
}

.hero__visual {
  position: relative;
}

.hero__visual > img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  object-position: center;
  border: 8px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__badge {
  position: absolute;
  right: 18px;
  bottom: -22px;
  max-width: 245px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: var(--navy-950);
  color: var(--white);
  padding: 15px 18px;
  box-shadow: var(--shadow-lg);
}

.hero__badge strong,
.hero__badge span {
  display: block;
}

.hero__badge strong {
  font-size: 1rem;
}

.hero__badge span {
  margin-top: 2px;
  color: #bdd5ed;
  font-size: 0.79rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  min-height: 108px;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.trust-item:nth-child(2n) {
  border-right: 0;
}

.trust-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--navy-950);
  font-size: 0.95rem;
  line-height: 1.3;
}

.trust-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.split {
  display: grid;
  align-items: center;
  gap: 42px;
}

.media-card {
  position: relative;
}

.media-card img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.media-card__note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border-radius: 16px;
  background: rgba(6, 27, 53, 0.92);
  color: var(--white);
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 720;
  backdrop-filter: blur(7px);
}

.check-list,
.plain-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #dff6e9;
  color: var(--green-600);
  content: "✓";
  font-size: 0.77rem;
  font-weight: 900;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(6, 27, 53, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card__body {
  padding: 23px;
}

.service-card__body p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.text-link {
  color: var(--blue-700);
  font-weight: 820;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.issue-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.issue {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 13px 15px;
  font-weight: 720;
}

.issue::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgba(22, 167, 216, 0.12);
  content: "";
}

.process-grid {
  display: grid;
  gap: 16px;
  counter-reset: process;
}

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 30px 24px 24px;
  counter-increment: process;
}

.process-step::before {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  background: var(--blue-100);
  color: var(--blue-700);
  content: "0" counter(process);
  font-weight: 900;
}

.process-step::after {
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 130px;
  height: 130px;
  border: 24px solid rgba(9, 104, 216, 0.06);
  border-radius: 50%;
  content: "";
}

.process-step p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-950), #0a4b8f);
  color: var(--white);
}

.cta-band::before {
  position: absolute;
  top: -160px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.cta-band__inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 26px;
  padding-block: clamp(54px, 7vw, 82px);
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 690px;
  margin-bottom: 0;
  color: #d5e7f8;
}

.cta-band .button--outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: var(--navy-900);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px 16px 14px;
  background: linear-gradient(transparent, rgba(6, 27, 53, 0.9));
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 720;
}

.area-layout {
  display: grid;
  gap: 28px;
}

.area-feature {
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: var(--white);
  padding: 28px;
}

.area-feature h3 {
  color: var(--white);
}

.area-feature p {
  color: #c8dbef;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.area-tags span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 7px 11px;
  color: #eff7ff;
  font-size: 0.8rem;
  font-weight: 700;
}

.area-details,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.area-details {
  align-self: start;
}

.area-details summary,
.faq-item summary {
  position: relative;
  min-height: 58px;
  cursor: pointer;
  list-style: none;
  padding: 17px 48px 17px 18px;
  color: var(--navy-950);
  font-weight: 820;
}

.area-details summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.area-details summary::after,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--blue-700);
  content: "+";
  font-size: 1.35rem;
}

.area-details[open] summary::after,
.faq-item[open] summary::after {
  content: "−";
}

.area-columns {
  display: grid;
  gap: 18px;
  padding: 0 18px 20px;
}

.area-columns h4 {
  margin: 0 0 8px;
  color: var(--blue-700);
}

.area-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  max-width: 880px;
  margin-inline: auto;
  gap: 12px;
}

.faq-item__answer {
  padding: 0 18px 20px;
  color: var(--muted);
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  gap: 24px;
}

.contact-panel {
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--navy-950);
}

.contact-panel p {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: block;
  min-height: 94px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 16px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue-600);
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-card strong {
  margin-top: 3px;
  color: var(--blue-700);
  font-size: 1.14rem;
}

.address-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.address-block address {
  font-style: normal;
}

.breadcrumb {
  margin-bottom: 20px;
  color: #4d6480;
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue-700);
  text-decoration: none;
}

.service-hero {
  background:
    radial-gradient(circle at 8% 14%, rgba(22, 167, 216, 0.13), transparent 34%),
    var(--surface);
}

.service-hero__grid {
  display: grid;
  align-items: center;
  gap: 40px;
  padding-block: clamp(48px, 7vw, 88px);
}

.service-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.4rem);
}

.service-hero__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.content-grid {
  display: grid;
  gap: 24px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 25px;
}

.info-card p:last-child,
.info-card ul:last-child {
  margin-bottom: 0;
}

.note-box {
  border-left: 4px solid var(--cyan-500);
  border-radius: 0 14px 14px 0;
  background: var(--blue-100);
  padding: 17px 18px;
  color: #28445f;
}

.site-footer {
  background: #041425;
  color: #bcd0e4;
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-brand img {
  width: 230px;
  border-radius: 10px;
  background: var(--white);
  padding: 6px;
}

.footer-brand p {
  max-width: 450px;
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  margin-top: 8px;
  color: #cfe1f2;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #92aac2;
  font-size: 0.78rem;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  padding: 9px max(12px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  box-shadow: 0 -10px 30px rgba(6, 27, 53, 0.12);
}

.mobile-cta a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-cta__whatsapp {
  background: var(--green-600);
  color: var(--white);
}

.mobile-cta__call {
  background: var(--blue-700);
  color: var(--white);
}

@media (min-width: 620px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

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

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

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

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

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

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

  .trust-item,
  .trust-item:nth-child(2n) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-item:last-child {
    border-right: 0;
  }

  .cta-band__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-cta {
    display: none;
  }

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

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .hero__grid,
  .service-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  }

  .split {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .split--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .split--reverse > :first-child {
    order: 2;
  }

  .split--reverse > :last-child {
    order: 1;
  }

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

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

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

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

  .gallery-grid figure:first-child {
    grid-column: span 2;
  }

  .area-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 759px) {
  body {
    padding-bottom: 76px;
  }

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

  .topbar__inner p:last-child {
    display: none;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__badge {
    right: 12px;
    bottom: -18px;
    left: 12px;
    max-width: none;
  }

  .button-row .button {
    flex: 1 1 100%;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand img {
    width: 210px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .service-card__body,
  .info-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
