.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  gap: 38px;
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 6px 0;
}

.contact-list {
  display: grid;
  gap: 22px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-item svg {
  width: 30px;
  height: 30px;
  margin-top: 2px;
  color: var(--blue);
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
}

.contact-item span,
.contact-item a {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-item strong a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.contact-item a:hover {
  color: var(--blue);
}

.hours-list {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hours-list strong {
  color: #253757;
  font-weight: 800;
}

.appointment-note {
  display: grid;
  gap: 7px;
  margin: 0;
}

.appointment-note strong {
  color: #253757;
  font-size: 0.95rem;
  line-height: 1.45;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--blue-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.88) contrast(1.02);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #031a3f;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 96px;
  padding: 22px 0;
}

.footer-inner > svg {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: #ffffff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 800;
}

.footer-brand svg {
  width: 36px;
  height: 36px;
}

.footer-brand span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 500;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-meta a:hover {
  color: #ffffff;
}
