:root {
  color: #111827;
  background: #f7f7f5;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: linear-gradient(180deg, #fbfbfb 0%, #f0f0f3 100%);
  color: #111827;
}

.page {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 1fr);
  margin-bottom: 3rem;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.eyebrow {
  margin: 0;
  color: #6b7280;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.02;
}

.subtitle {
  margin: 0;
  max-width: 60rem;
  line-height: 1.8;
  color: #4b5563;
  font-size: 1rem;
}

.contact-list {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-link:hover {
  transform: translateY(-1px);
  border-color: #8b78ff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.contact-icon {
  width: 1.8rem;
  height: 1.8rem;
  display: block;
}

.hero-photo {
  display: grid;
  place-items: center;
}

.hero-photo img {
  width: min(100%, 300px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.section {
  border-top: 1px solid #e5e7eb;
  padding-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: #111827;
}

p,
ul {
  margin: 0;
  color: #4b5563;
  line-height: 1.75;
}

ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.75rem;
}

.item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-title {
  margin: 0;
  font-weight: 600;
  color: #111827;
}

.item-meta {
  margin: 0.35rem 0 1rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.item-row {
  display: grid;
  gap: 1rem;
}

.item-head {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.item-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.icon-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  margin-top: 1.75rem;
}

.icon-card {
  display: grid;
  place-items: center;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  min-height: 90px;
}

.icon-card svg,
.icon-card i {
  width: 40px;
  height: 40px;
  font-size: 2.4rem;
  display: block;
}

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

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .page {
    padding: 2.5rem 0 3.5rem;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 1.75rem 0 3rem;
  }

  .hero-photo img {
    width: min(100%, 260px);
  }
}
