/* ============================================================
   THE VINCERE SOCIETY — landing page
   Aurum Tenebris design system, adapted for screen, mobile-first
   ============================================================ */

:root {
  --dark: #0A0A0A;
  --paper: #F5F0EA;
  --paper-warm: #F2EBE1;
  --gold: #C49A6C;
  --gold-dim: #A8814F;
  --ink: #1A1A1A;
  --charcoal: #2C2C2C;
  --gray: #6E675E;
  --gray-light: #9A938A;
  --line: #CFC7BA;
  --fill-warm: #ECE5D9;
  --serif-display: "Cormorant Garamond", Georgia, serif;
  --serif-body: "EB Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  font-family: var(--serif-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
image-slot { display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- shared chassis ---------- */
.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

section { padding: clamp(64px, 11vw, 120px) 0; }

.dk {
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 120% 90% at 50% 38%, rgba(64,56,46,0.32) 0%, rgba(10,10,10,0) 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
  color: #E8E2D8;
}

.kick {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

h2.section-title {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
  margin-top: 14px;
}

.rule {
  width: 52px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 26px 0;
}
.rule.center { margin-left: auto; margin-right: auto; }

.lead {
  font-family: var(--serif-display);
  font-size: clamp(19px, 3vw, 23px);
  line-height: 1.45;
  color: var(--charcoal);
  text-wrap: pretty;
  max-width: 56ch;
}

/* ---------- email capture ---------- */
.capture-wrap { margin-top: 36px; max-width: 480px; }

.capture { display: flex; flex-direction: column; gap: 12px; }

.capture input[type="email"] {
  font-family: var(--serif-body);
  font-size: 17px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  border-radius: 0;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease;
}
.capture input[type="email"]:focus { border-color: var(--gold-dim); }
.capture input[type="email"]::placeholder { color: var(--gray-light); }

.capture button {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 28px;
  background: var(--gold);
  color: #0F0D0A;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.capture button:hover { background: var(--gold-dim); }
.capture button:disabled { opacity: 0.6; cursor: default; }

.capture-note {
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--gray);
  margin-top: 14px;
  text-wrap: pretty;
}

.capture-done {
  display: none;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 22px 4px;
}
.capture-done .done-title {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}
.capture-done p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-top: 6px;
  text-wrap: pretty;
}
.capture-wrap.is-done .capture,
.capture-wrap.is-done .capture-note { display: none; }
.capture-wrap.is-done .capture-done { display: block; }

@media (min-width: 560px) {
  .capture { flex-direction: row; }
  .capture input[type="email"] { flex: 1; }
}

/* dark-section variant */
.on-dark .capture input[type="email"] {
  background: rgba(255,255,255,0.05);
  border-color: #4A4438;
  color: #F4EFE6;
}
.on-dark .capture input[type="email"]:focus { border-color: var(--gold); }
.on-dark .capture input[type="email"]::placeholder { color: #6E6557; }
.on-dark .capture-note { color: #8B8478; }
.on-dark .capture-done .done-title { color: #F4EFE6; }
.on-dark .capture-done p { color: #B5AC9F; }

/* ============================================================
   HEROES (three variants, switched via body[data-hero])
   ============================================================ */
.hero-cover, .hero-editorial, .hero-manifesto { display: none; }
body[data-hero="cover"]     .hero-cover     { display: flex; }
body[data-hero="editorial"] .hero-editorial { display: block; }
body[data-hero="manifesto"] .hero-manifesto { display: block; }

/* --- A · Cover --- */
.hero-cover {
  min-height: max(620px, 94svh);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 0;
}
.hero-cover .wrap { max-width: 880px; }

.hero-brand {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: #8B8070;
  text-transform: uppercase;
  margin-bottom: clamp(36px, 7vw, 64px);
}

.hero-cover h1 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(44px, 10vw, 88px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: #F4EFE6;
  text-wrap: balance;
}

.hero-tag {
  font-family: var(--sans);
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-cover .hero-lead {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(17px, 3vw, 21px);
  line-height: 1.5;
  color: #B5AC9F;
  max-width: 52ch;
  margin: 26px auto 0;
  text-wrap: pretty;
}

.hero-cover .capture-wrap { margin: 44px auto 0; }
.hero-cover .capture-note { text-align: center; }

/* --- B · Editorial --- */
.hero-editorial { padding: clamp(72px, 10vw, 130px) 0; background: var(--paper); }
.hero-editorial .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.hero-editorial h1 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(42px, 8vw, 68px);
  line-height: 1.06;
  color: var(--ink);
  text-wrap: balance;
  margin-top: 16px;
}
.hero-editorial .lead { margin-top: 0; }
.hero-editorial .cover-col {
  display: flex;
  justify-content: center;
}
.hero-editorial .mini-page { transform: rotate(2deg); }

@media (min-width: 880px) {
  .hero-editorial .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 64px; }
  .hero-editorial .cover-col { justify-content: flex-end; }
}

/* --- C · Manifesto --- */
.hero-manifesto { padding: clamp(48px, 7vw, 88px) 0; background: var(--paper-warm); }
.hero-manifesto .frame {
  border: 1px solid var(--gold);
  outline: 1px solid var(--gold);
  outline-offset: 4px;
  padding: clamp(48px, 9vw, 96px) clamp(24px, 6vw, 80px);
  text-align: center;
}
.hero-manifesto h1 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 74px);
  line-height: 1.07;
  color: var(--ink);
  text-wrap: balance;
  margin-top: 18px;
}
.hero-manifesto .lead { margin: 0 auto; }
.hero-manifesto .capture-wrap { margin-left: auto; margin-right: auto; }
.hero-manifesto .capture-note { text-align: center; }

/* ============================================================
   MINI WORKBOOK PAGES
   ============================================================ */
.mini-page {
  width: min(280px, 78vw);
  aspect-ratio: 17 / 22;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(20, 14, 6, 0.28);
  padding: 26px 22px;
  flex: none;
  position: relative;
  overflow: hidden;
}

.mini-page .mp-kick {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.mini-page.mini-cover {
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 120% 90% at 50% 38%, rgba(64,56,46,0.32) 0%, rgba(10,10,10,0) 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mini-cover .mc-brand {
  font-family: var(--sans);
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: #6E6557;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.mini-cover h3 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  color: #F4EFE6;
}
.mini-cover .mc-rule { width: 26px; height: 1px; background: var(--gold); border: 0; margin: 20px auto; }
.mini-cover .mc-tag {
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}
.mini-cover .mc-author {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  font-family: var(--sans);
  font-size: 6.5px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: #9A9285;
  text-transform: uppercase;
}

.mini-prompt .mp-title {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-top: 8px;
}
.mini-prompt .mp-rule { width: 26px; height: 1px; background: var(--gold); border: 0; margin: 12px 0 16px; }
.mini-prompt .mp-q {
  font-style: italic;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.mini-lines {
  --lh: 22px;
  height: calc(var(--lh) * var(--n, 8));
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(var(--lh) - 1px),
    var(--line) calc(var(--lh) - 1px),
    var(--line) var(--lh)
  );
}

.mini-contract { background: var(--paper-warm); padding: 14px; }
.mini-contract .mc-frame {
  border: 1px solid var(--gold);
  outline: 1px solid var(--gold);
  outline-offset: 2px;
  height: 100%;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mini-contract .mp-kick { letter-spacing: 0.38em; color: var(--gold-dim); }
.mini-contract h3 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin-top: 10px;
}
.mini-contract .mc-body {
  font-style: italic;
  font-size: 10.5px;
  line-height: 1.55;
  color: var(--gray);
  margin-top: 14px;
  text-wrap: pretty;
}
.mini-contract .mc-sig {
  margin-top: auto;
  width: 100%;
  border-bottom: 1px solid var(--charcoal);
  height: 26px;
}
.mini-contract .mc-sig-label {
  font-family: var(--sans);
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
  align-self: flex-start;
}

/* ============================================================
   SECTIONS
   ============================================================ */

/* --- Two kinds of men --- */
.two-men .men-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 44px;
}
@media (min-width: 720px) { .two-men .men-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.man-card {
  border: 1px solid #D8D0C2;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,0.45);
  padding: 30px 28px;
}
.man-card .man-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.man-card h3 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 10px;
  text-wrap: balance;
}
.man-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-top: 12px;
  text-wrap: pretty;
}

.two-men .both-line {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(21px, 3.5vw, 26px);
  color: var(--ink);
  text-align: center;
  margin-top: 48px;
  text-wrap: balance;
}

/* --- Quote band --- */
.quote-band { text-align: center; }
.quote-band .wrap { max-width: 800px; }
.quote-band blockquote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 3.6vw, 27px);
  line-height: 1.55;
  color: #EDE7DC;
  text-wrap: pretty;
}
.quote-band cite {
  display: block;
  margin-top: 28px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Seven phases --- */
.phases .phase-list { margin-top: 40px; }
.phase-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #DDD5C8;
  align-items: baseline;
}
.phase-row:last-child { border-bottom: 0; }
.phase-row .ph-num {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--gold);
}
.phase-row h3 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  color: var(--ink);
}
.phase-row p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray);
  margin-top: 4px;
  text-wrap: pretty;
}
@media (min-width: 720px) {
  .phase-row { grid-template-columns: 90px 1fr; gap: 28px; }
}

/* --- Previews --- */
.previews { background: var(--paper-warm); }
.previews .preview-row {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 24px 28px;
  scrollbar-width: none;
}
.previews .preview-row::-webkit-scrollbar { display: none; }
.previews .preview-item { scroll-snap-align: center; flex: none; }
.previews .preview-cap {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-top: 18px;
}
@media (min-width: 980px) {
  .previews .preview-row { justify-content: center; overflow-x: visible; }
}

/* --- About --- */
.about .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.about .portrait-col { display: flex; justify-content: center; }
.about image-slot { width: min(340px, 100%); aspect-ratio: 4 / 5; }
.about .sig {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin-top: 36px;
}
.about .sig-role {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 8px;
}
.about .body-copy p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-top: 16px;
  max-width: 58ch;
  text-wrap: pretty;
}
.about .body-copy p.first {
  font-family: var(--serif-display);
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.4;
  color: var(--ink);
  margin-top: 26px;
}
@media (min-width: 860px) {
  .about .about-grid { grid-template-columns: 0.75fr 1.25fr; gap: 64px; }
  .about .portrait-col { justify-content: flex-start; }
}

/* --- Testimonials placeholder --- */
.testimonials { background: var(--paper-warm); text-align: center; }
.testimonials .wrap { max-width: 720px; }
.test-card {
  border: 1px dashed #C4BAA8;
  padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 56px);
  margin-top: 44px;
}
.test-card .tc-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.test-card p {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.5;
  color: var(--gray);
  margin-top: 16px;
  text-wrap: pretty;
}

/* --- Scripture --- */
.scripture { text-align: center; }
.scripture .wrap { max-width: 680px; }
.scripture blockquote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 3.4vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}
.scripture cite {
  display: block;
  margin-top: 22px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* --- Final CTA --- */
.final-cta { text-align: center; }
.final-cta .wrap { max-width: 760px; }
.final-cta h2 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(34px, 6.5vw, 54px);
  line-height: 1.1;
  color: #F4EFE6;
  text-wrap: balance;
  margin-top: 14px;
}
.final-cta .final-sub {
  font-size: clamp(17px, 2.6vw, 19px);
  line-height: 1.6;
  color: #B5AC9F;
  max-width: 52ch;
  margin: 22px auto 0;
  text-wrap: pretty;
}
.final-cta .capture-wrap { margin: 44px auto 0; }
.final-cta .capture-note { text-align: center; }

/* --- Footer --- */
footer.site-foot {
  background: #080808;
  text-align: center;
  padding: 56px 24px 64px;
}
footer.site-foot .ft-brand {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
}
footer.site-foot .ft-rule { width: 26px; height: 1px; background: #3A342B; border: 0; margin: 24px auto; }
footer.site-foot .ft-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #5A5347;
  text-transform: uppercase;
}
