:root {
  --bg: #f5ede1;
  --paper: rgba(255, 252, 247, 0.84);
  --ink: #2e2a26;
  --muted: #6e665d;
  --accent: #f5a000;
  --accent-deep: #b96f00;
  --border: rgba(46, 42, 38, 0.1);
  --shadow: 0 28px 60px rgba(46, 42, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(245, 160, 0, 0.18), transparent 32%),
    linear-gradient(180deg, #f9f2e8 0%, var(--bg) 58%, #efe2d0 100%);
}

a {
  color: var(--accent-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  color: #7c4900;
}

.page-shell {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.hero,
.message {
  width: min(100%, 48rem);
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
}

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

.logo {
  display: block;
  width: min(100%, 28rem);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 18px 30px rgba(46, 42, 38, 0.1));
}

h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.9rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.message {
  margin-top: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  background: var(--paper);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.message p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.9;
}

.message p + p {
  margin-top: 1.5rem;
}

.lede {
  font-size: 1.3rem;
  font-weight: 700;
}

code {
  padding: 0.16rem 0.4rem;
  border-radius: 0.45rem;
  background: rgba(46, 42, 38, 0.07);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.96em;
}

.signature {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
}

.footer-tape {
  margin: 2rem 0 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  background-image: url("assets/obsessivewp-footer-tape.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: clamp(4.5rem, 11vw, 7rem);
}

@media (max-width: 768px) {
  .page-shell {
    padding: 1.25rem 1rem 2rem;
  }

  .hero {
    padding: 1rem 0.75rem 0.5rem;
  }

  .message {
    padding: 1.4rem 1.15rem;
    border-radius: 1.25rem;
  }

  .footer-tape {
    margin-top: 1.75rem;
    height: clamp(4rem, 18vw, 5.5rem);
  }

  .message p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .eyebrow {
    letter-spacing: 0.2em;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 3.5rem);
  }
}
