/* ================================================================
   KAAPL — Contact
   Two contact channels and the office block. No form, no map embed:
   contact is a tap that dials or a tap that opens an email.
   ================================================================ */

.channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.channel-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-secondary);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.channel-card:hover {
  box-shadow: var(--shadow-md);
}

.channel-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-bg-primary);
  color: var(--color-primary);
}

.channel-card__icon .icon {
  width: 26px;
  height: 26px;
}

.channel-card__title {
  margin: 0;
  font-size: var(--text-h3);
}

.channel-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.channel-card p {
  margin: 0;
}

/* The address and numbers are the point of the page — set them large enough
   to read and tap without hunting. */
.channel-card__value {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.channel-card__value:hover {
  text-decoration: underline;
}

.channel-card__note {
  color: var(--color-text-secondary);
  font-size: var(--text-small);
}

.channel-card__action {
  margin-top: auto;
  padding-top: var(--space-4);
}

/* ================================================================
   Office
   ================================================================ */

.office {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 900px) {
  .office {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-12);
  }
}

.office__address {
  margin: 0 0 var(--space-5);
  font-size: var(--text-body-lg);
  font-style: normal;
  line-height: 1.7;
}

.office__actions {
  margin: 0;
}

.office__aside {
  padding: var(--space-8);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
}

.office__aside-title {
  margin-bottom: var(--space-3);
  font-size: var(--text-h4);
}

.office__aside p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-secondary);
}

.office__aside p:last-child {
  margin-bottom: 0;
}
