:root {
  --bg1: #fef6e4;
  --bg2: #dff8eb;
  --card: #ffffff;
  --text: #172121;
  --muted: #4a6c6f;
  --accent: #ff7a00;
  --accent-2: #008b8b;
  --shadow: 0 24px 60px rgba(23, 33, 33, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 20%, var(--bg2), transparent 35%),
    radial-gradient(circle at 85% 80%, #ffd8b0, transparent 38%),
    linear-gradient(135deg, var(--bg1), #f7fbff);
}

.card {
  width: min(720px, 100%);
  background: var(--card);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 33, 33, 0.08);
  animation: rise 650ms ease-out both;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 700;
}

h1 {
  margin: 10px 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: #f9fcff;
  border: 1px solid rgba(23, 33, 33, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.15);
  outline: none;
}

.label {
  font-weight: 600;
  color: var(--muted);
}

.value {
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 560px) {
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .value {
    text-align: left;
  }
}
