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

:root {
  /* Colors */
  --clay: #C15C25;
  --clay-rgb: 193, 92, 37;
  --clay-light: #EBB69B;
  --clay-pale: #FAF3EE;
  --bark: #1F150E;
  --bark-rgb: 31, 21, 14;
  --bark-mid: #4E3525;
  --bark-dark: #120A05;
  --moss: #586747;
  --moss-rgb: 88, 103, 71;
  --moss-light: #C2CEB0;
  --sand: #ECE3D5;
  --sand-mid: #D3C4B0;
  --cream: #FAF7F2;
  --cream-rgb: 250, 247, 242;
  --cream-dark: #F2EBE0;
  --ink: #1C1510;
  --ink-rgb: 28, 21, 16;
  --ink-soft: #4E4239;
  --ink-muted: #807166;
  --white: #FFFFFF;

  /* Layout Spacing */
  --section-padding: 120px 8%;
  --section-padding-mobile: 80px 6%;
  --border-radius: 4px;
}

/* Reset & Base Rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--bark);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.text-outfit {
  font-family: 'Outfit', sans-serif;
}

/* Global Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(var(--clay-rgb), 0.08);
  padding: 0 6%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(10deg) scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-top {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}

.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--bark);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clay);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--clay);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--clay);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--clay);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--border-radius);
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(var(--clay-rgb), 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--bark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--bark-rgb), 0.2);
}

.nav-back {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-back:hover {
  color: var(--clay-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--bark);
  display: block;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

/* Global Buttons Design System */
.btn-primary, .btn-clay {
  display: inline-block;
  padding: 15px 36px;
  background: var(--clay);
  color: var(--white);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(var(--clay-rgb), 0.2);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover, .btn-clay:hover {
  background: var(--bark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--bark-rgb), 0.25);
}

.btn-outline {
  display: inline-block;
  padding: 14px 34px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--clay-light);
  color: var(--clay-light);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-light {
  display: inline-block;
  padding: 14px 34px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  cursor: pointer;
}

.btn-outline-light:hover {
  border-color: var(--clay-light);
  color: var(--white);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
}

.btn-white {
  display: inline-block;
  padding: 15px 36px;
  background: var(--white);
  color: var(--clay);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(var(--bark-rgb), 0.04);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  background: var(--bark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--bark-rgb), 0.25);
}

.btn-full {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--clay);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
}

.btn-full:hover {
  background: var(--bark);
  transform: translateY(-2px);
}

.btn-full-outline {
  display: block;
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--clay);
  text-align: center;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  border: 1.5px solid var(--clay);
  margin-top: 12px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.btn-full-outline:hover {
  background: var(--clay-pale);
  transform: translateY(-2px);
}

.btn-register {
  padding: 15px 36px;
  background: var(--clay);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  display: inline-block;
}

.btn-register:hover {
  background: var(--bark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--clay-rgb), 0.2);
}

/* Sections */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-divider {
  width: 56px;
  height: 2px;
  background: var(--clay);
  margin: 24px 0 36px;
}

.body-text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 720px;
}

/* Elegant Image Framing */
.image-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.image-frame::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1.5px solid var(--clay);
  z-index: 0;
  border-radius: var(--border-radius);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-frame:hover::after {
  transform: translate(-8px, -8px);
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(var(--bark-rgb), 0.12);
}

/* Page Heroes & Layout Grids */
.page-hero {
  padding: 170px 8% 110px;
  background: var(--bark);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 75% 30%, rgba(var(--clay-rgb), 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.page-hero-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 20px;
  display: block;
}

.page-hero-title {
  font-size: clamp(44px, 5.5vw, 76px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--clay-light);
}

.page-hero-body {
  font-size: 17px;
  color: var(--sand-mid);
  line-height: 1.85;
  max-width: 600px;
}

/* Timeline Layout */
.timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1.5px;
  background: rgba(var(--clay-rgb), 0.2);
}

.timeline-item {
  padding-left: 40px;
  padding-bottom: 48px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(var(--clay-rgb), 0.15);
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  transform: scale(1.3);
  background: var(--white);
  border: 2px solid var(--clay);
  box-shadow: 0 0 0 8px rgba(var(--clay-rgb), 0.2);
}

.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 620px;
}

/* Cards & Grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.premium-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: var(--border-radius);
  border-top: 3px solid var(--clay);
  box-shadow: 0 8px 30px rgba(var(--bark-rgb), 0.03);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  display: block;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(var(--bark-rgb), 0.08);
  border-top-color: var(--bark);
}

.premium-card-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
  display: block;
}

.premium-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.premium-card-desc {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* Footer Layout */
footer {
  background: var(--bark-dark);
  padding: 100px 8% 40px;
  position: relative;
  border-top: 1px solid rgba(var(--clay-rgb), 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 300px;
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--clay-light);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--clay-light);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Homepage Hero Specific */
.hero {
  min-height: 100vh;
  padding: 76px 0 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--bark);
  padding: 100px 10% 80px 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  width: 80px;
  background: var(--bark);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(46px, 5.5vw, 76px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--sand-mid);
  line-height: 1.6;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-paths {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right {
  background: var(--cream-dark);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end; /* Align photo to the right side */
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.hero-photo {
  width: 75%;
  max-width: 440px;
  object-fit: cover;
  object-position: top;
  display: block;
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin-left: auto; /* Push photo to the right */
  margin-right: 0;
}

.hero-right-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  background: rgba(31, 21, 14, 0.92); /* Rich dark brown background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--clay);
  padding: 24px 28px;
  border-radius: var(--border-radius);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 250px;
}

.hero-stat {
  margin-bottom: 0;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  color: var(--sand-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.4;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0;
}

/* Audience Split */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience-card {
  padding: 96px 10%;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.audience-card.orgs {
  background: var(--sand);
}

.audience-card.individuals {
  background: var(--clay-pale);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 80px rgba(var(--bark-rgb), 0.03);
}

.audience-card:hover .audience-arrow {
  transform: translateX(8px);
}

.audience-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
  display: block;
}

.audience-title {
  font-size: 36px;
  color: var(--bark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.audience-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}

.audience-arrow {
  font-size: 24px;
  color: var(--clay);
  transition: transform 0.3s ease;
  display: inline-block;
}

/* IP Pillars */
.pillars {
  background: var(--bark);
}

.pillars::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(var(--clay-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pillars .section-label {
  color: var(--clay-light);
}

.pillars .section-title {
  color: var(--white);
}

.pillars .section-body {
  color: var(--sand-mid);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 48px 36px;
  border-top: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  border-radius: var(--border-radius);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-top-color: var(--clay);
  transform: translateY(-4px);
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 24px;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.pillar-type {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 16px;
  display: block;
}

.pillar-desc {
  font-size: 14px;
  color: var(--sand-mid);
  line-height: 1.7;
}

/* About Strip */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  background: var(--cream-dark);
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  display: block;
  box-shadow: 0 16px 40px rgba(var(--bark-rgb), 0.1);
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clay);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--border-radius);
  box-shadow: 0 12px 30px rgba(var(--clay-rgb), 0.25);
  text-align: center;
  z-index: 2;
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
}

.about-badge-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px solid var(--sand-mid);
  padding: 8px 18px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.tag:hover {
  background: var(--clay-pale);
  border-color: var(--clay-light);
  color: var(--clay);
}

/* Programmes Directory Styles */
.programs {
  background: var(--clay-pale);
}

.program-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--clay);
  text-decoration: none;
  display: block;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 30px rgba(var(--bark-rgb), 0.03);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(var(--bark-rgb), 0.09);
  border-left-color: var(--bark);
}

.program-card-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
  display: block;
}

.program-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--bark);
  margin-bottom: 12px;
}

.program-card-desc {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.program-card-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.programs-grid, .programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.programme-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border-top: 3px solid var(--clay);
  box-shadow: 0 8px 30px rgba(var(--bark-rgb), 0.04);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.programme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(var(--bark-rgb), 0.09);
}

.programme-card-body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.programme-card-top {
  padding: 40px 32px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.programme-card-bottom {
  padding: 24px 32px 32px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(var(--clay-rgb), 0.08);
}

.programme-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
  display: block;
}

.programme-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.programme-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.programme-footer {
  padding-top: 20px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(var(--clay-rgb), 0.08);
}

.programme-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clay);
  transition: color 0.25s ease;
}

.programme-card:hover .programme-cta {
  color: var(--bark);
}

.programme-format, .programme-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cream-dark);
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: 2px;
}

/* Client Logos Showcase */
.clients {
  background: var(--white);
  text-align: center;
  padding: 100px 8%;
  border-bottom: 1px solid rgba(var(--clay-rgb), 0.08);
}

.clients-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 48px;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 64px;
}

.client-logo-img {
  height: 28px;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.65;
  transition: all 0.3s ease;
}

.client-logo-img:hover {
  opacity: 1;
}

.client-logo-txt {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sand-mid);
  text-transform: uppercase;
  opacity: 0.65;
  transition: all 0.3s ease;
  cursor: default;
}

.client-logo-txt:hover {
  opacity: 1;
  color: var(--clay);
}

/* Books Grid */
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.book-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(var(--bark-rgb), 0.02);
  border-top: 3px solid var(--clay-light);
  transition: all 0.3s ease;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--bark-rgb), 0.08);
  border-top-color: var(--clay);
}

.book-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--clay-light);
  line-height: 1;
  margin-bottom: 20px;
}

.book-status {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
  display: block;
}

.book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  color: var(--bark);
  margin-bottom: 12px;
}

.book-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* Certifications */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.cert-item {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(var(--bark-rgb), 0.02);
}

.cert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 0 4px rgba(var(--clay-rgb), 0.15);
}

.cert-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 4px;
}

.cert-body p {
  font-size: 12.5px;
  color: var(--ink-muted);
}

/* Affiliations */
.affiliations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.affil-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--clay-pale);
  border: 1px solid var(--sand-mid);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: all 0.25s ease;
}

.affil-tag:hover {
  background: var(--white);
  border-color: var(--clay);
  color: var(--clay);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(var(--bark-rgb), 0.03);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--bark);
  line-height: 1.65;
  margin-bottom: 28px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-style: italic;
  color: var(--clay-light);
  position: absolute;
  left: -20px;
  top: -24px;
  opacity: 0.3;
}

.testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* Marketing CTA Band */
.cta-band {
  background: var(--clay);
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.cta-band .section-title {
  color: var(--white);
}

.cta-band .section-body {
  color: rgba(255, 255, 255, 0.85);
}

.cta-band .section-divider {
  background: rgba(255, 255, 255, 0.3);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.cta-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cta-item-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-item-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* FAQ Accordions */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(var(--clay-rgb), 0.12);
  padding: 24px 0;
}

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--bark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.25s ease;
  padding: 0;
}

.faq-q:hover {
  color: var(--clay);
}

.faq-q .arrow {
  color: var(--clay);
  font-size: 24px;
  font-style: normal;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-q.active .arrow {
  transform: rotate(90deg);
}

.faq-a {
  display: none;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  padding-top: 16px;
  animation: slideFadeIn 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════ COHORT PAGE SPECIFIC ════════════════ */
.hero-badge {
  display: inline-block;
  background: rgba(var(--clay-rgb), 0.12);
  color: var(--clay-light);
  border: 1px solid rgba(var(--clay-rgb), 0.2);
  padding: 6px 14px;
  border-radius: var(--border-radius);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 0;
  margin: 36px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius);
}

.hero-meta-item {
  flex: 1;
  padding: 24px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-meta-item:last-child {
  border-right: none;
}

.meta-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.meta-value {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.hero-cta-pair {
  display: flex;
  gap: 16px;
}

.cohort-photo {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  object-fit: cover;
  object-position: top;
  max-height: 420px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.cohort-stat {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-bottom: 8px;
}

.cohort-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.cohort-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.what-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--border-radius);
  border-top: 3px solid var(--clay);
  box-shadow: 0 8px 30px rgba(var(--bark-rgb), 0.02);
  transition: transform 0.25s ease;
}

.what-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--bark-rgb), 0.06);
}

.what-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.what-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bark);
  margin-bottom: 12px;
}

.what-desc {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.module {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 1px solid rgba(var(--clay-rgb), 0.12);
  padding: 40px 0;
}

.module:last-child {
  border-bottom: none;
}

.module-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  color: var(--clay-light);
  font-weight: 300;
  line-height: 1;
}

.module-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--bark);
  margin-bottom: 12px;
}

.module-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.module-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.module-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--clay);
  background: var(--clay-pale);
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.for-who {
  background: var(--bark);
}

.for-who .section-label {
  color: var(--clay-light);
}

.for-who .section-title {
  color: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.who-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 40px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.who-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(var(--clay-rgb), 0.3);
}

.who-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.who-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}

.who-card-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 56px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 48px 40px;
  box-shadow: 0 8px 30px rgba(var(--bark-rgb), 0.03);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--clay);
  box-shadow: 0 16px 40px rgba(var(--clay-rgb), 0.1);
}

.price-card-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  background: var(--clay);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card-header {
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.price-type {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.featured .price-type {
  color: var(--clay);
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--bark);
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.price-amount .currency {
  font-size: 32px;
  font-weight: 500;
  margin-right: 4px;
}

.price-amount .placeholder {
  color: var(--sand-mid);
}

.price-validity {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 12px;
}

.price-features {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.price-features li {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 700;
}

.pay-btn {
  width: 100%;
  padding: 16px;
  background: var(--bark);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.pay-btn.early {
  background: var(--clay);
}

.pay-btn:hover {
  background: var(--bark-mid);
  transform: translateY(-2px);
}

.featured .pay-btn:hover {
  background: var(--bark);
}

.price-note {
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
}

/* About Block on Cohort Page */
.cohort-about-grid .about-photo {
  max-height: 480px;
  object-fit: cover;
}

.cohort-about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Interactive Application Form Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 10, 5, 0.6);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.modal-content {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 48px;
  max-width: 580px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(18, 10, 5, 0.25);
  animation: modalSlideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--ink-muted);
  line-height: 1;
}

.modal-close:hover {
  color: var(--bark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sand-mid);
  background: var(--cream);
  border-radius: var(--border-radius);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: all 0.25s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--clay);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--clay-rgb), 0.1);
}

/* ════════════════ SPECIFIC PAGES STYLING ════════════════ */

/* Frameworks Timeline */
.fw-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--clay-light);
  line-height: 1;
  margin-bottom: 16px;
}

.fw-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}

.fw-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--bark);
  margin-bottom: 16px;
}

.fw-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.fw-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.fw-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  color: var(--ink-soft);
  background: var(--cream-dark);
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.fw-visual {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(var(--bark-rgb), 0.08);
}

.framework-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 8%;
}

.framework-section.reverse {
  direction: rtl;
}

.framework-section.reverse > * {
  direction: ltr;
}

.bg-sand { background: var(--sand); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-dark { background: var(--bark); position: relative; }

.bg-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 30%, rgba(var(--clay-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bg-dark .fw-title { color: var(--white); }
.bg-dark .fw-body { color: var(--sand-mid); }
.bg-dark .fw-tag { background: rgba(255, 255, 255, 0.06); color: var(--sand-mid); }

/* Organisations Tables */
.role-section {
  background: var(--white);
}

.role-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

.role-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--clay);
  padding: 16px 20px;
  text-align: left;
}

.role-table td {
  padding: 24px 20px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 15px;
  color: var(--ink-soft);
}

.role-table tr:hover td {
  background: var(--clay-pale);
}

.role-table td strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--bark);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

/* Individual Split Card */
.hero-right-card {
  background: var(--white);
  padding: 44px;
  border-radius: var(--border-radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  border-top: 3px solid var(--clay);
}

.for-who-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bark);
  margin-bottom: 20px;
  font-weight: 500;
}

.for-who-list {
  list-style: none;
}

.for-who-list li {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.for-who-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 700;
}

/* Organisations Statistics */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.hero-stats .hero-stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: var(--border-radius);
}

.hero-stats .hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--white);
  font-weight: 300;
  line-height: 1;
}

.hero-stats .hero-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--sand-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Interactive Style Assessment Widget (Homepage) */
.quiz-widget {
  background: var(--cream-dark);
  border-radius: var(--border-radius);
  padding: 48px;
  box-shadow: 0 16px 40px rgba(var(--bark-rgb), 0.05);
  max-width: 680px;
  margin: 48px 0;
}

.quiz-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--clay);
  margin-bottom: 16px;
}

.quiz-progress-bar {
  width: 100%;
  height: 3px;
  background: var(--sand-mid);
  border-radius: 2px;
  margin: 12px 0 24px;
  overflow: hidden;
}

.quiz-progress-fill {
  width: 20%;
  height: 100%;
  background: var(--clay);
  transition: width 0.3s ease;
}

.quiz-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--bark);
  margin-bottom: 24px;
  font-weight: 500;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: var(--border-radius);
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s ease;
}

.quiz-option:hover {
  border-color: var(--clay);
  background: var(--clay-pale);
  color: var(--bark);
  transform: translateX(4px);
}

.quiz-result {
  display: none;
  animation: slideFadeIn 0.4s ease forwards;
}

.quiz-result h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--bark);
  margin-bottom: 16px;
}

.quiz-result p {
  margin-bottom: 24px;
}

/* ════════════════ WEDNESDAY GROWTH ROOM (DARK THEME) ════════════════ */
.wednesday-body {
  background: var(--bark-dark);
  color: var(--white);
}

.wednesday-body h1, .wednesday-body h2, .wednesday-body h3, .wednesday-body h4 {
  color: var(--white);
}

.wednesday-body p {
  color: var(--sand-mid);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.episode-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
}

.episode-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--clay);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.episode-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: #111;
}

.episode-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.episode-card:hover .episode-thumb img {
  opacity: 1;
}

.episode-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--clay);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(var(--clay-rgb), 0.3);
  transition: all 0.25s ease;
}

.episode-card:hover .episode-play-btn {
  background: var(--white);
  color: var(--clay);
  transform: translate(-50%, -50%) scale(1.1);
}

.episode-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.episode-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 8px;
}

.episode-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.episode-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ════════════════ RESPONSIVENESS MEDIA QUERIES ════════════════ */
@media (max-width: 960px) {
  nav {
    padding: 0 6%;
  }

  .nav-links {
    display: none; /* JS will toggle class for mobile menu drawer if needed, or overlay it */
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    border-bottom: 1px solid rgba(var(--clay-rgb), 0.1);
    box-shadow: 0 16px 30px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 120px 6% 60px;
  }

  .hero-left::after {
    display: none;
  }

  .hero-right {
    min-height: 460px;
    padding: 60px 6% 80px;
    background: var(--cream-dark);
  }

  .hero-photo {
    width: 60%;
    margin: 40px auto 0;
  }

  .hero-right-content {
    top: 0;
    left: 0;
    transform: none;
    position: relative;
    margin: 40px auto 0;
    width: calc(100% - 32px);
    max-width: 320px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-hero {
    padding: 130px 6% 70px;
  }

  .audience-split {
    grid-template-columns: 1fr;
  }

  .audience-card {
    padding: 60px 8%;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-badge {
    bottom: 10px;
    right: 10px;
  }

  .framework-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 6%;
  }

  .framework-section.reverse {
    direction: ltr;
  }

  .books-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 6%;
  }

  .what-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .module {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .module-num {
    font-size: 20px;
  }

  .cohort-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-meta {
    flex-direction: column;
  }

  .hero-meta-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
  }

  .hero-meta-item:last-child {
    border-bottom: none;
  }

  .hero-cta-pair {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta-pair button, .hero-cta-pair a {
    width: 100%;
  }
}
