/* ── CONTACT PAGE ──────────────────────────────────────── */
.contact-hero {
  padding: 160px 40px 60px;
  text-align: center;
}

.contact-hero .eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-hero h1 em {
  font-style: italic;
  color: var(--rose-deep);
}

.contact-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
}

.contact-deco {
  margin-top: 20px;
  font-size: 20px;
  color: var(--rose-light);
  letter-spacing: 8px;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.contact-layout {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── INFO COLUMN ───────────────────────────────────────── */
.info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 213, 220, .5);
  border-radius: 20px;
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(180, 80, 100, .1);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-icon.wpp   { background: rgba(37, 211, 102, .12); }
.info-icon.ig    { background: rgba(220, 39, 67, .10); }
.info-icon.pin   { background: rgba(201, 169, 110, .12); }
.info-icon.clock { background: rgba(100, 120, 200, .10); }

.info-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.info-text p,
.info-text a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  text-decoration: none;
}

.info-text a { color: var(--rose-deep); transition: color .15s; }
.info-text a:hover { color: var(--gold); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin-top: 4px;
}

.hours-row { display: contents; }

.hours-row span:first-child {
  font-size: 12.5px;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
}

.hours-row span:last-child {
  font-size: 12.5px;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

/* CTA Cards */
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  border-radius: 18px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: white;
  transition: all .25s ease;
  text-align: center;
}

.cta-card.wpp-cta {
  background: linear-gradient(135deg, #25d366, #1ab954);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .28);
}

.cta-card.ig-cta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 6px 24px rgba(220, 39, 67, .28);
}

.cta-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.18); }
.cta-card svg { flex-shrink: 0; }

/* ── FORM COLUMN ───────────────────────────────────────── */
.form-col {
  position: sticky;
  top: 130px;
}

.form-box {
  background: rgba(255, 255, 255, .80);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 213, 220, .5);
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: 0 8px 40px rgba(180, 80, 100, .08);
}

.form-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-box .form-sub {
  font-size: 13px;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 26px;
}

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

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(253, 243, 246, .7);
  border: 1px solid rgba(232, 164, 176, .3);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border .2s, box-shadow .2s, background .2s;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 3px rgba(232, 164, 176, .15);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--rose-deep), #b84d6e);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
}

.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(180, 80, 100, .35); }
.btn-submit:active { transform: translateY(0); }

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
}

/* ── MAP SECTION ───────────────────────────────────────── */
.map-section {
  max-width: 1140px;
  margin: 0 auto 100px;
  padding: 0 40px;
}

.map-header { text-align: center; margin-bottom: 32px; }

.map-header .eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.map-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--text-dark);
}

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(245, 213, 220, .5);
  box-shadow: 0 8px 40px rgba(180, 80, 100, .10);
  position: relative;
}

.map-wrap iframe { width: 100%; height: 400px; display: block; border: none; }

.map-pin-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 164, 176, .35);
  border-radius: 40px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(180, 80, 100, .12);
}

.map-pin-badge span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-deep);
  display: inline-block;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 124, 142, .5); }
  50%       { box-shadow: 0 0 0 6px rgba(201, 124, 142, 0); }
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; padding: 0 24px 80px; gap: 36px; }
  .form-col { position: static; }
  .contact-hero { padding: 140px 24px 48px; }
  .map-section { padding: 0 24px; }
}

@media (max-width: 640px) {
  .contact-hero { padding: 100px 20px 40px; }
  .contact-layout { padding: 0 16px 60px; }
  .map-section { padding: 0 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px 24px; }
  .cta-cards { grid-template-columns: 1fr; }
}
