:root {
  color-scheme: dark;
  --ink: #fff8eb;
  --muted: #c8bdad;
  --line: rgba(232, 202, 133, 0.3);
  --surface: rgba(13, 15, 18, 0.72);
  --accent: #d8b66a;
  --accent-strong: #f3d690;
  --wine: #581f2f;
  --night: #090b0f;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family:
    "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 4.5rem 4.5rem,
    radial-gradient(circle at 52% 25%, rgba(216, 182, 106, 0.2), transparent 18rem),
    radial-gradient(circle at 18% 78%, rgba(88, 31, 47, 0.55), transparent 22rem),
    linear-gradient(135deg, #07090d 0%, #171018 52%, #090b0f 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-shell::before {
  inset: 6vh auto auto 50%;
  width: min(34rem, 80vw);
  height: min(34rem, 80vw);
  border: 1px solid rgba(216, 182, 106, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
}

.page-shell::after {
  inset: auto 0 0;
  height: 32vh;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.intro {
  width: min(100%, 48rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand-mark {
  display: block;
  width: clamp(6.5rem, 24vw, 9.25rem);
  height: auto;
  margin: 0 auto 2.1rem;
  filter: drop-shadow(0 1.5rem 2.5rem rgba(0, 0, 0, 0.45));
}

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

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 10vw, 7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.36);
}

.summary {
  max-width: 34rem;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
  line-height: 1.55;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.4rem;
  font-style: normal;
}

.contact-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  color: var(--accent-strong);
  background: rgba(255, 248, 235, 0.07);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 214, 144, 0.72);
  background: rgba(255, 248, 235, 0.13);
}

.contact-link:focus-visible {
  outline: 3px solid rgba(243, 214, 144, 0.28);
  outline-offset: 3px;
}

.domain {
  margin: 1.7rem 0 0;
  color: rgba(255, 248, 235, 0.48);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 36rem) {
  .page-shell {
    place-items: start center;
    padding-top: 4rem;
  }

  .contacts {
    flex-direction: column;
    align-items: stretch;
  }
}
