:root {
  --ink: #34414a;
  --muted: #50616a;
  --blue: #5d8792;
  --blue-dark: #354850;
  --blue-soft: #d8e3e8;
  --panel: #d5e0e5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(45, 64, 73, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  background: var(--white);
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1410px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  width: min(1410px, calc(100% - 48px));
  height: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.social-nav,
.footer-social {
  display: flex;
  gap: 12px;
}

.social-nav a,
.footer-social a {
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.hero {
  min-height: 630px;
  background: linear-gradient(180deg, #dce8eb 0%, #537d88 100%);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  min-height: 630px;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 52px;
}

.hero h1 {
  max-width: 710px;
  margin: 0 0 6px;
  font-size: clamp(42px, 4.1vw, 72px);
  line-height: 1.14;
}

.hero p {
  max-width: 920px;
  margin: 0 0 48px;
  color: #314048;
  font-size: clamp(22px, 1.6vw, 31px);
}

.button {
  min-width: 200px;
  min-height: 64px;
  padding: 17px 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--blue-dark);
}

.button-blue {
  color: var(--ink);
  background: #a8c8d2;
}

.hero-image {
  position: absolute;
  right: 92px;
  bottom: 0;
  width: min(430px, 31vw);
  z-index: 1;
}

.accessibility-mark {
  position: absolute;
  left: 46%;
  bottom: 44px;
  color: rgba(255, 255, 255, 0.9);
  filter: blur(1px);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-size: 175px;
  line-height: 1;
}

.feature-card {
  margin: 50px 0 54px;
  min-height: 366px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr 612px;
  overflow: hidden;
  background: var(--panel);
}

.feature-copy {
  padding: 42px 0 36px 62px;
}

.feature-card h2 {
  max-width: 770px;
  margin: 0 0 22px;
  font-size: clamp(28px, 2.3vw, 42px);
  line-height: 1.16;
}

.feature-card p {
  max-width: 770px;
  margin: 0 0 25px;
  font-size: 22px;
  font-weight: 600;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-panel {
  position: relative;
  margin-bottom: 40px;
  padding: 58px 62px 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 32% 68%, rgba(255, 255, 255, 0.58) 0 5%, transparent 16%),
    linear-gradient(115deg, #eee8e5 0%, #b5cbd5 51%, #e6d5ce 100%);
  overflow: hidden;
}

.offer-panel::before {
  content: "\267F\FE0E";
  position: absolute;
  left: 25%;
  bottom: 74px;
  color: rgba(255, 255, 255, 0.82);
  filter: blur(1px);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-size: 210px;
  line-height: 1;
}

.offer-panel > h2 {
  position: relative;
  margin: 0 0 44px;
  text-align: center;
  font-size: clamp(34px, 3vw, 52px);
}

.offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 700px);
  gap: 64px;
  align-items: center;
}

.offer-grid ul {
  margin: 0;
  padding-left: 24px;
  font-size: 22px;
  font-weight: 600;
}

.offer-grid li + li {
  margin-top: 9px;
}

.support-card {
  padding: 34px 42px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.support-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.support-card h3:not(:first-child) {
  margin-top: 56px;
}

.support-card p {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
}

.offer-panel > .button {
  position: relative;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 48px;
  min-width: 255px;
}

.map-section {
  margin-top: 10px;
  text-align: center;
}

.map-section h2 {
  margin: 0 0 18px;
  font-size: clamp(44px, 3.5vw, 62px);
}

.map-section img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.tile-grid {
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-tile {
  position: relative;
  min-height: 465px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #a8c4cc 0%, #527d88 100%);
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(78, 121, 132, 0.54);
}

.service-tile > * {
  position: relative;
  z-index: 1;
}

.rental-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-tile::after {
  display: none;
}

.tile-symbol {
  margin-bottom: 8px;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-size: 126px;
  line-height: 0.9;
}

.tile-title {
  max-width: 640px;
  font-size: clamp(44px, 4.1vw, 72px);
  font-weight: 300;
  line-height: 0.98;
}

.tile-subtitle {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(22px, 1.8vw, 31px);
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.service-tile .button {
  margin-top: 42px;
  min-width: 210px;
  min-height: 64px;
  font-size: 24px;
}

.site-footer {
  background: #d6e2ea;
}

.footer-grid {
  padding: 54px 0 58px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 84px;
}

.footer-logo {
  width: 245px;
  margin-bottom: 24px;
}

.site-footer h2 {
  margin: 0 0 34px;
  font-size: 28px;
}

.site-footer p,
.site-footer address {
  margin: 0 0 12px;
  font-size: 20px;
  font-style: normal;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.footer-social {
  margin-top: 28px;
}

.copyright {
  width: min(1410px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 20px;
  font-size: 16px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-image {
    right: 20px;
    width: 390px;
  }

  .feature-card,
  .offer-grid,
  .tile-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    max-height: 380px;
  }

  .offer-grid {
    gap: 36px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .wrap,
  .site-header,
  .copyright {
    width: min(100% - 28px, 1410px);
  }

  .site-header {
    height: 96px;
  }

  .brand img {
    width: 230px;
  }

  .social-nav a {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .hero,
  .hero-grid {
    min-height: 690px;
  }

  .hero-grid {
    padding-top: 38px;
  }

  .hero p {
    margin-bottom: 28px;
  }

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

  .hero-image {
    width: 335px;
    right: -52px;
  }

  .accessibility-mark {
    left: 16%;
    bottom: 120px;
    font-size: 128px;
  }

  .button {
    min-height: 56px;
    min-width: 168px;
    font-size: 20px;
  }

  .feature-card,
  .offer-panel,
  .service-tile {
    border-radius: 22px;
  }

  .feature-copy,
  .offer-panel {
    padding: 28px 24px;
  }

  .feature-card p,
  .offer-grid ul,
  .support-card p {
    font-size: 18px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .map-section img {
    height: 350px;
  }

  .service-tile {
    min-height: 390px;
  }

  .tile-subtitle {
    letter-spacing: 4px;
  }

  .footer-grid {
    gap: 28px;
  }
}
