/* v2.css — Kupp-style redesign preview. Used only by views/v2.ejs;
   fully independent of styles.css so the existing site is untouched.
   Layout mirrors cooperkupp.com's theme (Poppins headings, 50/50
   image-with-text rows, clear outline buttons, black image overlays at
   0.1–0.25); colors + script logo come from the classic site's palette. */

:root {
  --v2-accent: #a8763a;        /* brass */
  --v2-accent-2: #c79a5b;
  --v2-green: #1f3a2e;         /* evergreen */
  --v2-green-2: #2e5443;
  --v2-ink: #181613;
  --v2-body-color: #3a352e;
  --v2-paper: #f7f4ee;
  --v2-white: #ffffff;
  --v2-input-border: #a8763a;
  --v2-head: 'Poppins', sans-serif;
  --v2-text: 'Nunito Sans', sans-serif;
  --v2-script: 'Allura', 'Brush Script MT', cursive;
}

/* No global reset here: styles.css (loaded first) already sets
   `box-sizing: border-box` and `margin: 0` on everything. This file must not
   add a global `padding: 0`, which would strip list indentation on the
   classic-styled pages that now load this stylesheet for the shared chrome. */

html { scroll-padding-top: 96px; }

/* Screen-reader-only text: gives pages a crawlable h1 without visual change */
.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;
}

body.v2 {
  font-family: var(--v2-text);
  font-size: 16px;
  color: var(--v2-body-color);
  background: var(--v2-paper);
  -webkit-font-smoothing: antialiased;
}

.v2 h1, .v2 h2, .v2 h3, .v2 h5 {
  font-family: var(--v2-head);
  font-weight: 600;
  color: var(--v2-ink);
  line-height: 1.2;
}

/* ---------- Header ---------- */
.v2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--v2-paper);
  padding: 8px 28px;
}

.v2-header__social { display: flex; gap: 16px; }
.v2-header__social a { color: var(--v2-accent); display: inline-flex; }
.v2-header__social a:hover { color: var(--v2-green); }

.v2-header__nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.v2-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;                  /* touch target */
  font-family: var(--v2-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--v2-accent);
  transition: color 0.15s ease;
}
.v2-header__nav a:hover { color: var(--v2-green); }

/* Script wordmark, borrowed from the classic site's .brand__name */
.v2-header__logo {
  font-family: var(--v2-script) !important;
  font-size: 2rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--v2-ink) !important;
  line-height: 1;
  padding: 0 6px;
}
.v2-header__logo:hover { color: var(--v2-accent) !important; }

.v2-header__utility { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.v2-header__utility a { color: var(--v2-accent); display: inline-flex; }
.v2-header__utility a:hover { color: var(--v2-green); }
.v2-header__utility .v2-header__textlink {
  align-items: center;
  min-height: 44px;                  /* touch target */
  padding: 0 4px;
  font-family: var(--v2-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

/* Hamburger — hidden on desktop, shown below 860px */
.v2-navtoggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.v2-navtoggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--v2-accent);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.v2-navtoggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-navtoggle.is-open span:nth-child(2) { opacity: 0; }
.v2-navtoggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.v2-mobile-nav {
  display: none;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 49;
  padding: 4px 20px 20px;
  background: var(--v2-paper);
  border-bottom: 1px solid rgba(24, 22, 19, 0.12);
}
.v2-mobile-nav.is-open { display: flex; }
/* 53px rows / 17px links — cooperkupp.com's measured mobile drawer metrics */
.v2-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 53px;
  padding: 12px 0;
  font-family: var(--v2-head);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--v2-ink);
  border-bottom: 1px solid rgba(24, 22, 19, 0.1);
}
.v2-mobile-nav__social {
  display: flex;
  gap: 22px;
  padding-top: 18px;
}
.v2-mobile-nav__social a {
  min-height: 44px;
  min-width: 44px;
  padding: 0;
  border-bottom: 0;
  color: var(--v2-accent);
  justify-content: center;
}

/* ---------- Heroes (full-bleed image sections) ---------- */
.v2-hero { position: relative; overflow: hidden; }
/* svh, not vh — mobile browsers count the address bar in vh, which makes
   full-height sections jump and clip as it hides (styles.css:176 does the same) */
.v2-hero--full { height: calc(100vh - 64px); height: calc(100svh - 64px); }
.v2-hero--three-quarters { height: 75vh; height: 75svh; }

.v2-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background-color: #000;
}

/* The classic homepage's hero tint (styles.css .hero__overlay) — warm-black
   gradients, heavier at the left and bottom where the text sits. */
.v2-hero__overlay--classic {
  background-color: transparent;
  background:
    linear-gradient(90deg, rgba(16, 14, 11, 0.72) 0%, rgba(16, 14, 11, 0.4) 40%, rgba(16, 14, 11, 0.12) 68%, rgba(16, 14, 11, 0.3) 100%),
    linear-gradient(180deg, rgba(16, 14, 11, 0.45) 0%, rgba(16, 14, 11, 0.2) 35%, rgba(16, 14, 11, 0.72) 100%);
}

.v2-hero__content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v2-hero__content--left {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 clamp(28px, 7vw, 110px);
}
.v2-hero__description {
  font-family: var(--v2-head);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--v2-white);
  margin-bottom: 0.4em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.v2-hero__title {
  font-size: clamp(2.4rem, 6.5vw, 5.4rem);
  color: var(--v2-white) !important;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* About page: centered paragraph overlaid on hero photos (Kupp's
   custom-about-text — 1.5rem white, middle-center) */
.v2-hero__content--center {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(24px, 6vw, 80px);
}
.v2-about-text {
  max-width: 780px;
  font-family: var(--v2-head);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--v2-white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

/* Portrait card on the hero, echoing the classic homepage headshot card */
.v2-hero__portrait {
  width: clamp(220px, 24vw, 340px);
  height: auto;              /* beat the width/height attrs so aspect-ratio rules */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 20%;  /* 3:4 crop of a 2:3 photo — keep the face, trim the bottom */
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

/* ---------- Press band ---------- */
.v2-press {
  background: #1a201b;               /* same forest grey as .v2-askai */
  color: #f3efe6;
  text-align: center;
  padding: clamp(48px, 6vw, 72px) 24px;
}
.v2-press__eyebrow {
  display: block;
  font-family: var(--v2-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--v2-accent-2);
}
.v2-press__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  text-decoration: none;
  color: inherit;
}
.v2-press__outlet {
  font-family: var(--v2-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #f3efe6;
  line-height: 1.1;
}
.v2-press__date {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.6);
}
.v2-press__title {
  max-width: 720px;
  margin-top: 8px;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.88);
}
.v2-press__cta {
  margin-top: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--v2-accent-2);
  border-bottom: 2px solid var(--v2-accent-2);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.v2-press__item:hover .v2-press__cta { color: #f3efe6; border-color: #f3efe6; }

/* ---------- Rich-text pull quote ---------- */
.v2-quote {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}
.v2-quote p {
  font-family: var(--v2-head);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: var(--v2-ink);
  line-height: 1.45;
}

/* ---------- Image with text (50/50 rows) ---------- */
.v2-iwt {
  display: flex;
  align-items: stretch;
}
.v2-iwt--reverse { flex-direction: row-reverse; }

/* Tonal section system: each feature carries a soft tint of its venture's
   accent, with the heading and button keyed to the same hue — varied but
   harmonized, instead of alternating white/paper with identical buttons. */
.v2-iwt--ozark { background: #ecf1ec; }
.v2-iwt--ozark .v2-iwt__inner h2 { color: var(--v2-green); }

.v2-iwt--dandi { background: #faf3df; }
.v2-iwt--dandi .v2-iwt__inner h2 { color: #7a5c12; }
.v2-iwt--dandi .v2-iwt__button { color: #7a5c12; border-color: #7a5c12; }
.v2-iwt--dandi .v2-iwt__button:hover { color: #faf3df; border-color: #7a5c12; background: #7a5c12; }

/* Dandi brand panel: the logo sits in a deliberate app-icon card on a soft
   glow, so the section reads as one warm surface instead of clashing blocks */
.v2-iwt--dandi .v2-iwt__image--logo {
  background: radial-gradient(55% 45% at 50% 46%, #f4e6bd 0%, #faf3df 72%);
}
.v2-logo-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
.v2-iwt__image .v2-logo-card img {
  position: static;
  inset: auto;
  width: clamp(150px, 17vw, 220px);
  height: clamp(150px, 17vw, 220px);
  object-fit: contain;
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 30px 55px -18px rgba(122, 92, 18, 0.38);
}
.v2-logo-card__name {
  margin-top: 26px;
  font-family: var(--v2-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: #7a5c12;
}
.v2-logo-card__sub {
  margin-top: 4px;
  font-family: var(--v2-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8894a;
}

.v2-iwt--deloitte { background: var(--v2-paper); }

.v2-iwt--news { background: #f2eadf; }
.v2-iwt--news .v2-iwt__inner h2 { color: #8a5f2e; }
.v2-iwt--news .v2-iwt__button { color: #8a5f2e; border-color: #8a5f2e; }
.v2-iwt--news .v2-iwt__button:hover { color: #f2eadf; border-color: #8a5f2e; background: #8a5f2e; }

.v2-iwt__image, .v2-iwt__text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Copy columns sit on white; the section hue lives in the headings,
   buttons, and image panels */
.v2-iwt__text { background: var(--v2-white); }
.v2-iwt__image { position: relative; overflow: hidden; min-height: 520px; }
.v2-iwt__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-iwt__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  text-align: left;
}
.v2-iwt__inner h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.675rem);
  margin-bottom: 0.75em;
}
.v2-iwt__inner p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2em;
}

/* Kupp's "clear" button, recolored evergreen */
.v2-iwt__button {
  position: relative;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-green);
  border: solid 1px var(--v2-green);
  border-radius: 3px;
  background: transparent;
  padding: 15px 25px;
  font-family: var(--v2-text);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
}
.v2-iwt__button:hover { color: var(--v2-paper); border-color: var(--v2-green); background: var(--v2-green); }

/* Mobile-only CTA sitting on the image panel — cooperkupp.com's phone pattern
   (transparent fill, 1px white outline, 3px radius, 15px/25px, 11.6px, 2px
   tracking). Hidden on desktop, where the text-column button is used instead.
   Only one of the pair is ever in the layout or the accessibility tree. */
.v2-iwt__button--on-image { display: none; }

/* ---------- Newsletter ---------- */
.v2-newsletter {
  max-width: 560px;
  margin: 0 auto;
  padding: 88px 24px 96px;
  text-align: center;
}
.v2-newsletter__title { font-size: 1.25rem; margin-bottom: 0.6em; }
.v2-newsletter p { font-size: 1rem; line-height: 1.7; margin-bottom: 1.8em; }

.v2-newsletter__form {
  display: flex;
  border: 1px solid var(--v2-input-border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--v2-white);
}
.v2-newsletter__form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-family: var(--v2-text);
  font-size: 0.95rem;
  color: var(--v2-ink);
  background: var(--v2-white);
  min-width: 0;
}
.v2-newsletter__form button {
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: var(--v2-green);
  color: var(--v2-paper);
  font-family: var(--v2-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 26px;
  transition: background 0.15s ease;
}
.v2-newsletter__form button:hover { background: var(--v2-green-2); }

/* ---------- Ask AI about me — mirrors the classic site's dark .ask-ai block ---------- */
.v2-askai {
  background: #1a201b;               /* classic --dark-2, the forest grey */
  color: #f3efe6;                    /* classic --cream */
  padding: clamp(56px, 8vw, 96px) 24px;
  text-align: center;
}
.v2-askai__inner { max-width: 760px; margin: 0 auto; }
/* Not scoped to `.v2` — the Ask AI block ships in the shared footer, so it
   must style correctly on the classic-content pages too. */
.v2-askai .v2-askai__title {
  font-family: var(--v2-head);
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: #f3efe6;
}
.v2-askai__sub {
  margin: 18px auto 0;
  color: rgba(243, 239, 230, 0.74);
  max-width: 54ch;
  font-size: 1rem;
  line-height: 1.7;
}

.v2-askai__buttons {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.v2-ai-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--v2-text);
  font-size: 0.95rem;
  font-weight: 600;
  color: #f3efe6;
  background: rgba(243, 239, 230, 0.04);
  border: 1px solid rgba(243, 239, 230, 0.2);
  padding: 13px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.v2-ai-btn:hover {
  transform: translateY(-3px);
  background: rgba(243, 239, 230, 0.1);
  border-color: rgba(243, 239, 230, 0.45);
}
.v2-ai-btn__logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  object-fit: contain;
  flex: none;
  box-sizing: border-box;
}
@media (max-width: 560px) { .v2-askai__buttons { grid-template-columns: repeat(2, 1fr); } }

.v2-askai__note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--v2-accent-2);          /* classic --brass-2 */
  min-height: 1.2em;
}

/* ---------- Footer (dark, matching the classic site's .site-footer) ---------- */
.v2-footer {
  background: #161b17;               /* darker shade of the forest grey */
  border-top: 1px solid rgba(243, 239, 230, 0.12);
  text-align: center;
  padding: 44px 24px 40px;
}
.v2-footer__logo {
  font-family: var(--v2-script);
  font-size: 1.9rem;
  font-weight: 400;
  color: #f3efe6;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  min-height: 44px;                  /* touch target */
  padding: 0 8px;
}
.v2-footer__logo:hover { color: var(--v2-accent-2); }

.v2-footer__links {
  list-style: none;
  padding: 0;                        /* explicit: no global padding reset */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 18px;
  margin-top: 16px;
}
.v2-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;                  /* touch target */
  padding: 0 4px;
  font-family: var(--v2-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(243, 239, 230, 0.78);
}
.v2-footer__links a:hover { color: #f3efe6; }
.v2-footer__copyright {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.5);
}
.v2-footer__copyright a { color: rgba(243, 239, 230, 0.5); }

/* ---------- Fade-up on scroll (AOS-style) ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible { opacity: 1; transform: none; }

/* Reduced motion: show scroll-revealed content immediately rather than
   depending on the IntersectionObserver to un-hide it. */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Touch-target floor for the classic-content pages' inline links, which sit
   at ~24px tall by default (styles.css .text-link). */
@media (max-width: 860px) {
  .text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

/* ---------- Hover guards: touch devices shouldn't latch hover states ---------- */
@media (hover: none) {
  .v2-iwt__button:hover { color: inherit; background: transparent; }
  .v2-iwt--dandi .v2-iwt__button:hover { color: #7a5c12; background: transparent; }
  .v2-iwt--news .v2-iwt__button:hover { color: #8a5f2e; background: transparent; }
  .v2-ai-btn:hover { transform: none; background: rgba(243, 239, 230, 0.04); border-color: rgba(243, 239, 230, 0.2); }
  .v2-press__item:hover .v2-press__cta { color: var(--v2-accent-2); border-color: var(--v2-accent-2); }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  /* Logo centered, hamburger right — the inline links move into the drawer.
     Previously all 5 items stayed inline, needing 402px inside a 375px screen,
     which squeezed the script logo into the links. */
  .v2-header {
    grid-template-columns: 1fr auto 1fr;
    gap: 4px;
    padding: 6px 12px;
  }
  /* The social block is display:none here, so it is not placed on the grid at
     all — without explicit columns the nav and hamburger auto-place into
     tracks 1 and 2, stranding the hamburger mid-header. Pin them. */
  .v2-header__social { display: none; }
  .v2-header__nav > a:not(.v2-header__logo) { display: none; }
  .v2-header__nav { grid-column: 2; justify-content: center; gap: 0; }
  .v2-header__utility { grid-column: 3; }
  .v2-header__logo { font-size: 1.7rem !important; }
  .v2-header__utility .v2-header__textlink { display: none; }
  .v2-navtoggle { display: flex; }

  .v2-hero--full { height: auto; min-height: 72vh; min-height: 72svh; }
  .v2-hero--three-quarters { height: 48vh; height: 48svh; }
  .v2-hero__content--left {
    flex-direction: column;
    align-items: center;               /* eyebrow, title and portrait centred */
    justify-content: center;
    text-align: center;
    gap: 28px;
    padding: 64px clamp(20px, 6vw, 40px);
  }
  .v2-hero__portrait { width: min(62vw, 260px); }

  /* Feature rows, copied from cooperkupp.com's mobile layout: the text block
     comes FIRST with a large 36px heading, then a full-bleed image panel with
     the CTA centered on top of it. DOM order is image→text, so column-reverse
     puts the copy on top for both the natural and reversed variants. */
  .v2-iwt, .v2-iwt--reverse { flex-direction: column-reverse; }
  .v2-iwt__image, .v2-iwt__text { width: 100%; }
  .v2-iwt__image { min-height: 300px; }

  .v2-iwt__inner { padding: 50px; text-align: left; }
  .v2-iwt__inner h2 { font-size: 36px; line-height: 1.2; margin-bottom: 0.55em; }
  .v2-iwt__inner p { font-size: 16px; line-height: 1.5; margin-bottom: 0; }

  /* The text-column CTA gives way to the on-image one */
  .v2-iwt__text .v2-iwt__button { display: none; }
  /* `.v2-iwt` prefix so these beat the per-section colour rules
     (.v2-iwt--news .v2-iwt__button etc.), which are also two classes deep. */
  .v2-iwt .v2-iwt__button--on-image {
    display: inline-flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    background: transparent;
    padding: 15px 25px;
    font-size: 11.6px;
    letter-spacing: 2px;
    white-space: nowrap;               /* his buttons are a single 48px line */
    max-width: calc(100% - 32px);
    text-align: center;
  }
  /* Blake's photos are lighter than Kupp's, so deepen the scrim enough for the
     white outline button to read against them. */
  .v2-iwt--ozark .v2-iwt__image .v2-hero__overlay,
  .v2-iwt--deloitte .v2-iwt__image .v2-hero__overlay,
  .v2-iwt--news .v2-iwt__image .v2-hero__overlay { opacity: 0.35 !important; }

  /* The Dandi panel is a pale gold card, so white would vanish — use its own
     dark gold instead. Its panel also holds the logo lockup rather than a
     photo, so anchor the button beneath it instead of dead-centre, where it
     would sit on top of the mark. */
  .v2-iwt.v2-iwt--dandi .v2-iwt__button--on-image {
    color: #7a5c12;
    border-color: #7a5c12;
    top: auto;
    bottom: 26px;
    transform: translateX(-50%);
  }
  .v2-iwt--dandi .v2-logo-card { padding: 34px 0 96px; }

  .v2-quote { padding: 50px 24px; }

  .v2-press { padding: 44px 20px; }
  .v2-press__title { font-size: 0.92rem; }

  /* Footer: centered logo, then left-aligned uppercase link rows at
     10px / 2px tracking — his mobile footer arrangement. */
  .v2-footer { padding: 40px 25px 36px; }
  .v2-footer__links {
    justify-content: flex-start;
    text-align: left;
    gap: 0 20px;
    margin-top: 20px;
  }
  .v2-footer__links a { font-size: 10px; letter-spacing: 2px; }
  .v2-footer__copyright { font-size: 10px; letter-spacing: 2px; width: 100%; }
}

/* Very small phones: his 50px gutter leaves too little room for the copy */
@media (max-width: 360px) {
  .v2-iwt__inner { padding: 40px 28px; }
  .v2-iwt__inner h2 { font-size: 30px; }
}

/* ---------- Long-form prose (about page) ---------- */
.v2-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 24px;
}
.v2-prose p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--v2-body-color);
  margin-bottom: 1.5em;
}
.v2-prose p:last-child { margin-bottom: 0; }
.v2-prose h2 {
  font-family: var(--v2-head);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 600;
  color: var(--v2-green);
  margin: 2.2em 0 0.7em;
}
@media (max-width: 860px) {
  .v2-prose { padding: 56px 28px; }
  .v2-prose p { font-size: 1rem; line-height: 1.75; }
}

/* =========================================================
   MOBILE: centre-align everything (≤860px)
   Text alignment alone isn't enough — several components use
   asymmetric padding, absolutely-positioned bullets/icons, or
   flex alignment that would fight the centring. Those are
   normalised here too so the whole column reads as centred.
   ========================================================= */
@media (max-width: 860px) {
  main, main *,
  .v2-askai, .v2-askai *,
  .v2-footer, .v2-footer *,
  .scene, .scene *:not(.book__title) { text-align: center; }

  /* --- v2 feature rows --- */
  .v2-iwt__inner { text-align: center; }
  .v2-iwt__inner .v2-iwt__button { margin-inline: auto; }

  /* --- about-page prose --- */
  .v2-prose p, .v2-prose h2 { text-align: center; }

  /* --- classic page heroes --- */
  .page-hero__sub { margin-inline: auto; }

  /* --- venture / speaking cards --- */
  .venture-card__foot { justify-content: center; }
  .tagrow { justify-content: center; }
  /* bullet was absolutely positioned at left:0 with 22px of left padding —
     make it inline so the dot travels with the centred line */
  .venture-card__highlights li { padding-left: 0; }
  .venture-card__highlights li::before {
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    top: auto;
  }

  /* --- leadership --- */
  .lead-item__head { justify-content: center; flex-wrap: wrap; }
  .edu-card { text-align: center; }
  .edu-card__side { min-width: 0; }

  /* --- contact cards --- */
  .contact-card { align-items: center; }

  /* --- FAQ: symmetric padding so the centred question isn't pushed
         off-centre by the +/- indicator's 34px gutter --- */
  .faq__q { padding-left: 34px; padding-right: 34px; }
  .faq__a { margin-inline: auto; }

  /* --- footer + drawer --- */
  .v2-footer__links { justify-content: center; }
  .v2-mobile-nav a { justify-content: center; }
  .v2-mobile-nav__social { justify-content: center; }

  /* status chip is absolutely pinned to the top-left of the card image —
     centre it horizontally so it sits with the rest of the centred column */
  .venture-card__badge { left: 50%; transform: translateX(-50%); }

  /* --- bookshelf panels --- */
  .topbar { align-items: center; }
  .progress ul { display: inline-block; text-align: center; }
  .progress li { justify-content: center; }
  .nowpill { justify-content: center; }
  .nowpill__text { align-items: center; }
}
