.contacts-page {
  position: relative;
  padding: 80px 0;
  background: var(--background);
  overflow: hidden;
}

.contacts-page .contacts-page-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 0;
}

.contacts-page .contacts-page-container > *:not(.contacts-page-shape) {
  position: relative;
  z-index: 1;
}

.contacts-page .contacts-page-header {
  margin-bottom: 32px;
}

.contacts-page .contacts-page-intro {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.625;
  color: rgba(59, 46, 42, 0.8);
}

.contacts-page .contacts-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.contacts-page .contacts-page-cards {
  display: grid;
  gap: 24px;
}

.contacts-page .contacts-page-content {
  display: grid;
  gap: 28px;
}

.contacts-page .contacts-page-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.contacts-page .contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 16px;
  border: 1px solid rgba(195, 162, 122, 0.18);
  font-size: 16px;
  color: var(--muted-foreground);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.contacts-page .contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(195, 162, 122, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contacts-page .contact-card-icon .icon {
  width: 24px;
  height: 24px;
}

.contacts-page .contact-card-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  color: var(--foreground);
}

.contacts-page .contact-card-body p.contact-card-note {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 400;
}

.contacts-page .contact-card-body p {
  margin: 0;
}

.contacts-page .contact-card-body p:not(:last-child) {
  margin-bottom: 8px;
}

.contacts-page .contact-card-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 400;
  color: var(--primary);
}

.contacts-page .contact-card-hours p {
  margin: 0 0 4px;
}

.contacts-page .contact-card-social {
  flex-direction: column;
}

.contacts-page .contact-card-social h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--foreground);
}

.contacts-page .contact-social-list {
  display: flex;
  gap: 12px;
}

.contacts-page .contact-social-link {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(195, 162, 122, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contacts-page .contact-social-link img,
.contacts-page .contact-social-link .icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  filter: brightness(0) saturate(100%) invert(59%) sepia(10%) saturate(1115%) hue-rotate(359deg) brightness(92%) contrast(87%);
}

.contacts-page .contacts-page-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  background: #fff;
}

.contacts-page .contacts-page-media {
  display: grid;
  gap: 24px;
}

.contacts-page .contacts-page-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contacts-page .contacts-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.contacts-page .contacts-page-video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(195, 162, 122, 0.18);
  min-height: 180px;
  color: rgba(59, 46, 42, 0.7);
}

.contacts-page .contacts-page-video-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(195, 162, 122, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contacts-page .contacts-page-video p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.contacts-page .contacts-page-shape {
  position: absolute;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

.contacts-page .contacts-page-shape-one {
  top: 40px;
  right: 0;
  width: 250px;
  height: 250px;
  background: rgba(212, 181, 160, 0.15);
}

.contacts-page .contacts-page-shape-two {
  bottom: -60px;
  left: 0;
  width: 200px;
  height: 140px;
  border-radius: 24px;
  background: rgba(168, 181, 163, 0.2);
}

@media (max-width: 1710px) {
  .contacts-page .contacts-page-container {
    max-width: 1200px;
  }
}

@media (max-width: 1090px) {
  .contacts-page {
    padding: 48px 16px 24px;
  }
  .contacts-page .contacts-page-container {
    max-width: 100%;
    padding: 0 16px;
  }
  .contacts-page .contacts-page-top {
    grid-template-columns: 1fr;
  }
}
