/* ===========================================
   contact.css
   Styles specific to the Contact page.
   Requires global.css to be loaded first.
=========================================== */

/* ─────────────────────────────────────────
   SHARED UTILITIES
───────────────────────────────────────── */
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title.dark { color: var(--dark); }

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 1.5vw, 15px) clamp(24px, 3vw, 36px);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.35);
}

/* ─────────────────────────────────────────
   REVEAL ANIMATION
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible     { opacity: 1; transform: none; }
.reveal-delay-1     { transition-delay: 0.1s; }
.reveal-delay-2     { transition-delay: 0.2s; }
.reveal-delay-3     { transition-delay: 0.3s; }

/* ─────────────────────────────────────────
   NAV ACTIVE STATE
───────────────────────────────────────── */
.nav-links a.current { color: var(--gold); }

/* ─────────────────────────────────────────
   PAGE HERO — taller to fit subtitle
───────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: clamp(280px, 38vw, 480px);
  margin-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark2);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(32px, 5vw, 60px) clamp(16px, 8vw, 120px);
  max-width: 860px;
}

.page-hero-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   CONTACT INFO STRIP
───────────────────────────────────────── */
.contact-strip {
  background: var(--off-white);
  padding: clamp(40px, 6vw, 70px) clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
}

.contact-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(16px, 2.5vw, 24px) clamp(12px, 2vw, 24px);
}

.contact-icon {
  width: clamp(44px, 6vw, 58px);
  height: clamp(44px, 6vw, 58px);
  border: 1.5px solid rgba(200, 146, 42, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.25s, border-color 0.25s;
  overflow: hidden;
  padding: clamp(10px, 1.5vw, 14px);
}

.contact-item:hover .contact-icon {
  background: rgba(200, 146, 42, 0.08);
  border-color: var(--gold);
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-value {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  text-decoration: none;
}

.contact-link {
  color: var(--gold);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--gold-light); }

.contact-divider {
  width: 1px;
  height: clamp(60px, 8vw, 90px);
  background: rgba(200, 146, 42, 0.2);
  align-self: center;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   FORM SECTION
───────────────────────────────────────── */
.form-section {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
}

.form-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.form-header { margin-bottom: 0; }

.form-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* ── FORM FIELDS ── */
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
}

.required { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: clamp(12px, 1.5vw, 14px) clamp(14px, 1.8vw, 18px);
  font-family: 'Barlow', sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.1);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-note {
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
}

/* ── ASIDE ── */
.form-aside {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 4px;
}

.aside-block {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.aside-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.aside-body {
  font-size: clamp(13px, 1.4vw, 14px);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.75;
}

.aside-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.aside-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.aside-social-link:hover { color: var(--gold-light); }

.aside-social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-aside {
    border-top: 1px solid rgba(200, 146, 42, 0.2);
    padding-top: 36px;
  }

  .contact-divider { display: none; }
  .contact-strip-inner { gap: 0; }
  .contact-item {
    flex: 0 0 50%;
    border-bottom: 1px solid rgba(200, 146, 42, 0.1);
    padding-bottom: 24px;
    margin-bottom: 8px;
  }
  .contact-item:nth-child(odd) { border-right: 1px solid rgba(200, 146, 42, 0.1); }
  /* Remove bottom border on last two */
  .contact-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }

  .contact-item {
    flex: 0 0 100%;
    border-right: none !important;
  }
  .contact-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(200, 146, 42, 0.1); }
  .contact-item:last-child { border-bottom: none; }

  .form-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 380px) {
  .page-hero-title { font-size: 30px; }
}