:root {
  --venture-green: #18231D;
  --venture-black: #090909;
  --venture-gold: #B68F52;
  --venture-ivory: #EEE9E1;
  --warm-stone: #D8D0C3;
  --deep-bronze: #8E6A36;

  --font-display: 'EB Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-w: 1120px;
}

* { box-sizing: border-box; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
html { scroll-behavior: smooth; }

@media print {
  .nav { position: static; }
  .faq__item { break-inside: avoid; }
  .card, .value, .photo-strip__item { break-inside: avoid; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--venture-black);
  background: var(--venture-ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 500; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.btn--primary {
  background: var(--venture-gold);
  color: var(--venture-black);
}
.btn--primary:hover { opacity: 0.88; }
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--ghost:hover { opacity: 0.75; }
.btn--large { padding: 16px 30px; font-size: 0.9rem; }
.btn--small { padding: 9px 16px; font-size: 0.75rem; }
.btn--full { width: 100%; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(238, 233, 225, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(9, 9, 9, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 0.85rem;
  font-weight: 600;
}
.nav__links a:hover { color: var(--deep-bronze); }
@media (max-width: 820px) {
  .nav__links { display: none; }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--venture-black);
}
.logo__mark {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}
.logo__word {
  font-family: var(--font-display);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero */
.hero {
  position: relative;
  background: var(--venture-green);
  color: var(--venture-ivory);
  padding: 100px 0 90px;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: grayscale(30%) sepia(15%) brightness(0.8);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,35,29,0.75) 0%, rgba(24,35,29,0.92) 70%, rgba(24,35,29,1) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero h1 { color: var(--venture-ivory); }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(238, 233, 225, 0.82);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}
.hero .btn--ghost { border-color: var(--venture-gold); color: var(--venture-ivory); }
.tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--venture-gold);
  letter-spacing: 0.04em;
  margin: 0;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--venture-gold);
  margin-bottom: 14px;
}
.eyebrow--dark { color: var(--deep-bronze); }

/* Partnership strip */
.strip {
  background: var(--venture-black);
  color: var(--warm-stone);
  padding: 18px 0;
  text-align: center;
  font-size: 0.9rem;
}
.strip strong { color: var(--venture-gold); }
.strip p { margin: 0; }

/* Sections */
.section { padding: 90px 0; }
.section--dark {
  background: var(--venture-green);
  color: var(--venture-ivory);
  text-align: center;
}
.section--dark h2 { color: var(--venture-ivory); }
.lede {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(238, 233, 225, 0.85);
}

.grid { display: grid; gap: 24px; margin-top: 40px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid rgba(9,9,9,0.08);
  padding: 28px 24px;
  border-radius: 2px;
}
.card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--venture-gold);
  margin-bottom: 10px;
}
.card p { margin: 0; font-size: 0.95rem; color: rgba(9,9,9,0.72); }

/* Offer */
.section--offer { background: var(--venture-ivory); }
.offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .offer { grid-template-columns: 1fr; }
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--venture-gold);
  transform: rotate(45deg);
}
.guarantee {
  font-size: 0.9rem;
  color: rgba(9,9,9,0.65);
  border-left: 2px solid var(--venture-gold);
  padding-left: 14px;
}

.offer__card {
  background: var(--venture-green);
  color: var(--venture-ivory);
  padding: 40px 32px;
  border-radius: 2px;
}
.offer__badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--venture-gold);
  margin-bottom: 18px;
}
.offer__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.offer__amount { font-family: var(--font-display); font-size: 3rem; }
.offer__period { color: rgba(238,233,225,0.65); font-size: 0.9rem; }
.offer__incl { color: rgba(238,233,225,0.65); font-size: 0.85rem; margin-bottom: 24px; }
.offer__note {
  font-size: 0.8rem;
  color: rgba(238,233,225,0.6);
  text-align: center;
  margin: 14px 0 0;
}

/* FAQ */
.faq { display: grid; gap: 1px; background: rgba(9,9,9,0.1); margin-top: 32px; }
.faq__item {
  background: var(--venture-ivory);
  padding: 18px 22px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--venture-gold);
  font-size: 1.2rem;
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { margin-top: 12px; color: rgba(9,9,9,0.7); }

/* CTA */
.cta {
  background: var(--venture-black);
  color: var(--venture-ivory);
  text-align: center;
  padding: 80px 0;
}
.cta h2 { color: var(--venture-gold); }
.cta p { color: rgba(238,233,225,0.75); margin-bottom: 28px; }

/* Grid variants */
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) {
  .grid--2 { grid-template-columns: 1fr; }
}

/* Lede variants (used outside dark sections) */
.lede--light { color: rgba(9,9,9,0.72); text-align: left; margin: 0; max-width: none; }
.lede--closing { margin-top: 40px; font-size: 1rem; }
.section--dark .lede--closing { color: rgba(238,233,225,0.72); font-size: 1rem; }

.brand-grid { max-width: 780px; }
.card--brand {
  background: transparent;
  border: none;
  border-top: 2px solid var(--venture-gold);
  padding: 20px 0 0;
}
.card--brand h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 8px; }
.card--brand p { margin: 0; color: rgba(9,9,9,0.68); }

/* Meet list */
.meet-list {
  list-style: none;
  padding: 0;
  margin: 32px auto;
  max-width: 520px;
  display: grid;
  gap: 12px;
  text-align: left;
}
.meet-list li {
  position: relative;
  padding-left: 26px;
  color: var(--venture-ivory);
  font-weight: 600;
}
.meet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--venture-gold);
  transform: rotate(45deg);
}

/* Manifesto band */
.manifesto {
  background: var(--venture-ivory);
  border-top: 1px solid rgba(9,9,9,0.08);
  border-bottom: 1px solid rgba(9,9,9,0.08);
  padding: 70px 0;
  text-align: center;
}
.manifesto__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 780px;
  margin: 0 auto 28px;
  color: var(--venture-black);
}
.manifesto__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-bronze);
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tag {
  border: 1px solid rgba(9,9,9,0.18);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(9,9,9,0.78);
}
.tags__intro {
  margin: 36px 0 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--deep-bronze);
}
.tags--gold { margin-top: 16px; }
.tag--gold {
  border-color: var(--venture-gold);
  color: var(--deep-bronze);
  background: rgba(182, 143, 82, 0.08);
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 700px) {
  .photo-strip { grid-template-columns: 1fr; }
}
.photo-strip__item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) sepia(12%) brightness(0.82) contrast(1.05);
}
.photo-strip__item figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--venture-ivory);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.photo-strip__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,0) 55%, rgba(9,9,9,0.75) 100%);
}

/* Values */
.section--values { background: var(--venture-ivory); }
.grid--values { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid--values { grid-template-columns: 1fr; }
}
.value {
  padding: 22px 0;
  border-top: 1px solid rgba(9,9,9,0.12);
}
.value h3 { color: var(--deep-bronze); margin-bottom: 8px; }
.value p { margin: 0; font-size: 0.92rem; color: rgba(9,9,9,0.68); }

/* Footer */
.footer {
  background: var(--venture-green);
  color: rgba(238,233,225,0.6);
  padding: 40px 0;
}
.footer__inner { text-align: center; display: grid; gap: 10px; }
.logo--footer { justify-content: center; color: var(--venture-ivory); }
.footer__meta, .footer__legal { font-size: 0.8rem; margin: 0; }
