:root {
  --bg: #6f1414;
  --bg-deep: #4c0d0d;
  --accent: #922424;
  --cream: #fffdd5;
  --cream-dim: rgba(255, 253, 213, 0.68);
  --cream-faint: rgba(255, 253, 213, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: radial-gradient(ellipse 120% 90% at 50% 40%, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--cream);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  max-width: 140vw;
  max-height: 140vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.logo {
  width: 132px;
  height: auto;
  margin-bottom: 2.75rem;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--cream-dim);
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 2.75rem;
}

.contact {
  display: inline-block;
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.9rem 2.1rem;
  border: 1px solid var(--cream-faint);
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact:hover {
  background-color: var(--cream);
  color: var(--bg-deep);
  border-color: var(--cream);
}

.socials {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.socials a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: var(--cream);
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.75rem;
  color: var(--cream-faint);
  letter-spacing: 0.03em;
}

@media (max-width: 480px) {
  .logo {
    width: 104px;
  }
  .socials {
    gap: 1.5rem;
  }
}
