:root {
  --bg: #fbf8f3;
  --ink: #2b2926;
  --muted: #9b948b;
  --accent: #e5822e;
  --line: rgba(43, 41, 38, 0.14);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family:
    "PT Sans",
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

.stage {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 6vw, 80px);
}

.wash {
  position: absolute;
  top: 0;
  right: 0;
  width: min(62vw, 760px);
  height: min(58vh, 560px);
  background: url("../assets/bg-orange.webp") right top / cover no-repeat;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(125% 125% at 100% 0%, #000 28%, transparent 72%);
  mask-image: radial-gradient(125% 125% at 100% 0%, #000 28%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 640px) {
  .wash {
    background-image: url("../assets/bg-orange-sm.webp");
    width: 82vw;
    height: 38vh;
  }
}

.card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.eyebrow {
  font-size: clamp(11px, 1.3vw, 14px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: clamp(14px, 1.6vw, 20px);
}
.name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.01em;
  font-size: clamp(2.7rem, 8vw, 5.2rem);
  color: var(--ink);
}
.rule {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--accent);
  margin: clamp(20px, 2.4vw, 30px) auto;
  border-radius: 2px;
}
.tag {
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 34ch;
  margin: 0 auto clamp(24px, 2.8vw, 34px);
}

.topbar {
  position: absolute;
  top: clamp(22px, 3.4vh, 40px);
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: clamp(22px, 4vw, 36px);
  justify-content: center;
}
.topbar button {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1px solid rgba(43, 41, 38, 0.35);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.topbar button:hover,
.topbar button:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
  outline: none;
}

.links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 17px);
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.btn svg {
  width: 1.25em;
  height: 1.25em;
  color: var(--accent);
  transition: color 0.25s;
}
.btn:hover,
.btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(229, 130, 46, 0.3);
  outline: none;
}
.btn:hover svg,
.btn:focus-visible svg {
  color: #fff;
}

@media (max-width: 420px) {
  .links {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
}

@media (min-width: 2200px) {
  .card {
    max-width: 820px;
  }
}

.reads {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: clamp(18px, 3vh, 30px) 0 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.reads a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.reads a:hover,
.reads a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
  outline: none;
}

.legal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(28px, 4.2vh, 48px);
  z-index: 1;
  text-align: center;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.legal a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.legal a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .card {
    animation: none;
  }
}
