
main {
  width: min(1120px, 92vw);
}

.office-hero {
  margin-top: 10px;
  min-height: 220px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 0;
  margin-bottom: 10px;
  background:
    linear-gradient(120deg, rgba(84, 102, 23, 0.68), rgba(84, 102, 23, 0.42)),
    url('../img/asso-1.webp') center/cover no-repeat;
}

.office-hero .office-hero-heading {
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  color: #fff;
  padding: 0;
}

.office-hero h1 {
  text-align: center;
  font-size: clamp(42px, 5vw, 64px);
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.message,
.profile,
.cta-block {
  margin-top: 34px;
}

.message {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 20px;
}

.profile .card {
  padding: 24px;
}

.message h2,
.profile h2 {
  text-align: left;
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 10px;
}

.message .section-kicker {
  color: #7c8476;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 2px;
}

.message .message-body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.message .greeting-photo {
  justify-self: start;
}

.message .greeting-photo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
  border: 1px solid #dbe3c7;
  box-shadow: 0 8px 18px rgba(60, 70, 21, 0.12);
}

.message p,
.profile li {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.message p + p {
  margin-top: 10px;
}

.message .emphasis {
  color: #e7006f;
  font-weight: 700;
}

.message .signature {
  margin-top: 20px;
  text-align: right;
  color: #24282a;
  font-weight: 700;
  line-height: 1.65;
}

.profile {
  margin-top: 8px;
}

.profile .profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.profile .card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 18px 24px;
}

.profile .card + .card {
  border-left: 1px solid #d7dedb;
}

.profile .card h3 {
  font-size: 28px;
  text-align: left;
  margin-bottom: 10px;
  color: #5d6f1f;
}

.profile .card ul {
  list-style: none;
}

.profile .card li + li {
  margin-top: 6px;
}

.office-map {
  margin-top: 28px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.office-map h2 {
  text-align: left;
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 6px;
}

.office-map p {
  color: var(--color-muted);
  margin-bottom: 10px;
}

.office-map .map-wrap {
  border: 1px solid #dbe3c7;
  border-radius: 12px;
  overflow: hidden;
}

.office-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.cta-block {
  text-align: center;
}

.cta-block .checkbutton {
  border: none;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.cta-block .checkbutton a {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 24px;
  border-radius: 999px;
  background: #5f7120;
  color: #fdfef8;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-block .checkbutton a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .message .message-body {
    grid-template-columns: 1fr;
  }

  .message .greeting-photo {
    justify-self: start;
  }

  .message p,
  .profile li {
    font-size: 14px;
  }

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

  .profile .card + .card {
    border-left: none;
    border-top: 1px solid #d7dedb;
  }

  .office-map iframe {
    height: 300px;
  }
}
