/* Contact page additions — extends styles.css */

.contact-hero {
  min-height: 78vh;
}
.contact-hero .hero-content {
  padding-top: 9rem;
}

.contact-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.8);
}
.contact-breadcrumb a {
  color: rgba(245, 240, 230, 0.8);
  text-decoration: none;
  transition: color 0.25s;
}
.contact-breadcrumb a:hover {
  color: var(--gold-light);
}
.contact-breadcrumb span {
  color: var(--gold-light);
}
.contact-breadcrumb i {
  color: var(--gold-light);
  font-size: 0.7rem;
}

/* Info cards */
.info-card {
  background: rgba(252, 248, 240, 0.75);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  display: flex;
  flex-direction: column;
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-luxe);
}
.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  box-shadow: var(--shadow-gold);
  color: var(--ink);
  font-size: 1.1rem;
}
.info-icon.sm {
  width: 44px;
  height: 44px;
  font-size: 0.95rem;
}
.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin: 1.2rem 0 0;
  color: var(--ink);
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}
.info-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.info-list li i {
  margin-top: 0.25rem;
}
.text-gold {
  color: var(--gold);
}
.info-cta {
  margin-top: 1.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.25s;
}
.info-cta:hover {
  color: var(--ink);
}

/* Form */
.form-visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
}
.form-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 18, 12, 0.78),
    rgba(24, 18, 12, 0.15) 50%,
    transparent
  );
}
.form-visual-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem;
  color: var(--cream);
}
.form-visual-text h3 {
  font-size: 2rem;
}
.form-visual-text p {
  color: rgba(245, 240, 230, 0.85);
  font-size: 0.92rem;
  max-width: 320px;
  margin-top: 0.6rem;
}

.form-card {
  background: rgba(252, 248, 240, 0.75);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}
.form-card h3 {
  font-size: 2rem;
  color: var(--ink);
}
.form-card label.eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(40, 32, 24, 0.6) !important;
}
.luxe-input {
  border: 1px solid var(--gold-light) !important;
  background: rgba(252, 248, 240, 0.85) !important;
  border-radius: 14px !important;
  padding: 0.85rem 1rem !important;
  color: var(--ink) !important;
  font-size: 0.92rem !important;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.luxe-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(196, 162, 99, 0.18) !important;
  outline: none !important;
}
.muted {
  color: var(--muted);
}

.success-card {
  padding: 3rem 2rem;
  border-color: var(--gold) !important;
  box-shadow: var(--shadow-luxe);
}
.btn-ghost-ink {
  border: 1px solid rgba(40, 32, 24, 0.18);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-ghost-ink:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Map cards */
.map-card {
  background: rgba(252, 248, 240, 0.75);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.35s;
}
.map-card:hover {
  box-shadow: var(--shadow-luxe);
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(212, 200, 180, 0.55);
  background: var(--gradient-soft);
  flex-wrap: wrap;
}
.map-addr {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin-top: 0.15rem;
}
.map-mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(40, 32, 24, 0.15);
  background: rgba(252, 248, 240, 0.85);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.25s;
}
.map-mini-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.map-frame {
  position: relative;
  aspect-ratio: 5/3;
  width: 100%;
  background: var(--secondary);
  overflow: hidden;
  height: 500px;
}
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.7s;
}
.map-iframe.loaded {
  opacity: 1;
}
.map-skeleton {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--gradient-soft);
  overflow: hidden;
}
.map-skeleton.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.map-skeleton .shimmer {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    transparent,
    rgba(196, 162, 99, 0.22),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}
.map-skeleton-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.map-skeleton-center .info-icon {
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.94);
    opacity: 0.8;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.map-body {
  padding: 2rem;
}
.map-body h3 {
  font-size: 1.5rem;
  color: var(--ink);
}

/* Why cards */
.why-card {
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-luxe);
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 1.2rem 0 0;
  color: var(--ink);
}
.why-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* CTA banner sizing */
.cta-banner {
  position: relative;
  isolate: isolate;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.cta-banner .hero-content {
  padding: 6rem 0;
}


/* custom css */

.display-serif-2 {
      font-family: var(--serif)!important;
    font-size: clamp(2.5rem, 7vw, 5.5rem)!important;
    line-height: 1.05!important;
    color: var(--gold-grad)!important;
    margin-top: 1.5rem!important;
}