/* ═══════════════════════════════════════════
   TRUST + AIRS — Brand Identity Stylesheet
   Deepa Rao · Version 1.0
   Fonts: Cormorant Garamond + DM Sans
   ═══════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2e4a;
  --slate:  #4a7096;
  --steel:  #7a9bb5;
  --gold:   #c49a72;
  --blush:  #e8c4b4;
  --mist:   #eceef4;
  --white:  #ffffff;
  --charcoal: #1c1c2a;
  --stone:  #6e7585;
  --divider: rgba(26,46,74,0.10);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

em { font-style: italic; color: var(--gold); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Containers ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: 780px;
}

/* ─── Sections ─── */
.section {
  padding: 6rem 0;
}
.section--light  { background: var(--white); }
.section--navy   { background: var(--navy); }
.section--blush  { background: var(--blush); }
.section--mist   { background: var(--mist); }

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__header--light .section__title { color: var(--white); }
.section__header--light .section__sub   { color: var(--steel); }

.section__title { margin-bottom: 0.75rem; }
.section__title--light { color: var(--white); }

.section__sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--stone);
  margin-top: 0.5rem;
}
.section__sub--dark { color: var(--charcoal); }

/* ─── TRUST Cards (2-col, like AIRS) ─── */
.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) { .trust-cards { grid-template-columns: 1fr; } }

.trust-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(26,46,74,0.15);
  border-top: 2px solid var(--slate);
  transition: box-shadow 0.25s;
}
.trust-card:hover { box-shadow: 0 4px 30px rgba(26,46,74,0.28); }
.trust-card--full {
  grid-column: 1 / -1;
}
.trust-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.trust-card__letter {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3rem;
  color: var(--slate);
  line-height: 1;
}
.trust-card__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.trust-card > p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.trust-card__controls {
  background: var(--mist);
  border-radius: 3px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.trust-card__controls-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.6rem;
}
.trust-card__controls ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.trust-card__controls li {
  font-size: 0.8rem;
  color: var(--stone);
  padding-left: 0.9rem;
  position: relative;
  line-height: 1.45;
}
.trust-card__controls li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--slate);
  font-size: 0.65rem;
}
.trust-card__question {
  background: var(--navy);
  border-radius: 3px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.trust-card__question span {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.35rem;
}

/* ─── TRUST Maturity Full Section ─── */
.maturity-full {
  max-width: 1100px;
  margin: 0 auto;
}
.maturity-full__levels {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,46,74,0.08);
}
@media (max-width: 760px) {
  .maturity-full__levels { flex-direction: column; }
  .maturity-full__arrow { transform: rotate(90deg); align-self: center; }
}
.maturity-full__level {
  flex: 1;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--divider);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}
.maturity-full__level:last-child { border-right: none; }
.maturity-full__level:hover { background: var(--mist); }
.maturity-full__level--target {
  background: var(--navy);
  border-right-color: transparent;
  padding-top: 2.75rem;
}
.maturity-full__level--target:hover { background: #1f3660; }
.maturity-full__level--aspire { background: rgba(74,112,150,0.06); }

.maturity-full__target-tag {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.3rem;
}
.maturity-full__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  border: 0.5px solid var(--divider);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  width: fit-content;
}
.maturity-full__badge--active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.maturity-full__badge--aspire {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}
.maturity-full__name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.2;
}
.maturity-full__level--target .maturity-full__name { color: var(--white); }
.maturity-full__desc {
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.55;
}
.maturity-full__level--target .maturity-full__desc { color: rgba(255,255,255,0.6); }
.maturity-full__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  color: var(--divider);
  font-size: 1.2rem;
  background: var(--white);
  border-right: 1px solid var(--divider);
  flex-shrink: 0;
}
.maturity-full__note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(74,112,150,0.06);
  border: 0.5px solid rgba(74,112,150,0.2);
  border-radius: 4px;
  padding: 1.1rem 1.5rem;
}
.maturity-full__note svg { flex-shrink: 0; margin-top: 0.15rem; }
.maturity-full__note p {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.6;
  margin: 0;
}
.maturity-full__note strong { color: var(--navy); }

/* ─── Combined Diagrams ─── */
.combined-diagrams {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}
@media (max-width: 760px) { .combined-diagrams { grid-template-columns: 1fr; } }
.combined-diagram__card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.18);
}
.combined-diagram__card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}
/* Single centered diagram */
.combined-diagram-single {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.combined-diagram__card--center {
  max-width: 500px;
  flex: 0 1 500px;
}

/* ─── Framework Diagram Images ─── */
.framework-diagram {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 680px;
}
.framework-diagram--light {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(26,46,74,0.08);
  margin-bottom: 3rem;
}
.framework-diagram--combined {
  max-width: 500px;
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  margin-bottom: 3rem;
}
.framework-diagram__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.framework-diagram__img--combined {
  max-width: 380px;
  margin: 0 auto;
}

/* ─── Labels ─── */
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
}
.label--gold { color: var(--gold); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--slate);
  border-color: var(--slate);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #b8895e;
  border-color: #b8895e;
}
.btn--sm  { padding: 0.55rem 1.4rem; font-size: 0.75rem; }
.btn--full { width: 100%; text-align: center; }


/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,46,74,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(196,154,114,0.2);
  transition: background 0.3s var(--ease);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo-mark {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav__logo-pipe {
  color: rgba(255,255,255,0.2);
  font-weight: 100;
}
.nav__logo-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  padding: 0.4rem 1.2rem;
  border: 0.5px solid rgba(196,154,114,0.5);
  border-radius: var(--radius);
  color: var(--gold) !important;
  transition: border-color 0.2s, background 0.2s !important;
}
.nav__cta:hover {
  background: rgba(196,154,114,0.1);
  border-color: var(--gold) !important;
}
.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: 1px;
  background: var(--white);
  transition: transform 0.25s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.nav__mobile a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.6rem 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile.open { display: flex; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,74,0) 0%, rgba(14,24,42,0.5) 100%);
  pointer-events: none;
}

.hero__grid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .hero { padding: 7rem 2rem 5rem; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__photo-wrap { order: -1; max-width: 320px; margin: 0 auto; }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-align: left;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 480px;
}
.hero__quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: rgba(196,154,114,0.9);
  margin-bottom: 2rem;
  padding: 0.9rem 1.25rem;
  border-left: 2px solid rgba(196,154,114,0.5);
  background: rgba(196,154,114,0.06);
  border-radius: 0 3px 3px 0;
  display: block;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}
.hero__meta-dot { opacity: 0.5; }
.hero__meta-link { color: var(--gold); opacity: 0.7; transition: opacity 0.2s; }
.hero__meta-link:hover { opacity: 1; }

/* Hero photo */
.hero__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 0.5px rgba(196,154,114,0.25);
  filter: brightness(0.97) contrast(1.03);
}
/* Subtle gold corner accents */
.hero__photo-frame::before,
.hero__photo-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.hero__photo-frame::before {
  top: -8px; left: -8px;
  border-width: 1px 0 0 1px;
}
.hero__photo-frame::after {
  bottom: -8px; right: -8px;
  border-width: 0 1px 1px 0;
}
.hero__photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(26,46,74,0.92);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  border-radius: 3px;
  border-left: 2px solid var(--gold);
}
.hero__photo-badge-name {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
}
.hero__photo-badge-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.35;
}
.hero__scroll-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}
.hero__scroll-line {
  width: 0.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--steel), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.7); }
}


/* ════════════════════════════════════════
   STRIP
════════════════════════════════════════ */
.strip {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 2rem;
}
.strip__dot { opacity: 0.5; }


/* ════════════════════════════════════════
   ABOUT / PROBLEM
════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 760px) {
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.about__lead {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.about__text p {
  color: var(--stone);
  font-size: 0.92rem;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stat-card {
  background: var(--mist);
  border-left: 2px solid var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.stat-card--gold { border-color: var(--gold); }
.stat-card__num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-card--gold .stat-card__num { color: var(--gold); }
.stat-card__label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--stone);
  line-height: 1.45;
}

/* Inline stats (replacing stat cards) */
.about__stats-inline {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat-inline {
  flex: 1;
  min-width: 100px;
  border-top: 2px solid var(--divider);
  padding-top: 0.85rem;
}
.stat-inline--gold { border-color: var(--gold); }
.stat-inline__num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-inline--gold .stat-inline__num { color: var(--gold); }
.stat-inline__label {
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.4;
}

/* Infographic placeholder */
.about__infographic-placeholder {
  display: flex;
  align-items: stretch;
}
.infographic-slot {
  flex: 1;
  border: 1px dashed rgba(196,154,114,0.35);
  border-radius: 6px;
  background: rgba(196,154,114,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  transition: border-color 0.3s;
}
.infographic-slot:hover { border-color: rgba(196,154,114,0.6); }
.infographic-slot__inner {
  text-align: center;
  padding: 2rem;
}
.infographic-slot__inner svg { margin: 0 auto 1rem; opacity: 0.6; }
.infographic-slot__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.25rem;
}
.infographic-slot__sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--stone);
  opacity: 0.6;
  margin-bottom: 0;
}

/* Compare table */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(26,46,74,0.08);
}
@media (max-width: 640px) {
  .compare { grid-template-columns: 1fr; }
}
.compare__col {
  padding: 2.5rem 2rem;
}
.compare__col--dark  { background: var(--navy); }
.compare__col--light { background: var(--mist); }

.compare__heading {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.5rem;
}
.compare__col--light .compare__heading { color: var(--slate); }

.compare__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.compare__col--light .compare__list li { color: var(--charcoal); }
.compare__icon {
  flex-shrink: 0;
  font-style: normal;
  font-size: 0.85rem;
  margin-top: 0.05rem;
}
.compare__icon--no  { color: #e87070; }
.compare__icon--yes { color: var(--gold); }


/* ════════════════════════════════════════
   TRUST PILLARS
════════════════════════════════════════ */
.framework-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.framework-intro p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}
.framework-intro--dark p { color: var(--charcoal); }

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3.5rem;
}
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pillars { grid-template-columns: 1fr; }
}

.pillar {
  background: rgba(255,255,255,0.04);
  padding: 2rem 1.5rem;
  transition: background 0.25s;
  cursor: default;
}
.pillar:hover {
  background: rgba(255,255,255,0.08);
}
.pillar__letter {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.pillar__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.pillar__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.pillar__controls {
  margin-bottom: 1rem;
}
.pillar__controls-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pillar__controls ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pillar__controls li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  padding-left: 0.75rem;
  position: relative;
  line-height: 1.4;
}
.pillar__controls li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(196,154,114,0.4);
  font-size: 0.65rem;
}
.pillar__question {
  border-top: 0.5px solid rgba(196,154,114,0.2);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}
.pillar__q-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.35rem;
}
.pillar__question p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Maturity Model */
.maturity {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2.5rem;
}
.maturity--light {
  background: var(--white);
  border: 0.5px solid var(--divider);
}
.maturity__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.maturity__levels {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.maturity__level {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  position: relative;
}
.maturity__level--active {
  background: var(--gold);
  border-color: var(--gold);
}
.maturity__level--dark-text {
  background: var(--mist);
  border-color: var(--divider);
}
.maturity__num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}
.maturity__num--navy { color: var(--navy); opacity: 0.5; }
.maturity__level--active .maturity__num { color: var(--white); opacity: 1; }
.maturity__name {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
.maturity__name--dark { color: var(--navy); }
.maturity__level--active .maturity__name { color: var(--white); }
.maturity__badge {
  display: block;
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.maturity__arrow {
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
  flex-shrink: 0;
}
.maturity__arrow--dark { color: var(--navy); opacity: 0.3; }


/* ════════════════════════════════════════
   AIRS FRAMEWORK
════════════════════════════════════════ */

/* Infographic */
.airs-infographic {
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 8px 40px rgba(26,46,74,0.3);
}
.airs-infographic__header {
  background: linear-gradient(135deg, var(--navy) 0%, #243d5c 100%);
  padding: 2.5rem;
  text-align: center;
  border-bottom: 0.5px solid rgba(196,154,114,0.2);
}
.airs-infographic__header h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.25rem;
}
.airs-infographic__header p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.airs-infographic__header span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--steel);
}

.airs-pillars-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  padding: 0;
}
@media (max-width: 700px) {
  .airs-pillars-visual { grid-template-columns: 1fr 1fr; }
}
.airs-pillar-vis {
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 3px solid transparent;
}
.airs-pillar-vis--a { border-color: var(--gold); background: rgba(196,154,114,0.05); }
.airs-pillar-vis--i { border-color: var(--slate); background: rgba(74,112,150,0.05); }
.airs-pillar-vis--r { border-color: var(--steel); background: rgba(122,155,181,0.05); }
.airs-pillar-vis--s { border-color: var(--navy); background: rgba(26,46,74,0.1); }

.airs-pillar-vis__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
}
.airs-pillar-vis h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.airs-pillar-vis p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 0;
}

.airs-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
@media (max-width: 600px) { .airs-outcomes { grid-template-columns: 1fr; } }
.airs-outcome {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,0.02);
}
.airs-outcome__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.airs-outcome strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.airs-outcome p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 0;
}

/* AIRS detail cards */
.airs-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) { .airs-pillars { grid-template-columns: 1fr; } }

.airs-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(26,46,74,0.06);
  border-top: 2px solid var(--gold);
  transition: box-shadow 0.25s;
}
.airs-card:hover { box-shadow: 0 4px 30px rgba(26,46,74,0.12); }
.airs-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.airs-card__letter {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.airs-card__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.airs-card > p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.airs-card__controls {
  background: var(--mist);
  border-radius: 3px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.airs-card__controls-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.6rem;
}
.airs-card__controls ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.airs-card__controls li {
  font-size: 0.8rem;
  color: var(--stone);
  padding-left: 0.9rem;
  position: relative;
  line-height: 1.45;
}
.airs-card__controls li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
}
.airs-card__question {
  background: var(--navy);
  border-radius: 3px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.airs-card__question span {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}


/* ════════════════════════════════════════
   COMBINED FRAMEWORK
════════════════════════════════════════ */
.dual-lens {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .dual-lens { grid-template-columns: 1fr; }
  .dual-lens__plus { text-align: center; }
}
.dual-lens__card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2.5rem;
}
.dual-lens__mark {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.dual-lens__card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.dual-lens__card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 0;
}
.dual-lens__plus {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  opacity: 0.5;
}

.pull-quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 2rem 3rem;
  border-top: 0.5px solid rgba(196,154,114,0.3);
  border-bottom: 0.5px solid rgba(196,154,114,0.3);
  position: relative;
}
.pull-quote::before {
  content: '"';
  font-size: 5rem;
  color: rgba(196,154,114,0.15);
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  line-height: 1;
  font-style: normal;
}

/* Regulatory table */
.reg-table-wrap {
  margin-bottom: 4rem;
}
.reg-table__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.reg-table__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.reg-table {
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.reg-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 0;
}
@media (max-width: 640px) {
  .reg-row { grid-template-columns: 1fr; }
  .reg-row--header { display: none; }
}
.reg-row--header {
  background: rgba(255,255,255,0.06);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.reg-row--header span {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 1.25rem;
}
.reg-row:not(.reg-row--header) {
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.reg-row:not(.reg-row--header):hover {
  background: rgba(255,255,255,0.03);
}
.reg-row:not(.reg-row--header) span {
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  border-right: 0.5px solid rgba(255,255,255,0.05);
}
.reg-name {
  color: var(--white) !important;
  font-weight: 400;
}

/* Outcomes */
.outcomes__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
}
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 800px) { .outcomes__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .outcomes__grid { grid-template-columns: 1fr; } }

.outcome-card {
  background: rgba(255,255,255,0.03);
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.outcome-card:hover { background: rgba(255,255,255,0.06); }
.outcome-card__num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2rem;
  color: rgba(196,154,114,0.4);
  margin-bottom: 0.75rem;
}
.outcome-card h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.outcome-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 0;
}


/* ════════════════════════════════════════
   VIDEO
════════════════════════════════════════ */
.video-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 8px 40px rgba(26,46,74,0.15);
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
}
.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(26,46,74,0.65);
  backdrop-filter: blur(2px);
  cursor: pointer;
  transition: background 0.3s;
}
.video-overlay:hover { background: rgba(26,46,74,0.5); }
.video-overlay.hidden { display: none; }
.video-play-btn {
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  margin-bottom: 1rem;
}
.video-play-btn:hover { transform: scale(1.1); }
.video-overlay__label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.video-caption {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.video-caption p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 0;
}


/* ════════════════════════════════════════
   RESOURCES
════════════════════════════════════════ */
.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 860px) { .resources__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .resources__grid { grid-template-columns: 1fr; } }

.resource-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(26,46,74,0.07);
  border-top: 2px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.resource-card:hover {
  box-shadow: 0 6px 30px rgba(26,46,74,0.12);
  transform: translateY(-2px);
}
.resource-card--featured {
  border-color: var(--gold);
  grid-column: span 1;
}
.resource-card--soon {
  opacity: 0.65;
  cursor: default;
}
.resource-card--soon:hover { transform: none; }

.resource-card__type {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}
.resource-card__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.3;
  flex: 1;
}
.resource-card__desc {
  font-size: 0.83rem;
  color: var(--stone);
  line-height: 1.65;
}
.resource-card__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  border: 0.5px solid var(--divider);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* Roadmap */
.roadmap {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(26,46,74,0.06);
}
.roadmap__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 2rem;
}
.roadmap__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 640px) { .roadmap__track { grid-template-columns: 1fr; } }
.roadmap__item {
  padding: 1.5rem;
  border-radius: 3px;
  background: var(--mist);
  border-left: 2px solid var(--divider);
}
.roadmap__item--current { border-color: var(--gold); background: rgba(196,154,114,0.06); }
.roadmap__label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.roadmap__item h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.roadmap__item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.roadmap__item li {
  font-size: 0.78rem;
  color: var(--stone);
  padding-left: 0.8rem;
  position: relative;
  line-height: 1.4;
}
.roadmap__item li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}


/* ════════════════════════════════════════
   UPLOAD
════════════════════════════════════════ */
.upload-area {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 3rem;
}
.upload-dropzone {
  border: 1px dashed rgba(196,154,114,0.4);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  margin-bottom: 2rem;
}
.upload-dropzone.dragover,
.upload-dropzone:hover {
  border-color: var(--gold);
  background: rgba(196,154,114,0.05);
}
.upload-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}
.upload-dropzone__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
}
.upload-browse {
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.upload-dropzone__hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
}
.upload-input {
  display: none;
}

.upload-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.upload-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.upload-file-item__remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.2s;
}
.upload-file-item__remove:hover { color: #e87070; }

/* Forms */
.upload-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group--light label { color: var(--stone); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group--light input,
.form-group--light select,
.form-group--light textarea {
  background: var(--mist);
  border-color: var(--divider);
  color: var(--charcoal);
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group--light input::placeholder,
.form-group--light select::placeholder,
.form-group--light textarea::placeholder { color: var(--stone); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group--light input:focus,
.form-group--light select:focus,
.form-group--light textarea:focus { border-color: var(--slate); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { color: var(--charcoal); background: white; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  cursor: pointer;
}

.upload-privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.upload-success {
  text-align: center;
  padding: 3rem;
}
.upload-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}
.upload-success h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.upload-success p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 0;
}
.contact-form__success {
  text-align: center;
  padding: 1rem;
  background: rgba(196,154,114,0.1);
  border-radius: 3px;
}
.contact-form__success p {
  color: var(--gold);
  font-size: 0.88rem;
  margin: 0;
}


/* ════════════════════════════════════════
   AUTHOR
════════════════════════════════════════ */
.author-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 760px) {
  .author-block { grid-template-columns: 1fr; }
}

/* Author headshot */
.author-block__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.author-block__photo-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 0.5px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(196,154,114,0.08), 0 12px 40px rgba(26,46,74,0.1);
  flex-shrink: 0;
}
.author-block__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.author-block__photo-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.author-block__photo-caption span:first-child {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--navy);
}
.author-block__photo-caption span:last-child {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.author-block__name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.author-block__title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.author-block__bio {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.author-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.author-block__tags span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  border: 0.5px solid var(--divider);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  background: var(--mist);
}
.author-block__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.author-block__orbital svg {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}


/* ════════════════════════════════════════
   CONTACT ALTS
════════════════════════════════════════ */
.contact-alts {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.contact-alt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.contact-alt:hover { color: var(--gold); }
.contact-alt svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #111d2c;
  border-top: 0.5px solid rgba(196,154,114,0.2);
  padding: 3rem 0;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__dr {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer__dr em {
  font-style: italic;
  color: var(--gold);
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.footer__legal {
  font-size: 0.68rem !important;
  color: rgba(255,255,255,0.2) !important;
}


/* ════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
  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; }


/* ════════════════════════════════════════
   SCROLLBAR
════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--mist); }
::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }


/* ════════════════════════════════════════
   SELECTION
════════════════════════════════════════ */
::selection { background: rgba(196,154,114,0.25); color: var(--navy); }
