@import url("./index.css");

.page-hero {
  padding: clamp(96px, 14vw, 150px) 0 clamp(48px, 8vw, 72px);
  animation: fadeRise 0.9s ease forwards;
}

.page-hero .container {
  max-width: 820px;
}

.page-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 18px;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 3.3rem);
}

.page-hero .lede {
  color: var(--text-soft);
  margin: 0;
}

.contact-details {
  padding: clamp(64px, 8vw, 100px) 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 5vw, 40px);
}

.details-card,
.map-card {
  background: rgba(12, 9, 18, 0.8);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  box-shadow: var(--shadow-soft);
  animation: fadeRise 1s ease forwards;
}

.details-card h2,
.map-card h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.details-card ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.details-card li {
  display: grid;
  gap: 4px;
}

.details-card span {
  color: var(--text-soft);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-wrapper {
  margin-top: 16px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-section {
  padding: clamp(64px, 8vw, 120px) 0 clamp(120px, 12vw, 150px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 5vw, 40px);
}

.contact-form,
.info-panel {
  background: rgba(12, 9, 18, 0.82);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow-soft);
  animation: fadeRise 1s ease forwards;
}

.contact-form h2,
.info-panel h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
  background: rgba(9, 7, 14, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font: inherit;
  resize: vertical;
  min-height: 48px;
}

.contact-form textarea {
  min-height: 140px;
}

.info-panel p {
  color: var(--text-soft);
}

