*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #1A1814;
  --ink: #F7F3EC;
  --warm-mid: #6B5B4E;
  --s-red: #E05A7A;
  --t-blue: #2AACB8;
  --a-amber: #E8A84C;
  --r-green: #7B5EA7;
  --driver: #E05C2A;
  --custodian: #1D3D8F;
  --translator: #6B2480;
  --aligner: #00786B;
  --gold: #9C7A32;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(247,243,236,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,24,20,0.08);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-cta {
  padding: 8px 20px;
  background: var(--gold);
  color: #FFFFFF !important;
  border-radius: 3px;
  font-weight: 500 !important;
  opacity: 1 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #7A5F28 !important; color: #FFFFFF !important; }

/* PROGRESS BAR */
.progress-bar {
  position: fixed;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.1s;
  z-index: 200;
}

/* PAGE HERO (sub-pages) */
.page-hero {
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 48px 64px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 100%, rgba(156,122,50,0.06) 0%, transparent 60%);
}
.page-hero-inner { max-width: 1100px; width: 100%; margin: 0 auto; position: relative; }
.page-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 20px;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26,24,20,0.55);
  max-width: 580px;
}

/* MAIN CONTENT WRAPPER */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}

/* SECTION */
.content-section {
  margin-bottom: 96px;
}
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,24,20,0.6);
  max-width: 640px;
  margin-bottom: 40px;
}

/* MINDSET CARDS */
.mindsets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.mindset-card {
  border-radius: 6px;
  padding: 36px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
}
.mindset-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.mindset-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.mindset-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255,255,255,0.15);
  position: absolute;
  top: 12px; right: 16px;
}
.mindset-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
}
.mindset-drive {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 20px;
}
.mindset-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  opacity: 0.85;
}
.mindset-sdt {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* TYPES TABS */
.types-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.type-tab {
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px 3px 0 0;
  cursor: pointer;
  transition: opacity 0.2s;
  color: #fff;
  opacity: 0.45;
  font-family: 'DM Sans', sans-serif;
}
.type-tab.active { opacity: 1; }
.type-panel {
  display: none;
  padding: 40px;
  border-radius: 0 6px 6px 6px;
  animation: fadeIn 0.3s ease;
}
.type-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.type-panel-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 6px;
}
.type-panel-left .type-drive {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.type-panel-left p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
}
.type-panel-right { display: flex; flex-direction: column; gap: 14px; }
.type-detail-row {
  border-left: 2px solid rgba(255,255,255,0.12);
  padding-left: 16px;
}
.type-detail-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}
.type-detail-value {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.type-bias-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  margin: 2px 3px 2px 0;
}

/* ARCHETYPE GRID */
.arch-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.arch-card-full {
  border-radius: 6px;
  padding: 24px 22px;
  background: #FFFFFF;
  border: 1px solid rgba(26,24,20,0.08);
  border-top-width: 3px;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
  box-shadow: 0 1px 3px rgba(26,24,20,0.06);
}
.arch-card-full:hover {
  background: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,24,20,0.1);
}
.arch-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
  margin-top: 8px;
}
.arch-card-code {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(26,24,20,0.3);
  margin-bottom: 10px;
}
.arch-card-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.8;
}
.arch-card-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(26,24,20,0.55);
  margin-bottom: 14px;
}
.arch-card-mode {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}
.arch-family-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 48px 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.arch-family-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: currentColor;
}

/* THEORIES ACCORDION */
.theories-accordion { margin-top: 8px; }
.theory-item {
  border-bottom: 1px solid rgba(26,24,20,0.1);
  overflow: hidden;
}
.theory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 20px;
}
.theory-header:hover .theory-title { color: var(--gold); }
.theory-left { display: flex; align-items: center; gap: 20px; }
.theory-abbr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  min-width: 60px;
}
.theory-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  transition: color 0.2s;
}
.theory-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.3);
  margin-left: auto;
  margin-right: 24px;
  white-space: nowrap;
}
.theory-chevron {
  width: 20px; height: 20px;
  border-right: 1.5px solid rgba(26,24,20,0.3);
  border-bottom: 1.5px solid rgba(26,24,20,0.3);
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-top: -4px;
}
.theory-item.open .theory-chevron { transform: rotate(-135deg); margin-top: 4px; }
.theory-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.theory-item.open .theory-body { max-height: 600px; }
.theory-body-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 0 0 32px 80px;
}
.theory-body-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,24,20,0.6);
}
.theory-star-links { display: flex; flex-direction: column; gap: 8px; }
.theory-star-link {
  font-size: 12px;
  font-weight: 400;
  color: rgba(26,24,20,0.5);
  padding: 8px 12px;
  background: rgba(26,24,20,0.04);
  border-radius: 3px;
  border-left: 2px solid var(--gold);
}

/* MODES GRID */
.modes-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.mode-full-card {
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: filter 0.2s, box-shadow 0.2s;
  cursor: default;
  border: 1px solid rgba(26,24,20,0.08);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(26,24,20,0.06);
}
.mode-full-card:hover { filter: brightness(0.97); box-shadow: 0 8px 24px rgba(26,24,20,0.1); }
.mode-full-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.mode-full-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--cream);
  margin-top: 16px;
  margin-bottom: 4px;
}
.mode-full-energy {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.4);
  margin-bottom: 20px;
}
.mode-full-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26,24,20,0.7);
  margin-bottom: 20px;
}
.mode-full-consequence {
  font-size: 13px;
  font-style: italic;
  color: rgba(26,24,20,0.5);
  padding: 14px 18px;
  border-left: 2px solid rgba(26,24,20,0.18);
  margin-bottom: 20px;
}
.mode-full-archetypes {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.35);
  margin-bottom: 8px;
}
.mode-full-arch-list { display: flex; flex-wrap: wrap; gap: 6px; }
.mode-arch-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(26,24,20,0.07);
  color: rgba(26,24,20,0.55);
}

/* APPLICATIONS */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.app-card {
  background: #FFFFFF;
  border: 1px solid rgba(26,24,20,0.08);
  border-radius: 6px;
  padding: 32px;
  border-top: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 1px 3px rgba(26,24,20,0.06);
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,24,20,0.1);
}
.app-icon { font-size: 28px; margin-bottom: 16px; }
.app-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.app-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26,24,20,0.5);
}

/* VERSUS TABLE */
.versus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}
.versus-table th {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.35);
  text-align: left;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(26,24,20,0.1);
}
.versus-table th.star-col {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.versus-table td {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  border-bottom: 1px solid rgba(26,24,20,0.06);
  color: rgba(26,24,20,0.5);
  vertical-align: top;
}
.versus-table td.star-col {
  color: var(--cream);
  font-weight: 400;
  background: rgba(156,122,50,0.06);
}
.versus-table tr:hover td { background: rgba(26,24,20,0.03); }
.versus-table tr:hover td.star-col { background: rgba(156,122,50,0.1); }

/* CALLOUT */
.callout {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: rgba(156,122,50,0.06);
  border-radius: 0 4px 4px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  margin: 32px 0;
  max-width: 640px;
}

/* FOOTER — see extended footer block below */

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* STAT BLOCKS */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 48px 0;
}
.stat-item {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}
.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(26,24,20,0.4);
  margin-top: 8px;
  line-height: 1.5;
}

/* CTA BUTTONS */
.btn-primary {
  background: var(--gold);
  color: #FFFFFF;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: #7A5F28; }
.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid rgba(26,24,20,0.3);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover { border-color: rgba(26,24,20,0.7); background: rgba(26,24,20,0.04); }
.cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* Responsive rules consolidated in extended block below */

/* =====================================================
   NAV DROPDOWN & MOBILE
   ===================================================== */

.has-dropdown {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
  vertical-align: middle;
}
.has-dropdown:hover > a::after {
  transform: rotate(-135deg);
  opacity: 0.8;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid rgba(26,24,20,0.1);
  border-radius: 6px;
  padding: 16px 0 8px;
  list-style: none;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 200;
  /* Invisible bridge above the dropdown fills the gap between nav item and menu */
  margin-top: 0;
}
/* Invisible hover bridge — extends the hover area upward to cover the gap */
.dropdown::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #FFFFFF;
  border-left: 1px solid rgba(26,24,20,0.1);
  border-top: 1px solid rgba(26,24,20,0.1);
  pointer-events: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}
.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.5) !important;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.dropdown li a:hover {
  color: var(--cream) !important;
  background: rgba(26,24,20,0.05);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(26,24,20,0.6);
  border-radius: 2px;
  transition: all 0.2s;
}

/* =====================================================
   FOOTER REDESIGN
   ===================================================== */

footer {
  border-top: 1px solid rgba(26,24,20,0.08);
  background: #EDE8DF;
  padding: 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(26,24,20,0.5);
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-brand .footer-logo:hover { color: var(--cream); }
.footer-tagline {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.2);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(26,24,20,0.35);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.footer-col ul a:hover { color: rgba(26,24,20,0.75); }
.footer-trademark {
  margin-top: 24px;
  font-size: 10px;
  font-weight: 400;
  color: rgba(26,24,20,0.18);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.footer-base {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 48px;
  border-top: 1px solid rgba(26,24,20,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 400;
  color: rgba(26,24,20,0.2);
  letter-spacing: 0.06em;
}

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

@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: rgba(247,243,236,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,24,20,0.08);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 16px;
    z-index: 99;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(26,24,20,0.05); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 13px 24px;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: rgba(26,24,20,0.55) !important;
  }
  .nav-links a.active { color: var(--cream) !important; }
  .has-dropdown > a::after { display: none; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: rgba(26,24,20,0.03);
    border-radius: 0;
    padding: 0;
  }
  .dropdown::before { display: none; }
  .has-dropdown:hover .dropdown { transform: none; }
  .dropdown li a {
    padding: 10px 36px;
    font-size: 11px;
    color: rgba(26,24,20,0.35) !important;
  }
  .nav-cta {
    margin: 8px 24px 4px;
    padding: 10px 20px !important;
    text-align: center;
    border-radius: 3px;
  }
  /* Content */
  .page-hero, main { padding-left: 24px; padding-right: 24px; }
  .mindsets-grid { grid-template-columns: repeat(2, 1fr); }
  .arch-grid-full { grid-template-columns: repeat(2, 1fr); }
  .modes-full-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .type-panel.active { grid-template-columns: 1fr; }
  .theory-body-inner { grid-template-columns: 1fr; padding-left: 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  /* Footer */
  .footer-inner { padding: 48px 24px 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-base { padding: 16px 24px; flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
}
