/* ==========================================================================
   BigR Ventures, LLC — site styles
   Palette sampled from the source logo: red #EB1819, ink #000000 on white.
   ========================================================================== */

:root {
  /* Color */
  --white:      #FFFFFF;
  --ink:        #111111;
  --ink-strong: #000000;
  --muted:      #6B6B6B;
  --tint:       #F5F5F5;
  --line:       #E5E5E5;
  --line-soft:  #EFEFEF;
  --red:        #EB1819;   /* sampled from BigR V Logo V1.png — rules, marks, borders */
  --red-text:   #C21315;   /* same hue, darkened for text and for white-on-red (6.2:1) */
  --red-deep:   #A5100F;   /* button hover */

  /* Type */
  --font-display: "Poppins", "Futura", "Century Gothic", -apple-system,
                  BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-text:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Roboto, Helvetica, Arial, sans-serif;

  --step--1: 0.875rem;
  --step-0:  1.0625rem;
  --step-1:  1.1875rem;
  --step-2:  clamp(1.375rem, 1.2rem + 0.9vw, 1.75rem);
  --step-3:  clamp(1.75rem, 1.4rem + 1.7vw, 2.375rem);
  --step-4:  clamp(2.125rem, 1.5rem + 3vw, 3.25rem);

  /* Space */
  --gap:        1.5rem;
  --section:    clamp(4rem, 9vw, 7rem);
  --section-sm: clamp(3rem, 6vw, 4.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
.site-nav ul, .site-footer ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; height: auto; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important; }
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: var(--step-0);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, 1080px); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }
main { flex: 1 0 auto; }
.section { padding-block: var(--section); }
.section--sm { padding-block: var(--section-sm); }
.section--tint { background: var(--tint); }
.section + .section--tint,
.section--tint + .section { border-top: 1px solid var(--line-soft); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); letter-spacing: -0.015em; }
h4 { font-size: var(--step-1); font-weight: 600; letter-spacing: -0.01em; }

p { text-wrap: pretty; }
.lede {
  font-size: var(--step-1);
  line-height: 1.65;
  color: var(--muted);
  max-width: 36em;
}
.prose > p { max-width: 66ch; margin-bottom: 1.35rem; }
.prose > p:last-child { margin-bottom: 0; }
.prose h2 {
  font-size: var(--step-2); letter-spacing: -0.015em;
  margin-top: 2.75rem; margin-bottom: 0.85rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2.25rem; margin-bottom: 0.75rem; font-size: var(--step-1); }
.prose ul { max-width: 66ch; padding-left: 1.15rem; margin-bottom: 1.35rem; }
.prose li { margin-bottom: 0.5rem; }
.muted { color: var(--muted); }
.small { font-size: var(--step--1); }

a { color: var(--ink); text-decoration-color: var(--line); text-underline-offset: 0.2em; }
a:hover { text-decoration-color: var(--red); }
.prose a { text-decoration-thickness: 1px; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip-link {
  position: absolute; left: 0.75rem; top: -4rem; z-index: 100;
  background: var(--ink-strong); color: #fff;
  padding: 0.7rem 1.1rem; border-radius: 2px;
  font-family: var(--font-display); font-size: var(--step--1);
  text-decoration: none; transition: top 0.15s ease;
}
.skip-link:focus { top: 0.75rem; }

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

/* ---------- Section headings ---------- */
.rule { width: 44px; height: 3px; background: var(--red); border: 0; margin: 0 0 1.35rem; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.section-head { margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head p { color: var(--muted); max-width: 40em; margin-top: 1rem; }

/* ---------- Header ---------- */
.site-header { border-bottom: 1px solid var(--line); background: var(--white); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 78px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; padding: 0.4rem 0; }
.brand img { width: 178px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center; gap: 0.55rem;
  background: none; border: 1px solid var(--line); border-radius: 2px;
  padding: 0.7rem 0.85rem; cursor: pointer;
  font-family: var(--font-display); font-size: var(--step--1); font-weight: 500;
  color: var(--ink);
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle__bars { position: relative; width: 18px; height: 12px; display: block; }
.nav-toggle__bars::before, .nav-toggle__bars::after,
.nav-toggle__bars span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background: var(--ink-strong);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 5px; }
.nav-toggle__bars::after { bottom: 0; }

.site-nav ul { display: flex; align-items: center; gap: 2.25rem; }
.site-nav a {
  font-family: var(--font-display); font-size: 0.9375rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  padding: 0.35rem 0; border-bottom: 2px solid transparent;
  display: inline-block;
}
.site-nav a:hover { border-bottom-color: var(--red); }
.site-nav a[aria-current="page"] { color: var(--red-text); border-bottom-color: var(--red); }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0; z-index: 40;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px -18px rgba(0,0,0,0.35);
  }
  .site-header { position: relative; }
  .site-header[data-nav="open"] .site-nav { display: block; }
  .site-nav ul {
    flex-direction: column; align-items: stretch; gap: 0;
    width: min(100% - 2.5rem, 1080px); margin-inline: auto;
    padding-block: 0.5rem 1.25rem;
  }
  .site-nav li + li { border-top: 1px solid var(--line-soft); }
  .site-nav a {
    padding: 0.95rem 0; border-bottom: 0; border-left: 3px solid transparent;
    padding-left: 0; font-size: 1.0625rem;
  }
  .site-nav a[aria-current="page"] { border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem); }
.hero__logo { width: clamp(232px, 62vw, 392px); margin-bottom: clamp(2rem, 4vw, 2.75rem); }
.hero h1 { max-width: 19ch; }
.hero .lede { margin-top: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.9375rem; font-weight: 500;
  padding: 0.875rem 1.55rem; border-radius: 2px;
  text-decoration: none; border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn--primary { background: var(--red-text); color: #fff; }
.btn--primary:hover { background: var(--red-deep); }
.btn--ghost { color: var(--ink); border-color: var(--line); background: var(--white); }
.btn--ghost:hover { border-color: var(--ink-strong); }

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

/* ---------- Grids and cards ---------- */
.grid-3 {
  display: grid; gap: clamp(2rem, 4vw, 3.25rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.pillar h3 { margin-bottom: 0.75rem; }
.pillar p { color: var(--muted); }
.pillar__rule { width: 28px; height: 2px; background: var(--red); border: 0; margin: 0 0 1.1rem; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
}
.card + .card { margin-top: 1.5rem; }
.note { margin-top: 1.75rem; }

.product__head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 0.75rem 1.25rem; margin-bottom: 0.35rem;
}
/* Baseline alignment is right for a text product name, but an image has no
   meaningful baseline — it puts the status pill down at the logo's bottom edge.
   Centre it only in the cards whose name is set as a logo. */
.product__head:has(.product__logo) { align-items: center; }
.product__name { font-size: var(--step-3); }
/* The Euro product name is set as its logo. Width is capped rather than the height
   so the mark scales with the card; aspect-ratio prevents any reflow while it loads. */
.product__logo {
  display: block; width: 168px; height: auto; aspect-ratio: 834 / 593;
}
@media (max-width: 560px) { .product__logo { width: 132px; } }

/* A logo needs more air beneath it than a line of text does: the mark's own
   bracket corners read as part of its silhouette, so 0.35rem left the tagline
   crowding the lower brackets. Applied only to cards whose name is a logo. */
.product__head:has(.product__logo) { margin-bottom: 1.5rem; }
.product__tagline {
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 500;
  color: var(--ink); margin-bottom: 1.35rem; max-width: 40ch;
}
.product__body p { color: var(--muted); max-width: 62ch; margin-bottom: 1.15rem; }
.product__body p:last-child { margin-bottom: 0; }

.status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 0.3rem 0.75rem; white-space: nowrap;
}
.status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex: none;
}
.status--live::before { background: #12A150; }

.card--product {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) 200px;
  align-items: start;
}
@media (max-width: 860px) {
  .card--product { grid-template-columns: 1fr; }
}

.meta {
  display: grid; gap: 1.25rem;
  font-size: var(--step--1); color: var(--muted);
  padding-left: clamp(1.5rem, 3vw, 2.25rem);
  border-left: 1px solid var(--line-soft);
}
@media (max-width: 860px) {
  .meta {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.25rem 2rem;
    padding-left: 0; border-left: 0;
    padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
    margin-top: 1.75rem;
  }
}
.meta strong {
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  display: block; margin-bottom: 0.15rem;
}

/* ---------- Steps ---------- */
.steps { display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step__n {
  font-family: var(--font-display); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.12em; color: var(--red-text); margin-bottom: 0.85rem;
}
.step h3 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.step p { color: var(--muted); font-size: var(--step-0); }

/* ---------- Facts list ---------- */
.facts {
  display: grid; grid-template-columns: max-content 1fr;
  gap: 1rem 2.75rem; margin-top: 2rem;
}
.facts dt {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  padding-top: 0.2rem;
}
.facts dd { margin: 0; }
@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr; gap: 0.25rem; }
  .facts dd + dt { margin-top: 1.25rem; }
}

/* ---------- Contact ---------- */
.contact-email {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.2vw, 1.875rem);
  font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink-strong); text-decoration: none;
  border-bottom: 2px solid var(--line);
  display: inline-block; padding-bottom: 0.15rem;
  word-break: break-word;
}
.contact-email:hover { border-bottom-color: var(--red); color: var(--red-text); }

/* ---------- CTA strip ---------- */
.cta { text-align: left; }
.cta h2 { max-width: 24ch; }
.cta p { color: var(--muted); margin-top: 1rem; max-width: 46ch; }
.cta .btn { margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  font-size: var(--step--1);
  color: var(--muted);
}
.site-footer__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.site-footer__legal { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.site-footer a { color: var(--muted); text-decoration-color: var(--line); }
.site-footer a:hover { color: var(--ink); text-decoration-color: var(--red); }
.site-footer ul { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer__note { flex-basis: 100%; margin-top: 0.25rem; }

/* ---------- Misc ---------- */
.divider { border: 0; border-top: 1px solid var(--line-soft); margin-block: clamp(2.5rem,5vw,3.5rem); }
.updated {
  font-family: var(--font-display); font-size: var(--step--1);
  color: var(--muted); margin-top: 1.25rem;
}
