.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.crumbs a {
  color: var(--color-neutral-830);
}

.contact-title {
  font-family: var(--font-ui);
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1.18;
}

.contact-info h2 {
  color: var(--color-brand-700);
  font-family: var(--font-ui);
  font-size: clamp(30px, 2.6vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.contact-info .intro {
  margin-top: 14px;
  max-width: 620px;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.42;
}

.response-pill {
  margin-top: 22px;
  height: 42px;
  border-radius: 999px;
  background: #d9f4ec;
  color: #20515a;
  font-size: var(--font-size-xs);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.response-pill img {
  width: 16px;
  height: 16px;
}

.info-list {
  margin-top: 14px;
  border-top: 1px solid var(--color-surface-subtle);
}

.info-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-surface-subtle);
}

.icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--color-brand-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(6%)
    hue-rotate(278deg) brightness(104%) contrast(100%);
}

.info-item .label {
  display: block;
  color: var(--color-text-subtle);
  font-size: var(--font-size-xs);
  line-height: 1.2;
}

.info-item p {
  margin-top: 4px;
  color: var(--color-neutral-950);
  font-size: var(--font-size-md);
  line-height: 1.3;
  font-weight: 500;
}

.info-item ul {
  margin-top: 6px;
  padding-left: 15px;
  color: var(--color-neutral-950);
  font-size: 13px;
  line-height: 1.45;
}

.social-links {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(43%) saturate(570%)
    hue-rotate(138deg) brightness(90%) contrast(92%);
}

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

.contact-form label {
  color: var(--color-brand-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-form label span {
  color: #f14a67;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  outline: none;
  background: var(--color-white);
  color: var(--color-neutral-940);
  font-size: 13px;
  line-height: 1.3;
  padding: 0 14px;
  transition: border-color 180ms ease;
}

.contact-form input {
  height: 44px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 174px;
  padding: 12px 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-subtle);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-text-subtle);
}

.contact-submit {
  margin-top: 12px;
  height: 52px;
  width: 188px;
  border: 1px solid var(--color-neutral-550);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-brand-800);
  font-size: var(--font-size-lg);
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 5px 4px 16px;
  cursor: pointer;
}

.contact-submit .circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--color-brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-submit .circle img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(0%)
    hue-rotate(201deg) brightness(109%) contrast(100%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .contact-title {
    font-size: 40px;
    text-align: left;
  }

  .contact-info h2 {
    font-size: 34px;
  }

  .contact-submit {
    width: 176px;
    height: 48px;
    font-size: var(--font-size-md);
    padding-left: 14px;
  }

  .contact-submit .circle {
    width: 38px;
    height: 38px;
  }

  .contact-submit .circle img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 640px) {
  .contact-title {
    font-size: 33px;
  }

  .contact-info h2 {
    font-size: 30px;
  }

  .info-item p {
    font-size: 15px;
  }

  .response-pill {
    width: 100%;
    justify-content: center;
  }
}

/* === Responsive pass (contact) === */
@media (max-width: 980px) {
  .contact-grid {
    gap: 24px !important;
  }

  .contact-title {
    font-size: clamp(30px, 5.2vw, 40px);
  }

  .contact-info h2 {
    font-size: clamp(28px, 5vw, 34px);
  }

  .contact-form {
    gap: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: var(--font-size-xs);
  }
}

@media (max-width: 640px) {
  .contact-page {
    padding-bottom: 42px !important;
  }

  .contact-title {
    margin-top: 18px !important;
    font-size: 28px;
  }

  .contact-info h2 {
    font-size: 27px;
  }

  .contact-info .intro,
  .info-item ul {
    font-size: var(--font-size-xs);
  }

  .response-pill {
    margin-top: 14px;
    height: 38px;
    font-size: 11px;
    gap: 8px;
  }

  .response-pill img {
    width: 14px;
    height: 14px;
  }

  .info-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 12px 0;
  }

  .icon-wrap {
    width: 30px;
    height: 30px;
  }

  .icon-wrap img {
    width: 14px;
    height: 14px;
  }

  .info-item p {
    font-size: var(--font-size-sm);
  }

  .social-links {
    gap: 8px;
  }

  .social-links a,
  .social-links img {
    width: 16px;
    height: 16px;
  }

  .contact-form label {
    font-size: var(--font-size-xs);
  }

  .contact-form input {
    height: 40px;
    padding-inline: 10px;
    border-radius: 9px;
  }

  .contact-form textarea {
    min-height: 132px;
    border-radius: 9px;
    padding: 10px;
  }

  .contact-submit {
    width: 156px;
    height: 40px;
    font-size: 13px;
    padding: 3px 4px 3px 12px;
  }

  .contact-submit .circle {
    width: 30px;
    height: 30px;
  }

  .contact-submit .circle img {
    width: 13px;
    height: 13px;
  }
}
