.contact-hour-page {
  font-family: Manrope, Inter, system-ui, sans-serif;
  background: #f8fafc;
}

.contact-hour-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-hour-hero__inner {
  position: relative;
  z-index: 1;
  padding: 56px 16px 48px;
}

.contact-hour-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-hour-hero p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-hour-main {
  padding: 48px 0 56px;
}

.contact-hour-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.contact-hour-form-wrap,
.contact-hour-aside {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.contact-hour-form-wrap {
  padding: 32px 28px 36px;
}

.contact-hour-aside {
  padding: 28px 24px 30px;
}

.contact-hour-title {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
}

.contact-hour-title-line {
  display: block;
  width: 56px;
  height: 4px;
  margin: 12px 0 16px;
  border-radius: 999px;
  background: #facc15;
}

.contact-hour-lead {
  margin: 0 0 24px;
  color: #64748b;
  line-height: 1.6;
}

.contact-hour-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact-hour-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hour-field--full {
  margin-top: 18px;
}

.contact-hour-field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #334155;
}

.contact-hour-field input,
.contact-hour-field select,
.contact-hour-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-hour-field input:focus,
.contact-hour-field select:focus,
.contact-hour-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-hour-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-hour-error {
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-hour-submit {
  margin-top: 22px;
  min-width: 180px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: #facc15;
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-hour-submit:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.contact-hour-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-hour-aside-title {
  margin: 0 0 22px;
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 500;
  color: #0f172a;
}

.contact-hour-aside-title strong {
  font-weight: 800;
}

.contact-hour-info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.contact-hour-info-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.contact-hour-info-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: #0f172a;
}

.contact-hour-info-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.contact-hour-info-card a:hover {
  text-decoration: underline;
}

.contact-hour-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.contact-hour-social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-hour-social-link svg {
  display: block;
}

.contact-hour-social-link:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.contact-hour-map {
  padding: 0 0 56px;
}

.contact-hour-map-frame {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  background: #fff;
}

@media (max-width: 960px) {
  .contact-hour-grid {
    grid-template-columns: 1fr;
  }

  .contact-hour-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hour-form-wrap,
  .contact-hour-aside {
    padding: 24px 18px;
  }

  .contact-hour-submit {
    width: 100%;
  }
}
