/* Contact page — The Designers Hub */

/* ---- Hero ---- */
.ct-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 40px 20px;
}

.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,45,45,0.35), rgba(45,45,45,0.75));
}

.ct-hero__panel {
  position: relative;
  z-index: 1;
  background: var(--color-dark);
  border: 7px solid var(--color-white);
  padding: 40px 48px;
  max-width: 656px;
  text-align: center;
}

.ct-hero__panel h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.ct-hero__panel p {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.4;
}

/* ---- Info cards (Visit / Email / Phone) ---- */
.ct-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 900px) {
  .ct-info { grid-template-columns: minmax(0, 1fr); }
}

.ct-info-card {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 28px 24px;
  border-radius: 2px;
}

.ct-info-card h3 {
  color: var(--color-gold);
  text-transform: none;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ct-info-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 4px;
}

.ct-info-card p:last-child {
  margin-bottom: 0;
}

/* ---- Showroom note ---- */
.ct-note {
  border: 1px solid var(--color-white);
  background: var(--color-bg);
  max-width: 744px;
  margin: 0 auto;
  padding: 40px 48px;
  text-align: center;
}

.ct-note p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.ct-note p:last-child {
  margin-bottom: 0;
}

/* ---- Get in touch / form ---- */
.ct-form-head h2 {
  margin-bottom: 12px;
}

.ct-form-head p {
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 40px;
}

.ct-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.ct-form__full {
  grid-column: 1 / -1;
}

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

.ct-field label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}

.ct-field input,
.ct-field textarea {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-dark);
}

.ct-field textarea {
  resize: vertical;
  min-height: 150px;
}

.ct-form__submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.ct-form__note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  color: var(--color-gold-dark);
  display: none;
}

.ct-form__note.is-visible {
  display: block;
}

@media (max-width: 700px) {
  .ct-form {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---- Bottom CTA ---- */
.ct-cta {
  background: var(--color-dark);
  color: var(--color-white);
}

.ct-cta__panel {
  border: 15px solid var(--color-bg);
  padding: 64px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.ct-cta h2 {
  color: var(--color-white);
  max-width: 24ch;
  margin: 0 auto 16px;
}

.ct-cta p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 8px;
}

.ct-cta .btn {
  margin-top: 24px;
}
