:root {
  --bg-start: #f4f1ea;
  --bg-end: #e5dbca;
  --text-main: #1f2328;
  --text-muted: #555b62;
  --card-bg: rgba(255, 255, 255, 0.88);
  --card-border: rgba(31, 35, 40, 0.12);
  --accent: #a24a2b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 10%, #fff6d6 0 20%, transparent 45%),
    radial-gradient(circle at 90% 90%, #f0d5be 0 18%, transparent 42%),
    linear-gradient(155deg, var(--bg-start), var(--bg-end));
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(760px, 100%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
  box-shadow: 0 16px 42px rgba(16, 20, 24, 0.12);
  animation: rise 650ms ease-out both;
}

.logo {
  width: min(380px, 100%);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 20, 25, 0.16);
}

.eyebrow {
  margin: 20px 0 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  font-size: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.12;
}

.lead {
  margin: 16px auto 28px;
  max-width: 54ch;
  color: var(--text-muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
}

.contact {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #a24a2b, #cc6a35);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact:hover,
.contact:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(162, 74, 43, 0.35);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 560px) {
  .card {
    border-radius: 18px;
    padding: 20px;
  }

  .lead {
    margin-bottom: 22px;
  }

  .contact {
    width: 100%;
    text-align: center;
  }
}
