:root {
  --bg: #f6f7f4;
  --ink: #1c2023;
  --line: #d2d6d1;
  --green: #91a097;
  --deep-green: #141c18;
  --dark: #0f1211;
  --muted: #606864;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Geologica", Arial, sans-serif;
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
footer,
img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.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;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s ease,
    transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-large::before {
    transition: none;
  }
}

.side {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: 72px;
  height: 100vh;
  background: var(--deep-green);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 58px 0;
}

.side-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  writing-mode: vertical-rl;
  letter-spacing: .08em;
  padding: 0;
}

.side-mark {
  appearance: none;
  display: block;
  width: 50px;
  height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.side-mark img {
  display: block;
  width: 50px;
  height: auto;
  transform: translateY(-3px);
}

.hero,
.intro,
.approach,
.process,
.services,
.cta,
.service-page,
.contact-page,
.site-footer {
  margin-left: 72px;
}

.hero {
  min-height: 900px;
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 15, 14, .78), rgba(11, 15, 14, .42)),
    url("assets/service-waterproofing-microcement.png?v=3") center / cover;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding: 34px 72px;
}

.brand {
  display: inline-flex;
  width: clamp(150px, 16vw, 235px);
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .22));
}

.lang {
  position: fixed;
  top: 34px;
  right: 72px;
  z-index: 40;
  display: flex;
  border: 1px solid rgba(255, 255, 255, .9);
  background: rgba(20, 28, 24, .82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  min-width: 46px;
  padding: 11px 15px;
  cursor: pointer;
}

.lang button.is-active {
  background: #fff;
  color: #111;
}

.hero-copy {
  position: absolute;
  left: 72px;
  right: 72px;
  top: 310px;
}

.hero h1 {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 0 38px;
  font-size: clamp(44px, 4.2vw, 72px);
  font-weight: 300;
  line-height: 1.05;
}

.hero h1::after {
  content: "";
  height: 1px;
  min-width: 120px;
  flex: 1;
  background: rgba(255, 255, 255, .5);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: .01em;
}

.text-link::before {
  content: "";
  width: 10px;
  height: 10px;
  background: currentColor;
}

.text-link.dark {
  margin-top: 14px;
}

.hero p {
  max-width: 780px;
  margin: 34px 0 0;
  color: #eef1ec;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.5;
}

.floating-image {
  position: absolute;
  right: 72px;
  bottom: -80px;
  width: min(980px, 54vw);
  height: 390px;
  background:
    linear-gradient(rgba(0, 0, 0, .28), rgba(0, 0, 0, .28)),
    url("assets/service-thermal-insulation.png?v=3") center / cover;
  box-shadow: 0 26px 60px rgba(20, 28, 24, .22);
}

.intro {
  min-height: 680px;
  padding: 220px 72px 120px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(90deg, transparent 0, transparent 18%, var(--line) 18.05%, transparent 18.1%, transparent 78%, var(--line) 78.05%, transparent 78.1%);
}

.intro h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 3.3vw, 54px);
  font-weight: 300;
  line-height: 1.2;
}

.intro p {
  max-width: 860px;
  margin: auto;
  color: #363c3e;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.55;
}

.company {
  background: var(--green);
  color: #fff;
  padding: 86px 72px 80px 130px;
}

.company h2 {
  margin: 0 0 55px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
}

.tabs {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
  letter-spacing: .02em;
}

.tabs span {
  display: block;
  width: 58px;
  height: 2px;
  background: #fff;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 760px);
  gap: 80px;
  align-items: end;
}

.company-copy p {
  margin: 0 0 24px;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.6;
}

.company-visual {
  position: relative;
  min-height: 390px;
  background:
    linear-gradient(rgba(0, 0, 0, .54), rgba(0, 0, 0, .54)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.company-visual strong {
  position: absolute;
  left: 0;
  top: -58px;
  color: #101313;
  font-size: clamp(34px, 3vw, 58px);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

.approach {
  padding: 70px 72px 46px;
}

.approach h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 300;
}

.approach p {
  margin: 12px 0 0;
  color: #aeb5af;
  font-size: clamp(20px, 2.1vw, 30px);
}

.process {
  padding: 92px 72px 84px;
  background:
    linear-gradient(180deg, #f6f7f4 0%, #eef1ec 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 72px;
  align-items: stretch;
}

.process-copy {
  max-width: 760px;
}

.process .eyebrow {
  margin: 0 0 18px;
  color: #6f7772;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.process h2 {
  margin: 0 0 24px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.08;
}

.process-lead {
  margin: 0 0 42px;
  color: #4a524e;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  gap: 22px;
}

.process-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(28, 32, 35, .12);
}

.process-step:last-child {
  border-bottom: 1px solid rgba(28, 32, 35, .12);
}

.process-step span {
  color: var(--green);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  color: #5a625d;
  font-size: 18px;
  line-height: 1.55;
}

.process-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.process-sectors span {
  padding: 12px 16px;
  border: 1px solid rgba(28, 32, 35, .14);
  background: rgba(255, 255, 255, .62);
  color: #2f3532;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.process-visual {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(15, 18, 17, .08), rgba(15, 18, 17, .42)),
    url("assets/service-painting.png?v=3") center / cover;
  box-shadow: 0 26px 60px rgba(20, 28, 24, .14);
}

.process-visual p {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
}

.services {
  padding: 0 72px 90px;
}

.services-panel {
  min-height: 670px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--dark);
}

.service-large {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 40px 24px;
  border-right: 1px solid rgba(145, 160, 151, .75);
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 1.75vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  background: transparent;
  transition: background-color .25s ease;
}

.service-large::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--service-bg) center / cover;
  transition: transform .45s ease;
}

.service-large:last-child {
  border-right: 0;
}

.service-large:hover,
.service-large:focus-visible {
  background-color: rgba(145, 160, 151, .22);
  outline: 0;
}

.service-large:hover::before,
.service-large:focus-visible::before {
  transform: scale(1.05);
}

.service-painting {
  --service-bg:
    linear-gradient(rgba(0, 0, 0, .56), rgba(0, 0, 0, .56)),
    url("assets/service-painting.png");
}

.service-thermal {
  --service-bg:
    linear-gradient(rgba(0, 0, 0, .56), rgba(0, 0, 0, .56)),
    url("assets/service-thermal-insulation.png");
}

.service-waterproofing {
  --service-bg:
    linear-gradient(rgba(0, 0, 0, .56), rgba(0, 0, 0, .56)),
    url("assets/service-waterproofing-microcement.png");
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 70px;
  margin-top: 64px;
}

.service-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
}

.num {
  color: var(--green);
  font-size: 30px;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #535a56;
  font-size: 18px;
  line-height: 1.55;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  background: var(--dark);
  color: #fff;
  padding: 80px 72px;
}

.cta h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 300;
}

.cta p {
  margin: 0;
  color: #cdd3cd;
  font-size: clamp(20px, 1.8vw, 26px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border: 1px solid #fff;
  padding: 20px 34px;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  background: #fff;
  color: #111;
  outline: 0;
}

.service-page {
  background: var(--bg);
}

.service-hero {
  min-height: 720px;
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 15, 14, .84), rgba(11, 15, 14, .38)),
    var(--service-hero-image) center / cover;
}

.service-hero-copy {
  max-width: 920px;
  padding: 170px 72px 100px;
}

.service-hero-copy .eyebrow {
  margin: 0 0 22px;
  color: #d7ddd6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.service-hero-copy h1 {
  margin: 0 0 28px;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: .96;
}

.service-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: #edf1ec;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.55;
}

.service-detail {
  padding: 90px 72px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 72px;
  align-items: start;
}

.service-content {
  display: grid;
  gap: 34px;
}

.service-content h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 300;
  line-height: 1.12;
}

.service-content p {
  margin: 0 0 18px;
  color: #464f4a;
  font-size: 18px;
  line-height: 1.75;
}

.service-content ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  position: relative;
  padding-left: 28px;
  color: #3d4541;
  font-size: 18px;
  line-height: 1.55;
}

.service-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 9px;
  height: 9px;
  background: var(--green);
}

.service-aside {
  position: sticky;
  top: 34px;
  display: grid;
  gap: 22px;
}

.service-note {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(20, 28, 24, .08);
}

.service-note h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.service-note p {
  margin: 0;
  color: #535b56;
  font-size: 17px;
  line-height: 1.6;
}

.image-compare {
  --compare-position: 50%;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 26px 60px rgba(20, 28, 24, .18);
}

.image-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.compare-after-image {
  z-index: 0;
}

.compare-before {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: var(--compare-position);
  overflow: hidden;
  background: var(--dark);
}

.compare-before img {
  width: calc(100% / (var(--compare-position-number, .5)));
  max-width: none;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
}

.compare-handle::before {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.compare-label {
  position: absolute;
  top: 20px;
  z-index: 2;
  padding: 9px 12px;
  background: rgba(15, 18, 17, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.compare-label.before {
  left: 20px;
}

.compare-label.after {
  right: 20px;
}

.service-related {
  padding: 0 72px 90px;
}

.service-related h2 {
  margin: 0 0 30px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
}

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

.related-card {
  min-height: 180px;
  display: grid;
  align-content: end;
  padding: 24px;
  background: var(--dark);
  color: #fff;
  font-size: 22px;
  transition: transform .2s ease, background-color .2s ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-3px);
  background: #18201c;
  outline: 0;
}

.contact-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(11, 15, 14, .86), rgba(11, 15, 14, .52)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2200&q=80") center / cover;
  color: #fff;
}

.contact-hero {
  min-height: 100vh;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: 72px;
  align-items: end;
  padding: 150px 72px 86px;
}

.contact-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 22px;
  color: #d7ddd6;
  font-weight: 700;
  letter-spacing: .08em;
}

.contact-copy h1 {
  margin: 0 0 30px;
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 300;
  line-height: .95;
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 34px;
  color: #edf1ec;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.5;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, .55);
}

.contact-details article {
  display: grid;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.contact-details span {
  color: #cad2cb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}

.contact-details a {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.3;
  transition: color .2s ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: #dfe8df;
  outline: 0;
}

.site-footer {
  padding: 72px 72px 34px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 85% 20%, rgba(145, 160, 151, .18), transparent 34%),
    linear-gradient(135deg, #0d1110 0%, var(--dark) 62%, #151d19 100%);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) minmax(320px, 1.4fr) minmax(220px, .8fr);
  gap: 56px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  width: 154px;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-tagline {
  max-width: 360px;
  margin: 0;
  color: #c9d0ca;
  font-size: 17px;
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .035);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.footer-contact-item span,
.footer-action span,
.footer-bottom {
  color: #8f9b94;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.footer-contact-item a {
  color: #f4f7f3;
  font-size: 17px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.footer-contact-item:hover {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px);
}

.footer-contact-item a:hover,
.footer-contact-item a:focus-visible {
  color: #fff;
  outline: 0;
}

.footer-action {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, .72);
  padding: 18px 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  background: #fff;
  color: #111;
  border-color: #fff;
  outline: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  color: #8f9b94;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .company-grid,
  .process-grid,
  .service-detail-grid,
  .related-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-visual {
    min-height: 420px;
  }

  .service-aside {
    position: static;
  }

  .company-visual strong {
    white-space: normal;
  }

  .services-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .service-large {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(145, 160, 151, .75);
  }

  .service-large:last-child {
    border-bottom: 0;
  }

  .floating-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 60px 0 0;
  }

  .hero {
    padding-bottom: 60px;
  }

  .hero-copy {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    top: auto;
    padding-top: 100px;
  }

  .hero h1::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .side {
    display: none;
  }

  .hero,
  .intro,
  .approach,
  .process,
  .services,
  .cta,
  .service-page,
  .contact-page,
  .site-footer {
    margin-left: 0;
  }

  .topbar,
  .hero-copy,
  .service-hero-copy,
  .intro,
  .approach,
  .process,
  .services,
  .cta,
  .contact-shell {
    padding-left: 28px;
    padding-right: 28px;
  }

  .process {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .service-detail,
  .service-related {
    padding-left: 28px;
    padding-right: 28px;
  }

  .service-detail {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .service-hero {
    min-height: 680px;
  }

  .service-hero-copy {
    padding-top: 110px;
    padding-bottom: 76px;
  }

  .image-compare {
    min-height: 360px;
  }

  .intro {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .hero {
    min-height: 790px;
  }

  .hero h1 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }

  .company {
    padding: 70px 28px;
  }

  .company h2,
  .approach h2,
  .cta h2 {
    font-size: 42px;
  }

  .company-grid {
    gap: 56px;
  }

  .company-visual {
    min-height: 310px;
  }

  .company-visual strong {
    top: -44px;
  }

  .cta {
    display: block;
  }

  .button {
    margin-top: 30px;
  }

  .lang {
    position: static;
    box-shadow: none;
  }

  .site-footer {
    padding: 50px 28px 30px;
  }

  .footer-main {
    gap: 38px;
  }

  .footer-contact-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    margin-top: 42px;
  }

  .footer-bottom p,
  .footer-bottom span {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 96px;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding-top: 24px;
  }

  .brand {
    width: 128px;
  }

  .hero-copy {
    padding-top: 86px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .floating-image {
    height: 270px;
  }

  .tabs {
    gap: 12px;
  }

  .tabs span {
    width: 34px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }
}
