/* Venture Elite Group: Your Legacy (preview rebuild) */

@font-face { font-family: "Newsreader"; src: url("../fonts/newsreader-normal-latin.woff2") format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Newsreader"; src: url("../fonts/newsreader-italic-latin.woff2") format("woff2"); font-weight: 300 700; font-style: italic; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-normal-latin.woff2") format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-italic-latin.woff2") format("woff2"); font-weight: 400 600; font-style: italic; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-arrows.woff2") format("woff2"); font-weight: 400 700; unicode-range: U+2190, U+2192; font-display: swap; }

:root {
  /* Ground */
  --ink:        #0B1836;   /* true ink navy: dark sections, nav */
  --ink-deep:   #081228;   /* footer */
  --paper:      #F7F3EA;   /* warm off-white: light sections */
  --field:      #FFFCF5;   /* form field fill */

  /* Text */
  --text:       #15171C;   /* near-black on paper, 16.2:1 */
  --text-2:     #3B3F4A;   /* secondary on paper, 9.5:1 */
  --on-ink:     #F5F1E7;   /* near-white on ink, 15.5:1 */
  --on-ink-2:   #C8CDD9;   /* secondary on ink, 11.0:1 */

  /* Accent (never a background except the primary button) */
  --gold:       #C9A84C;   /* on ink 7.7:1; button fill */
  --gold-ink:   #5C4510;   /* gold for text on paper, 8.1:1 */

  /* Rules */
  --rule:       rgba(21, 23, 28, .16);
  --rule-strong:rgba(21, 23, 28, .42);
  --rule-ink:   rgba(201, 168, 76, .38);

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans:  "Source Sans 3", "Segoe UI", system-ui, sans-serif;

  --gutter: clamp(16px, 4vw, 40px);
  --measure: 36rem;
  --space-section: clamp(4.5rem, 9vw, 8.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 1.125rem/1.65 var(--sans);   /* 18px */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.01em; text-wrap: balance; }
h1 em, h2 em { font-style: italic; }
h1 { font-size: clamp(2.75rem, 1.6rem + 4.6vw, 5.25rem); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.25rem); line-height: 1.08; }
h3 { font-size: 1.375rem; line-height: 1.25; font-weight: 500; }

.wrap { width: 100%; max-width: 76rem; margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: 84rem; }
.wrap--narrow { max-width: 46rem; }

/* Sections */
.ink   { background: var(--ink); color: var(--on-ink); }
.paper { background: var(--paper); color: var(--text); }
.ink h2 em, .ink h1 em { color: var(--gold); }
.paper h2 em { color: var(--gold-ink); }

.label {
  font: 600 .95rem/1.2 var(--sans);
  font-variant-caps: all-small-caps;
  letter-spacing: .12em;
  margin: 0 0 1.25rem;
}
.ink .label   { color: var(--gold); }
.paper .label { color: var(--gold-ink); }

/* Links on light ground */
.paper a:not(.btn) { color: var(--gold-ink); text-decoration-thickness: 1px; text-underline-offset: .2em; }
.ink a:not(.btn)   { color: var(--on-ink); text-decoration-color: var(--rule-ink); text-underline-offset: .2em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: 600 1rem/1.2 var(--sans);
  letter-spacing: .02em;
  padding: 1rem 1.6rem;
  border: 0; border-radius: 2px;
  cursor: pointer; text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: #D8BA62; }
.btn--sm { padding: .7rem 1.1rem; font-size: .95rem; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* Masthead */
.masthead { position: sticky; top: 0; z-index: 50; background: var(--ink); color: var(--on-ink); }
.util { background: var(--ink); color: var(--on-ink); border-bottom: 1px solid rgba(245, 241, 231, .1); font-size: .9rem; }
.util__in { display: flex; justify-content: space-between; align-items: center; gap: .25rem 1.5rem; flex-wrap: wrap; padding-block: .45rem; }
.util p { margin: 0; }
.util__contact { display: flex; gap: .25rem 1.5rem; flex-wrap: wrap; }
.util a { color: var(--on-ink-2); text-decoration: none; }
.util a:hover { color: var(--on-ink); }
.util__badge { color: var(--gold); font-weight: 600; font-variant-caps: all-small-caps; letter-spacing: .1em; }
.nav__in { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: .65rem; }
/* The logo file has a black ground; screen blending drops it into the ink navy. */
.nav__logo img, .footer__brand img { mix-blend-mode: screen; }
.nav__right { display: flex; align-items: center; gap: 1.5rem; }
.nav__info { font-size: .95rem; color: var(--on-ink-2); }
.nav__info a { color: var(--on-ink); text-decoration: none; font-weight: 600; }

/* Hero */
.hero { padding-block: clamp(3.5rem, 8vw, 7rem) clamp(4rem, 8vw, 7.5rem); }
.hero__grid { display: grid; gap: clamp(3rem, 6vw, 6rem); grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: start; }
.hero h1 { margin-bottom: 1.75rem; }
.hero h1 em { display: block; }
.hero__sub { font-size: 1.25rem; line-height: 1.6; color: var(--on-ink); max-width: 34rem; margin-bottom: 2.25rem; }
.hero__points { display: grid; grid-template-columns: repeat(2, max-content); gap: .6rem 2.5rem; color: var(--on-ink-2); font-size: 1.0625rem; border-top: 1px solid var(--rule-ink); padding-top: 1.25rem; max-width: 34rem; }

/* Quiz: a typographic list, not a card */
.quiz { border-top: 1px solid var(--rule-ink); padding-top: 1.5rem; }
.quiz__progress { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin-bottom: 1.75rem; }
.quiz__dot { height: 2px; background: rgba(245, 241, 231, .18); }
.quiz__dot.done, .quiz__dot.active { background: var(--gold); }
.veg-quiz-step { display: none; }
.veg-quiz-step.active { display: block; }
.quiz__num { font-size: .95rem; font-variant-caps: all-small-caps; letter-spacing: .12em; color: var(--gold); margin-bottom: .6rem; font-weight: 600; }
.quiz__q { font: 400 clamp(1.5rem, 1.2rem + 1vw, 1.875rem)/1.2 var(--serif); margin-bottom: 1.25rem; transition: color .2s; }
.quiz__q.is-flagged { color: var(--gold); }
.quiz__opts { border-top: 1px solid rgba(245, 241, 231, .14); }
.veg-quiz-opt {
  display: flex; align-items: center; gap: 1rem; width: 100%;
  background: none; border: 0; border-bottom: 1px solid rgba(245, 241, 231, .14);
  padding: 1rem .25rem; text-align: left; cursor: pointer;
  font-size: 1.125rem; color: var(--on-ink);
  transition: color .15s, padding-left .15s;
}
/* selection marker: a short gold rule that grows in */
.veg-quiz-opt::before { content: ""; flex: 0 0 auto; width: 0; height: 2px; background: var(--gold); transition: width .15s; }
.veg-quiz-opt:hover { color: #fff; }
.veg-quiz-opt:hover::before { width: .75rem; }
.veg-quiz-opt.selected { color: var(--gold); }
.veg-quiz-opt.selected::before { width: 1.5rem; }
.quiz__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.75rem; gap: 1rem; }
.quiz__back { background: none; border: 0; padding: .5rem 0; cursor: pointer; color: var(--on-ink-2); font-size: 1rem; }
.quiz__back:hover { color: var(--on-ink); }

/* Video: wide ink panel with its own poster frame */
.video { padding-block: var(--space-section) 0; }
.video__frame { position: relative; aspect-ratio: 16 / 9; background: var(--ink); color: var(--on-ink); overflow: hidden; }
.video__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video__panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 3.5rem);
}
.video__panel h2 { color: var(--on-ink); font-size: clamp(2rem, 1rem + 4.5vw, 4.75rem); max-width: 12ch; }
.video__panel h2 em { color: var(--gold); }
.video__play {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 1rem;
  background: none; border: 0; padding: 0; color: var(--gold);
}
.video__play svg { width: clamp(48px, 7vw, 76px); height: auto; transition: transform .2s; }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__caption { max-width: 34rem; margin: 1.5rem 0 0; color: var(--text-2); font-size: 1.125rem; }

/* Form section */
.book { padding-block: var(--space-section); }
.book__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 30rem); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.book__intro { max-width: 30rem; }
.book__intro h2 { margin-bottom: 1.5rem; }
.book__intro > p { color: var(--text-2); }
.book__note { font: italic 400 1.3rem/1.4 var(--serif); color: var(--text) !important; margin: 2rem 0; }
.book__trust li { padding: .6rem 0; border-top: 1px solid var(--rule); font-size: 1rem; }
.book__trust li:last-child { border-bottom: 1px solid var(--rule); }

.book__form { width: 100%; max-width: 30rem; }
.book__form h3 { font-size: 1.625rem; margin-bottom: .35rem; }
.book__formsub { color: var(--text-2); font-size: 1rem; margin-bottom: 2rem; }
.form-field-wrapper { margin-bottom: 1.5rem; }
.field-label { display: block; font-weight: 600; font-size: 1rem; margin-bottom: .45rem; }
.req { color: var(--gold-ink); }
.form-control {
  display: block; width: 100%;
  font: 400 1.0625rem/1.4 var(--sans); color: var(--text);
  background: var(--field);
  border: 1px solid var(--rule-strong); border-radius: 2px;
  padding: .8rem .9rem;
}
.form-control::placeholder { color: #4F535D; }   /* 7.5:1 on field */
.form-control:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
textarea.form-control { resize: vertical; min-height: 7rem; }
.consent { margin-top: 2rem; }
.consent__row { display: grid; grid-template-columns: 1.25rem 1fr; gap: .85rem; margin-bottom: 1.1rem; }
.consent__row input { width: 1.125rem; height: 1.125rem; margin: .2rem 0 0; accent-color: var(--ink); }
.consent__row label { font-size: .9375rem; line-height: 1.55; color: var(--text-2); }
.button-element { margin-top: .5rem; letter-spacing: .06em; }
.form-links { font-size: .95rem; color: var(--text-2); }
.book__agree { font-size: .95rem; color: var(--text-2); margin-top: 1.5rem; }

/* Stats band */
.stats { padding-block: var(--space-section); }
.stats__head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 2rem 4rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 5rem); }
.stats__head p { margin: 0; color: var(--on-ink-2); font-size: 1.1875rem; max-width: 26rem; }
.stats__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--rule-ink); }
.stats__list li { padding: 2rem 1.75rem 0 0; }
.stats__list li + li { padding-left: 1.75rem; border-left: 1px solid var(--rule-ink); }
.stat { display: block; font: 300 clamp(2.75rem, 1.6rem + 2.6vw, 4.25rem)/1 var(--serif); white-space: nowrap; color: var(--gold); letter-spacing: -0.02em; margin-bottom: 1rem; font-variant-numeric: lining-nums; }
.stats__list span { display: block; color: var(--on-ink-2); font-size: 1.0625rem; line-height: 1.5; }
.stats__disc { margin: 3rem 0 0; font-size: .9375rem; color: var(--on-ink-2); }

/* Testimonials */
.voices { padding-block: var(--space-section) calc(var(--space-section) * .6); }
.voices__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.voice { margin: 0; }
.voice blockquote { margin: 0 0 1.25rem; }
.voice blockquote p { margin: 0; font: italic 400 1.3125rem/1.5 var(--serif); }
.voice--lead blockquote p { font-size: clamp(1.75rem, 1.2rem + 1.9vw, 2.625rem); line-height: 1.28; font-style: normal; letter-spacing: -0.01em; }
.voice figcaption { display: flex; flex-direction: column; gap: .15rem; }
.voice__name { font-weight: 600; font-size: 1rem; }
.voice__role { color: var(--text-2); font-size: .95rem; }
.voices__side .voice + .voice { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--rule); }

/* Founders */
.founders { padding-block: calc(var(--space-section) * .6) var(--space-section); }
.founders__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; border-top: 1px solid var(--rule); padding-top: calc(var(--space-section) * .6); }
.founders__photo { position: sticky; top: 7rem; }
.founders__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; }
.founders__text { max-width: var(--measure); }
.founders__text h2 { margin-bottom: 2rem; }
.founders__story { margin: 2.25rem 0; padding-left: 1.5rem; border-left: 1px solid var(--gold); }
.founders__story p { font: 400 1.25rem/1.55 var(--serif); }
.founders__story p:last-child { margin-bottom: 0; }
.founders__story strong { font-weight: 600; }
.founders__sig { display: flex; flex-direction: column; gap: .15rem; margin-top: 2.25rem; }
.founders__sig-name { font: italic 400 1.5rem/1.2 var(--serif); }
.founders__sig-title { color: var(--text-2); font-size: .95rem; }
.irene { display: grid; grid-template-columns: 72px 1fr; gap: 1.25rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--rule); }
.irene img { width: 72px; height: 96px; object-fit: cover; }
.irene p { margin: 0; }
.irene__name { font-weight: 600; }
.irene__role { color: var(--text-2); font-size: .95rem; margin-bottom: .6rem !important; }
.irene__text { font-size: 1rem; }

/* Audiences */
.who { padding-block: var(--space-section); }
.who__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.who__head { position: sticky; top: 8rem; }
.who__head h2 { margin-bottom: 1.25rem; }
.who__head p { color: var(--on-ink-2); }
.who__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2rem, 4vw, 3.5rem); }
.who__list li { padding: 1.75rem 0 1.5rem; border-top: 1px solid var(--rule-ink); }
.who__list h3 { margin-bottom: .6rem; color: var(--on-ink); }
.who__list p { margin: 0; color: var(--on-ink-2); font-size: 1.0625rem; }

/* Calendar */
.cal { padding-block: var(--space-section); }
.cal__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.cal__head p:last-child { color: var(--text-2); }
.cal__head h2 { margin-bottom: 1.25rem; }
.cal__embed iframe { display: block; width: 100%; min-height: 780px; border: 0; background: transparent; }

/* Calendar stand-in: static picture of a booking step. Not interactive. */
.cal-standin {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--rule-strong); padding-top: 1.5rem;
  pointer-events: none; user-select: none; cursor: default;
}
.cal-standin p { margin: 0; }
.cal-standin__title { font: 400 1.5rem/1.2 var(--serif); margin-bottom: 1.25rem !important; }
.cal-standin__week, .cal-standin__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); text-align: center; }
.cal-standin__week { font-size: .875rem; font-weight: 600; color: var(--text-2); padding-bottom: .6rem; border-bottom: 1px solid var(--rule); margin-bottom: .4rem; }
.cal-standin__d { display: grid; place-items: center; aspect-ratio: 1; max-height: 3rem; margin: 0 auto; width: 100%; font-size: 1rem; color: var(--text-2); font-variant-numeric: tabular-nums; }
.cal-standin__d.is-open { color: var(--text); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: .3em; }
.cal-standin__d.is-selected { width: 2.5rem; height: 2.5rem; aspect-ratio: auto; border-radius: 50%; background: var(--ink); color: var(--on-ink); font-weight: 600; }
.cal-standin__day { font-weight: 600; font-size: 1.0625rem; }
.cal-standin__tz { color: var(--text-2); font-size: .9375rem; margin-bottom: 1rem !important; }
.cal-standin__slots li { padding: .8rem 0; border-top: 1px solid var(--rule); font-size: 1.0625rem; font-variant-numeric: tabular-nums; color: var(--text); }
.cal-standin__slots li:last-child { border-bottom: 1px solid var(--rule); }
.cal-standin__slots li.is-selected { color: var(--gold-ink); font-weight: 600; }
.cal-standin__slots li.is-selected::before { content: ""; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); vertical-align: middle; margin-right: .75rem; }
@media (max-width: 640px) { .cal-standin { grid-template-columns: minmax(0, 1fr); } }

/* Closing */
.closing { padding-block: var(--space-section); text-align: center; }
.closing h2 { font-size: clamp(2.4rem, 1.4rem + 4vw, 4.5rem); margin-bottom: 1.75rem; }
.closing p { color: var(--on-ink-2); font-size: 1.1875rem; }
.closing__urgency { color: var(--gold) !important; font-size: 1rem !important; font-weight: 600; font-variant-caps: all-small-caps; letter-spacing: .1em; margin: 2rem 0 2.25rem; }
.closing__sub { margin: 1.25rem 0 0; font-size: 1rem !important; }

/* Footer */
.footer { background: var(--ink-deep); color: var(--on-ink-2); padding-block: 4.5rem 2.5rem; font-size: 1rem; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; padding-bottom: 3rem; }
.footer__brand img { margin-bottom: 1rem; }
.footer__name { font: 400 1.375rem/1.2 var(--serif); color: var(--on-ink); margin-bottom: .75rem; }
.footer__brand > p { max-width: 22rem; }
.footer__social { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.footer a { color: var(--on-ink); text-decoration: none; }
.footer a:hover { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: .25em; }
.footer__col h2 { font: 600 .95rem/1.2 var(--sans); font-variant-caps: all-small-caps; letter-spacing: .12em; color: var(--gold); margin-bottom: 1.25rem; }
.footer__col li { margin-bottom: .6rem; }
.footer a.footer__cta { color: var(--gold); font-weight: 600; }
.footer__legal { border-top: 1px solid rgba(245, 241, 231, .12); padding-top: 2rem; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr); gap: 1.5rem 3rem; font-size: .9375rem; }
.footer__legal p { margin: 0; }

/* Responsive */
@media (max-width: 960px) {
  .hero__grid, .book__grid, .voices__grid, .founders__grid, .who__grid, .cal__grid, .stats__head { grid-template-columns: minmax(0, 1fr); }
  .book__form { max-width: 32rem; }
  .founders__photo, .who__head { position: static; }
  .founders__photo img { aspect-ratio: 1 / 1; }
  .stats__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats__list li { padding: 1.75rem 1.25rem 1.75rem 0; }
  .stats__list li + li { padding-left: 0; border-left: 0; }
  .stats__list li:nth-child(even) { padding-left: 1.25rem; border-left: 1px solid var(--rule-ink); }
  .stats__list li:nth-child(n+3) { border-top: 1px solid var(--rule-ink); }
  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__legal { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 1.0625rem; }            /* 17px */
  .nav__info { display: none; }
  .util__in { justify-content: flex-start; }
  .hero__points { grid-template-columns: minmax(0, 1fr); }
  .who__list { grid-template-columns: minmax(0, 1fr); }
  .video__panel h2 { max-width: none; }
  .stats__list li { padding-right: .75rem; }
  .stats__list li:nth-child(even) { padding-left: .75rem; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 2.25rem; }
  .cal__embed iframe { min-height: 900px; }
}
