@charset "UTF-8";

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(214,174,112,0.16) 0%, rgba(214,174,112,0) 30%),
    radial-gradient(circle at bottom right, rgba(139,90,43,0.12) 0%, rgba(139,90,43,0) 34%),
    linear-gradient(180deg, #fffdfa 0%, #f4ecdf 100%);
}

.contact-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.contact-bg-shape-1 {
  top: -100px;
  left: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(192,138,75,0.18) 0%, rgba(192,138,75,0) 72%);
}

.contact-bg-shape-2 {
  right: -110px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139,90,43,0.14) 0%, rgba(139,90,43,0) 74%);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 34px;
}

.contact-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-media-frame {
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(78,49,27,0.12);
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(77,49,25,0.14);
}

.contact-media-frame .media-img {
  min-height: 520px;
}

.contact-location-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(192,138,75,0.18);
  box-shadow: 0 14px 30px rgba(78,49,27,0.08);
}

.contact-location-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f2e0cb;
  color: #8b5a2b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.contact-location-card h3 {
  margin-bottom: 10px;
  color: #4e311b;
  font-size: 24px;
}

.contact-location-card p {
  margin: 0;
  color: rgba(47,36,28,0.76);
  line-height: 1.8;
}

.contact-content {
  padding: 8px 0 8px 8px;
}

.contact-section .eyebrow {
  color: rgba(78,49,27,0.70);
}

.contact-content h2 {
  margin-bottom: 18px;
  color: #4e311b;
  font-family: "Bellosa DEMO";
  font-size: 48px;
  line-height: 1.08;
}

.contact-intro {
  font-size: 19px;
  line-height: 1.85;
  color: rgba(47,36,28,0.82);
}

.contact-content p {
  color: rgba(47,36,28,0.76);
  line-height: 1.85;
}

.contact-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 24px;
}

.contact-chip {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(78,49,27,0.12);
  color: rgba(78,49,27,0.80);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  box-shadow: 0 10px 24px rgba(78,49,27,0.05);
}

.contact-actions {
  margin-top: 0;
  margin-bottom: 24px;
}

.contact-section .btn-primary {
  background: linear-gradient(135deg, #c08a4b 0%, #8b5a2b 100%);
  color: #ffffff;
}

.contact-section .btn-secondary {
  background: rgba(139,90,43,0.10);
  color: #4e311b;
  border: 1px solid rgba(139,90,43,0.18);
}

.contact-details-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(78,49,27,0.10);
  box-shadow: 0 14px 30px rgba(78,49,27,0.07);
}

.contact-details-card h3 {
  margin-bottom: 10px;
  color: #4e311b;
  font-size: 24px;
}

.contact-details-card p {
  margin: 0;
  color: rgba(47,36,28,0.76);
  line-height: 1.8;
}

/* =========================
   LOWER CARDS
========================= */

.contact-lower-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-info-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(78,49,27,0.10);
  box-shadow: 0 18px 40px rgba(78,49,27,0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(78,49,27,0.12);
}

.contact-card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2e0cb;
  color: #8b5a2b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.contact-info-card h3 {
  margin-bottom: 12px;
  color: #4e311b;
  font-size: 26px;
}

.contact-info-card p {
  color: rgba(47,36,28,0.76);
  line-height: 1.8;
}

.contact-mini-list {
  margin: 16px 0 0 18px;
  color: rgba(47,36,28,0.82);
  font-family: 'Aesthetic Beauty CF';
}

/* =========================
   ANIMATION
========================= */

.contact-animate {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (min-width: 1920px) {
  .contact-content h2 {
    font-size: 60px;
  }

  .contact-media-frame,
  .contact-media-frame .media-img {
    min-height: 620px;
  }
}

@media screen and (max-width: 1200px) {
  .contact-grid,
  .contact-lower-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    padding: 0;
  }

  .contact-content h2 {
    font-size: 42px;
  }

  .contact-media-frame,
  .contact-media-frame .media-img {
    min-height: 380px;
  }
}

@media screen and (max-width: 768px) {
  .contact-content h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .contact-info-card h3,
  .contact-details-card h3,
  .contact-location-card h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .contact-content h2 {
    font-size: 30px;
  }

  .contact-media-frame,
  .contact-media-frame .media-img {
    min-height: 260px;
  }

  .contact-location-card,
  .contact-details-card,
  .contact-info-card {
    padding: 20px 18px;
  }
}

@media screen and (max-width: 300px) {
  .contact-content h2 {
    font-size: 26px;
  }
}