/* =========================================================
   SHATVIX — HOMEPAGE V2
   Additive layer on top of style.css. Scoped to body.v2
   so it doesn't bleed into about / pillars / contact.
   ========================================================= */

/* ---- Instrument Serif for highlight italics ---- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

body.v2 {
  --accent: #F2541B;
  --accent-deep: #CE410C;
  --accent-soft: #FCE4D6;
  --grain-opacity: 0.16;
  --serif-em: 'Instrument Serif', serif;
}

/* =========================================================
   GRAIN OVERLAY
   Fixed, low-opacity SVG noise — adds warmth.
   ========================================================= */

body.v2::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.07 0 0 0 0 0.04 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
body.v2.no-grain::after { display: none; }

/* =========================================================
   SERIF ITALIC HIGHLIGHTS
   The single biggest type-personality upgrade.
   ========================================================= */

body.v2 .serif-em {
  font-family: var(--serif-em);
  font-style: italic;
  font-weight: 400;
  font-size: 0.94em;
  color: var(--accent-deep);
  letter-spacing: -0.005em;
}
body.v2.no-serif .serif-em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1em;
  color: var(--accent);
}

/* Override default em behavior on the home page only */
body.v2 .hero-title em,
body.v2 .section-title em,
body.v2 .page-title em {
  color: var(--accent-deep);
}

/* =========================================================
   SECTION NUMBERING (markups.ai style)
   ========================================================= */

body.v2 .section-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-deep);
  margin-bottom: 18px;
}
body.v2 .section-num::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 999px;
}
body.v2 .section-num em {
  font-family: var(--serif-em);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--accent-deep);
  letter-spacing: 0;
}

/* =========================================================
   HERO — Confident Dark
   ========================================================= */

body.v2 .hero-v2 {
  position: relative;
  min-height: 100vh;
  background: #1C140F;
  color: #F4E7D8;
  padding: 130px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(244,231,216,0.08);
}

/* On dark-hero pages, the fixed nav is reversed-out until it scrolls
   off the hero — then it picks up a .scrolled class (set by main.js) and
   reverts to the light/cream treatment. Inner pages without a dark hero
   never get .with-dark-hero, so they use the default light navbar. */
body.v2.with-dark-hero .navbar {
  background: rgba(28, 20, 15, 0.78);
  border-bottom: 1px solid rgba(244,231,216,0.10);
}
/* The packaged logo.png is dark — flip it to white over the dark hero,
   then snap back to the original artwork once .scrolled lands. */
body.v2.with-dark-hero .navbar .logo img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
body.v2.with-dark-hero .navbar.scrolled .logo img {
  filter: none;
}
body.v2.with-dark-hero .navbar .logo,
body.v2.with-dark-hero .navbar .nav-links a {
  color: #F4E7D8;
}
body.v2.with-dark-hero .navbar .nav-links a:hover,
body.v2.with-dark-hero .navbar .nav-links a.active-link {
  color: var(--accent);
}
body.v2.with-dark-hero .navbar .nav-links a::after { background: var(--accent); }
body.v2.with-dark-hero .navbar.scrolled {
  background: rgba(251, 241, 232, 0.92) !important;
}
body.v2.with-dark-hero .navbar.scrolled .logo,
body.v2.with-dark-hero .navbar.scrolled .nav-links a {
  color: var(--ink);
}
body.v2.with-dark-hero .navbar.scrolled .nav-links a:hover {
  color: var(--accent-deep);
}

/* Light pages: cream navbar with subtle border + scroll-shadow on .scrolled */
body.v2:not(.with-dark-hero) .navbar {
  background: rgba(251, 241, 232, 0.85);
}
body.v2:not(.with-dark-hero) .navbar.scrolled {
  background: rgba(251, 241, 232, 0.97);
  box-shadow: 0 6px 24px rgba(70, 35, 12, 0.06);
}

/* Hero glow + decorative geometry */
body.v2 .hero-v2::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242,84,27,0.22), rgba(242,84,27,0) 65%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-v2-geo {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.hero-v2-ring-1 {
  right: -240px;
  top: 60px;
  width: 620px;
  height: 620px;
  border: 1.2px solid rgba(242,84,27,0.45);
  animation: slowSpin 90s linear infinite;
}
.hero-v2-ring-2 {
  right: -80px;
  top: 180px;
  width: 380px;
  height: 380px;
  border: 1.2px dashed rgba(244,231,216,0.18);
  animation: slowSpin 70s linear infinite reverse;
}
.hero-v2-dot {
  right: 22%;
  top: 32%;
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(242,84,27,0.18);
}

body.v2 .hero-v2 .container {
  position: relative;
  z-index: 2;
}

body.v2 .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
body.v2 .hero-eyebrow .rule {
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}
body.v2 .hero-eyebrow .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

body.v2 .hero-v2 h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #F4E7D8;
  max-width: 16ch;
  margin: 0;
}

body.v2 .hero-v2 .hero-sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(244,231,216,0.74);
  max-width: 640px;
  margin: 36px 0 44px;
  font-weight: 400;
}

body.v2 .hero-v2 .hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
body.v2 .hero-v2 .btn-primary {
  background: var(--accent);
  color: #1C140F;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(242,84,27,0.40);
}
body.v2 .hero-v2 .btn-primary:hover {
  background: #FF6B36;
  color: #1C140F;
}
body.v2 .hero-v2 .btn-secondary {
  background: transparent;
  color: #F4E7D8;
  border: 1.5px solid rgba(244,231,216,0.4);
}
body.v2 .hero-v2 .btn-secondary:hover {
  background: rgba(244,231,216,0.06);
  color: #F4E7D8;
  border-color: rgba(244,231,216,0.7);
}

/* Pull-quote card in the hero corner */
body.v2 .hero-quote {
  position: absolute;
  right: 5%;
  bottom: 120px;
  max-width: 320px;
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  z-index: 3;
}
body.v2 .hero-quote q {
  font-family: var(--serif-em);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #F4E7D8;
  display: block;
  quotes: '“' '”';
}
body.v2 .hero-quote q::before { content: open-quote; }
body.v2 .hero-quote q::after  { content: close-quote; }
body.v2 .hero-quote .src {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 14px;
  font-weight: 700;
}

/* Marquee */
.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 74px;
  border-top: 1px solid rgba(244,231,216,0.10);
  background: rgba(28,20,15,0.4);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 4;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  padding-left: 56px;
  animation: marqueeScroll 38s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: #F4E7D8;
}
.marquee-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   GENERAL SECTION TWEAKS (v2 scope)
   ========================================================= */

body.v2 section { padding: 130px 0; }
body.v2 .section-title {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 22ch;
}

/* Big numeric meta on grid-2 split sections */
body.v2 .grid-2 .col-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.v2 .grid-2 .col-meta .big-no {
  font-family: var(--serif-em);
  font-style: italic;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent-deep);
  margin-top: 16px;
}

/* =========================================================
   PRINCIPLES (the four C's) — numbered editorial cards
   ========================================================= */

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--border-2);
  border-left: 1px solid var(--border-2);
}
.principle {
  padding: 38px 32px 44px;
  border-right: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: var(--peach);
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
}
.principle:hover {
  background: #fff;
  transform: translateY(-2px);
}
.principle .num {
  font-family: var(--serif-em);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--accent-deep);
  margin-bottom: 24px;
  display: block;
}
.principle .mark {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: var(--accent-deep);
}
.principle h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink);
}
.principle p {
  font-size: 0.96rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .principles-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PILLARS (the 4 verticals) — larger asymmetric cards
   ========================================================= */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pillar-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 40px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 16px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.pillar-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(242,84,27,0.10), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pillar-v2:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
  box-shadow: 0 22px 55px rgba(70,35,12,0.08);
}
.pillar-v2:hover::before { opacity: 1; }

.pillar-v2 .pill-num {
  grid-column: 1;
  font-family: var(--serif-em);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
  align-self: start;
}
.pillar-v2 .pill-icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--peach-3);
  display: grid;
  place-items: center;
  align-self: start;
}
.pillar-v2 .pill-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.pillar-v2 h3 {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.pillar-v2 p {
  grid-column: 1 / span 2;
  margin: 4px 0 0;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 52ch;
}
.pillar-v2 .pill-cta {
  grid-column: 1 / span 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.pillar-v2 .pill-cta::after {
  content: '→';
  transition: transform 0.25s ease;
}
.pillar-v2:hover .pill-cta::after {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-v2 { padding: 32px; }
  .pillar-v2 h3 { font-size: 1.5rem; }
}

/* =========================================================
   DARK MID-PAGE SECTION ("Information is abundant…")
   ========================================================= */

.dark-section {
  background: #1C140F;
  color: #F4E7D8;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(244,231,216,0.06);
  border-bottom: 1px solid rgba(244,231,216,0.06);
}
.dark-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  border: 1px solid rgba(242,84,27,0.30);
  border-radius: 50%;
  pointer-events: none;
}
.dark-section .section-num {
  color: var(--accent);
}
.dark-section .section-num::before { background: var(--accent); }
.dark-section .section-num em { color: var(--accent); }
.dark-section .section-title,
.dark-section h2 {
  color: #F4E7D8;
}
.dark-section .body-large {
  color: rgba(244,231,216,0.78);
}
.dark-section .serif-em {
  color: var(--accent);
}

.dark-quote {
  font-family: var(--serif-em);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F4E7D8;
  margin: 0 0 32px;
  max-width: 22ch;
}
.dark-quote em {
  font-style: italic;
  color: var(--accent);
}

/* =========================================================
   INSIGHTS V2 — bigger, image-first cards
   ========================================================= */

body.v2 .insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
body.v2 .insight-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
body.v2 .insight-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(70,35,12,0.10);
}
body.v2 .insight-v2 .img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--peach-2);
}
body.v2 .insight-v2 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
body.v2 .insight-v2:hover .img-wrap img {
  transform: scale(1.04);
}
body.v2 .insight-v2 .body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
body.v2 .insight-v2 .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
body.v2 .insight-v2 .meta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
body.v2 .insight-v2 h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
body.v2 .insight-v2 p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
body.v2 .insight-v2 .read {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
}

@media (max-width: 992px) {
  body.v2 .insights-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   GALLERY V2 — Conclave photos with treatment
   ========================================================= */

body.v2 .gallery-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  margin-top: 60px;
  height: 460px;
}
body.v2 .gallery-v2 > a,
body.v2 .gallery-v2 > div {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--peach-2);
}
body.v2 .gallery-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
body.v2 .gallery-v2 > div:hover img,
body.v2 .gallery-v2 > a:hover img {
  transform: scale(1.05);
}
body.v2 .gallery-v2 .gal-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(28,20,15,0.78);
  color: #F4E7D8;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  body.v2 .gallery-v2 {
    grid-template-columns: 1fr;
    height: auto;
  }
  body.v2 .gallery-v2 > a,
  body.v2 .gallery-v2 > div {
    height: 260px;
  }
}

/* =========================================================
   BRIDGING IDEAS BANNER (existing image) — polish
   ========================================================= */

body.v2 .bi-banner {
  margin-top: 50px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: block;
  border: 1px solid var(--border);
  background: var(--peach-2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
body.v2 .bi-banner img {
  width: 100%;
  height: auto;
  display: block;
}
body.v2 .bi-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(70,35,12,0.10);
}
body.v2 .bi-banner .bi-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
body.v2 .bi-banner .bi-play span {
  background: rgba(28,20,15,0.86);
  color: #F4E7D8;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 32px rgba(28,20,15,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}
body.v2 .bi-banner:hover .bi-play span {
  transform: scale(1.08);
  background: var(--accent);
  color: #1C140F;
}

/* =========================================================
   PRE-FOOTER CTA BAND
   ========================================================= */

.cta-band {
  background: #1C140F;
  color: #F4E7D8;
  padding: 130px 0 140px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(242,84,27,0.18), rgba(242,84,27,0) 65%);
  filter: blur(20px);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(244,231,216,0.10);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
}
.cta-band .cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
  color: #F4E7D8;
}
.cta-band .cta-headline em {
  font-family: var(--serif-em);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 0.96em;
}
.cta-band .cta-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(244,231,216,0.72);
  margin: 0 0 30px;
}
.cta-band .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-band .btn-primary {
  background: var(--accent);
  color: #1C140F;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(242,84,27,0.40);
}
.cta-band .btn-primary:hover {
  background: #FF6B36;
  color: #1C140F;
}
.cta-band .btn-secondary {
  background: transparent;
  color: #F4E7D8;
  border: 1.5px solid rgba(244,231,216,0.4);
}
.cta-band .btn-secondary:hover {
  background: rgba(244,231,216,0.06);
  color: #F4E7D8;
  border-color: rgba(244,231,216,0.7);
}

@media (max-width: 992px) {
  .cta-band .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =========================================================
   FOOTER — multi-column upgrade
   ========================================================= */

body.v2 footer.footer-v2 {
  background: #14100C;
  padding: 80px 5% 36px;
  display: block;
}
body.v2 .footer-v2-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,231,216,0.08);
}
body.v2 .footer-v2 .col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
body.v2 .footer-v2 .col a,
body.v2 .footer-v2 .col li {
  display: block;
  color: #C9B9A8;
  font-size: 0.95rem;
  padding: 6px 0;
  transition: color 0.2s;
}
body.v2 .footer-v2 .col a:hover { color: var(--accent); }
body.v2 .footer-v2 .brand-line {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #F4E7D8;
  margin-bottom: 14px;
}
body.v2 .footer-v2 .brand-tag {
  color: #9D8C7B;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 320px;
}
body.v2 .footer-v2 .bottom {
  max-width: 1240px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #7A6A5A;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  body.v2 .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 480px) {
  body.v2 .footer-v2-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TWEAKS PANEL
   ========================================================= */

.tweaks-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  width: 280px;
  background: #FFFBF6;
  border: 1px solid var(--border-2);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(28,20,15,0.18);
  font-family: var(--font-body);
  color: var(--ink);
  display: none;
  overflow: hidden;
}
.tweaks-panel.open { display: block; }
.tweaks-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(242,84,27,0.04);
}
.tweaks-panel header h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  margin: 0;
}
.tweaks-panel header button {
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink-2);
  font-size: 1.1rem;
  line-height: 1;
}
.tweaks-panel .group {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.tweaks-panel .group:last-child { border-bottom: none; }
.tweaks-panel .group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.tweaks-panel .swatches {
  display: flex;
  gap: 8px;
}
.tweaks-panel .swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
  position: relative;
}
.tweaks-panel .swatch:hover { transform: scale(1.08); }
.tweaks-panel .swatch.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px #FFFBF6;
}
.tweaks-panel .toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink);
}
.tweaks-panel .toggle + .toggle { margin-top: 10px; }
.tweaks-panel .switch {
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: #DCD0C3;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tweaks-panel .switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: transform 0.2s ease;
}
.tweaks-panel .switch.on {
  background: var(--accent);
}
.tweaks-panel .switch.on::after {
  transform: translateX(16px);
}

/* =========================================================
   RESPONSIVE OVERRIDES
   ========================================================= */

@media (max-width: 768px) {
  body.v2 .hero-quote { display: none; }
  body.v2 .hero-v2 { padding-bottom: 120px; }
  body.v2 section { padding: 90px 0; }
  body.v2 .principles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   PAGE HERO (light) — for About / Pillars / Contact
   ========================================================= */

body.v2 .page-hero-v2 {
  position: relative;
  padding: 200px 0 110px;
  background: var(--peach);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
body.v2 .page-hero-v2::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(242,84,27,0.12), rgba(242,84,27,0) 65%);
  filter: blur(8px);
  pointer-events: none;
}
body.v2 .page-hero-v2 .ph-ring {
  position: absolute;
  right: -160px;
  top: 80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1.2px solid rgba(242,84,27,0.20);
  animation: slowSpin 90s linear infinite;
  pointer-events: none;
}
body.v2 .page-hero-v2 .ph-ring.ring-2 {
  width: 280px;
  height: 280px;
  right: -50px;
  top: 170px;
  border: 1.2px dashed rgba(228,210,191,0.9);
  animation-direction: reverse;
}
body.v2 .page-hero-v2 .container { position: relative; z-index: 2; }
body.v2 .page-hero-v2 .page-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
body.v2 .page-hero-v2 .page-eyebrow .rule {
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}
body.v2 .page-hero-v2 .page-eyebrow .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
body.v2 .page-hero-v2 h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
  max-width: 16ch;
}
body.v2 .page-hero-v2 .lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin: 36px 0 0;
}

/* =========================================================
   FOUNDER / TEAM V2
   ========================================================= */

body.v2 .team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
body.v2 .team-card-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
body.v2 .team-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(70,35,12,0.10);
}
body.v2 .team-card-v2 .tc-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--peach-2);
}
body.v2 .team-card-v2 .tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.4s ease, transform 0.6s ease;
}
body.v2 .team-card-v2:hover .tc-img img {
  filter: saturate(1.05);
  transform: scale(1.02);
}
body.v2 .team-card-v2 .tc-body {
  padding: 28px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.v2 .team-card-v2 .tc-role {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-deep);
}
body.v2 .team-card-v2 .tc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
body.v2 .team-card-v2 .tc-divider {
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}
body.v2 .team-card-v2 .tc-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

@media (max-width: 992px) {
  body.v2 .team-grid-v2 { grid-template-columns: 1fr; }
}

/* =========================================================
   PILLAR DEEP-DIVE SECTIONS (pillars.html)
   ========================================================= */

body.v2 .pillar-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}
body.v2 .pillar-deep.reverse {
  direction: rtl;
}
body.v2 .pillar-deep.reverse > * {
  direction: ltr;
}
body.v2 .pillar-deep .pd-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--peach-2);
  border: 1px solid var(--border);
}
body.v2 .pillar-deep .pd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
body.v2 .pillar-deep:hover .pd-media img {
  transform: scale(1.02);
}
body.v2 .pillar-deep .pd-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(28,20,15,0.78);
  color: #F4E7D8;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
body.v2 .pillar-deep h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 18px 0 24px;
}
body.v2 .pillar-deep .pd-num {
  font-family: var(--serif-em);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body.v2 .pillar-deep .pd-num::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
body.v2 .pillar-deep p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 14px;
}
body.v2 .pd-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
body.v2 .pd-subgrid .sub {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.6);
}
body.v2 .pd-subgrid .sub h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}
body.v2 .pd-subgrid .sub p {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  body.v2 .pillar-deep,
  body.v2 .pillar-deep.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  body.v2 .pd-subgrid { grid-template-columns: 1fr; }
}

/* =========================================================
   VIDEO GRID V2 (pillars Bridging Ideas embed grid)
   ========================================================= */

body.v2 .video-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
body.v2 .video-grid-v2 iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 10px 28px rgba(70,35,12,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
body.v2 .video-grid-v2 iframe:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(70,35,12,0.10);
}
@media (max-width: 992px) {
  body.v2 .video-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  body.v2 .video-grid-v2 { grid-template-columns: 1fr; }
}

/* =========================================================
   CONTACT FORM POLISH (v2 overrides)
   ========================================================= */

body.v2 .contact-split {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}
body.v2 .contact-split .form-control,
body.v2 .contact-split .form-input,
body.v2 .contact-split .form-textarea,
body.v2 .contact-split .form-select {
  background: var(--peach-3);
  border-radius: 12px;
  border-width: 1.5px;
}
body.v2 .contact-split .form-input:focus,
body.v2 .contact-split .form-textarea:focus,
body.v2 .contact-split .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(242, 84, 27, 0.12);
}
body.v2 .contact-tagline em {
  font-family: var(--serif-em);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
@media (max-width: 992px) {
  body.v2 .contact-split { grid-template-columns: 1fr; gap: 40px; }
}
