@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=EB+Garamond:wght@400;500&display=swap');

:root {
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-sans: "EB Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #161616;
  color: #ffffff;
  font-family: var(--font-sans);
}

.page-shell {
  height: 100vh;
  overflow: hidden;
  background-color: #161616;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: grayscale(30%) contrast(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(12, 14, 20, 0.72) 0%,
      rgba(10, 12, 18, 0.82) 50%,
      rgba(8, 10, 16, 0.95) 100%
    );
  pointer-events: none;
}

.main-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    clamp(80px, 12vw, 160px)
    clamp(32px, 8vw, 140px);
}

.content-stack {
  text-align: center;
  max-width: 860px;
  width: 100%;
  margin-top: -28px;
}

.wordmark {
  font-family: var(--font-heading);
  font-size: clamp(52px, 9.5vw, 122px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 clamp(32px, 4.5vw, 56px);
}

.gold-rule {
  width: 56px;
  height: 1px;
  background-color: #b8972a;
  margin: 0 auto clamp(32px, 4.5vw, 56px);
  transform-origin: center;
}

.statement {
  font-family: var(--font-sans);
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin: 0 0 clamp(36px, 5vw, 72px);
}

.description {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: #c8c8c0;
  line-height: 1.95;
  letter-spacing: 0.025em;
  max-width: 620px;
  margin: 0 auto;
}

.site-footer {
  position: relative;
  z-index: 1;
  background-color: rgba(28, 30, 36, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding:
    clamp(18px, 2.5vw, 28px)
    clamp(32px, 8vw, 140px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #a8a8a2;
  font-weight: 400;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.95s ease-out forwards;
}

.reveal-1 { animation-delay: 0.05s; }
.reveal-2 {
  animation-delay: 0.25s;
  transform: scaleX(0);
  animation-name: growRule;
  animation-duration: 1s;
}
.reveal-3 { animation-delay: 0.45s; }
.reveal-4 { animation-delay: 0.65s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growRule {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 700px) {
  body {
    overflow: auto;
  }

  .page-shell {
    min-height: 100svh;
    height: auto;
  }

  .main-content {
    min-height: calc(100svh - 66px);
    padding: 64px 24px 52px;
  }

  .content-stack {
    margin-top: 0;
  }

  .wordmark {
    font-size: clamp(54px, 19vw, 88px);
    letter-spacing: 0.075em;
    line-height: 0.95;
  }

  .statement {
    letter-spacing: 0.24em;
    line-height: 1.7;
  }

  .description {
    font-size: 16px;
    line-height: 1.72;
  }

  .site-footer {
    padding: 18px 24px;
  }
}

@media (max-height: 740px) and (min-width: 701px) {
  .main-content {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .content-stack {
    margin-top: -12px;
  }

  .wordmark {
    font-size: clamp(48px, 8vw, 94px);
    margin-bottom: 28px;
  }

  .gold-rule {
    margin-bottom: 28px;
  }

  .statement {
    margin-bottom: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
