/* ============================================================
   CONTACT PAGE
   /contact/
   v1 — initial build 2026-04-08
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.ct-hero {
  background: #000;
  padding: clamp(120px, 14vw, 180px) 0 clamp(56px, 6vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.ct-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.ct-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: clamp(24px, 3vw, 36px);
}

/* ============================================================
   MAIN — contact form + sidebar
   ============================================================ */
.ct-main {
  background: #0a0a0a;
  padding: clamp(64px, 7vw, 100px) 0;
}

.ct-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

/* ============================================================
   INTRO TEXT
   ============================================================ */
.ct-intro {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: clamp(36px, 4vw, 48px);
}

.ct-intro a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}

.ct-intro a:hover { color: #e8c068; }

/* ============================================================
   CONTACT FORM CARD
   ============================================================ */
.ct-form-card {
  background: #f8f7f4;
  border-radius: 8px;
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3.5vw, 48px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  position: relative;
}

.ct-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 8px 8px 0 0;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.ct-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-form-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.02em;
}

.ct-form-label .req {
  color: var(--accent);
  margin-left: 2px;
}

.ct-form-input,
.ct-form-textarea {
  background: #fff;
  border: 1px solid #d0cdc8;
  color: #111;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}

.ct-form-input:focus,
.ct-form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.14);
}

.ct-form-input::placeholder,
.ct-form-textarea::placeholder { color: #bbb; }

.ct-form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.ct-optional-note {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.ct-submit-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #000;
  padding: 20px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(212,168,83,0.28);
  margin-top: 6px;
}

.ct-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212,168,83,0.38);
}

.ct-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
   SUCCESS + ERROR STATES
   ============================================================ */
.ct-success {
  display: none;
  text-align: center;
  padding: 40px 16px;
}

.ct-success.visible { display: block; }

.ct-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212,168,83,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-success-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
}

.ct-success-headline {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
}

.ct-success-body {
  font-size: 16px;
  color: #555;
  line-height: 1.65;
}

.ct-error {
  background: rgba(220,53,69,0.08);
  border: 1px solid rgba(220,53,69,0.3);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #dc3545;
  display: none;
  margin-top: 4px;
}

.ct-error.visible { display: block; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  position: sticky;
  top: 100px;
  align-self: start;
}

.ct-portrait {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.06);
}

.ct-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.ct-address-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 6px 6px;
  padding: clamp(24px, 3vw, 36px);
}

.ct-address-label {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.ct-address-text {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

.ct-report-card {
  background: linear-gradient(135deg, #1a1208 0%, #111 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 6px 6px;
  padding: clamp(24px, 3vw, 36px);
}

.ct-report-eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.ct-report-img {
  margin-bottom: 16px;
}

.ct-report-img img {
  width: 80px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.ct-report-headline {
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.ct-report-btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(212,168,83,0.25);
}

.ct-report-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .ct-main-inner {
    grid-template-columns: 1fr;
  }
  .ct-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ct-address-card,
  .ct-report-card {
    flex: 1;
    min-width: 260px;
  }
}

@media (max-width: 560px) {
  .ct-form-row {
    grid-template-columns: 1fr;
  }
  .ct-sidebar {
    flex-direction: column;
  }
}
