/* ===== CONTACT PAGE ===== */

/* Hero */
.contact-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 72px;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
}
.contact-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.65);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  animation: fadeUp 0.9s ease 0.2s both;
}

.contact-hero-content .label { color: var(--gold); margin-bottom: 14px; }

.contact-hero-content h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
}

.contact-hero-content p {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Main Contact Section */
.contact-main {
  background: var(--light);
  padding: 96px 0;
}

.contact-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Info Side */
.contact-info h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--dark);
  line-height: 1;
  margin-bottom: 40px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.info-item:last-child { border-bottom: none; padding-bottom: 0; }

.info-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.info-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.info-item a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.info-item a:hover { color: var(--red); }

.social-links { margin-top: 8px; }
.social-links .label { display: block; margin-bottom: 14px; }

.socials {
  display: flex;
  gap: 0;
  flex-direction: column;
}
.socials a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s, gap 0.2s;
}
.socials a::after {
  content: '→';
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.socials a:hover { color: var(--red); }
.socials a:hover::after { opacity: 1; }

/* Form Side */
.contact-form-wrap h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 36px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(26,26,26,0.15);
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.08);
}

#contactForm .btn-full {
  margin-top: 8px;
  padding: 16px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 1.5px solid rgba(26,26,26,0.08);
}
.form-success.show { display: block; }
.form-success h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Map */
.map-section {
  background: var(--cream);
  padding: 72px 0 0;
}

.map-label {
  text-align: center;
  padding: 0 24px 48px;
}

.map-label h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--dark);
  margin-top: 8px;
}

.map-embed {
  width: 100%;
  height: 480px;
  background: #ddd;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%);
}

/* Active nav */
.nav-links a.active { color: var(--gold) !important; }

/* Responsive */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 36px;
  }
  .map-embed { height: 360px; }
}

@media (max-width: 560px) {
  .contact-main { padding: 64px 0; }
  .contact-grid { padding: 0 24px; }
  .map-embed { height: 300px; }
}
