.page-contact {
  --contact-gap-lg: 72px;
  background: var(--light-ice);
  color: var(--ink);
}

.page-contact .contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background: var(--deep-ice);
  color: var(--paper);
}

.page-contact .contact-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  pointer-events: none;
}

.page-contact .contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 240, 245, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 240, 245, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-contact .contact-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 52px;
  padding-bottom: 44px;
}

.page-contact .contact-hero__breadcrumbs {
  margin-bottom: 22px;
}

.page-contact .contact-hero .breadcrumbs,
.page-contact .contact-hero .breadcrumbs a {
  color: rgba(240, 244, 248, 0.75);
}

.page-contact .contact-hero .breadcrumbs a:hover {
  color: var(--flame);
}

.page-contact .contact-hero .label-index {
  color: var(--flame);
  background: transparent;
  border: 0;
  padding: 0;
}

.page-contact .contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 4px 0 14px;
  max-width: 14em;
}

.page-contact .contact-hero__lead {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 34em;
  margin-bottom: 0;
  color: rgba(240, 244, 248, 0.86);
}

.page-contact .contact-cards {
  padding: 60px 0 64px;
}

.page-contact .contact-cards__heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.page-contact .contact-card {
  min-height: 280px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  border-color: var(--still-gray);
  background-color: var(--cream);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-contact .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 10px 0 rgba(27, 91, 122, 0.16);
  border-color: var(--ice);
}

.page-contact .contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-ice);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.page-contact .contact-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--ice);
  fill: none;
}

.page-contact .contact-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.page-contact .contact-card__value {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ice);
  word-break: break-word;
  line-height: 1.4;
}

.page-contact .contact-card__note {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #42505A;
  margin: 12px 0 20px;
  flex: 1;
}

.page-contact .contact-card__action {
  align-self: flex-start;
  text-decoration: none;
}

.page-contact .tag--clay {
  background: var(--clay);
  color: #fff;
  border-radius: 2px;
}

.page-contact .contact-scope {
  background: var(--paper);
  padding: 64px 0;
}

.page-contact .contact-scope__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.page-contact .contact-scope__content {
  position: relative;
}

.page-contact .contact-scope__content::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 10px;
  width: 4px;
  height: 58px;
  background: var(--flame);
}

.page-contact .contact-scope__title {
  margin-bottom: 16px;
}

.page-contact .contact-scope__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 44em;
  margin-bottom: 24px;
}

.page-contact .contact-scope__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}

.page-contact .contact-scope__group {
  padding: 24px 24px 20px;
  border: 2px solid var(--still-gray);
  background: var(--light-ice);
}

.page-contact .contact-scope__group--mail {
  border-left: 6px solid var(--ice);
}

.page-contact .contact-scope__group--phone {
  border-left: 6px solid var(--flame);
  background: var(--cream);
}

.page-contact .contact-scope__group h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.page-contact .contact-scope__group ul {
  margin: 0;
  padding-left: 1.15em;
}

.page-contact .contact-scope__group li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.page-contact .contact-scope__media {
  border: 2px solid var(--ice);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.page-contact .contact-scope__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-contact .contact-response {
  background: var(--deep-ice);
  color: var(--paper);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-contact .contact-response::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 77, 46, 0.18);
}

.page-contact .contact-response::after {
  content: '';
  position: absolute;
  left: 10%;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(232, 240, 245, 0.15);
  transform: rotate(45deg);
}

.page-contact .contact-response__inner {
  position: relative;
  z-index: 2;
}

.page-contact .contact-response .label-index {
  color: var(--flame);
  background: transparent;
  border: 0;
  padding: 0;
}

.page-contact .contact-response__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 8px 0 16px;
  max-width: 20em;
}

.page-contact .contact-response__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 42em;
  color: rgba(240, 244, 248, 0.88);
  margin-bottom: 0;
}

.page-contact .contact-response__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-left: 14px;
  border-left: 4px solid var(--flame);
  font-family: var(--font-caption);
  font-size: 0.85rem;
  color: rgba(240, 244, 248, 0.72);
}

.page-contact .contact-further {
  background: var(--light-ice);
  padding: 64px 0 72px;
}

.page-contact .contact-further__title {
  margin-bottom: 28px;
}

.page-contact .contact-further__card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 26px;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(27, 91, 122, 0.14);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-contact .contact-further__card:hover,
.page-contact .contact-further__card:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(255, 77, 46, 0.25);
  border-color: var(--flame);
  background: #fff;
}

.page-contact .contact-further__card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.page-contact .contact-further__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin: 0 0 20px;
}

.page-contact .contact-cards__title,
.page-contact .contact-scope__title,
.page-contact .contact-further__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

@media (min-width: 600px) {
  .page-contact .contact-scope__split {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .page-contact .contact-hero {
    min-height: 460px;
  }

  .page-contact .contact-hero__content {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .page-contact .contact-cards {
    padding-top: 72px;
  }

  .page-contact .contact-scope {
    padding: 80px 0;
  }

  .page-contact .contact-scope__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
  }

  .page-contact .contact-response {
    padding: 80px 0;
  }

  .page-contact .contact-further {
    padding: 80px 0 88px;
  }
}
