/* ================================================================
   ASCENSION WHARF   contact.css
   ================================================================ */

/* ---- Hero ---- */
.contact-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 32px 48px;
  max-width: 800px;
}
.contact-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.contact-hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.72;
  max-width: 580px;
  margin: 0 auto;
}

/* ---- Contact Section ---- */
.contact-section {
  background: var(--black);
  padding: 72px 0 80px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

/* ---- Info Card (left) ---- */
.contact-info-card {
  background: linear-gradient(145deg, #0d0d0d 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 36px;
  position: sticky;
  top: 90px;
}
.contact-h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 28px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cd-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cd-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.cd-value { font-size: 14px; font-weight: 500; color: var(--white); }
.cd-value[href] { color: rgb(134,239,172); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.cd-value[href]:hover { color: var(--white); }

.contact-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(1,47,29,0.2);
  border: 1px solid rgba(1,47,29,0.5);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 4px;
}
.cg-icon { font-size: 22px; flex-shrink: 0; }
.cg-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cg-sub { font-size: 13px; color: var(--grey); line-height: 1.5; }

/* ---- Form Card (right) ---- */
.contact-form-card {
  background: #f5f5f3;
  border-radius: 20px;
  padding: 44px 40px;
  border: 1px solid rgba(0,0,0,0.08);
}
.cf-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1714;
  margin-bottom: 8px;
}
.cf-sub {
  font-size: 14px;
  color: #5a5248;
  margin-bottom: 28px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a5248;
}
.cf-field input,
.cf-field textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #1a1714;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(1,47,29,0.12);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(90,82,72,0.45); }

.btn-cf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: rgba(28,101,27,0.4) 0px 6px 24px;
  margin-top: 4px;
}
.btn-cf-submit:hover { background: #1e7a1e; transform: translateY(-2px); box-shadow: rgba(28,101,27,0.6) 0px 8px 30px; }
.btn-cf-arrow { font-size: 18px; transition: transform 0.2s; }
.btn-cf-submit:hover .btn-cf-arrow { transform: translateX(4px); }

.cf-success {
  background: rgba(1,47,29,0.1);
  border: 1px solid rgba(1,47,29,0.4);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(21,128,61);
  text-align: center;
}
.cf-note {
  font-size: 12px;
  color: #5a5248;
  text-align: center;
  margin-top: 4px;
}
.cf-note a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cf-note a:hover { color: #1a5e1a; }

/* ---- Founder Quote ---- */
.quote-section { background: var(--black); padding: 80px 0; }
.founder-quote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.fq-mark {
  font-family: Georgia, serif;
  font-size: 120px;
  color: rgba(1,47,29,0.3);
  line-height: 0.6;
  margin-bottom: 8px;
}
.founder-quote blockquote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  font-style: normal;
}
.founder-quote cite {
  font-size: 15px;
  color: var(--grey);
  font-style: normal;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .contact-form-card { padding: 32px 24px; }
  .cf-row { grid-template-columns: 1fr; }
}
