/* ───────────────────────────────────────────────
   GRAVENTHAL PRESS · graventhal.com
   Single-page launch site
   ─────────────────────────────────────────────── */

:root {
  --parchment: #ECE5D5;
  --ink: #1C1410;
  --oxblood: #6B0F1A;
  --oxblood-bright: #8B1A26;
  --dark-bg: #181410;
  --dark-bg-2: #1F1A14;
  --mute: #A8A096;
  --mute-dim: #6B6356;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark-bg);
  color: var(--parchment);
  font-family: 'IM Fell English', 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 28px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── Top mark ─── */
.top {
  padding-top: 48px;
  text-align: center;
}

.press-mark {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--parchment);
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
}

.rule {
  width: 28px;
  height: 0.7px;
  background: var(--oxblood);
  margin: 14px auto 0;
}

.rule-thin {
  width: 20px;
  height: 0.5px;
  background: var(--mute-dim);
  margin: 36px auto;
}

/* ─── Hero ─── */
.hero {
  padding-top: 80px;
  padding-bottom: 56px;
  text-align: center;
}

.article {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--parchment);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.78;
}

.title {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  letter-spacing: 0.06em;
  color: var(--parchment);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 32px;
}

.ornament {
  width: 56px;
  height: 0.7px;
  background: var(--oxblood);
  margin: 0 auto 24px;
}

.motto {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--parchment);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  opacity: 0.92;
}

.edition {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.30em;
  color: var(--mute);
  text-transform: uppercase;
}

/* ─── Body prose ─── */
.body {
  padding: 32px 0;
}

.body p {
  font-family: 'IM Fell English', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--parchment);
  margin-bottom: 22px;
}

.body p.lead {
  font-size: 18px;
  margin-bottom: 28px;
}

.body p:last-child {
  margin-bottom: 0;
}

/* ─── Action ─── */
.action {
  padding: 48px 0 40px;
  text-align: center;
}

.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  padding: 18px 36px;
  border: 0.7px solid var(--oxblood);
  background: transparent;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}

.btn:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: var(--parchment);
}

.btn:active {
  background: var(--oxblood-bright);
}

.delivery {
  margin-top: 20px;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.01em;
}

/* ─── Disqualifier ─── */
.disqualifier {
  padding: 24px 0 56px;
  text-align: center;
}

.disqualifier p {
  font-family: 'IM Fell English', serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  font-style: italic;
  margin-bottom: 10px;
}

.disqualifier p:last-child {
  margin-bottom: 0;
}

/* ─── Footer ─── */
.foot {
  margin-top: auto;
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
  border-top: 0.5px solid rgba(168, 160, 150, 0.15);
}

.seal {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.seal-circle {
  width: 44px;
  height: 44px;
  border: 0.8px solid var(--oxblood);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.seal-circle::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 0.4px solid var(--oxblood);
  border-radius: 50%;
  opacity: 0.6;
}

.seal-letter {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--oxblood);
  font-weight: 400;
  line-height: 1;
}

.foot-marks {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.30em;
  color: var(--mute-dim);
  text-transform: uppercase;
  line-height: 2.2;
}

/* ─── Mobile adjustments ─── */
@media (max-width: 480px) {
  main {
    padding: 0 22px;
    max-width: 100%;
  }

  .top {
    padding-top: 36px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 44px;
  }

  .title {
    font-size: 52px;
  }

  .article {
    font-size: 10px;
    letter-spacing: 0.32em;
  }

  .motto {
    font-size: 17px;
  }

  .body p {
    font-size: 16px;
  }

  .body p.lead {
    font-size: 17px;
  }

  .btn {
    font-size: 12px;
    padding: 16px 32px;
    letter-spacing: 0.28em;
  }

  .disqualifier p {
    font-size: 13px;
  }
}

/* ─── Subtle texture (optional, atmospheric) ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(107, 15, 26, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(107, 15, 26, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}
