.contact-us {
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(217, 164, 65, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, #f8f9fb 0%, #fff 45%, #f6f8fb 100%);
}

.contact-us__header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-us__title {
  display: inline-block;
  color: var(--color-primary);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-gold);
}

.contact-us__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

/* ── Contact card ── */
.contact-us__info {
  padding: 2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(217, 164, 65, 0.65) 0%,
    rgba(2, 29, 62, 0.35) 100%
  );
  box-shadow: 0 16px 48px rgba(2, 29, 62, 0.1);
  height: 100%;
}

.contact-us__list {
  list-style: none;
  margin: 0;
  padding: 28px 26px;
  border-radius: calc(var(--radius-lg) - 2px);
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 55%, #fffdf8 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.contact-us__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 14px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(217, 221, 227, 0.5);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-us__item:last-child {
  border-bottom: none;
}

.contact-us__item:hover {
  background: rgba(217, 164, 65, 0.07);
  transform: translateX(3px);
}

.contact-us__item-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding-top: 2px;
}

.contact-us__label {
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-us__value {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.contact-us__value a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-us__value a:hover {
  color: var(--color-gold);
}

.contact-us__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: var(--color-gold);
  box-shadow:
    0 4px 14px rgba(2, 29, 62, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ── Map ── */
.contact-us__map-wrap {
  padding: 2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(217, 164, 65, 0.65) 0%,
    rgba(2, 29, 62, 0.35) 100%
  );
  box-shadow: 0 16px 48px rgba(2, 29, 62, 0.1);
  height: 100%;
  min-height: 420px;
}

.contact-us__map-link {
  display: block;
  height: 100%;
  min-height: 416px;
  position: relative;
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.contact-us__map-link:hover .contact-us__map-open {
  background: var(--color-gold);
  color: var(--color-primary);
}

.contact-us__map {
  height: 100%;
  min-height: 416px;
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
  background: #e8eaed;
}

.contact-us__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 416px;
  border: 0;
  pointer-events: none;
}

.contact-us__map-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(2, 29, 62, 0.2);
  transition: background 0.25s ease, color 0.25s ease;
}

/* ── Motion ── */
.contact-us__header,
.contact-us__info,
.contact-us__map-wrap {
  opacity: 0;
  transform: translateY(24px);
}

.contact-us__item {
  opacity: 0;
}

@keyframes contact-us-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contact-us-fade-in {
  to {
    opacity: 1;
  }
}

.contact-us.is-visible .contact-us__header {
  animation: contact-us-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.contact-us.is-visible .contact-us__info {
  animation: contact-us-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.contact-us.is-visible .contact-us__map-wrap {
  animation: contact-us-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
}

.contact-us.is-visible .contact-us__item:nth-child(1) {
  animation: contact-us-fade-in 0.5s ease 0.25s forwards;
}

.contact-us.is-visible .contact-us__item:nth-child(2) {
  animation: contact-us-fade-in 0.5s ease 0.33s forwards;
}

.contact-us.is-visible .contact-us__item:nth-child(3) {
  animation: contact-us-fade-in 0.5s ease 0.41s forwards;
}

.contact-us.is-visible .contact-us__item:nth-child(4) {
  animation: contact-us-fade-in 0.5s ease 0.49s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .contact-us__header,
  .contact-us__info,
  .contact-us__map-wrap,
  .contact-us__item {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (max-width: 1024px) {
  .contact-us__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-us__map-wrap,
  .contact-us__map-link,
  .contact-us__map,
  .contact-us__iframe {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .contact-us {
    padding: 40px 0 48px;
  }

  .contact-us__header {
    margin-bottom: 28px;
  }

  .contact-us__list {
    padding: 20px 16px;
  }

  .contact-us__item {
    padding: 14px 10px;
    gap: 12px;
  }

  .contact-us__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .contact-us__value {
    font-size: 14px;
  }

  .contact-us__map-wrap,
  .contact-us__map-link,
  .contact-us__map,
  .contact-us__iframe {
    min-height: 240px;
  }

  .contact-us__map-open {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    font-size: 12px;
    padding: 9px 12px;
  }
}
