:root {
  --background: #090807;
  --background-soft: #100e0c;
  --tan: #d4b184;
  --cream: #f1e9df;
  --muted: rgba(241,233,223,.34);
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background:
    radial-gradient(circle at 50% 40%, rgba(212,177,132,.08), transparent 30%),
    linear-gradient(180deg, var(--background), var(--background-soft) 50%, var(--background));
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 170px rgba(0,0,0,.72);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  transform: translateY(-30px);
  align-items: center;
  justify-content: center;
  padding: 40px 24px 68px;
}

.hero {
  width: min(920px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: min(610px, 74vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.35));
  animation: fade-up .9s ease both;
}

h1 {
  margin-top: clamp(105px, 13vh, 160px);
  color: var(--cream);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 6.8vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: clamp(12px, 1.75vw, 25px);
  text-indent: clamp(12px, 1.75vw, 25px);
  white-space: nowrap;
  animation: fade-up .9s ease .18s both;
}

.contact {
  margin-top: clamp(98px, 12vh, 150px);
  width: 215px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,177,132,.68);
  color: var(--tan);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-indent: 4px;
  transition: 220ms ease;
  animation: fade-up .9s ease .36s both;
}

.contact:hover,
.contact:focus-visible {
  background: var(--tan);
  border-color: var(--tan);
  color: var(--background);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212,177,132,.14);
  outline: none;
}

footer {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 2.4px;
  white-space: nowrap;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .page { padding: 28px 18px 58px; }
  .logo { width: min(380px, 82vw); }
  h1 {
    margin-top: 82px;
    font-size: clamp(34px, 9vw, 48px);
    letter-spacing: 8px;
    text-indent: 8px;
  }
  .contact {
    margin-top: 78px;
    width: 178px;
  }
}

@media (max-height: 760px) {
  .logo { width: min(380px, 58vw); }
  h1 { margin-top: 58px; }
  .contact { margin-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
