.rk-contact-hero .rk-page-hero-media {
  min-height: 220px;
}

.rk-contact-hero .rk-contact-hero-media {
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: clamp(18px, 4vw, 36px);
}

.rk-contact-kicker {
  margin: 0 0 12px;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rk-contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.rk-contact-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 12px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(10, 22, 32, 0.58);
}

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

.rk-contact-lane .rk-card-actions {
  margin-top: 12px;
}

.rk-contact-checklist {
  margin: 4px 0 14px;
}

.rk-contact-checklist-title {
  margin: 0 0 8px;
  font-family: "CalSans", "Rubik", sans-serif;
  font-size: 0.95rem;
  color: var(--text-strong);
}

.rk-contact-checklist .rk-list {
  margin: 0;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.rk-contact-checklist .rk-list li {
  background: rgba(14, 28, 40, 0.65);
  padding: 8px 12px;
  font-size: 0.9rem;
}

.rk-contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.rk-contact-card {
  background: rgba(12, 26, 38, 0.8);
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.rk-contact-card h3 {
  margin: 0 0 12px;
  font-family: "CalSans", "Rubik", sans-serif;
}

.rk-contact-faq .rk-faq {
  display: grid;
  gap: 12px;
}

.rk-faq-item {
  background: rgba(12, 26, 38, 0.78);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
}

.rk-faq-item summary {
  cursor: pointer;
  font-family: "CalSans", "Rubik", sans-serif;
  font-size: 0.98rem;
  color: var(--text-strong);
  list-style: none;
}

.rk-faq-item summary::-webkit-details-marker {
  display: none;
}

.rk-faq-item p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.rk-faq-item[open] {
  box-shadow: 0 16px 28px rgba(4, 8, 12, 0.45);
}

.rk-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.rk-modal.is-open {
  display: flex;
}

.rk-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 18, 0.74);
  backdrop-filter: blur(6px);
}

.rk-modal-content {
  position: relative;
  width: min(720px, 92vw);
  max-height: 92vh;
  overflow: auto;
  background: rgba(12, 26, 38, 0.96);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(4, 8, 12, 0.6);
}

.rk-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 22, 32, 0.72);
  color: var(--text-strong);
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rk-modal-close:hover {
  background: rgba(12, 26, 38, 0.92);
  transform: scale(1.04);
}

.rk-modal-lead {
  margin: 4px 0 12px;
  color: var(--text-soft);
}

.rk-form {
  display: grid;
  gap: 12px;
}

.rk-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.rk-select-menu {
  position: relative;
}

.rk-select-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.rk-select-trigger {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 14, 22, 0.6);
  color: var(--text-strong);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.rk-select-trigger:hover {
  border-color: rgba(118, 165, 197, 0.6);
}

.rk-select-trigger-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.rk-select-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 14px rgba(6, 14, 22, 0.45);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.rk-select-icon.is-hidden {
  display: none;
}

.rk-select-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
}

.rk-select-icon-fallback {
  font-weight: 700;
  color: #0f2334;
}

.rk-select-chevron {
  opacity: 0.7;
  font-size: 0.9rem;
}

.rk-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 18, 28, 0.98);
  box-shadow: 0 20px 30px rgba(4, 8, 12, 0.5);
  display: none;
  z-index: 30;
  max-height: 280px;
  overflow-y: auto;
}

.rk-select-menu.is-open .rk-select-options {
  display: grid;
  gap: 6px;
}

.rk-select-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
}

.rk-select-option:hover,
.rk-select-option[aria-selected="true"] {
  background: rgba(20, 36, 50, 0.85);
}

.rk-select-option-badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 12px rgba(6, 14, 22, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.rk-select-option-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
}

.rk-form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.rk-select-option-badge--other {
  background: rgba(12, 26, 38, 0.82);
  color: var(--text-strong);
  font-weight: 700;
}

.rk-select-label {
  color: var(--text-strong);
}

.rk-select-option-text {
  color: var(--text-strong);
}

.rk-form-field {
  display: grid;
  gap: 8px;
}

.rk-form-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.rk-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 14, 22, 0.6);
  color: var(--text-strong);
  font-family: inherit;
  font-size: 0.95rem;
}

.rk-input:focus {
  outline: 2px solid rgba(118, 165, 197, 0.6);
  outline-offset: 1px;
}

.rk-textarea {
  min-height: 120px;
  resize: vertical;
}

.rk-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rk-form-status {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 14, 22, 0.7);
  padding: 12px 14px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.rk-form-status:empty {
  display: none;
}

.rk-form-status[data-tone="success"] {
  border-color: rgba(120, 200, 160, 0.5);
  color: #d7f4e5;
}

.rk-form-status[data-tone="error"] {
  border-color: rgba(235, 120, 120, 0.5);
  color: #ffd6d6;
}

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

@media (max-width: 720px) {
  .rk-contact-hero .rk-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rk-contact-hero .rk-hero-actions .rk-button {
    width: 100%;
  }

  .rk-contact-hero .rk-contact-hero-media {
    padding: 16px;
  }

  .rk-contact-grid {
    grid-template-columns: 1fr;
  }

  .rk-modal {
    align-items: flex-start;
    padding: calc(16px + env(safe-area-inset-top)) 16px calc(16px + env(safe-area-inset-bottom));
  }

  .rk-modal-content {
    width: 100%;
    max-height: calc(100svh - 32px);
    padding: 22px 18px;
    border-radius: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .rk-modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .rk-form-grid,
  .rk-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rk-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rk-form-actions .rk-button {
    width: 100%;
  }

  .rk-input,
  .rk-textarea,
  .rk-select-trigger,
  .rk-select-option {
    font-size: 1rem;
  }

  .rk-select-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .rk-select-option-badge {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .rk-select-options {
    max-height: min(50vh, 240px);
    -webkit-overflow-scrolling: touch;
  }
}
