/* ==========================================================================
   milindbharambe.com — "The Intelligent City"
   Core design system: tokens, typography, layout, components
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Palette — urban mineral, not police-blue */
  --ink:            #1D2321;   /* warm graphite */
  --ink-deep:       #121614;   /* near-black graphite */
  --ink-soft:       #2C3431;
  --mineral:        #E9E6DE;   /* pale mineral — page ground */
  --mineral-warm:   #DFDBD1;
  --paper:          #FAFAF7;   /* white */
  --teal:           #12666E;   /* cobalt teal — primary accent */
  --teal-deep:      #0D4C52;
  --teal-light:     #2A8C93;
  --lime:           #C7DA4B;   /* citrus lime — signal accent */
  --lime-deep:      #A4B633;
  --mist:           #D3D8D3;   /* mist grey */
  --muted:          #5C6560;   /* body secondary */
  --muted-light:    #8A928C;
  --rule:           #C9C5BA;   /* hairline on mineral */
  --rule-dark:      #3A423E;   /* hairline on ink */

  /* Type */
  --f-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --f-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --f-serif:   "Instrument Serif", Georgia, "Times New Roman", serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --maxw: 1440px;
  --maxw-text: 68ch;
  --nav-h: 68px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  background: var(--mineral);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--lime); color: var(--ink-deep); }

/* Accessible focus — visible on every ground */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-ink :focus-visible,
.sect--ink :focus-visible { outline-color: var(--lime); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink-deep); color: var(--paper);
  padding: .75rem 1.25rem; font-weight: 600; font-size: .9rem;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Body is hidden until auth.js confirms access, to avoid a content flash */
body.gate-pending { visibility: hidden; }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 1080px; }

.sect { padding-block: clamp(3.5rem, 8vw, 7.5rem); position: relative; }
.sect--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.sect--ink { background: var(--ink); color: var(--mineral); }
.sect--ink h1, .sect--ink h2, .sect--ink h3 { color: var(--paper); }
.sect--deep { background: var(--ink-deep); color: var(--mineral); }
.sect--deep h2, .sect--deep h3 { color: var(--paper); }
.sect--paper { background: var(--paper); }

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.sect--ink .rule, .sect--deep .rule { background: var(--rule-dark); }

/* Editorial eyebrow / index label */
.eyebrow {
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; background: var(--lime);
  flex: none;
}
.sect--ink .eyebrow, .sect--deep .eyebrow { color: var(--lime); }
.sect--ink .eyebrow::before, .sect--deep .eyebrow::before { background: var(--teal-light); }

/* Display scale */
.d1 { font-size: clamp(2.6rem, 8.2vw, 6.4rem); }
.d2 { font-size: clamp(2rem, 5.4vw, 4rem); }
.d3 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
.d4 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
}
.sect--ink .lede, .sect--deep .lede { color: var(--mist); }

.prose { max-width: var(--maxw-text); }
.prose p { color: var(--muted); }
.sect--ink .prose p, .sect--deep .prose p { color: var(--mist); }
.prose strong { color: var(--ink); font-weight: 600; }
.sect--ink .prose strong, .sect--deep .prose strong { color: var(--paper); }

.serif-note {
  font-family: var(--f-serif);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--ink);
}
.sect--ink .serif-note, .sect--deep .serif-note { color: var(--paper); }

/* --------------------------------------------------------------------------
   4. STICKY NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(233, 230, 222, .88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(18, 22, 20, .94);
  border-bottom-color: var(--rule-dark);
}
.nav.is-scrolled .nav__mark,
.nav.is-scrolled .nav__link { color: var(--mineral); }
.nav.is-scrolled .nav__mark span { color: var(--lime); }
.nav.is-scrolled .nav__link[aria-current="page"] { color: var(--lime); }
.nav.is-scrolled .nav__link[aria-current="page"]::after { background: var(--lime); }
.nav.is-scrolled .nav__burger span { background: var(--mineral); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--nav-h);
}

.nav__mark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav__mark span {
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--teal);
  font-weight: 600;
  transition: color .3s var(--ease);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 1.8vw, 1.9rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  font-family: var(--f-display);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: .5rem 0;
  position: relative;
  display: inline-block;
  transition: color .2s var(--ease);
}
.nav__link:hover { color: var(--teal); }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--teal);
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; padding: 0;
  cursor: pointer;
  flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 6px;
}
.nav__burger span {
  display: block; height: 2px; width: 24px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .2s var(--ease), background .3s var(--ease);
}
.nav__burger span:nth-child(2) { width: 17px; }

/* Full-screen mobile menu */
.navmenu {
  position: fixed; inset: 0;
  z-index: 190;
  background: var(--ink-deep);
  color: var(--mineral);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 2.5rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
  visibility: hidden;
}
.navmenu.is-open { transform: translateY(0); visibility: visible; }
.navmenu__list { list-style: none; margin: 0; padding: 0; }
.navmenu__list li { border-bottom: 1px solid var(--rule-dark); }
.navmenu__list a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: clamp(.75rem, 2.4vw, 1.05rem) 0;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 6.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -.02em;
  text-decoration: none;
  color: var(--mineral);
  transition: color .2s var(--ease), padding-left .3s var(--ease);
}
.navmenu__list a:hover, .navmenu__list a:focus-visible { color: var(--lime); padding-left: .5rem; }
.navmenu__list a[aria-current="page"] { color: var(--lime); }
.navmenu__list .idx {
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  color: var(--teal-light); flex: none; width: 2.2rem;
}
.navmenu__foot {
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--rule-dark);
  font-size: .8rem; color: var(--muted-light);
  letter-spacing: .04em;
}
.navmenu__foot a { color: var(--lime); text-decoration: none; }
.navmenu__foot a:hover { text-decoration: underline; }

body.menu-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   5. PAGE MASTHEAD (used by interior pages, each restyled per page)
   -------------------------------------------------------------------------- */
.masthead { padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 3.5rem); }
.masthead__index {
  font-family: var(--f-display);
  font-size: .7rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.6rem;
}
.masthead__index em {
  font-style: normal; color: var(--muted-light); letter-spacing: .18em;
}
.masthead h1 { margin-bottom: .5rem; }
.masthead__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--muted); max-width: 54ch; line-height: 1.6;
}

/* Breadcrumb */
.crumbs {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-light); padding-block: 1.1rem;
  font-family: var(--f-display); font-weight: 500;
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: .55rem; color: var(--rule); }
.crumbs a { color: var(--teal); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   6. GRID / CITY MOTIFS (CSS + SVG, no imagery)
   -------------------------------------------------------------------------- */
.gridfield {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(29,35,33,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29,35,33,.055) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 100%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 100%);
}
.sect--ink .gridfield, .sect--deep .gridfield {
  background-image:
    linear-gradient(to right, rgba(233,230,222,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(233,230,222,.07) 1px, transparent 1px);
}

.node {
  width: 9px; height: 9px; border-radius: 50%;
  border: 2px solid var(--teal); background: var(--mineral);
  flex: none;
}

/* --------------------------------------------------------------------------
   7. IMAGE FRAMES — the layout adapts to the image, never the reverse
   -------------------------------------------------------------------------- */
.figure { margin: 0; }
.figure img {
  width: 100%;
  height: auto;              /* natural aspect ratio, never forced */
  object-fit: contain;
  background: var(--mineral-warm);
}
.figure--portrait img { max-width: 520px; }
.figure--framed img {
  border: 1px solid var(--rule);
  padding: .5rem;
  background: var(--paper);
}
.figure--edge img { border: 0; padding: 0; }
.figure figcaption {
  margin-top: .95rem;
  font-size: .78rem;
  line-height: 1.5;
  letter-spacing: .05em;
  color: var(--muted);
  max-width: 46ch;
  border-left: 2px solid var(--lime);
  padding-left: .8rem;
}
.sect--ink .figure figcaption,
.sect--deep .figure figcaption { color: var(--mist); }
.sect--ink .figure--framed img,
.sect--deep .figure--framed img { border-color: var(--rule-dark); background: var(--ink-soft); }

/* --------------------------------------------------------------------------
   8. BUTTONS & LINKS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--f-display);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  padding: .95rem 1.6rem;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  text-decoration: none; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { background: var(--teal); border-color: var(--teal); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--light { background: var(--lime); border-color: var(--lime); color: var(--ink-deep); }
.btn--light:hover { background: var(--paper); border-color: var(--paper); color: var(--ink-deep); }

.arrowlink {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: .25rem;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.arrowlink:hover { gap: .95rem; color: var(--ink); }
.sect--ink .arrowlink, .sect--deep .arrowlink { color: var(--lime); }
.sect--ink .arrowlink:hover, .sect--deep .arrowlink:hover { color: var(--paper); }

/* --------------------------------------------------------------------------
   9. FOOTER — three zones
   -------------------------------------------------------------------------- */
.foot {
  background: var(--ink-deep);
  color: var(--mineral);
  padding-block: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.foot__title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 600; letter-spacing: -.025em; line-height: 1.05;
  color: var(--paper); margin: 0 0 .55rem;
}
.foot__role {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lime); font-family: var(--f-display); font-weight: 500;
  margin: 0 0 1.1rem;
}
.foot__note { font-size: .88rem; color: var(--muted-light); max-width: 34ch; line-height: 1.6; }

.foot__h {
  font-family: var(--f-display); font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal-light); margin: 0 0 1.1rem;
}
.foot__contact { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.foot__contact li { margin-bottom: .55rem; }
.foot__contact a { color: var(--mineral); text-decoration: none; border-bottom: 1px solid transparent; }
.foot__contact a:hover { color: var(--lime); border-bottom-color: var(--lime); }
.foot__contact .nm { color: var(--paper); font-weight: 600; }

.social { display: flex; gap: .6rem; flex-wrap: wrap; }
.social__i {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-dark);
  color: var(--mineral);
  background: transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.social__i svg { width: 17px; height: 17px; fill: currentColor; }
.social__i[aria-disabled="true"] { cursor: default; opacity: .55; }
.social__i:not([aria-disabled="true"]):hover {
  background: var(--lime); border-color: var(--lime); color: var(--ink-deep);
}
.social__note {
  margin-top: .9rem; font-size: .72rem; color: var(--muted-light);
  max-width: 22ch; line-height: 1.5;
}

.foot__bar {
  border-top: 1px solid var(--rule-dark);
  padding-block: 1.5rem 1.75rem;
  display: flex; flex-wrap: wrap; gap: .75rem 2rem;
  justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--muted-light);
}
.foot__bar a { color: var(--mineral); text-decoration: none; border-bottom: 1px solid var(--teal-light); }
.foot__bar a:hover { color: var(--lime); border-bottom-color: var(--lime); }

/* --------------------------------------------------------------------------
   10. REVEAL ANIMATION
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }
.reveal-d4 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .navmenu { transition: none; }
}

/* ==========================================================================
   11. HOME — "City Grid" editorial cover
   ========================================================================== */
.cover {
  background: var(--ink-deep);
  color: var(--mineral);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule-dark);
}
.cover__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  padding-block: clamp(2.75rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 2;
}
.cover__type { padding-bottom: clamp(2rem, 5vw, 4rem); }
.cover__kicker {
  font-family: var(--f-display);
  font-size: .68rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--lime);
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.7rem;
}
.cover__kicker::after { content: ""; height: 1px; flex: 1; background: var(--rule-dark); }

.cover__name {
  font-family: var(--f-display);
  font-size: clamp(2.9rem, 9.2vw, 7.2rem);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.045em;
  color: var(--paper);
  margin: 0;
  text-transform: uppercase;
}
.cover__name span { display: block; }
.cover__name .ln2 { color: var(--lime); }

.cover__ips {
  display: flex; align-items: center; gap: 1rem;
  margin: clamp(1.1rem, 2.5vw, 1.75rem) 0 1rem;
}
.cover__ips b {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700; letter-spacing: .3em; color: var(--teal-light);
}
.cover__ips i { font-style: normal; height: 1px; flex: 1; background: var(--rule-dark); max-width: 130px; }

.cover__desig {
  font-size: clamp(.95rem, 1.5vw, 1.14rem);
  color: var(--mineral);
  letter-spacing: .01em;
  max-width: 30ch;
  line-height: 1.5;
  margin: 0;
}
.cover__desig em { font-style: normal; display: block; color: var(--muted-light); font-size: .8em; margin-top: .3rem; letter-spacing: .08em; text-transform: uppercase; }

/* Portrait bay — grid geometry sits behind, never across, the face */
.cover__bay { position: relative; align-self: end; }
.cover__bayart { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cover__bayart svg { width: 100%; height: 100%; display: block; }
.cover__portrait {
  position: relative; z-index: 1;
  display: block; width: 100%; max-width: 560px;
  margin-inline: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(0,0,0,.45));
}

/* Bottom information rail */
.rail {
  position: relative; z-index: 2;
  border-top: 1px solid var(--rule-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rail__item {
  padding: clamp(1.1rem, 2.4vw, 1.7rem) clamp(.6rem, 1.6vw, 1.4rem);
  border-right: 1px solid var(--rule-dark);
  display: flex; flex-direction: column; gap: .5rem;
}
.rail__item:last-child { border-right: 0; }
.rail__n {
  font-family: var(--f-display); font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; color: var(--teal-light);
}
.rail__t {
  font-family: var(--f-display);
  font-size: clamp(.76rem, 1.35vw, .95rem);
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mineral); line-height: 1.25;
}

/* Intro — asymmetric editorial */
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(1.75rem, 5vw, 5rem);
  align-items: start;
}
.intro__meta { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.intro__meta dl { margin: 0; }
.intro__meta dt {
  font-family: var(--f-display); font-size: .64rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted-light);
  margin-bottom: .3rem;
}
.intro__meta dd {
  margin: 0 0 1.25rem;
  font-size: .96rem; color: var(--ink); line-height: 1.45; font-weight: 500;
}
.intro__meta dd:last-child { margin-bottom: 0; }

/* Statement block */
.statement__head {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 5.6vw, 4.3rem);
  font-weight: 600; line-height: 1.02; letter-spacing: -.035em;
  color: var(--paper); margin: 0 0 clamp(1.75rem, 4vw, 3rem);
  max-width: 18ch;
}
.statement__head b { color: var(--lime); font-weight: 600; }

/* Network diagram */
.netwrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.netfig { width: 100%; }
.netfig svg { width: 100%; height: auto; display: block; overflow: visible; }
.net-line { stroke: rgba(233,230,222,.22); stroke-width: 1; fill: none; }
.net-line--hot { stroke: var(--teal-light); stroke-width: 1.4; }
.net-ring { fill: none; stroke: rgba(233,230,222,.12); stroke-width: 1; }
.net-node circle { fill: var(--ink-deep); stroke: var(--teal-light); stroke-width: 1.6; transition: fill .25s var(--ease), stroke .25s var(--ease), r .25s var(--ease); }
.net-node text { font-family: var(--f-display); font-size: 9.2px; font-weight: 600; letter-spacing: .1em; fill: var(--mineral); text-transform: uppercase; }
.net-node:hover circle, .net-node:focus-visible circle { fill: var(--lime); stroke: var(--lime); }
.net-node:hover text, .net-node:focus-visible text { fill: var(--lime); }
.net-core circle { fill: var(--teal); stroke: var(--lime); stroke-width: 2; }
.net-core text { font-size: 10px; fill: var(--paper); }

.netlist { list-style: none; margin: 0; padding: 0; }
.netlist li {
  display: flex; gap: 1rem; align-items: baseline;
  padding: .82rem 0; border-bottom: 1px solid var(--rule-dark);
  font-size: .95rem; color: var(--mist);
}
.netlist li:first-child { border-top: 1px solid var(--rule-dark); }
.netlist .k {
  font-family: var(--f-display); font-size: .64rem; font-weight: 600;
  letter-spacing: .16em; color: var(--teal-light); flex: none; width: 2rem;
}

/* Navi Mumbai full-width band */
.cityband { position: relative; overflow: hidden; }
.cityband__grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(1.75rem, 4vw, 4rem); align-items: center;
}
.factgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.factgrid > div { background: var(--paper); padding: clamp(1.1rem, 2.4vw, 1.6rem); }
.factgrid dt {
  font-family: var(--f-display); font-size: .62rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem;
}
.factgrid dd { margin: 0; font-size: .93rem; color: var(--muted); line-height: 1.5; }

/* Signal strip */
.signal { border-top: 1px solid var(--rule); }
.signal__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.15rem, 2.6vw, 1.9rem) 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none; color: var(--ink);
  transition: padding-left .35s var(--ease), color .25s var(--ease);
}
.signal__row:hover, .signal__row:focus-visible { padding-left: clamp(.5rem, 2vw, 1.5rem); color: var(--teal); }
.signal__lbl {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 4.2vw, 2.9rem);
  font-weight: 600; letter-spacing: -.03em; text-transform: uppercase;
  line-height: 1;
}
.signal__meta { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); flex: none; }
.signal__desc { font-size: .86rem; color: var(--muted); max-width: 30ch; text-align: right; line-height: 1.45; }
.signal__row:hover .signal__desc { color: var(--ink-soft); }
.signal__arrow { font-size: 1.3rem; color: var(--teal); flex: none; }

/* Human dimension */
.human__grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(1.75rem, 4.5vw, 4rem); align-items: center;
}
.pillars { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule-dark); border: 1px solid var(--rule-dark); }
.pillars li { background: var(--ink); padding: 1.1rem 1.15rem; }
.pillars b {
  display: block; font-family: var(--f-display); font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: .4rem; font-weight: 600;
}
.pillars span { font-size: .86rem; color: var(--mist); line-height: 1.5; }

/* ==========================================================================
   12. PROFILE — magazine
   ========================================================================== */
.profhero {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.profhero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .72fr);
  gap: clamp(1.75rem, 5vw, 4.5rem); align-items: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.profhero h1 { font-size: clamp(2.2rem, 6vw, 4.6rem); margin-bottom: 1.25rem; }
.dropcap::first-letter {
  font-family: var(--f-serif);
  float: left; font-size: 4.15em; line-height: .78;
  padding: .06em .12em 0 0; color: var(--teal);
}
.magcols { columns: 2; column-gap: clamp(1.75rem, 4vw, 3.25rem); }
.magcols p { break-inside: avoid; }

.spec { border-top: 2px solid var(--ink); }
.spec__row {
  display: grid; grid-template-columns: minmax(0, .38fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--rule);
}
.spec__k {
  font-family: var(--f-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--teal);
  display: flex; gap: .8rem; align-items: baseline;
}
.spec__k em { font-style: normal; color: var(--muted-light); font-size: .85em; }
.spec__v { color: var(--muted); max-width: 62ch; }
.spec__v h3 { font-size: 1.12rem; letter-spacing: -.01em; margin-bottom: .55rem; color: var(--ink); }

.taglist { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.taglist li {
  font-family: var(--f-display); font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--rule); padding: .45rem .8rem; color: var(--ink-soft);
  background: var(--paper);
}

/* ==========================================================================
   13. JOURNEY — horizontal career archive
   ========================================================================== */
.jhero { background: var(--ink); color: var(--mineral); position: relative; overflow: hidden; }
.jhero h1 { font-size: clamp(2.3rem, 7.4vw, 5.6rem); text-transform: uppercase; letter-spacing: -.04em; }
.jhero h1 .alt { color: var(--lime); }

.trackwrap { position: relative; background: var(--ink-deep); color: var(--mineral); padding-block: clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.trackhint {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--f-display); font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 1.5rem;
}
.track {
  display: flex; gap: 0;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--ink);
}
.track::-webkit-scrollbar { height: 6px; }
.track::-webkit-scrollbar-track { background: var(--ink); }
.track::-webkit-scrollbar-thumb { background: var(--teal); }
.stage {
  flex: 0 0 clamp(280px, 34vw, 430px);
  scroll-snap-align: start;
  border-left: 1px solid var(--rule-dark);
  padding: 0 clamp(1.1rem, 2.4vw, 2rem) 0;
  position: relative;
}
.stage:last-child { border-right: 1px solid var(--rule-dark); }
.stage__year {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 600; letter-spacing: -.045em; line-height: 1;
  color: var(--lime); margin-bottom: .35rem;
}
.stage__yearsub { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-light); font-family: var(--f-display); font-weight: 600; margin-bottom: 1.4rem; }
.stage__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--teal); border: 2px solid var(--lime); margin-bottom: 1.35rem; }
.stage__role { font-family: var(--f-display); font-size: 1.14rem; font-weight: 600; color: var(--paper); letter-spacing: -.015em; line-height: 1.25; margin-bottom: .55rem; }
.stage__place { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-light); font-family: var(--f-display); font-weight: 500; margin-bottom: 1rem; }
.stage__body { font-size: .91rem; color: var(--mist); line-height: 1.6; }
.stage__body p { margin-bottom: .8rem; }
.stage__tag {
  display: inline-block; margin-top: .5rem;
  font-family: var(--f-display); font-size: .6rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-light); border: 1px solid var(--rule-dark); padding: .32rem .6rem;
}

.jsplit { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(1.75rem, 4.5vw, 4rem); align-items: center; }
.jsplit--rev .jsplit__media { order: 2; }

.motionband { background: var(--ink); color: var(--mineral); position: relative; overflow: hidden; }
.motionband h2 { font-size: clamp(2rem, 6.4vw, 4.6rem); text-transform: uppercase; letter-spacing: -.04em; }
.motionband h2 .alt { color: var(--lime); }
.lanes { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.lanes svg { width: 100%; height: 100%; }

/* ==========================================================================
   14. CITY — architectural system
   ========================================================================== */
.cityhero {
  background: var(--ink-deep); color: var(--mineral);
  position: relative; overflow: hidden;
  min-height: clamp(420px, 62vh, 640px);
  display: flex; align-items: center;
}
.cityhero__art { position: absolute; inset: 0; z-index: 0; }
.cityhero__art svg { width: 100%; height: 100%; display: block; }
.cityhero__in { position: relative; z-index: 2; padding-block: clamp(3rem, 7vw, 5.5rem); }
.cityhero h1 { font-size: clamp(2.3rem, 7.6vw, 5.8rem); text-transform: uppercase; letter-spacing: -.042em; max-width: 14ch; }
.cityhero h1 .alt { color: var(--lime); }

.plan { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); gap: clamp(1.75rem, 4.5vw, 4rem); align-items: center; }
.planmap { border: 1px solid var(--rule); background: var(--paper); padding: clamp(1rem, 2.4vw, 1.75rem); }
.planmap svg { width: 100%; height: auto; display: block; }
.planmap__cap { margin-top: 1rem; font-size: .74rem; letter-spacing: .06em; color: var(--muted-light); line-height: 1.5; }

.layers { list-style: none; margin: 0; padding: 0; counter-reset: l; }
.layers li {
  counter-increment: l;
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.1rem;
  padding: 1.15rem 0; border-bottom: 1px solid var(--rule);
}
.layers li:first-child { border-top: 1px solid var(--rule); }
.layers li::before {
  content: counter(l, decimal-leading-zero);
  font-family: var(--f-display); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; color: var(--teal); padding-top: .18rem;
}
.layers b { display: block; font-family: var(--f-display); font-size: 1.02rem; letter-spacing: -.012em; margin-bottom: .35rem; }
.layers span { font-size: .92rem; color: var(--muted); line-height: 1.55; }

.digital { background: var(--ink); color: var(--mineral); position: relative; overflow: hidden; }
.digital h2 { font-size: clamp(1.9rem, 5.6vw, 4rem); text-transform: uppercase; letter-spacing: -.038em; }
.digital h2 .alt { color: var(--lime); }
.dcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-dark); border: 1px solid var(--rule-dark); margin-top: clamp(2rem, 4vw, 3rem); }
.dcards article { background: var(--ink-deep); padding: clamp(1.35rem, 2.8vw, 2rem); }
.dcards h3 { font-size: 1.05rem; color: var(--paper); margin-bottom: .7rem; letter-spacing: -.012em; }
.dcards p { font-size: .9rem; color: var(--mist); line-height: 1.6; margin: 0; }
.dcards .idx { font-family: var(--f-display); font-size: .62rem; font-weight: 600; letter-spacing: .2em; color: var(--teal-light); display: block; margin-bottom: .9rem; }

/* ==========================================================================
   15. LEADERSHIP — consulting report
   ========================================================================== */
.rpthero { background: var(--paper); border-bottom: 2px solid var(--ink); }
.rpthero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(1.75rem, 5vw, 4rem); align-items: end; padding-block: clamp(2.75rem, 6vw, 5rem); }
.rpthero h1 { font-size: clamp(2.2rem, 6.4vw, 5rem); letter-spacing: -.04em; text-transform: uppercase; }
.rpthero h1 .alt { color: var(--teal); }
.rptmeta { border-left: 2px solid var(--teal); padding-left: 1.25rem; }
.rptmeta dt { font-family: var(--f-display); font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-light); margin-bottom: .28rem; }
.rptmeta dd { margin: 0 0 1rem; font-size: .92rem; font-weight: 500; }
.rptmeta dd:last-child { margin-bottom: 0; }

.principle {
  display: grid; grid-template-columns: minmax(0, .3fr) minmax(0, .7fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4.5vw, 3.4rem) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.principle:first-of-type { border-top: 1px solid var(--rule); }
.principle__no {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 600; letter-spacing: -.05em; line-height: .85;
  color: var(--mineral-warm);
  -webkit-text-stroke: 1px var(--muted-light);
}
.principle__ttl { font-size: clamp(1.35rem, 2.7vw, 1.95rem); letter-spacing: -.025em; text-transform: uppercase; margin-bottom: .3rem; }
.principle__lead { font-size: 1.02rem; color: var(--teal); font-weight: 500; margin-bottom: 1rem; line-height: 1.5; }
.principle__body { color: var(--muted); max-width: 62ch; }
.principle:hover .principle__no { color: var(--lime); -webkit-text-stroke-color: var(--lime-deep); }

.trustband { background: var(--ink-deep); color: var(--mineral); position: relative; overflow: hidden; }
.trustband h2 { font-size: clamp(1.9rem, 5.8vw, 4.2rem); text-transform: uppercase; letter-spacing: -.04em; max-width: 16ch; }
.trustband h2 .alt { color: var(--lime); }
.flowchain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-dark); border: 1px solid var(--rule-dark); margin-top: clamp(2rem, 4vw, 3rem); }
.flowchain div { background: var(--ink); padding: clamp(1.25rem, 2.6vw, 1.85rem); }
.flowchain b { display: block; font-family: var(--f-display); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); margin-bottom: .6rem; font-weight: 600; }
.flowchain p { font-size: .9rem; color: var(--mist); margin: 0; line-height: 1.6; }

.peoplegrid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(1.75rem, 4.5vw, 4rem); align-items: center; }

/* ==========================================================================
   16. INITIATIVES — data / editorial system
   ========================================================================== */
.inithero { background: var(--lime); color: var(--ink-deep); border-bottom: 2px solid var(--ink-deep); }
.inithero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: end; padding-block: clamp(2.75rem, 6vw, 5rem); }
.inithero h1 { font-size: clamp(2.2rem, 6.6vw, 5rem); letter-spacing: -.04em; text-transform: uppercase; color: var(--ink-deep); }
.inithero .masthead__index { color: var(--ink-deep); }
.inithero .masthead__index em { color: rgba(29,35,33,.62); }
.inithero p { color: var(--ink-soft); }

.attrkey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.attrkey div { background: var(--paper); padding: 1rem 1.1rem; }
.attrkey b { display: block; font-family: var(--f-display); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: .4rem; font-weight: 600; }
.attrkey span { font-size: .82rem; color: var(--muted); line-height: 1.5; }

.prog {
  border-top: 1px solid var(--rule);
  padding: clamp(1.75rem, 4vw, 3rem) 0;
  display: grid; grid-template-columns: minmax(0, .34fr) minmax(0, .66fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
}
.prog:last-of-type { border-bottom: 1px solid var(--rule); }
.prog__side { position: relative; }
.prog__no { font-family: var(--f-display); font-size: .68rem; font-weight: 700; letter-spacing: .2em; color: var(--teal); margin-bottom: .7rem; }
.prog__ttl { font-size: clamp(1.3rem, 2.6vw, 1.85rem); letter-spacing: -.025em; margin-bottom: .8rem; }
.prog__attr {
  display: inline-block;
  font-family: var(--f-display); font-size: .6rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .38rem .65rem; border: 1px solid var(--teal); color: var(--teal);
}
.prog__attr--dept { border-color: var(--lime-deep); color: var(--lime-deep); }
.prog__attr--state { border-color: var(--muted); color: var(--muted); }
.prog__body { color: var(--muted); }
.prog__body h4 { font-size: .95rem; color: var(--ink); margin: 1.35rem 0 .5rem; letter-spacing: 0; }

.datastrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule-dark); border: 1px solid var(--rule-dark); }
.datastrip div { background: var(--ink); padding: clamp(1.15rem, 2.6vw, 1.75rem); }
.datastrip .n {
  font-family: var(--f-display); font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  font-weight: 600; letter-spacing: -.035em; color: var(--lime); line-height: 1; margin-bottom: .5rem;
}
.datastrip .l { font-size: .8rem; color: var(--mist); line-height: 1.45; }
.srcnote { font-size: .76rem; color: var(--muted-light); margin-top: 1.1rem; line-height: 1.55; }
.srcnote a { color: var(--teal-light); }

.quotecard {
  border-left: 3px solid var(--lime);
  padding: clamp(1.1rem, 2.4vw, 1.75rem) 0 clamp(1.1rem, 2.4vw, 1.75rem) clamp(1.1rem, 2.6vw, 1.9rem);
  margin: clamp(1.5rem, 3vw, 2.25rem) 0;
}
.quotecard blockquote { margin: 0; font-family: var(--f-serif); font-size: clamp(1.15rem, 2.2vw, 1.6rem); line-height: 1.38; color: var(--ink); }
.sect--ink .quotecard blockquote, .sect--deep .quotecard blockquote { color: var(--paper); }
.quotecard cite { display: block; margin-top: .9rem; font-style: normal; font-family: var(--f-display); font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.sect--ink .quotecard cite, .sect--deep .quotecard cite { color: var(--muted-light); }

/* ==========================================================================
   17. RECOGNITION — museum / archive
   ========================================================================== */
.archhero { background: var(--mineral-warm); border-bottom: 1px solid var(--rule); }
.archhero__in { padding-block: clamp(3rem, 7vw, 6rem); text-align: center; }
.archhero h1 { font-size: clamp(2.4rem, 8vw, 6rem); letter-spacing: -.045em; text-transform: uppercase; margin-inline: auto; }
.archhero h1 .alt { font-family: var(--f-serif); font-weight: 400; text-transform: none; letter-spacing: -.01em; color: var(--teal); }
.archhero p { margin-inline: auto; max-width: 58ch; }
.archhero .masthead__index { justify-content: center; }

.vitrine {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: clamp(1.5rem, 3.4vw, 2.75rem);
  display: grid; grid-template-columns: minmax(0, .32fr) minmax(0, .68fr);
  gap: clamp(1.25rem, 3.5vw, 3rem);
  align-items: start;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.vitrine__plate { border-top: 2px solid var(--teal); padding-top: 1rem; }
.vitrine__yr { font-family: var(--f-display); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; letter-spacing: -.045em; line-height: 1; color: var(--ink); }
.vitrine__cat { font-family: var(--f-display); font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-top: .55rem; }
.vitrine h3 { font-size: clamp(1.2rem, 2.4vw, 1.65rem); letter-spacing: -.022em; margin-bottom: .75rem; }
.vitrine__body { color: var(--muted); }
.vitrine__src {
  margin-top: 1.15rem; padding-top: .85rem; border-top: 1px dashed var(--rule);
  font-size: .76rem; color: var(--muted-light); line-height: 1.55;
}
.vitrine__src b { font-family: var(--f-display); letter-spacing: .12em; text-transform: uppercase; font-size: .64rem; color: var(--teal); display: block; margin-bottom: .3rem; }
.vitrine__src a { color: var(--teal); word-break: break-word; }

.ledger { width: 100%; border-collapse: collapse; font-size: .93rem; }
.ledger caption { text-align: left; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--f-display); font-weight: 600; color: var(--muted-light); padding-bottom: .9rem; }
.ledger th, .ledger td { text-align: left; padding: .95rem 1rem .95rem 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
.ledger th {
  font-family: var(--f-display); font-size: .66rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal);
  border-bottom: 2px solid var(--ink);
}
.ledger td:first-child { font-family: var(--f-display); font-weight: 600; white-space: nowrap; padding-right: 1.5rem; }
.ledger td { color: var(--muted); }
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.notice {
  border: 1px solid var(--teal);
  background: rgba(18,102,110,.05);
  padding: clamp(1.15rem, 2.6vw, 1.75rem);
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
}
.notice__i { width: 34px; height: 34px; border: 2px solid var(--teal); border-radius: 50%; display: grid; place-items: center; color: var(--teal); font-family: var(--f-display); font-weight: 700; font-size: .95rem; flex: none; }
.notice h3 { font-size: 1rem; margin-bottom: .5rem; }
.notice p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ==========================================================================
   18. CONTACT — minimal civic architecture
   ========================================================================== */
.cthero { background: var(--ink); color: var(--mineral); position: relative; overflow: hidden; }
.cthero__in { padding-block: clamp(3rem, 7vw, 5.5rem); position: relative; z-index: 2; }
.cthero h1 { font-size: clamp(2.3rem, 7vw, 5rem); letter-spacing: -.04em; text-transform: uppercase; }
.cthero h1 .alt { color: var(--lime); }

.ctgrid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }

.ctcard { border-top: 2px solid var(--ink); padding-top: 1.5rem; }
.ctcard__k { font-family: var(--f-display); font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); margin-bottom: .9rem; }
.ctcard__v { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 500; letter-spacing: -.01em; }
.ctcard__v a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--lime-deep); transition: color .2s var(--ease), border-color .2s var(--ease); word-break: break-word; }
.ctcard__v a:hover { color: var(--teal); border-bottom-color: var(--teal); }
.ctcard + .ctcard { margin-top: clamp(1.5rem, 3vw, 2.25rem); }

.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; gap: 1.15rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label {
  font-family: var(--f-display); font-size: .66rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.field label .req { color: var(--teal); }
.field input, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: .9rem 1rem;
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: var(--muted-light); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18,102,110,.18);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #A6392E; }
.field .err { font-size: .78rem; color: #A6392E; min-height: 0; }
.field .err:empty { display: none; }

.form__note {
  border-left: 2px solid var(--teal);
  padding-left: 1rem;
  font-size: .85rem; color: var(--muted); line-height: 1.6;
}
.form__status {
  border: 1px solid var(--teal);
  background: rgba(18,102,110,.06);
  padding: 1.1rem 1.25rem;
  font-size: .92rem; line-height: 1.6; color: var(--ink-soft);
}
.form__status:empty { display: none; }
.form__status a { color: var(--teal); font-weight: 600; }

.civicart { position: absolute; inset: 0; z-index: 0; opacity: .55; pointer-events: none; }
.civicart svg { width: 100%; height: 100%; }

/* --------------------------------------------------------------------------
   19. NO-JAVASCRIPT FALLBACK
   The gate needs JavaScript; without it the page must say so rather than
   sit blank. The <noscript> block in <head> reveals only this element.
   -------------------------------------------------------------------------- */
.nojs { display: none; }
body.gate-pending > .nojs {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--ink-deep);
  color: var(--mineral);
  text-align: center;
}
.nojs > div { max-width: 42ch; }
.nojs__h {
  font-family: var(--f-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}
.nojs p { color: var(--mist); font-size: .95rem; line-height: 1.65; }

/* ==========================================================================
   20. QA FIXES (found by visual inspection at 1440px)
   ========================================================================== */

/* city.html — .layers li is a 2-column grid whose ::before takes cell 1.
   Both <b> and <span> must sit in cell 2, otherwise <span> wraps into the
   3rem counter column and the text collapses to one word per line. */
.layers li > b,
.layers li > span { grid-column: 2; }

/* journey.html — the horizontal archive is an <ol>; suppress list markers
   and the default indent so the stages sit flush against the rail. */
.track { list-style: none; margin: 0; padding: 0 0 1.5rem; }

/* Dark page headers that are not .sect--ink still use .lede, which is
   coloured for light grounds. Give them the light-ground treatment. */
.cityhero .lede,
.jhero .lede,
.cthero .lede,
.cover .lede { color: var(--mist); }

/* city.html — a scrim so the corridor line and block massing never reduce
   the contrast of the headline sitting over them. */
.cityhero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, var(--ink-deep) 0%, rgba(18,22,20,.92) 42%, rgba(18,22,20,.35) 72%, rgba(18,22,20,.15) 100%);
  pointer-events: none;
}

/* home.html — a standing note in the intro rail, so the column carries
   content rather than 500px of dead space. */
.intro__note {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.intro__note p {
  font-size: .84rem; line-height: 1.65; color: var(--muted); margin: 0 0 .9rem;
}
.intro__note p:last-child { margin-bottom: 0; }
.intro__note b {
  font-family: var(--f-display); font-size: .64rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teal);
  display: block; margin-bottom: .7rem;
}

/* A .plan grid whose first column is a tall diagram or image should align to
   the top; centring it against a much longer list opens a dead gap above. */
.plan--top { align-items: start; }

/* Leadership principles: the numeral and the title share the report gutter,
   so the left column carries content instead of ~300px of dead space. */
.principle { grid-template-columns: minmax(0, .32fr) minmax(0, .68fr); }
.principle__side { position: sticky; top: calc(var(--nav-h) + 24px); }
.principle__no {
  margin: 0 0 .6rem;
  color: var(--mineral-warm);
  -webkit-text-stroke: 1px var(--muted-light);
}
.principle__ttl { margin-bottom: 0; }
@media (max-width: 900px) {
  .principle__side { position: static; display: flex; align-items: baseline; gap: 1rem; }
  .principle__no { margin: 0; font-size: clamp(2rem, 9vw, 2.6rem); }
}

/* ==========================================================================
   21. CONTRAST AUDIT FIXES
   --muted-light (#8A928C) measures ~3.1:1 on --paper and ~2.6:1 on --mineral,
   which fails WCAG AA for normal-size text. It is kept only on the dark
   grounds, where it measures ~5.5:1. Every light-ground use moves to
   --muted (#5C6560): 5.76:1 on paper, 4.83:1 on mineral.
   ========================================================================== */
.masthead__index em,
.intro__meta dt,
.spec__k em,
.rptmeta dt,
.vitrine__src,
.planmap__cap,
.crumbs,
.srcnote { color: var(--muted); }

/* Source notes sitting on dark grounds keep the light treatment. */
.sect--ink .srcnote,
.sect--deep .srcnote,
.digital .srcnote,
.trustband .srcnote { color: var(--mist); }

/* Dark-ground mastheads set their own index colour inline; keep the em legible. */
.cityhero .masthead__index em,
.jhero .masthead__index em,
.cthero .masthead__index em { color: var(--muted-light); }

/* The lime hero is a light ground — its index label needs the dark treatment. */
.inithero .masthead__index em { color: rgba(29, 35, 33, .72); }

/* ==========================================================================
   22. SMALL-SCREEN DIAGRAM LEGIBILITY
   Vector labels shrink with their viewBox. Below tablet width the city
   schematic scales its type up, and the home network diagram is replaced
   by a recomposed list rather than shrunk past readability.
   ========================================================================== */

/* Home: one of the two is always hidden, never both. */
.netmob { display: none; }

@media (max-width: 760px) {
  .netfig { display: none; }

  .netmob {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule-dark);
    border: 1px solid var(--rule-dark);
    list-style: none; margin: 0 0 1.75rem; padding: 0;
  }
  .netmob li {
    background: var(--ink-deep);
    padding: .85rem .8rem;
    font-size: .84rem;
    line-height: 1.35;
    color: var(--mineral);
    display: flex; flex-direction: column; gap: .35rem;
  }
  .netmob__k {
    font-family: var(--f-display); font-size: .58rem; font-weight: 600;
    letter-spacing: .18em; color: var(--teal-light);
  }
  .netmob__hub {
    grid-column: 1 / -1;
    background: var(--teal) !important;
    color: var(--paper);
    font-family: var(--f-display); font-weight: 600;
    letter-spacing: .04em;
    text-align: center;
  }

  /* City: scale the schematic's vector type up so it stays readable when
     the 760-unit viewBox is drawn into a ~320px column. */
  .planmap .lbl-node { font-size: 24px; letter-spacing: .5px; }
  .planmap .lbl-sub  { font-size: 14px; letter-spacing: .6px; }
  .planmap .lbl-foot { font-size: 13px; letter-spacing: .8px; }
}

@media (max-width: 430px) {
  .netmob { grid-template-columns: 1fr; }
}

/* Release the compositor hint once an element has finished revealing. */
.reveal.is-in { will-change: auto; }
