/* Vektor — Contact page (conversion-focused) */

.ct-hero {
  padding: 150px 0 36px;
}

.ct-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(32, 33, 36, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5f6368;
}

.ct-hero h1 {
  margin: 18px 0 14px;
  max-width: 16ch;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink, #202124);
}

.ct-hero .ct-lead {
  margin: 0;
  max-width: 58ch;
  color: #5f6368;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

/* ---------- Main two-column conversion layout ---------- */
.ct-main {
  padding: 28px 0 72px;
}

.ct-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
}

/* Left: the form card */
.ct-form-card {
  padding: 30px 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(216, 184, 89, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #fbfaf6);
  border: 1px solid rgba(32, 33, 36, 0.08);
  box-shadow: 0 30px 70px -40px rgba(15, 27, 61, 0.35);
}

.ct-form-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: -0.03em;
  color: var(--ink, #202124);
}

.ct-form-card > p {
  margin: 0 0 20px;
  color: #5f6368;
  font-size: 14.5px;
  line-height: 1.65;
}

.ct-form {
  display: grid;
  gap: 14px;
}

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

.ct-form label {
  display: grid;
  gap: 7px;
}

.ct-form label > span {
  color: #374151;
  font-size: 13px;
  font-weight: 600;
}

.ct-form input,
.ct-form textarea,
.ct-form select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(32, 33, 36, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink, #202124);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.ct-form input:focus,
.ct-form textarea:focus,
.ct-form select:focus {
  border-color: rgba(216, 184, 89, 0.85);
  box-shadow: 0 0 0 4px rgba(216, 184, 89, 0.16);
  background: #fff;
}

.ct-form .ct-helper {
  color: #6b7280;
  font-size: 12.5px;
  line-height: 1.6;
}

.ct-form .ct-msg {
  min-height: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #5f6368;
}

.ct-form .ct-msg.is-ok { color: #15803d; }
.ct-form .ct-msg.is-err { color: #b91c1c; }

.ct-submit {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-gradient, linear-gradient(135deg, #f4c657, #f0a82a));
  color: #17191c;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.22s ease;
}

.ct-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -16px rgba(244, 198, 87, 0.65);
  filter: brightness(1.04);
}

.ct-submit:disabled { opacity: 0.65; cursor: default; transform: none; }

.ct-form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 6px;
  color: #6b7280;
  font-size: 12.5px;
}

.ct-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ct-form-trust svg { flex: 0 0 auto; color: #34a853; }

/* Right column: direct channels + studios */
.ct-side {
  display: grid;
  gap: 16px;
}

.ct-card {
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 33, 36, 0.08);
  box-shadow: 0 20px 50px -38px rgba(15, 27, 61, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ct-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 56px -36px rgba(15, 27, 61, 0.42);
}

.ct-card .ct-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(216, 184, 89, 0.16);
  color: #8a6a1f;
}

.ct-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink, #202124);
}

.ct-card p {
  margin: 0 0 10px;
  color: #5f6368;
  font-size: 13.5px;
  line-height: 1.6;
}

.ct-card a.ct-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1a4fb8;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.ct-card a.ct-link:hover { text-decoration: underline; }

.ct-card .ct-sub {
  display: block;
  margin-top: 4px;
  color: #80868b;
  font-size: 12.5px;
}

.ct-studios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Bottom strip: hours + response promise */
.ct-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.ct-strip .ct-card { box-shadow: none; }
.ct-strip .ct-card:hover { transform: none; }

@media (max-width: 980px) {
  .ct-hero { padding: 130px 0 24px; }

  .ct-layout {
    grid-template-columns: 1fr;
  }

  .ct-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .ct-form-card { padding: 24px 18px; }

  .ct-form .ct-row { grid-template-columns: 1fr; }

  .ct-studios { grid-template-columns: 1fr; }

  .ct-form input,
  .ct-form textarea,
  .ct-form select {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}

/* ── Studio addresses & maps ── */

.ct-address {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted, #5f6368);
  line-height: 1.5;
  margin: 6px 0 10px;
}

.ct-served {
  font-size: 0.78rem;
  color: var(--muted, #5f6368);
  margin: 0 0 10px;
}

.ct-served a {
  color: var(--muted, #5f6368);
  text-decoration: none;
  border-bottom: 1px dotted var(--muted, #5f6368);
  transition: color 0.15s;
}

.ct-served a:hover {
  color: var(--ink, #202124);
  border-bottom-color: var(--ink, #202124);
}

.ct-studio-actions {
  margin-bottom: 8px;
}

.ct-link--map {
  font-size: 0.82rem;
  font-weight: 600;
}

.ct-map {
  margin-top: 12px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 36, 0.1);
}

.ct-map iframe {
  display: block;
}

/* ── Localities served ── */

.ct-localities {
  margin-top: 12px;
}

.ct-localities h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted, #5f6368);
  margin-bottom: 12px;
}

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

.ct-localities-grid strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink, #202124);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ct-localities-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-localities-grid li {
  font-size: 0.82rem;
  color: var(--muted, #5f6368);
  padding: 3px 0;
}

.ct-localities-grid a {
  color: var(--muted, #5f6368);
  text-decoration: none;
  border-bottom: 1px dotted var(--muted, #5f6368);
  transition: color 0.15s;
}

.ct-localities-grid a:hover {
  color: var(--ink, #202124);
  border-bottom-color: var(--ink, #202124);
}

@media (max-width: 480px) {
  .ct-localities-grid {
    grid-template-columns: 1fr;
  }
}
