:root {
  --garnet: #73000a;
  --garnet-dark: #5f0008;
  --ink: #1f1f24;
  --muted: #64646d;
  --paper: #ffffff;
  --warm: #f8f3ef;
  --line: rgba(115, 0, 10, 0.16);
  --shadow: 0 24px 70px rgba(31, 31, 36, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(115, 0, 10, 0.10), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, var(--warm) 100%);
  display: grid;
  place-items: center;
  padding: 32px;
}

.page {
  width: min(1080px, 100%);
  position: relative;
}

.card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.topbar {
  padding: clamp(24px, 4vw, 44px) clamp(24px, 5vw, 56px) 0;
}

.logo {
  display: block;
  width: min(350px, 100%);
  height: auto;
}

.hero {
  position: relative;
  padding: clamp(42px, 7vw, 60px) clamp(24px, 5vw, 56px) clamp(38px, 5vw, 60px);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 56px);
  top: 28%;
  width: min(28vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(115, 0, 10, 0.16);
  background: radial-gradient(circle, rgba(115, 0, 10, 0.075), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
/*  color: var(--garnet); */
  color: #505050;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 720px;
  color: var(--garnet-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.8rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.lead {
  margin: 26px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 12px 16px;
  color: var(--garnet-dark);
  background: rgba(115, 0, 10, 0.075);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.coming-soon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--garnet);
  box-shadow: 0 0 0 6px rgba(115, 0, 10, 0.12);
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px clamp(24px, 5vw, 56px);
  border-top: 1px solid rgba(115, 0, 10, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.contact-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--garnet);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(115, 0, 10, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.email-link:hover,
.email-link:focus {
  transform: translateY(-1px);
  background: var(--garnet-dark);
  box-shadow: 0 14px 30px rgba(115, 0, 10, 0.28);
}

.footer-note {
  margin: 18px 0 0;
  color: rgba(31, 31, 36, 0.55);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  body {
    padding: 20px;
  }

  .hero::after {
    opacity: 0.55;
    right: -48px;
    top: 20%;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .email-link {
    width: 100%;
  }
}
