:root {
  --gold: #D4A047;
  --navy: #071425;
  --cream: #F7F3EB;
  --border: #E6D9BE;
  --text: #4E5968;
}

body {
  background: var(--cream);
}

.tt-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 32px;
}

.tt-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 40px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-hero .lead {
  color: var(--text);
  max-width: 780px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(7, 20, 37, 0.06);
}

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

.contact-form label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.95rem;
  background: #fff;
}

.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 12px;
  cursor: not-allowed;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text);
}

.contact-card ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text);
}

.support-hours {
  margin-top: 16px;
  padding: 14px;
  background: #fff7e8;
  border-radius: 12px;
}

.cta-band {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff7e6;
  padding: 36px 20px;
}

.hero-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.tt-footer {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .tt-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
