:root {
  --orange: #f58200;
  --text: #161616;
  --muted: #7c7c7c;
  --line: #e8e8e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
}

.page {
  width: min(100%, 480px);
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 42px rgba(0, 0, 0, .35);
}

.hero {
  background: #000;
  padding: 30px 24px 28px;
}

.hero img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.intro {
  padding: 26px 24px 20px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
}

.slogan img {
  display: block;
  width: 100%;
}

.identity {
  text-align: right;
  padding-top: 28px;
}

.identity h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.identity .role {
  margin-top: 8px;
  color: var(--orange);
  font-size: .98rem;
  font-weight: 750;
  line-height: 1.25;
}

.actions {
  padding: 0 24px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.action {
  min-height: 54px;
  border: 1px solid #ddd;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #222;
  font-weight: 800;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
}

.action.primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.action img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.action.primary img {
  filter: brightness(0) invert(1);
}

.contacts {
  padding: 4px 24px 26px;
}

.contact-row {
  display: grid;
  grid-template-columns: 50px 1fr 18px;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f7f7f7;
}

.contact-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.contact-label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .06em;
  font-weight: 700;
}

.contact-value {
  display: block;
  margin-top: 4px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.contact-sub {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .82rem;
}

.chevron {
  color: #8b8b8b;
  font-size: 1.6rem;
  line-height: 1;
}

.services {
  background: #000;
  color: #fff;
  padding: 24px 12px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service {
  text-align: center;
  padding: 0 10px;
}

.service + .service {
  border-left: 1px solid rgba(245, 130, 0, .75);
}

.service img {
  display: block;
  height: 54px;
  max-width: 68px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.service strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .03em;
}

.service small {
  display: block;
  margin-top: 7px;
  color: #d9d9d9;
  line-height: 1.25;
  font-size: .67rem;
}

@media (max-width: 390px) {
  .intro {
    grid-template-columns: 1.1fr .9fr;
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .identity {
    padding-top: 24px;
  }

  .identity h1 {
    font-size: 1.65rem;
  }

  .identity .role {
    font-size: .82rem;
  }

  .actions,
  .contacts {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service {
    padding-left: 5px;
    padding-right: 5px;
  }

  .service small {
    font-size: .6rem;
  }
}

@media (max-width: 340px) {
  .actions,
  .intro {
    grid-template-columns: 1fr;
  }

  .identity {
    text-align: left;
    padding-top: 0;
  }
}
