/* Main Styles */
:root {
  --ink: #0a0a0a;
  --paper: #f5f2ec;
  --gold: #b8892a;
  --gold-light: #d4a84b;
  --gold-pale: #f0e4c4;
  --navy: #0f1b2d;
  --navy-mid: #1c2e40;
  --stone: #8a8278;
  --rule: rgba(184, 137, 42, 0.25);
  --serif: "Cormorant Garamond", Georgia, serif;
  --mono: "DM Mono", monospace;
  --sans: "Helvetica Neue", Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: none;
}

.logo-wall .wall-logo {
  width: calc((100% - 96px) / 5);
}
.wall-logo img {
  display: block;
  max-height: 90px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* CURSOR DOT */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;

  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}
.nav-links a.active {
  color: #fff;
}
/* DOT HOVER SCALE */
.cursor.dot-hover {
  width: 15px;
  height: 15px;
}

/* CURSOR RING */
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184, 137, 42, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

/* RING HOVER */
.cursor-ring.ring-hover {
  width: 44px;
  height: 44px;
  border-color: var(--gold);
}

/* PAGE SYSTEM */
.page {
  display: none;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.page.active {
  display: block;
}
.page.visible {
  opacity: 1;
  transform: translateY(0);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  padding: 14px 56px;
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
}
.nav-logo img {
  max-width: 200px;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links li {
  position: relative;
}
.nav-links a,
.nav-links button {
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  padding: 8px 14px;
  cursor: pointer;
  transition: color 0.2s;
  display: block;
}
.nav-links a:hover,
.nav-links button:hover {
  color: var(--gold);
}
.nav-links a.active,
.nav-links button.active {
  color: var(--paper);
}
.nav-links .has-sub:hover .nav-sub {
  display: block;
}
.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 10, 0.97);
  border: 1px solid var(--rule);
  min-width: 200px;
  z-index: 200;
  padding: 8px 0;
}
.nav-sub a {
  font-size: 10px;
  padding: 10px 20px;
  white-space: nowrap;
  display: block;
}
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 9px 22px !important;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  cursor: pointer;
  font-size: 20px;
  padding: 4px;
}

/* ══════════ MARQUEE ══════════ */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 45px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}
.marquee-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 20px;
}
.marquee-item img {
  display: block;
  max-height: 38px;
  width: auto;
}
.marquee-item.img-sz-rd img {
  max-height: 20px;
}
.hero-main-sc .hero-eyebrow {
  font-size: 17px;
  font-weight: 600;
}

/* SECTION COMMON */
.section-wrap {
  padding: 100px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--stone);
  max-width: 580px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 15px 36px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
  border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid rgba(245, 242, 236, 0.2);
  color: var(--paper);
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
  background: none;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.offer-tag {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 6px 12px;
  display: inline-block;
}

/* ─── PAGE: HOME ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/shadoka_hero-home-bg.webp');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.3;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.15) 0%,
    rgba(10, 10, 10, 0.45) 40%,
    rgba(10, 10, 10, 0.82) 60%,
    rgba(10, 10, 10, 0.97) 100%
  );
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(10, 10, 10, 0.5) 100%
  );
}
.hero::before {
  display: none;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px 56px;
  position: relative;
  z-index: 3;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 82px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.75);
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 56px 80px 48px;
  position: relative;
  z-index: 3;
}
.stat-stack {
  display: flex;
  flex-direction: column;
}
.stat-item {
  border-top: 1px solid var(--rule);
  padding: 26px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: start;
  transition: border-color 0.3s;
  cursor: default;
}
.stat-item:last-child {
  border-bottom: 1px solid var(--rule);
}
.stat-item:hover {
  border-color: rgba(184, 137, 42, 0.5);
}
.stat-num {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  line-height: 1.55;
  color: var(--stone);
  padding-top: 6px;
}
.stat-label strong {
  display: block;
  color: var(--paper);
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 4px;
}

/* Home problem band */
.problem-band {
  background: var(--navy);
  padding: 80px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.pullquote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--gold-pale);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}
.pullquote cite {
  display: block;
  font-family: var(--mono);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
  margin-top: 20px;
}
.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.p-stat {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.p-stat:hover {
  background: rgba(184, 137, 42, 0.06);
  border-color: var(--rule);
}
.p-stat-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.p-stat-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--stone);
}

/* Home offer */
.offer-section {
  background: var(--ink);
  padding: 100px 80px;
}
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
}
.offer-card {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s, transform 0.3s;
  cursor: default;
}
.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.offer-card:hover {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
  transform: translateY(-3px);
}
.offer-card:hover::before {
  transform: scaleX(1);
}
.offer-num {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  color: rgba(184, 137, 42, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.offer-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.25;
}
.offer-body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 24px;
}

/* ─── PAGE: PROGRAMS ─── */
.programs-page {
  background: var(--ink);
}
.programs-hero {
  background: var(--navy);
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}
.programs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(184, 137, 42, 0.06) 0%,
    transparent 70%
  );
}
.programs-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.programs-hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prog-choose-card {
  border: 1px solid rgba(245, 242, 236, 0.08);
  padding: 28px 32px;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
.prog-choose-card:hover,
.prog-choose-card.active-card {
  background: rgba(184, 137, 42, 0.06);
  border-color: var(--rule);
}
.prog-choose-num {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.prog-choose-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 8px;
}
.prog-choose-desc {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.6;
}

/* Sub-nav for programs */
.programs-subnav {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--rule);
  padding: 0 80px;
  display: flex;
  gap: 0;
  align-items: center;
  position: sticky;
  top: 56px;
  z-index: 50;
}
.programs-subnav button {
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 18px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}
.programs-subnav button:hover {
  color: var(--paper);
}
.programs-subnav button.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Jump-start */
.six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.six-card {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
  cursor: default;
}
.six-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.six-card:hover {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
}
.six-card:hover::before {
  transform: scaleX(1);
}
.six-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(184, 137, 42, 0.2);
  line-height: 1;
  margin-bottom: 18px;
}
.six-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.25;
}
.six-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 20px;
}
.six-tag {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.phases-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.phase {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 28px 20px;
  transition: background 0.3s;
}
.phase:last-child {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
}
.phase-num {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.phase-mode {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.phase:last-child .phase-mode {
  color: var(--gold);
}
.phase-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 6px;
  line-height: 1.3;
  height: 50px;
  overflow: hidden;
}
.phase-weeks {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--stone);
  margin-bottom: 12px;
}
.phase-items {
  list-style: none;
}
.phase-items li {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}
.phase-items li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(184, 137, 42, 0.4);
}
.assets-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.asset-item {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 24px 18px;
  text-align: center;
  transition: background 0.3s;
}
.asset-item:hover {
  background: rgba(184, 137, 42, 0.05);
}
.asset-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.asset-name {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.asset-desc {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.5;
}

/* Enterprise program */
.ent-pullquote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--gold-pale);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 28px;
}
.ent-comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ent-comp {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.ent-comp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ent-comp:hover {
  background: rgba(184, 137, 42, 0.06);
  border-color: var(--rule);
}
.ent-comp:hover::before {
  transform: scaleX(1);
}
.ent-comp-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: rgba(184, 137, 42, 0.2);
  line-height: 1;
  margin-bottom: 14px;
}
.ent-comp-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.25;
}
.ent-comp-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 18px;
}
.phase-badge {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--stone);
  text-transform: uppercase;
  border: 1px solid rgba(245, 242, 236, 0.15);
  padding: 7px 14px;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 16px;
}
.phase-badge-pre {
  color: var(--gold);
  border-color: var(--rule);
}
.phase-badge-gold {
  color: var(--gold-light);
  border-color: rgba(184, 137, 42, 0.5);
}
.ent-pre {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 28px 32px;
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.07);
  margin-bottom: 56px;
}
.ent-phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}
.ent-phase {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.07);
  padding: 36px 28px;
}
.ent-phase-final {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
}
.ent-phase-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  margin: 12px 0 10px;
}
.ent-phase-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 242, 236, 0.07);
  height: 70px;
  overflow: hidden;
  }
.ent-phase-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ent-phase-item-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
}
.ent-phase-item-title::before {
  content: "→";
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  flex-shrink: 0;
}
.ent-phase-item-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--stone);
  padding-left: 22px;
}
.ent-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ent-delivery-card {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.07);
  padding: 32px 28px;
}
.ent-delivery-card-gold {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
}
.session-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.session-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 8px;
}
.session-meta {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 20px;
  line-height: 1.5;
}
.session-items {
  list-style: none;
}
.session-items li {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
  padding: 7px 0;
  border-bottom: 1px solid rgba(245, 242, 236, 0.05);
  display: flex;
  gap: 10px;
}
.session-items li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}
.ent-different {
  background: rgba(184, 137, 42, 0.04);
  border: 1px solid var(--rule);
  padding: 48px 52px;
  margin: 64px 0;
}
.ent-different-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--stone);
  max-width: 800px;
  margin-bottom: 16px;
}
.ent-different-bold {
  color: var(--gold-pale);
  font-style: italic;
  font-family: var(--serif);
  font-size: 18px;
}

/* ─── PAGE: FRAMEWORKS ─── */
.frameworks-page {
  background: var(--ink);
}
.fw-hero {
  background: var(--navy);
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 250px;
  background-image: url(../img/framework-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: space-between;
  align-items: center;
}
.fw-hero::after {
  display: none !important;
}
.fw-hero::after {
  content: "OPEN";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 280px;
  font-weight: 300;
  color: rgba(184, 137, 42, 0.04);
  pointer-events: none;
  line-height: 1;
}
.fw-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.fw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.fw-card {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
  cursor: default;
}
.fw-card:hover {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
}
.fw-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fw-name {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.fw-subtitle {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.fw-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 35px;
}
.fw-dimensions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fw-dim {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}
.fw-dim-letter {
  width: 36px;
  height: 36px;
  background: rgba(184, 137, 42, 0.12);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
}
.fw-dim-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 2px;
  font-family: var(--serif);
}
.fw-dim-desc {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.5;
}

/* ─── PAGE: PLATFORM ─── */
.platform-page {
  background: var(--navy);
}
.platform-hero {
  padding: 140px 80px 80px;
}
.platform-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 100px;
  align-items: start;
}
.platform-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(245, 242, 236, 0.15);
  max-width: 1280px;
  margin: auto;
  margin-bottom: 80px !important;
}
.platform-ftr {
  padding-left: 80px;
  padding-right: 80px !important;
}
a.books-grid-btn {
    display: block;
    text-align: right;
    margin-top: 30px;
    margin-bottom: 0;
    font-family: var(--mono);
    font-size: 15px;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 2px;
    transition: color 0.2s;
}
a.books-grid-btn:hover {
  color: var(--paper);
}
.platform-feat {
  padding: 40px 28px;
  border-right: 1px solid rgba(245, 242, 236, 0.15);
  transition: background 0.35s;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.platform-feat:last-child {
  border-right: none;
}
.platform-feat:hover {
  background: rgba(184, 137, 42, 0.07);
}
.platform-feat-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.platform-feat-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--stone);
}
.platform-feat-stages {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.platform-feat-stage {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.platform-feat-stage::before {
  content: "→";
  color: rgba(184, 137, 42, 0.4);
  font-size: 10px;
}
.pipeline-mockup {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(245, 242, 236, 0.08);
  padding: 28px;
}
.mockup-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-r {
  background: #ff5f56;
}
.dot-y {
  background: #ffbd2e;
}
.dot-g {
  background: #27c93f;
}
.pipeline-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pipeline-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.pipe-stage {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px;
}
.pipe-stage-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pipe-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 7px 9px;
  margin-bottom: 5px;
  border-left: 2px solid var(--gold);
}
.pipe-card.done {
  border-left-color: #27c93f;
}
.pipe-card-text {
  font-size: 12px;
  color: rgba(245, 242, 236, 0.7);
  line-height: 1.4;
}
.pipe-card-sub {
  font-size: 12px;
  color: var(--stone);
  margin-top: 2px;
}
.pipe-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
  margin-top: 7px;
}
.pipe-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
}
.ai-advisor {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 13px;
  background: rgba(184, 137, 42, 0.08);
  border: 1px solid rgba(184, 137, 42, 0.2);
}
.ai-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.ai-text {
  font-size: 14px;
  color: rgba(245, 242, 236, 0.55);
  font-style: italic;
  line-height: 1.5;
}

/* ─── PAGE: BOOKS ─── */
.books-page {
  background: var(--ink);
}
.books-hero {
  background: var(--navy);
  padding: 140px 80px 80px;
}
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
}
.book-card {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
  cursor: default;
}
.book-card:hover {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
}
.book-featured {
  background: rgba(184, 137, 42, 0.06);
  border-color: var(--rule);
}
.book-spine {
  height: 4px;
  background: var(--gold);
  flex-shrink: 0;
}
.book-featured .book-spine {
  background: var(--gold-light);
}
.book-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.book-eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: none;
}
.book-card .book-content img {
  margin-bottom: 20px;
  max-width: 190px;
}
.book-title {
font-family: var(--serif);
    font-size: 24px;
    font-weight: 300;
    color: var(--paper);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -.01em;
    height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.book-featured .book-title {
  font-size: 24px;
}
.book-sub {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.5;
  margin-bottom: 14px;
  font-style: italic;
}
.book-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  flex: 1;
  margin-bottom: 20px;
}
.book-awards {
    display: flex;
    gap: 10px;
    margin-top: auto;
    align-items: center;
    justify-content: center;
}
.book-card .book-award img {
  max-height: 45px !important;
  width: auto;
  margin: 0;
}

/* ─── PAGE: CREDENTIALS ─── */
.cred-page {
  background: var(--navy);
}
.endorse-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.endorse-feature {
  background: rgba(184, 137, 42, 0.06);
  border: 1px solid var(--rule);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  transition: background 0.3s;
}
.endorse-feature:hover {
  background: rgba(184, 137, 42, 0.1);
}
.endorse-quote-lg {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 24px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--gold-pale);
}
.endorse-quote-lg::before {
  content: "\201C";
  color: var(--gold);
}
.endorse-quote-lg::after {
  content: "\201D";
  color: var(--gold);
}
.endorse-attr {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.endorsements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.endorsement {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 36px 32px;
  transition: background 0.3s;
}
.endorsement:hover {
  background: rgba(184, 137, 42, 0.04);
}
.endorse-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
  color: var(--gold-pale);
  margin-bottom: 20px;
}
.endorse-quote::before {
  content: "\201C";
  color: var(--gold);
}
.endorse-quote::after {
  content: "\201D";
  color: var(--gold);
}
.endorse-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 4px;
  font-family: var(--serif);
}
.endorse-title {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--stone);
  text-transform: uppercase;
  line-height: 1.5;
}
.client-logos {
  border-top: 1px solid var(--rule);
  padding-top: 48px;
  margin-top: 72px;
}
.client-logos .marquee-wrap {
  padding: 0 !important;
  border: 0 !important;
}
.client-logos .marquee-track {
  gap: 30px;
}
.client-logos .marquee-track img {
  max-height: 28px !important;
}

.client-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.logo-chip {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--stone);
  text-transform: uppercase;
  border: 1px solid rgba(245, 242, 236, 0.1);
  padding: 7px 14px;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.logo-chip:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

/* ─── PAGE: ABOUT / TEAM ─── */
.about-page {
  background: var(--ink);
}
.bio-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: center;
  padding: 140px 80px 80px;
}
.bio-portrait-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    rgba(28, 46, 64, 0.5) 100%
  );
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.bio-portrait-frame::after {
  content: "FH";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 110px;
  font-weight: 300;
  color: rgba(184, 137, 42, 0.1);
  letter-spacing: -0.05em;
}
.bio-portrait-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--rule);
  z-index: -1;
}
.bio-name {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}
.bio-role {
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bio-role::before {
  content: "";
  flex: 0 0 36px;
  height: 1px;
  background: var(--gold);
}
.bio-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 24px;
}
.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.bio-tag {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--stone);
  border: 1px solid rgba(245, 242, 236, 0.1);
  padding: 7px 14px;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: default;
}
.bio-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.team-section-inner {
  padding: 0 80px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.team-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.team-card-featured {
  background: rgba(184, 137, 42, 0.06);
  border: 1px solid var(--rule);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
}
.team-card {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 36px 30px;
  transition: background 0.3s;
}
.team-card:hover {
  background: rgba(184, 137, 42, 0.04);
}
.team-initial {
  width: 80px;
  height: 80px;
  background: rgba(184, 137, 42, 0.12);
  overflow: hidden;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.team-initial img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.team-initial-gold {
  background: rgba(184, 137, 42, 0.2) !important;
  border-color: #b8892a59 !important;
}
.team-initial span,
.team-initial-gold span {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--gold-light);
}
.team-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 6px;
}
.team-role {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-bio {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
}

/* ─── PAGE: INSIGHTS ─── */
.insights-page {
  background: var(--ink);
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.insight-card {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 32px 28px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
  display: block;
}
.insight-card:hover {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
}
.insight-tag {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: none;
}
.insight-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.35;
  margin-bottom: 10px;
}
.insight-body {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.65;
}
.insights-cta {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.2s;
}
.insights-cta::after {
  content: "→";
}
.insights-cta:hover {
  gap: 20px;
}
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.challenge-card {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.challenge-card:hover {
  background: rgba(184, 137, 42, 0.04);
  border-color: var(--rule);
}
.challenge-icon {
  font-size: 14px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}
.challenge-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.3;
}
.challenge-body {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
}

/* ─── PAGE: CONTACT ─── */
.contact-page {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.contact-main {
  flex: 1;
  padding: 140px 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 24px;
}
.contact-title em {
  font-style: italic;
  color: var(--gold);
}
.contact-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--stone);
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-method {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.06);
  align-items: center;
  transition: background 0.3s, border-color 0.3s;
}
.contact-method:hover {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
}
.contact-method-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--stone);
  text-transform: uppercase;
}
.contact-method-value {
  font-size: 16px;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-method-value:hover {
  color: var(--gold-light);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
}
.form-input,
.form-textarea {
  background: rgba(245, 242, 236, 0.05);
  border: 1px solid rgba(245, 242, 236, 0.12);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15.5px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(138, 130, 120, 0.5);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--rule);
  padding: 30px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
}
.footer-logo img {
  max-width: 200px !important;
}
.footer-logo a {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--paper);
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: unset;
}
.footer-logo span {
  color: var(--gold);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--stone);
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  text-decoration: unset;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(138, 130, 120, 0.5);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  a.books-grid-btn {
    text-align: left !important;
  }
  .pd-rdc-mob {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .team-name {
    font-size: 20px !important;
  }
  .team-role {
    font-size: 12px !important;
  }
  .hero-main-sc .hero-eyebrow {
    font-size: 16px;
  }
  .wwd-outcome {
    gap: 10px !important;
  }
  .platform-features {
    padding-left: 28px;
    padding-right: 28px;
    border: 0 !important;
    margin-bottom: 40px !important;
  }
  .platform-hero-inner .reveal.visible {
    width: 100% !important;
    max-width: 100% !important;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .endorse-feature,
  .endorsement {
    padding: 30px !important;
  }
  .bio-inner {
    grid-template-columns: 1fr !important;
    gap: 45px !important;
  }
  .logo-chip,
  .bio-tag {
    font-size: 12px !important;
    padding: 5px 9px !important;
  }
  .credential-sec {
    padding-left: 28px !important;
    padding-right: 28px !important;
    padding-bottom: 48px !important;
  }
  .fw-name {
    font-size: 30px !important;
  }
  .fw-card {
    padding: 40px 25px !important;
  }
  /* PLATFORM PAGE RESPONSIVE FIX */
  @media (max-width: 1347px) {
    .platform-hero-inner {
      grid-template-columns: 1fr !important;
      gap: 55px !important;
      max-width: 100% !important;
    }

    .platform-features {
      grid-template-columns: repeat(3, 1fr) !important;
      width: 100% !important;
    }

    .platform-feat {
      padding: 28px 24px !important;
    }

    .pipeline-mockup {
      width: 100% !important;
      max-width: 100% !important;
    }

    .pipeline-stages {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  @media (max-width: 768px) {
    .platform-features {
      grid-template-columns: 1fr !important;
    }

    .pipeline-stages {
      grid-template-columns: 1fr !important;
    }
  }
  .padding-sec {
    padding: 80px 28px !important;
  }
  .five-session,
  .insights-sec {
    padding: 120px 28px 80px !important;
  }
  .six-num,
  .ent-comp-num {
    font-size: 35px !important;
  }
  .programs-hero .programs-hero-inner {
    gap: 40px;
  }
  .footer-links {
    gap: 15px;
    flex-direction: column;
  }
  .programs-hero {
    padding: 120px 28px 80px !important;
  }
  .pipeline-stages {
    grid-template-columns: repeat(1, 1fr);
  }
  .platform-feat {
    border-bottom: 1px solid rgba(245, 242, 236, 0.15);
    border-right: 0;
    padding: 20px;
  }
  .platform-feat:last-child {
    border-bottom: 0;
  }
  nav {
    padding: 18px 28px;
    overflow: visible;
  }
  nav.scrolled {
    padding: 12px 28px;
  }
  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .hero,
  .programs-hero-inner,
  .contact-main {
    grid-template-columns: 1fr;
  }
  .hero::before {
    display: none;
  }
  .hero-left,
  .hero-right {
    padding: 100px 28px 48px;
  }
  .hero-right {
    padding-top: 0;
  }
  .section-wrap,
  .offer-section,
  .problem-band,
  .books-hero,
  .fw-hero,
  .platform-hero,
  .bio-inner {
    padding-left: 28px;
    padding-right: 28px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 0px;
    margin-bottom: 28px;
  }
  .offer-cards,
  .six-grid,
  .fw-grid,
  .books-grid,
  .ent-comp-grid,
  .ent-phase-grid,
  .ent-delivery-grid,
  .phases-row,
  .assets-row {
    grid-template-columns: 1fr;
  }
  .assets-row {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .labs-sc {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .endorsements,
  .insights-grid,
  .challenges-grid,
  .endorsements,
  .endorse-featured-grid {
    grid-template-columns: 1fr !important;
  }
  .platform-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .platform-features {
    grid-template-columns: repeat(1, 1fr);
  }
  .team-grid-full {
    grid-template-columns: 1fr;
  }
  .team-card-featured {
    grid-template-columns: 1fr;
  }
  .ent-pre {
    grid-template-columns: 1fr;
  }
  .books-grid {
    grid-template-columns: 1fr;
  }
  .programs-subnav {
    padding: 0 28px;
    overflow-x: auto;
  }
  .site-footer {
    padding: 32px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .team-section-inner {
    padding: 0 28px 80px;
  }
  .contact-main {
    padding: 120px 28px 60px;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .dark-banner {
    padding: 48px 28px !important;
  }
  .section-wrap {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .btn-primary {
    padding: 15px 20px !important;
    letter-spacing: 0.05px;
  }
  .p-stat-num {
    font-size: 30px !important;
  }
  platform-hero-inner .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (min-width: 961px) and (max-width: 1024px) {
  .platform-features {
    padding-left: 28px;
    padding-right: 28px;
    border: 0 !important;
    margin-bottom: 40px !important;
  }
  .footer-links {
    gap: 27px;
  }
  .book-featured .book-title {
    font-size: 30px;
  }
  .platform-feat {
    padding: 20px !important;
  }
  .platform-hero-inner {
    grid-template-columns: 1fr;
  }
  .five-session,
  .padding-sec {
    padding: 48px 28px !important;
  }
  .book-award {
    font-size: 12px;
  }
  .fw-name {
    font-size: 30px !important;
  }
  .wwd-cases {
    margin: 0 !important;
  }
  .programs-subnav {
    padding: 0 28px;
    overflow-x: auto;
  }
  .site-footer {
    padding: 32px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .team-section-inner {
    padding: 0 28px 80px;
  }
  .contact-main {
    padding: 120px 28px 60px;
  }
  .hero-left,
  .hero-right {
    padding: 100px 28px 48px;
  }
  .hero-right {
    padding-top: 0;
  }
  .section-wrap,
  .offer-section,
  .problem-band,
  .books-hero,
  .fw-hero,
  .platform-hero,
  .bio-inner {
    padding-left: 28px;
    padding-right: 28px;
  }
  nav {
    padding: 18px 28px !important;
    position: relative !important;
  }
  .wwd-inner {
    padding: 80px 28px !important;
  }
  .nav-links a,
  .nav-links button {
    font-size: 12px !important;
    padding: 8px 7px !important;
    letter-spacing: 0.5px !important;
  }
  .nav-logo img {
    max-width: 120px !important;
  }
}
@media (min-width: 1164px) and (max-width: 1170px) {
  .site-footer .footer-links {
    gap: 20px;
  }
}

@media (min-width: 1025px) and (max-width: 1366px) {
  .platform-feat {
    padding: 40px 12px;
  }
  .platform-feat-title {
    font-size: 20px;
  }
}

@media (min-width: 1025px) and (max-width: 1170px) {
  .nav-logo img {
    max-width: 160px !important;
  }
  .nav-links a,
  .nav-links button {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
    padding: 8px !important;
  }
}

@media (min-width: 1171px) and (max-width: 1347px) {
  .nav-logo img {
    max-width: 150px !important;
  }
  .nav-links a,
  .nav-links button {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }
}
@media (min-width: 1348px) and (max-width: 1400px) {
  .nav-links a,
  .nav-links button {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}

/* ── WHAT WE DO SECTION ── */
.wwd-section {
  background: var(--ink);
  padding: 0;
}
.wwd-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Origin */
.wwd-origin {
  max-width: 820px;
}
.wwd-origin-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 20px;
}
.wwd-origin-body:last-child {
  margin-bottom: 0;
}

/* Practice areas */

/* Outcome grid */
.wwd-outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.wwd-outcome {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  align-items: start;
  padding: 32px 36px;
  border: 1px solid rgba(245, 242, 236, 0.06);
  background: rgba(245, 242, 236, 0.03);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.wwd-outcome:hover {
  background: rgba(184, 137, 42, 0.04);
  border-color: var(--rule);
}
.wwd-outcome-icon {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gold);
  padding-top: 2px;
}
.wwd-outcome-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 8px;
  line-height: 1.35;
  font-family: var(--serif);
}
.wwd-outcome-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
}

/* Case evidence */
.wwd-cases {
  background: var(--navy);
  margin: 0 -80px;
  padding: 64px 80px;
}
.wwd-case-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.wwd-case {
  padding: 36px 32px;
  border: 1px solid rgba(245, 242, 236, 0.08);
  background: rgba(245, 242, 236, 0.03);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.wwd-case:hover {
  background: rgba(184, 137, 42, 0.05);
  border-color: var(--rule);
}
.wwd-case-client {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 8px;
}
.wwd-case-result {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.wwd-case-detail {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
}

/* Responsive */
@media (max-width: 960px) {
  .wwd-inner {
    padding: 80px 28px;
    gap: 64px;
  }

  .wwd-outcome-grid {
    grid-template-columns: 1fr;
  }
  .wwd-case-row {
    grid-template-columns: 1fr;
  }
  .wwd-cases {
    margin: 0 -28px;
    padding: 48px 28px;
  }
}

/* ── CREDENTIAL WALL ── */
.cred-wall {
  border: 1px solid rgba(245, 242, 236, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cred-indictment {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(184, 137, 42, 0.1);
  border-bottom: 1px solid var(--rule);
}
.cred-pct {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.cred-indict-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cred-indict-bold {
  font-size: 20px;
  font-weight: 500;
  color: var(--paper);
  font-family: var(--serif);
  line-height: 1.3;
}
.cred-indict-rest {
  font-size: 16px;
  color: var(--stone);
  font-style: italic;
  font-family: var(--serif);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
}
.cred-stat {
  padding: 22px 24px;
  border-right: 1px solid rgba(245, 242, 236, 0.07);
  border-bottom: 1px solid rgba(245, 242, 236, 0.07);
  transition: background 0.2s;
  cursor: default;
}
.cred-stat:nth-child(2n) {
  border-right: none;
}
.cred-stat:nth-child(n + 3) {
  border-bottom: none;
}
.cred-stat:hover {
  background: rgba(184, 137, 42, 0.07);
}
.cred-stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.cred-stat-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--stone);
  line-height: 1.4;
}

/* ── PUBLICATION CAROUSEL ── */
.pub-carousel-wrap {
  border-top: 1px solid rgba(245, 242, 236, 0.08);
  background: rgba(245, 242, 236, 0.02);
  position: relative;
  overflow: hidden;
}
.pub-carousel {
  position: relative;
  height: 84px;
}
.pub-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 52px 0 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  gap: 6px;
}
.pub-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pub-slide.exit {
  opacity: 0;
  transform: translateY(-10px);
}
.pub-outlet {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}
.pub-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--paper);
  font-style: italic;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pub-dots {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.pub-dot {
  width: 5px;
  height: 5px;
  border:1px solid var(--gold);
  border-radius: 50%;
  background: rgba(184, 137, 42, 0.3);
  cursor: pointer;
  transition: background 0.2s, height 0.2s;
}
.pub-dot.active {
  background: var(--gold);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border:1px solid var(--gold);
}

@media (max-width: 960px) {
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cred-wall {
    margin-top: 40px;
  }
  .pub-title {
    font-size: 15px;
  }
}

 @media screen and (min-width:978px) and (max-width:1250px) {
  .book-card .book-award img {
max-height: 35px !important;
}  
}
/* Potected Content CSS  */
.custom-copy-alert{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #ffeaea;
  color: #5e4d4d;
  border: 1px solid #ffb9b9;
  padding: 18px 28px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  z-index: 999999;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.custom-copy-alert.show{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.alert-icon{
  font-size: 20px;
}