* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f5f1e8;
  color: #1f2a24;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero-card,
.section-panel {
  background: #ffffff;
  border: 1px solid #e1d8c8;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(40, 36, 30, 0.09);
}

.hero-card {
  padding: clamp(22px, 4vw, 36px);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ebe4d7;
}

.brand-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}

.brand-name {
  margin: 0;
  color: #163d36;
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-line {
  margin: 2px 0 0;
  color: #70695d;
  font-size: 0.92rem;
}

.profile {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: clamp(18px, 4vw, 30px);
  align-items: start;
  padding: 30px 0;
}

.avatar {
  width: 118px;
  height: 118px;
  border-radius: 16px;
  object-fit: cover;
}

.role {
  margin: 0 0 8px;
  color: #b06b2b;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2.5rem, 6vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 0;
  color: #5f655f;
  font-size: 0.98rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 112px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #1f2a24;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.contact-links svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contact-links a:nth-child(1) {
  background: #1f766e;
}

.contact-links a:nth-child(2) {
  background: #2f5f9f;
}

.section-panel {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.section-title {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.section-title p {
  margin: 0;
  color: #b06b2b;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.15;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-grid article {
  min-height: 116px;
  padding: 18px;
  border: 1px solid #e1d8c8;
  border-radius: 12px;
  background: #fbfaf6;
}

.service-grid span {
  color: #1f766e;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-grid h3 {
  margin: 18px 0 0;
  font-size: 1.12rem;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .page {
    padding: 24px 0;
  }

  .profile {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .avatar {
    width: 112px;
    height: 112px;
  }

  .contact-links,
  .contact-links a {
    width: 100%;
  }

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