/* ==========================================================
   CONTACT PAGE
   Extends service.css with contact-specific layouts
========================================================== */

.contact-page .contact-main {
  background: #fff;
}

.contact-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-kicker-sm {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ==========================================================
   ALERTS
========================================================== */

.contact-alert {
  padding: 16px 22px;
  margin-bottom: 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid;
}

.contact-alert-ok {
  background: #f4faf3;
  border-color: #cfe8c9;
  color: #2b6b28;
}

.contact-alert-err {
  background: #fdf5f5;
  border-color: #eecfcf;
  color: #a1332e;
}

/* ==========================================================
   LAYOUT
========================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-channels h2,
.contact-form-wrap h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.2;
}

.contact-channels-text,
.contact-form-text {
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/* ==========================================================
   CHANNELS
========================================================== */

.contact-channels-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-channel {
  display: flex;
  gap: 16px;
  align-items: flex-start;

  padding: 20px 22px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 8px;

  transition: border-color .3s, background .3s, transform .3s;
}

.contact-channel:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-channel-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-channel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-channel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #999;
}

.contact-channel-body a,
.contact-channel-body span {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
  line-height: 1.5;
}

.contact-channel-body a:hover {
  color: var(--gold);
}

/* ==========================================================
   FORM
========================================================== */

.contact-form-wrap {
  padding: 40px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

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

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #888;
}

.contact-form .input {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color .25s, box-shadow .25s;
}

.contact-form textarea.input {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-form .input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.contact-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 15px 32px;
  min-width: 200px;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;

  background: var(--ink);
  color: var(--gold);
  border: 1px solid var(--ink);
  border-radius: 4px;
  cursor: pointer;

  transition: background .3s, color .3s, transform .3s;
}

.contact-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ==========================================================
   SECTION HEAD
========================================================== */

.contact-section-head {
  margin-bottom: 44px;
}

.contact-section-head.center {
  text-align: center;
}

.contact-section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* ==========================================================
   HIGHLIGHTS
========================================================== */

.contact-highlights {
  background: var(--light);
}

.contact-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.contact-highlight {
  padding: 34px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;

  transition: transform .35s, border-color .35s, box-shadow .35s;
}

.contact-highlight:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
}

.contact-highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
}

.contact-highlight h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}

.contact-highlight p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* ==========================================================
   CTA
========================================================== */

.contact-cta {
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
}

.contact-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-inner .contact-kicker-sm {
  color: var(--gold);
}

.contact-cta-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
}

.contact-cta-inner p {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
}

.contact-cta-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 32px;
  min-width: 180px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform .3s, background .3s, color .3s, border-color .3s;
}

.contact-btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.contact-btn-primary:hover {
  transform: translateY(-2px);
  background: #d4b45a;
}

.contact-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

.contact-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .contact-form-wrap {
    padding: 28px 22px;
  }

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

  .contact-cta {
    padding: 70px 0;
  }

  .contact-btn,
  .contact-btn-cta {
    width: 100%;
    min-width: 0;
  }
}
