/* ===== PAGE BANNER — same component as about.css; duplicated here
   since each page ships its own CSS file in this project. Consider
   moving .page-banner into layout.css once a 3rd page needs it. ===== */
.page-banner {
  background: linear-gradient(
    160deg,
    var(--brand-primary) 0%,
    var(--brand-primary-light) 100%
  );
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 5%,
    rgba(184, 134, 63, 0.22),
    transparent 55%
  );
}

.page-banner .content {
  position: relative;
  z-index: 1;
}

.page-banner .welcome-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-accent-light);
  font-weight: 700;
  margin-bottom: 14px;
}

.page-banner h1 {
  font-family: "Fraunces", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 14px;
  color: #b9c4d6;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ORNAMENT DIVIDER — same component as home.css ===== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 20px auto;
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-accent));
}

.ornament-line.right {
  background: linear-gradient(to left, transparent, var(--brand-accent));
}

.ornament-dot {
  width: 5px;
  height: 5px;
  background: var(--brand-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.ornament-diamond {
  width: 9px;
  height: 9px;
  background: var(--brand-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(184, 134, 63, 0.08);
}

.section-head-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: contactFadeUp 0.7s ease forwards;
}

@keyframes contactFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.25s;
}
.delay-3 {
  animation-delay: 0.4s;
}
.delay-4 {
  animation-delay: 0.55s;
}

/* ===== CONTACT FORM CARD ===== */
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 560px;
  margin: 0 auto 48px;
}

.form-title {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: var(--text-main);
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 14px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
}

.send-btn {
  width: 100%;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.send-btn:hover {
  background: var(--brand-primary-light);
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon img {
  width: 18px;
  height: 18px;
}

.info-icon.emoji {
  font-size: 17px;
}

.info-title {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.info-desc {
  font-size: 13.5px;
  color: var(--brand-primary);
  font-weight: 600;
}

/* ===== MAP SECTION ===== */
.map-section {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-container {
  width: 100%;
  height: 320px;
}

.map-info {
  background: var(--bg-muted);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.map-address {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
}

.map-hours span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-card {
    padding: 28px 24px;
  }

  .page-banner h1 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}
