/* --- CONTACT PAGE DESIGNER STYLING --- */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,800;1,800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --navy: #0f172a;
  --gold: #d4af37;
  --border: #e2e8f0;
  --text-slate: #475569;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.contact-page {
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  color: var(--navy);
  line-height: 1.8;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO SECTION */
.contact-hero {
  padding: 180px 0 80px;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.legal-badge {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.serif-italic {
  font-style: italic;
  color: var(--gold);
}

.contact-lead {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--text-slate);
}

/* GRID LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 120px 0;
}

.info-block {
  margin-bottom: 60px;
}

.info-block h4 {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--gold);
}

.info-block p {
  font-size: 1.1rem;
  color: var(--text-slate);
}

.sub-text {
  font-size: 0.9rem !important;
  margin-top: 10px;
  opacity: 0.7;
}

/* VISUAL CARD */
.visual-card {
  background-color: var(--navy);
  color: #fff;
  padding: 60px;
  border-radius: 0; /* Keeps the gallery look */
}

.visual-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.visual-card p {
  margin-bottom: 40px;
  opacity: 0.8;
}

.btn-designer {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* MOBILE COMPATIBILITY */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 80px 0;
    gap: 60px;
  }

  .visual-card {
    padding: 40px;
  }
}
