:root {
  --brand-accent: #dd9933;
  --brand-accent-2: #e09900;
  --brand-brown: #46372f;
  --brand-brown-deep: #1c0f00;
  --brand-bg: #fffaf2;
  --text-main: #2f251d;
  --text-soft: #6d5b4e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 15%, rgba(221, 153, 51, 0.2), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(70, 55, 47, 0.15), transparent 45%),
    linear-gradient(155deg, #fffdf9 0%, var(--brand-bg) 55%, #f8efe5 100%);
}

.hero {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  pointer-events: none;
  opacity: 0.45;
}

.hero__glow--top {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -60px;
  background: linear-gradient(135deg, var(--brand-accent), transparent 70%);
}

.hero__glow--bottom {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -70px;
  background: linear-gradient(135deg, var(--brand-brown), transparent 70%);
}

.card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(70, 55, 47, 0.14);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow:
    0 24px 60px rgba(28, 15, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}

.logo {
  width: min(260px, 65%);
  height: auto;
  margin-bottom: 18px;
}

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

h1 {
  margin: 10px 0 12px;
  line-height: 1.15;
  font-size: clamp(2rem, 4.7vw, 3.25rem);
  font-weight: 700;
  color: var(--brand-brown-deep);
}

.lead {
  margin: 0 auto;
  max-width: 55ch;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-soft);
}

.contacto {
  margin: 26px 0 0;
  font-size: 0.95rem;
  color: var(--brand-brown);
}

.contacto a {
  color: var(--brand-accent-2);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(224, 153, 0, 0.35);
}

.contacto a:hover {
  color: var(--brand-brown-deep);
}

@media (max-width: 560px) {
  .card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .logo {
    width: min(220px, 72%);
  }
}
