@font-face {
  font-family: 'Public Sans';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('/assets/fonts/public-sans-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal; font-weight: 400 600; font-display: swap;
  src: url('/assets/fonts/fraunces-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic; font-weight: 400 600; font-display: swap;
  src: url('/assets/fonts/fraunces-latin-italic.woff2') format('woff2');
}

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

:root {
  --gold: #E6B336;
  --paper: #f3efe6;
  --ink: #0a0a0b;
  --muted: rgba(243, 239, 230, 0.62);
  --line: rgba(243, 239, 230, 0.14);
}

html { font-size: 16px; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: 'Public Sans', sans-serif;
  color: var(--paper);
  background-color: var(--ink);
  background-image:
    radial-gradient(56% 38% at 50% -4%, rgba(230, 179, 54, 0.28), transparent 70%),
    radial-gradient(120% 78% at 50% -12%, rgba(230, 179, 54, 0.10), transparent 62%),
    radial-gradient(100% 60% at 50% 118%, rgba(230, 179, 54, 0.04), transparent 60%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.serif { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-optical-sizing: auto; }

.masthead { text-align: center; padding: 2.5rem 1.5rem 0.5rem; }
.masthead .logo { display: block; width: 8rem; max-width: 44%; height: auto; margin: 0 auto; }

.study {
  flex: 1 1 auto;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2.5rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.eyebrow::before, .eyebrow::after { content: ""; flex: 1; border-top: 1px dotted var(--line); }
.eyebrow a { color: inherit; text-decoration: none; }
.eyebrow a:hover, .eyebrow a:focus-visible { color: var(--gold); }

h1.title {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.1rem, 6vw, 3rem);
  letter-spacing: -0.012em;
  line-height: 1.05;
  text-align: center;
}
h1.title i { font-style: italic; color: var(--accent, var(--gold)); }
.lede {
  margin: 0.85rem auto 1.6rem;
  max-width: 36rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.shot {
  display: block;
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--accent, var(--gold));
  border-radius: 14px;
  overflow: hidden;
  line-height: 0;
  background: rgba(255, 255, 255, 0.025);
}
.shot img { display: block; width: 100%; height: auto; }

.prose { margin-top: 1.9rem; }
.prose p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.1rem; }
.prose strong { color: var(--paper); font-weight: 600; }

.features {
  list-style: none;
  margin: 1.4rem 0 0.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.6rem;
}
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.features li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.features li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -0.05rem;
  color: var(--accent, var(--gold));
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
}

.ctas { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2.1rem; flex-wrap: wrap; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(230, 179, 54, 0.5);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pill:hover, .pill:focus-visible { background: var(--gold); border-color: var(--gold); color: #14110a; }
.back { color: var(--muted); font-size: 0.9rem; text-decoration: none; }
.back:hover, .back:focus-visible { color: var(--paper); text-decoration: underline; }

.foot { text-align: center; padding: 1.25rem 1.5rem 2rem; }
.legal { color: var(--muted); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.01em; }
.legal a { color: inherit; text-decoration: none; }
.legal a:hover, .legal a:focus-visible { color: var(--gold); }
