/* ============================================================
   PATRICK MALLOY — Land. Legacy. Leverage.
   Luxury editorial design system. Dependency-free.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Pinyon+Script&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Ink + paper */
  --ink:        #0C0A09;   /* near black */
  --char:       #1A1613;   /* charcoal */
  --char-2:     #2A241F;
  --ivory:      #FFFFFF;   /* pure white canvas */
  --ivory-2:    #ECECEC;
  --paper:      #FFFFFF;   /* pure white */
  --warm-gray:  #8A8A8E;   /* neutral muted gray (no warm cast) */
  --warm-gray-2:#646469;
  --warm-line:  rgba(0, 0, 0, 0.085);
  --warm-line-2:rgba(0, 0, 0, 0.045);

  /* Brand */
  --green:      #1F3A2C;   /* deep forest / land */
  --green-2:    #2C4D3B;
  --green-deep: #16291F;
  --brass:      #A4823B;   /* muted gold / brass accent */
  --brass-2:    #C3A35E;   /* brighter brass for dark grounds */
  --brass-soft: rgba(164, 130, 59, 0.16);

  /* On-dark */
  --ondark:     #FFFFFF;
  --ondark-mut: #B7B7BC;
  --dark-line:  rgba(255, 255, 255, 0.15);

  /* Type — display = Montserrat (McMillan Method geometric look), body = Inter */
  --serif: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(2.75rem, 6vw, 5.5rem);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.5, 0, 0.75, 0);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--char);
  font-weight: 400;
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brass); color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: 1480px; }
.container--narrow { max-width: 880px; }
.section { padding-block: var(--section-y); position: relative; }
.dark { background: var(--ink); color: var(--ondark); }
.dark .eyebrow { color: var(--brass-2); }
.green-bg { background: var(--green-deep); color: var(--ondark); }
.green-bg .eyebrow { color: var(--brass-2); }
.paper { background: var(--paper); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--center::after {
  content: "";
  width: 30px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--center { justify-content: center; }

h1, h2, h3, .display { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.012em; }
.display-xl { font-size: clamp(3rem, 9vw, 7.5rem); font-weight: 700; line-height: 1; letter-spacing: -0.025em; }
.display-l  { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
.display-m  { font-size: clamp(2rem, 4vw, 3.3rem); }
.display-s  { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lede { font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.55; font-weight: 300; color: var(--warm-gray-2); letter-spacing: 0.003em; }
.dark .lede, .green-bg .lede { color: var(--ondark-mut); }
.prose p { margin-bottom: 1.35em; max-width: 68ch; }
.muted { color: var(--warm-gray-2); }
em, .italic { font-family: var(--serif); font-style: normal; }
.gold { color: var(--brass); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.05rem 2rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  border-radius: var(--radius);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.dark .btn--ghost, .green-bg .btn--ghost { color: var(--ondark); border-color: var(--dark-line); }
.dark .btn--ghost:hover, .green-bg .btn--ghost:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.btn--light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn--light:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 4px; position: relative;
}
.link-arrow::after { content:""; position:absolute; left:0; bottom:0; width:100%; height:1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow .arrow { transition: transform .4s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(5px); }
.dark .link-arrow, .green-bg .link-arrow { color: var(--ondark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: flex-start; gap: clamp(1.6rem, 4vw, 3.4rem);
  padding: 1.6rem var(--gutter);
  transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 1rem var(--gutter);
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav.on-hero { color: var(--paper); }
.nav.on-hero.scrolled { color: var(--char); }

.wordmark { display: flex; align-items: center; gap: 0.85rem; }
.wordmark .monogram {
  width: 38px; height: 38px; flex: none;
  border: 1px solid currentColor; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.wordmark:hover .monogram { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.wordmark .name { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; letter-spacing: 0.205em; line-height: 1; text-transform: uppercase; }
.wordmark .name small { display:block; font-family: var(--sans); font-size: 0.56rem; font-weight: 500; letter-spacing: 0.42em; text-transform: uppercase; opacity: 0.62; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.6rem); list-style: none; }
.nav-links a {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  position: relative; padding-block: 4px; opacity: 0.86; transition: opacity .3s;
}
.nav-links a::after { content:""; position:absolute; left:0; bottom:-2px; width:100%; height:1px; background: var(--brass); transform: scaleX(0); transform-origin:left; transition: transform .4s var(--ease); }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 0.6rem; }
.nav-cta a {
  border: 1px solid currentColor; padding: 0.6rem 1.2rem; border-radius: var(--radius);
  opacity: 1; transition: background .35s var(--ease), color .35s var(--ease), border-color .35s;
}
.nav-cta a::after { display:none; }
.nav-cta a:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 24px; height: 1.5px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink); color: var(--ondark);
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform .6s var(--ease); visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.2rem); font-weight: 500; padding-block: 0.45rem; border-bottom: 1px solid var(--dark-line); transition: color .3s, padding-left .4s var(--ease); }
.mobile-menu a:hover { color: var(--brass-2); padding-left: 0.8rem; }
.mobile-menu .mm-foot { margin-top: 2rem; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ondark-mut); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); color: var(--paper); }
.hero-media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; will-change: transform; }
.hero-media .ph-art { width: 100%; height: 100%; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 74% center; z-index: 1; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(102deg, rgba(12,10,9,0.84) 0%, rgba(12,10,9,0.5) 30%, rgba(12,10,9,0.12) 54%, rgba(12,10,9,0) 74%),
    linear-gradient(0deg, rgba(12,10,9,0.88) 0%, rgba(12,10,9,0.2) 34%, rgba(12,10,9,0) 56%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(5rem, 14vh, 9.5rem); padding-top: 8rem; }
.hero h1 { max-width: 16ch; }
.hero .eyebrow { color: var(--brass-2); margin-bottom: 2rem; }
.hero-sub { max-width: 56ch; margin-top: 2rem; color: rgba(237,231,218,0.86); font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.8rem; }
.hero-meta { position: absolute; z-index: 2; right: var(--gutter); bottom: clamp(3.5rem, 8vh, 7rem); text-align: right; display: none; }
.hero-meta .num { font-family: var(--serif); font-size: 1.1rem; }
.scroll-cue { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 2; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(237,231,218,0.6); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--brass-2), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--brass-2); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%{ top:-50% } 70%,100%{ top:100% } }

/* hero name + typed roles */
.hero-bw { filter: grayscale(1) contrast(1.05); }
.hero-textblock { max-width: min(760px, 72%); }
.hero-name { font-family: var(--serif); font-weight: 600; color: #fff; line-height: 1;
  font-size: clamp(1.85rem, 5.2vw, 4.3rem); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.hero-roles { margin-top: 1.35rem; display: block; min-height: 1.6em; }
.r-type { font-family: var(--sans); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: clamp(0.4rem, 1.25vw, 0.98rem); line-height: 1.7;
  color: var(--ondark); white-space: nowrap; }
.type-caret { display: inline-block; width: 2px; height: 1em; background: var(--brass-2);
  margin-left: 7px; transform: translateY(0.22em); animation: caret 1.05s steps(1) infinite; transition: opacity .6s; }
@keyframes caret { 50% { opacity: 0; } }
.hero .hero-cta { margin-top: 2.4rem; }
@media (max-width: 760px) { .hero-textblock { max-width: 100%; } .scroll-cue { display: none; } }

/* ============================================================
   STATS
   ============================================================ */
.stats-band { border-top: 1px solid var(--warm-line); border-bottom: 1px solid var(--warm-line); }
/* number columns (10, 23) narrow; word columns (Thousands, Hundreds) wide so the
   words can sit at the same point size as the numbers without overflowing */
.stats-grid { display: grid; grid-template-columns: minmax(0,0.8fr) minmax(0,1.7fr) minmax(0,1.7fr) minmax(0,0.8fr); }
.stat { padding: clamp(2.2rem, 4vw, 3.4rem) clamp(0.7rem, 1.4vw, 1.1rem); border-right: 1px solid var(--warm-line); position: relative; }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 500; line-height: 1; letter-spacing: -0.02em; color: var(--ink); display: flex; align-items: baseline; }
.stat .num .suf { font-size: 0.5em; margin-left: 0.12em; color: var(--brass); }
.stat .label { margin-top: 0.9rem; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-gray-2); }
.stats-sub { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--warm-line); }
.stats-sub .chip { padding: 1.5rem 1.4rem; border-right: 1px solid var(--warm-line); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: var(--char); display: flex; align-items: center; gap: 0.6rem; }
.stats-sub .chip:last-child { border-right: none; }
.stats-sub .chip .dot { width: 5px; height: 5px; background: var(--brass); border-radius: 50%; flex: none; }
.tbc { font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); border: 1px solid var(--warm-line); padding: 2px 7px; border-radius: 100px; margin-left: auto; white-space: nowrap; }

/* ============================================================
   SPLIT / BIO / POSITIONING
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--media-right { direction: ltr; }
.split-figure { position: relative; }
.split-figure .ph-frame { aspect-ratio: 4/5; }
.kicker-num { font-family: var(--serif); font-size: 0.9rem; color: var(--brass); letter-spacing: 0.1em; }
.section-head { max-width: 760px; }
.section-head h2 { margin-top: 1.4rem; }
.section-head .lede { margin-top: 1.6rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* Signature */
.signature { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--char); opacity: 0.85; margin-top: 1.5rem; }
.dark .signature { color: var(--ondark); }

/* ============================================================
   VENTURES
   ============================================================ */
.ventures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--dark-line); border: 1px solid var(--dark-line); margin-top: 3.5rem; }
.venture {
  background: var(--ink); padding: clamp(2rem, 3vw, 2.8rem); min-height: 320px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: background .5s var(--ease);
}
.venture::before { content:""; position:absolute; inset:0; background: radial-gradient(120% 120% at 100% 0%, var(--brass-soft), transparent 55%); opacity: 0; transition: opacity .6s var(--ease); }
.venture:hover { background: var(--char); }
.venture:hover::before { opacity: 1; }
.venture .v-index { font-family: var(--serif); font-size: 0.85rem; color: var(--brass-2); letter-spacing: 0.1em; }
.venture .v-icon { margin-top: 0.5rem; color: var(--brass-2); }
.venture h3 { font-size: 1.5rem; margin-top: auto; padding-top: 2.5rem; color: var(--ondark); letter-spacing: 0; }
.venture .v-sector { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ondark-mut); margin-top: 0.7rem; }
.venture .v-desc { font-size: 0.95rem; color: var(--ondark-mut); margin-top: 1rem; line-height: 1.6; font-weight: 300; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s var(--ease), opacity .5s var(--ease), margin .5s var(--ease); }
.venture:hover .v-desc { max-height: 200px; opacity: 1; }
.venture .v-arrow { margin-top: 1.4rem; color: var(--brass-2); transform: translateY(8px); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.venture:hover .v-arrow { transform: translateY(0); opacity: 1; }
.venture.tbc-card .v-index::after { content: "TBC"; font-family: var(--sans); font-size: 0.5rem; letter-spacing: 0.14em; border:1px solid var(--dark-line); color: var(--ondark-mut); padding: 2px 6px; border-radius: 100px; margin-left: 0.7rem; vertical-align: middle; }

/* ============================================================
   PORTFOLIO / LOGO WALL
   ============================================================ */
.portfolio-block { margin-top: 2.2rem; }
.lede-1line { font-size: clamp(0.9rem, 1.45vw, 1.25rem); white-space: nowrap; }
@media (max-width: 900px) { .lede-1line { white-space: normal; } }
.portfolio-label { display: flex; align-items: center; gap: 1.2rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 1.6rem; }
.portfolio-label::after { content: ""; flex: 1; height: 1px; background: var(--dark-line); }
.logo-wall { display: grid; border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.logo-wall.cols-5 { grid-template-columns: repeat(5, 1fr); }
.logo-wall.cols-6 { grid-template-columns: repeat(6, 1fr); }
.logo-tile {
  background: var(--ink); aspect-ratio: 1 / 0.82; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.4rem; padding: 1.4rem 1rem; text-align: center;
  position: relative; overflow: hidden; transition: background .5s var(--ease); cursor: default;
  border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line);
}
.logo-tile::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 0%, var(--brass-soft), transparent 60%); opacity: 0; transition: opacity .6s var(--ease); }
.logo-tile:hover { background: var(--char); }
.logo-tile:hover::after { opacity: 1; }
.logo-tile .lm-holder { color: var(--ondark); opacity: 0.92; height: 64px; display: flex; align-items: center; justify-content: center; transition: opacity .4s, color .4s; }
.logo-tile:hover .lm-holder { color: var(--brass-2); opacity: 1; }
.logo-tile .lt-cap { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ondark-mut); margin-top: 0.5rem; }

/* linked tiles — obvious clickable affordance (gold fill on hover) */
.logo-tile.linked { cursor: pointer; }
.logo-tile.linked:hover { background: var(--brass); }
.logo-tile.linked:hover::after { opacity: 0; }
.logo-tile.linked:hover .lm-holder,
.logo-tile.linked:hover .lt-cap,
.logo-tile.linked:hover .lm-practis-ai { color: var(--ink); opacity: 1; }
.lt-ext { position: absolute; top: 0.85rem; right: 0.95rem; color: var(--brass-2); opacity: 0; transform: translateY(-3px); transition: opacity .35s var(--ease), transform .35s var(--ease), color .35s; }
.logo-tile.linked:hover .lt-ext { opacity: 1; transform: none; color: var(--ink); }

/* logo marks (monochrome, currentColor) */
.lm { display: flex; flex-direction: column; align-items: center; justify-content: center; color: currentColor; line-height: 1; }
.lm-sub { font-family: var(--sans); letter-spacing: 0.34em; text-transform: uppercase; font-weight: 500; font-size: 0.6rem; margin-top: 0.45rem; }
.lm-sub--sm { font-size: 0.52rem; letter-spacing: 0.28em; }
.lm-sub--xs { font-size: 0.46rem; letter-spacing: 0.24em; }

.lm-pmc-row { display: flex; align-items: center; gap: 0.5rem; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em; }
.lm-bar { width: 1px; height: 1.1em; background: currentColor; }
.lm-pmc .lm-sub { font-size: 0.55rem; }

.lm-soleil .lm-fern { width: 22px; height: 26px; margin-bottom: 0.1rem; }
.lm-script { font-family: 'Pinyon Script', cursive; font-size: 2.4rem; line-height: 0.8; }
.lm-trilith span { font-family: var(--sans); font-weight: 300; font-size: 1.5rem; letter-spacing: 0.42em; padding-left: 0.42em; }

.lm-uer .lm-bridge { width: 96px; height: 22px; margin-bottom: 0.3rem; }

.lm-jjc { gap: 0.15rem; }
.lm-jjc .lm-jjmark { width: 26px; height: 26px; margin-bottom: 0.25rem; }
.lm-jjc-name { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; letter-spacing: 0.06em; }

.lm-practis { flex-direction: row; align-items: baseline; font-family: var(--sans); }
.lm-practis-word { font-weight: 600; font-size: 1.5rem; letter-spacing: -0.02em; }
.lm-practis-ai { font-weight: 300; font-size: 1.5rem; color: var(--brass-2); }

.lm-wordmark { gap: 0.3rem; }
.lm-wm-serif { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; letter-spacing: 0.12em; }
.lm-wm-thin { font-family: var(--sans); font-weight: 300; font-size: 0.62rem; letter-spacing: 0.34em; }

.lm-comm { align-items: center; text-align: center; gap: 0.32rem; }
.lm-comm-name { font-family: var(--serif); font-weight: 600; font-size: clamp(0.82rem, 1vw, 1rem); letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.14; }
.lm-comm-sub { font-family: var(--sans); font-weight: 400; font-size: 0.52rem; letter-spacing: 0.16em; text-transform: uppercase; color: inherit; opacity: 0.6; }

/* PMC flagship spans 3 cols in the top-left so the 13-tile wall has no empty blocks */
#communities-wall .logo-tile.flagship { grid-column: 1 / 4; grid-row: 1; aspect-ratio: auto; }
@media (max-width: 1024px) { #communities-wall .logo-tile.flagship { grid-column: 1 / 4; grid-row: 1; aspect-ratio: auto; } } /* cols-3: full row */
@media (max-width: 760px)  { #communities-wall .logo-tile.flagship { grid-column: 1 / 3; grid-row: 1; aspect-ratio: auto; } } /* cols-2: 2 boxes, evens out */

/* ============================================================
   METHOD (pillars)
   ============================================================ */
.method-pillars { margin-top: 3.5rem; border-top: 1px solid var(--dark-line); }
.pillar { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: clamp(1.5rem, 5vw, 5rem); padding: clamp(2.2rem, 4vw, 3.2rem) 0; border-bottom: 1px solid var(--dark-line); align-items: baseline; }
.pillar .p-left { display: flex; gap: 1.4rem; align-items: baseline; }
.pillar .p-num { font-family: var(--serif); font-size: 0.9rem; color: var(--brass-2); }
.pillar .p-name { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; color: var(--ondark); transition: color .4s, transform .5s var(--ease); }
.pillar .p-body { font-size: clamp(1rem, 1.4vw, 1.18rem); font-weight: 300; color: var(--ondark-mut); line-height: 1.6; max-width: 60ch; }
.pillar:hover .p-name { color: var(--brass-2); }

/* ============================================================
   INSIGHTS / ARTICLE CARDS
   ============================================================ */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 2.6vw, 2.4rem); margin-top: 3.5rem; }
.article-card { display: flex; flex-direction: column; cursor: pointer; }
.article-card .ph-frame { aspect-ratio: 3/2; margin-bottom: 1.5rem; overflow: hidden; }
.article-card .ph-art { transition: transform 1s var(--ease); }
.article-card:hover .ph-art { transform: scale(1.06); }
.article-card .meta { display: flex; gap: 0.9rem; align-items: center; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 0.9rem; }
.article-card .meta .cat { color: var(--brass); }
.article-card h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 500; line-height: 1.2; transition: color .3s; }
.article-card:hover h3 { color: var(--brass); }
.article-card .excerpt { margin-top: 0.8rem; font-size: 0.92rem; color: var(--warm-gray-2); font-weight: 300; }
.article-card--feature { grid-column: span 3; display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; padding-bottom: clamp(1.5rem, 3vw, 2.5rem); border-bottom: 1px solid var(--warm-line); }
.article-card--feature .ph-frame { aspect-ratio: 16/10; margin-bottom: 0; }
.article-card--feature h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.dark .article-card h3 { color: var(--ondark); }
.dark .article-card:hover h3 { color: var(--brass-2); }
.dark .article-card .meta { color: var(--ondark-mut); }

/* ============================================================
   QUOTE / PULL
   ============================================================ */
.br-mobile { display: none; }
@media (max-width: 760px) { .br-mobile { display: inline; } }
.bigquote { text-align: center; max-width: 980px; margin-inline: auto; }
.bigquote blockquote { font-family: var(--serif); font-size: clamp(1.6rem, 3.6vw, 2.9rem); font-weight: 400; line-height: 1.28; letter-spacing: -0.01em; }
.bigquote .mark { font-family: var(--serif); font-size: 4rem; color: var(--brass-2); line-height: 0; display: block; margin-bottom: 1.5rem; }
.bigquote cite { display: block; margin-top: 2.2rem; font-family: var(--sans); font-style: normal; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-2); }

/* ============================================================
   PRESS
   ============================================================ */
.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--warm-line); border: 1px solid var(--warm-line); margin-top: 3.5rem; }
.press-item { background: var(--ivory); padding: clamp(1.8rem, 3vw, 2.6rem); transition: background .4s; }
.press-item:hover { background: var(--paper); }
.press-item .p-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.press-item .p-source { font-family: var(--serif); font-size: 1.25rem; }
.press-item .p-year { font-size: 0.72rem; letter-spacing: 0.16em; color: var(--warm-gray); }
.press-item .p-quote { margin-top: 1rem; font-size: 1.02rem; line-height: 1.55; color: var(--char); font-weight: 300; }
.press-item .p-tag { margin-top: 1.4rem; font-size: 0.64rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); }
/* Featured-in publication strip */
.press-logos { display: flex; flex-direction: column; align-items: center; gap: clamp(1.6rem, 3vw, 2.6rem); margin-top: 2.8rem; }
.press-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.4rem, 3.2vw, 3rem); width: 100%; }
.press-logo { color: var(--char); opacity: 0.55; display: flex; align-items: center; }
/* no hover state on Featured In wordmarks */
.pl { line-height: 1; white-space: nowrap; }
.pl-bi  { font-family: var(--sans); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.pl-ad  { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; letter-spacing: 0.01em; }
.pl-usa { font-family: var(--sans); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; display: flex; align-items: center; gap: 7px; }
.pl-usa .pl-dot { width: 13px; height: 13px; border-radius: 50%; background: currentColor; display: inline-block; }
.pl-abc { font-family: var(--serif); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.05em; }
.pl-yf { font-family: var(--sans); display: inline-flex; align-items: baseline; gap: 4px; }
.pl-yf b { font-weight: 800; font-size: 1.12rem; letter-spacing: -0.03em; }
.pl-yf-fin { font-weight: 400; font-size: 1.02rem; letter-spacing: -0.01em; }

.awards-strip { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.5rem; justify-content: center; }
.award-pill { border: 1px solid var(--warm-line); padding: 0.7rem 1.2rem; border-radius: 100px; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.06em; display: flex; align-items: center; gap: 0.55rem; }
.award-pill .star { color: var(--brass); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
@media (min-width: 761px) { .contact-form-wrap { margin-top: 3.2rem; } }
.form { display: grid; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ondark-mut); }
.field input, .field select, .field textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--dark-line);
  color: var(--ondark); font-family: var(--sans); font-size: 1rem; padding: 0.7rem 0; border-radius: 0;
  transition: border-color .4s var(--ease);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass-2); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A39A8B' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; }
.field option { background: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--ondark-mut); opacity: 0.55; }
.form .btn { justify-self: start; margin-top: 0.5rem; }
.form-note { font-size: 0.78rem; color: var(--ondark-mut); }
.contact-aside .ci { padding: 1.6rem 0; border-bottom: 1px solid var(--dark-line); }
.contact-aside .ci:first-child { padding-top: 0; }
.contact-aside .ci .k { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-2); }
.contact-aside .ci .v { font-family: var(--serif); font-size: 1.4rem; margin-top: 0.5rem; }
.form-success { display: none; padding: 1.1rem 1.4rem; border: 1px solid var(--brass-2); border-radius: var(--radius); color: var(--ondark); font-size: 0.92rem; background: var(--brass-soft); }
.form-success.show { display: block; }

/* White section (light contact) — black text on white */
.section--white { background: #ffffff; color: var(--ink); }
.section--white .eyebrow { color: var(--brass); }
.section--white h2, .section--white .display-s, .section--white .display-l { color: var(--ink); }
.section--white .lede, .section--white p { color: var(--warm-gray-2); }
.section--white .gold { color: var(--brass); }
.section--white .field label { color: var(--warm-gray-2); }
.section--white .field input, .section--white .field select, .section--white .field textarea { color: var(--ink); border-bottom-color: var(--warm-line); }
.section--white .field input:focus, .section--white .field select:focus, .section--white .field textarea:focus { border-color: var(--brass); }
.section--white .field input::placeholder, .section--white .field textarea::placeholder { color: var(--warm-gray); }
.section--white .field option { background: #fff; color: var(--ink); }
.section--white .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1613' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); }
.section--white .contact-aside .ci { border-bottom-color: var(--warm-line); }
.section--white .contact-aside .ci .k { color: var(--brass); }
.section--white .contact-aside .ci .v { color: var(--ink); }
.section--white .form-note { color: var(--warm-gray); }
.section--white .btn--light { background: var(--ink); border-color: var(--ink); color: #fff; }
.section--white .btn--light:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.section--white .form-success { color: var(--ink); border-color: var(--brass); background: rgba(164, 130, 59, 0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--ondark); padding-top: clamp(2.25rem, 4vw, 3.25rem); padding-bottom: 2rem; }
.footer-bottom--solo { padding-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid var(--dark-line); }
.footer .f-tag { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); max-width: 16ch; margin-top: 1.5rem; }
.footer .f-positioning { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-2); margin-top: 1.5rem; }
.footer-col h4 { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ondark-mut); margin-bottom: 1.4rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.9rem; }
.footer-col a { font-size: 0.95rem; opacity: 0.85; transition: opacity .3s, color .3s, padding-left .3s var(--ease); }
.footer-col a:hover { opacity: 1; color: var(--brass-2); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2.5rem; font-size: 0.74rem; color: var(--ondark-mut); }
.footer-bottom .legal { max-width: 60ch; line-height: 1.6; }

/* ============================================================
   PLACEHOLDER ART (image stand-ins)
   ============================================================ */
.ph-frame { position: relative; overflow: hidden; background: var(--char); border-radius: var(--radius); }
.ph-art { width: 100%; height: 100%; object-fit: cover; }
.photo-bw { filter: grayscale(1) contrast(1.04); }
.ph-tag {
  position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 3;
  font-size: 0.54rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(237,231,218,0.78); background: rgba(12,10,9,0.4); backdrop-filter: blur(6px);
  padding: 4px 9px; border-radius: 100px; border: 1px solid rgba(237,231,218,0.16);
}
.ph-grain { position: absolute; inset: 0; z-index: 2; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); mix-blend-mode: overlay; }
.parallax-media { will-change: transform; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
.line-reveal { display: block; overflow: hidden; }
.line-reveal > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.line-reveal.in > span { transform: none; }
.line-reveal.d1 > span { transition-delay: .1s; }
.line-reveal.d2 > span { transition-delay: .2s; }
.line-reveal.d3 > span { transition-delay: .3s; }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero { padding-top: 9rem; padding-bottom: 3rem; }
.article-hero .crumbs { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 2rem; }
.article-hero .crumbs a:hover { color: var(--brass); }
.article-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 18ch; margin-block: 1.4rem; }
.article-hero .a-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-gray-2); }
.article-hero .a-meta .cat { color: var(--brass); font-weight: 500; }
.article-figure { aspect-ratio: 21/9; margin-block: clamp(2.5rem, 5vw, 4rem); }
.article-body { max-width: 720px; margin-inline: auto; font-size: 1.18rem; line-height: 1.75; color: var(--char-2); }
.article-body .dropcap::first-letter { font-family: var(--serif); font-size: 3.6em; line-height: 0.78; float: left; padding: 0.05em 0.12em 0 0; color: var(--brass); font-weight: 600; }
.article-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.6em; margin-bottom: 0.7em; }
.article-body p { margin-bottom: 1.5em; }
.article-body .pullquote { font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.32; color: var(--green); border-left: 2px solid var(--brass); padding-left: 1.6rem; margin: 2.4em 0; font-style: italic; }
.article-body .ph-frame { aspect-ratio: 16/9; margin: 2.4em 0; }
.article-foot { max-width: 720px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--warm-line); display: flex; align-items: center; gap: 1.2rem; }
.author-chip { display: flex; align-items: center; gap: 1rem; }
.author-chip .ac-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex: none; }
.author-chip .ac-name { font-family: var(--serif); font-size: 1.15rem; }
.author-chip .ac-role { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); margin-top: 2px; }

/* placeholder banner */
.ph-banner { background: var(--brass-soft); border-bottom: 1px solid var(--warm-line); color: var(--warm-gray-2); font-size: 0.72rem; letter-spacing: 0.1em; text-align: center; padding: 0.5rem 1.2rem; line-height: 1.4; position: fixed; top: 0; left: 0; right: 0; z-index: 95; backdrop-filter: blur(10px); background-color: rgba(220, 200, 160, 0.92); }
.ph-banner strong { color: var(--brass); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--warm-line); }
  .stats-sub { grid-template-columns: repeat(3, 1fr); }
  .stats-sub .chip:nth-child(3) { border-right: none; }
  .stats-sub .chip:nth-child(-n+3) { border-bottom: 1px solid var(--warm-line); }
  .ventures-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-wall.cols-5, .logo-wall.cols-6 { grid-template-columns: repeat(3, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer .f-block-main { grid-column: span 2; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  /* shrink stat numbers so word-stats ("Thousands"/"Hundreds") fit the narrow 2-col cells */
  .stat .num { font-size: clamp(1.6rem, 7vw, 2.5rem); min-height: clamp(1.6rem, 7vw, 2.5rem); }
  .stat { padding-inline: clamp(0.9rem, 3vw, 1.4rem); }
  .split, .contact-grid, .article-card--feature { grid-template-columns: 1fr; }
  .article-card--feature { grid-column: span 1; }
  .split--media-right .split-figure { order: -1; }
  .stats-sub { grid-template-columns: repeat(2, 1fr); }
  .stats-sub .chip { border-right: 1px solid var(--warm-line); }
  .stats-sub .chip:nth-child(2n) { border-right: none; }
  .stats-sub .chip:nth-child(-n+4) { border-bottom: 1px solid var(--warm-line); }
  .ventures-grid, .insights-grid, .press-grid { grid-template-columns: 1fr; }
  .logo-wall.cols-5, .logo-wall.cols-6 { grid-template-columns: repeat(2, 1fr); }
  .logo-tile { aspect-ratio: 1 / 0.7; }
  .pillar { grid-template-columns: 1fr; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer .f-block-main { grid-column: span 1; }
  .hero .eyebrow { margin-bottom: 1.4rem; }
  .venture .v-desc { max-height: 200px; opacity: 1; }
  .venture .v-arrow { opacity: 1; transform: none; }
}
@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  .hero-media { inset: 0; }
}

/* ============================================================
   ERICA McMILLAN — additions (slider, image logos, brand boxes)
   ============================================================ */

/* ---- HERO SLIDER (exact press photos, marquee) ---- */
.slider-band { background: var(--ink); padding: clamp(1.6rem, 3vw, 2.6rem) 0; overflow: hidden; border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.slider-mask { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.slider-track { display: flex; gap: clamp(0.9rem, 1.6vw, 1.4rem); width: max-content; animation: slider-marquee 70s linear infinite; }
.slider-band:hover .slider-track { animation-play-state: paused; }
.slider-track .slide { flex: 0 0 auto; width: clamp(180px, 22vw, 248px); aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; background: #111; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.slider-track .slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.slider-track .slide--link { cursor: pointer; display: block; }
.slider-track .slide--link:hover img { transform: scale(1.05); }
.slider-track .slide--link::after {
  content: ""; position: absolute; inset: 0; border-radius: 10px;
  box-shadow: inset 0 0 0 2px var(--brass-2); opacity: 0; transition: opacity .35s var(--ease);
}
.slider-track .slide--link { position: relative; }
.slider-track .slide--link:hover::after { opacity: 1; }
@keyframes slider-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .slider-track { animation: none; flex-wrap: nowrap; overflow-x: auto; } }

/* ---- IMAGE / BRAND-LOCKUP LOGO TILES (clean white cards on the dark wall) ---- */
.lm-holder--img {
  height: auto; width: 100%; background: #fff; border-radius: 10px;
  padding: 1rem 1.1rem; min-height: 96px; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.logo-tile:hover .lm-holder--img { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.4); }
.lm-img { max-width: 100%; max-height: 64px; width: auto; object-fit: contain; display: block; }
.logo-tile.linked:hover .lm-holder--img { background: #fff; }

/* ---- CrowdCarts / CrowdTakes official lockups ---- */
.lm-crowd { width: 100%; }
.lm-crowd-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.lm-cc-mark { width: 34px; height: 34px; flex: 0 0 auto; }
.lm-cc-mark path { fill: #1a1a1a; }
.lm-crowd-name { font-family: var(--sans); font-weight: 900; font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -0.02em; white-space: nowrap; }
.cc-crowd { color: #16a34a; }   /* mint */
.cc-carts { color: #ec4899; }   /* pink */
.cc-takes { color: #1a1a1a; }   /* ink */

/* ---- "Building Now" feature row (CrowdCarts + CrowdTakes, 2-up) ---- */
.logo-wall.cols-2 { grid-template-columns: repeat(2, 1fr); }
.logo-wall--feature .logo-tile { padding-block: clamp(2.4rem, 4vw, 3.4rem); }
.logo-wall--feature .lm-holder--img { min-height: 120px; }
@media (max-width: 700px) { .logo-wall.cols-2 { grid-template-columns: 1fr; } }

/* ---- Portrait placeholder (hero photo coming) ---- */
.ph-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #15110b, #2a2114); color: var(--brass-2);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; border: 1px solid var(--dark-line);
}

/* ---- BRAND GALLERY — square logo tiles, hover reveals exact title + description ---- */
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.5rem, 1vw, 0.9rem); }
@media (max-width: 1000px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .brand-grid { grid-template-columns: repeat(2, 1fr); } }

.brand-sq {
  position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: 6px; background: transparent; border: none;
  text-decoration: none; color: inherit;
}
.brand-sq:hover { overflow: visible; z-index: 20; }
.brand-sq .brand-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  box-sizing: border-box;
  transition: transform .7s var(--ease), filter .5s var(--ease);
}
/* squarer logos (e.g. McMillan) fit inside on their own bg so text isn't cropped */
.brand-sq .brand-img--contain { object-fit: contain; }
.brand-sq.linked { cursor: pointer; }
.brand-sq:hover .brand-img { transform: scale(1.06); filter: brightness(0.22) saturate(0.9); }

.brand-ov {
  position: absolute; top: 0; left: 0; right: 0; bottom: auto; min-height: 100%; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(0.6rem, 1.2vw, 0.95rem); text-align: left; border-radius: 6px;
  background: rgba(8,7,5,0.97);
  opacity: 0; transition: opacity .4s var(--ease);
}
.brand-sq:hover .brand-ov { opacity: 1; }
.brand-ov-title {
  font-family: var(--serif); font-weight: 600; color: var(--brass-2);
  font-size: clamp(0.74rem, 1.1vw, 0.9rem); line-height: 1.15; letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 0.35rem;
}
.brand-ov-ext { display: inline-flex; opacity: 0.8; color: var(--brass-2); }
.brand-ov-desc {
  margin-top: 0.35rem; color: #ffffff;
  font-size: clamp(0.52rem, 0.8vw, 0.64rem); line-height: 1.32; font-weight: 400;
}

/* keep every stat number row the same height + bottom-aligned so the labels line up */
.stat .num { min-height: clamp(2.6rem, 5vw, 4rem); align-items: flex-end; }
/* word-stats: count-up digits are full size; the final WORD shrinks so it never
   widens its grid cell (toggled by JS — num--shrunk added when the word is shown) */
.stat .num--word { white-space: nowrap; }
/* DESKTOP ONLY: words match the numbers' size (the wide columns give them room).
   On tablet/mobile this rule is absent, so word-stats fall back to the smaller
   .stat .num size and fit the narrow 2-col cells (no horizontal overflow). */
@media (min-width: 1025px) {
  .stat .num--shrunk { font-size: clamp(2.6rem, 5vw, 4rem); }
}

/* ---- ABOUT social row (under the portrait) ---- */
.about-social { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.1rem; flex-wrap: wrap; }
.about-site {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--paper); background: var(--ink); padding: 0.7rem 1.1rem; border-radius: 8px;
  text-decoration: none; transition: background .35s var(--ease);
}
.about-site:hover { background: var(--brass); color: var(--ink); }
.about-social .soc {
  width: 42px; height: 42px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); background: transparent; border: 1px solid var(--warm-line);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.about-social .soc:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---- BUILDING NOW — clean brand cards (no descriptions) ---- */
.build-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.6rem, 1.4vw, 1rem); }
.build-card {
  display: flex; align-items: center; justify-content: center; min-height: 150px;
  background: #fff; border-radius: 14px; padding: 1.5rem; text-decoration: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.build-card.linked { cursor: pointer; }
.build-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.build-card-inner { display: flex; align-items: center; justify-content: center; }
.build-card .lm-crowd-name { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.build-card .lm-cc-mark { width: 40px; height: 40px; }
@media (max-width: 600px) { .build-grid { grid-template-columns: 1fr; } }

/* ---- FEATURED IN wordmarks (press-slider outlets) ---- */
.pl-forbes       { font-family: var(--serif); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.01em; }
.pl-entrepreneur { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; letter-spacing: 0.01em; }
.pl-newsweek     { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; letter-spacing: 0.01em; }
.pl-fox          { font-family: var(--sans); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.06em; }
.pl-ls           { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; letter-spacing: 0.01em; }
.pl-ceo          { font-family: var(--sans); font-weight: 800; font-size: 1rem; letter-spacing: 0.1em; }
.pl-flaunt       { font-family: var(--sans); font-weight: 800; font-size: 1.1rem; letter-spacing: 0.18em; }
.pl-ok b         { font-family: var(--sans); font-weight: 900; font-size: 1.35rem; letter-spacing: -0.02em; }
.pl-ph           { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.01em; }
.pl-bloomberg    { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; letter-spacing: 0.01em; }
.pl-dj           { font-family: var(--sans); font-weight: 600; font-size: 1rem; letter-spacing: 0.02em; }
.pl-inc          { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.01em; }
