/* =============================================
   style.css — Option 1: Editorial Utility
   Roboto Slab 700 headlines · Roboto body
   Sharp rectangles · Utility interactions
   Navy + Pink · #0f0f3c / #e10087 / #f5f4f8
============================================= */

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Base ────────────────────────────────── */
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #0f0f3c;
  background: #fff;
}

h1, h2, h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

/* ── Layout ──────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section label ───────────────────────── */
.section-label {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e10087;
  margin-bottom: 20px;
}

/* ── Divider ─────────────────────────────── */
.divider { border: none; border-top: 1px solid #e0e0ec; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0f0f3c;
  border-bottom: 2px solid #0f0f3c;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 700;
  color: #e1e1f0;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(225,225,240,.6);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: #e10087;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS — Sharp rectangle, fill from left
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 11px 28px;
  border: 2px solid #0f0f3c;
  border-radius: 0;
  background: transparent;
  color: #0f0f3c;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: color .26s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0f0f3c;
  transition: left .26s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}

.btn:hover::before { left: 0; }
.btn:hover { color: #fff; }

/* Filled variant */
.btn-filled {
  background: #0f0f3c;
  color: #fff;
}
.btn-filled::before { background: #fff; }
.btn-filled:hover { color: #0f0f3c; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REAL PHOTOS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  display: block;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IMAGE PLACEHOLDER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.img-ph {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bbb;
}

/* Aspect ratio wrappers */
.ar-16x9 { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.ar-3x2  { aspect-ratio: 3/2;  position: relative; overflow: hidden; }
.ar-2x3  { aspect-ratio: 2/3;  position: relative; overflow: hidden; }
.ar-16x9 .img-ph,
.ar-3x2  .img-ph,
.ar-2x3  .img-ph { position: absolute; inset: 0; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IMAGE TREATMENT 01 — Full-bleed gradient overlay
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.img-treatment {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Gradient overlay — always visible */
.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px 24px;
  background: linear-gradient(to top, rgba(15,15,60,.85) 0%, rgba(15,15,60,.3) 60%, transparent 100%);
  pointer-events: none;
}

.img-overlay-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 5px;
}

.img-overlay-title {
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

/* img-hover-label — removed (overlay text sufficient) */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOME — HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.home-hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid #e0e0ec;
}

/* Hero h1 — Roboto Slab to match all other page headings */
.home-hero h1 {
  font-size: 80px;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 0;
}

.home-hero .hero-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #333;
  margin-bottom: 0;
  margin-top: 4px;
}

.home-hero .hero-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3c3c5a;
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 0;
}

.home-hero .hero-cta {
  margin-top: 36px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOME — THROUGH-LINE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.through-line {
  padding: 72px 0;
  border-bottom: 1px solid #e5e5e5;
}

.through-line .lede {
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  font-weight: 700;
  max-width: 640px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.through-line p {
  font-size: 16px;
  color: #3c3c5a;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.through-line p:last-child { margin-bottom: 0; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOME — AREAS OF FOCUS (Restrained focused reveal)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.focus-section {
  padding: 72px 0;
  border-bottom: 1px solid #e5e5e5;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #0f0f3c;
  border: 1px solid #0f0f3c;
  margin-top: 32px;
}

.focus-item {
  background: #fff;
  padding: 32px 36px;
}

.focus-item h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.focus-item p {
  font-size: 14px;
  color: #3c3c5a;
  line-height: 1.6;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOME — NOTES CALLOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.notes-callout-section {
  padding: 72px 0;
  border-bottom: 1px solid #e5e5e5;
}

.notes-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 8px;
}

.notes-callout-label {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e10087;
  margin-bottom: 12px;
}

.notes-callout-grid h2 {
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.notes-callout-grid .nc-body {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.notes-pullquote {
  border-left: 3px solid #e10087;
  padding-left: 32px;
}

.notes-pullquote p {
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f0f3c;
}

.notes-pullquote .pq-stat {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #aaa;
  margin-top: 12px;
  letter-spacing: 0.3px;
  font-weight: 400;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOME — SELECTED WORK
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.selected-work {
  padding: 72px 0;
}

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

.work-card {
  display: block;
  text-decoration: none;
  color: #111;
}

.work-card .card-image {
  margin-bottom: 16px;
}

.work-card .card-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e10087;
  margin-bottom: 6px;
}

.work-card h3 {
  font-size: 16px;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  transition: text-decoration .1s;
}

.work-card:hover h3 {
  text-decoration: underline;
}

.work-card p {
  font-size: 13px;
  color: #3c3c5a;
  line-height: 1.5;
}

.selected-work .all-work-cta {
  margin-top: 36px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT — HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid #e5e5e5;
}

.about-hero h1 {
  font-size: 72px;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.about-hero .sub {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #5a5a78;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT — BODY SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-body-section {
  padding: 72px 0;
  border-bottom: 1px solid #e5e5e5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #1e1e4b;
  margin-bottom: 22px;
}
.about-text p:last-child { margin-bottom: 0; }

.about-photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-photos-row .ph-wrap {
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
}
.about-photos-row .ph-wrap .img-ph {
  position: absolute;
  inset: 0;
}

/* Sticky photo column */
.about-photo-stack {
  position: sticky;
  top: 80px;
}

.about-photo-stack .portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  margin-bottom: 16px;
}
.about-photo-stack .portrait-wrap .img-ph {
  position: absolute;
  inset: 0;
}

.about-photo-stack .secondary-ph {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.about-photo-stack .secondary-ph .img-ph {
  position: absolute;
  inset: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT — HOW I LEAD / HOW I WORK
   Restrained focused reveal
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.how-i-section {
  padding: 72px 0;
  border-bottom: 1px solid #e5e5e5;
}

.principle-list {
  margin-top: 32px;
}

.principle {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid #eaeaf2;
}
.principle:last-child { border-bottom: none; }

/* Numbered label — visible on hover */
.principle-num {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ddd;
  margin-bottom: 8px;
  transition: color .2s;
}
.principle:hover .principle-num {
  color: #0f0f3c;
}

.principle h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.1px;
}

.principle p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT — CAREER TIMELINE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.career-section {
  padding: 72px 0;
}

.tl-era-label {
  font-family: 'Roboto', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 20px;
  margin-top: 8px;
}

.tl-era-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  position: relative;
}

/* Dotted connecting line — desktop only */
.tl-era-row::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  border-top: 2px dotted #d4d4ea;
  z-index: 0;
}

.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.tl-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ececec;
  border: 2px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-size: 10px;
  font-weight: 700;
  color: #999;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              background .2s,
              border-color .2s,
              color .2s;
}

.tl-circle.current {
  background: #0f0f3c;
  border-color: #0f0f3c;
  color: #fff;
}

/* Spring hover on all timeline nodes */
.tl-node:hover .tl-circle {
  transform: scale(1.22);
  background: #0f0f3c;
  border-color: #0f0f3c;
  color: #fff;
}
.tl-node:hover .tl-name {
  color: #0f0f3c;
  transition: color .2s;
}
.tl-node:hover .tl-year {
  color: #888;
  transition: color .2s;
}

.tl-name {
  font-family: 'Roboto', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #aaa;
  text-align: center;
  line-height: 1.3;
}

.tl-year {
  font-family: 'Roboto', sans-serif;
  font-size: 9px;
  color: #ccc;
  text-align: center;
}

.tl-career-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #eaeaf2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tl-career-bottom span {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #bbb;
}

.tl-career-bottom a {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0f0f3c;
  text-decoration: none;
  border-bottom: 1px solid #e10087;
  padding-bottom: 1px;
}

.tl-career-bottom a:hover {
  opacity: 0.7;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WORK PAGE — HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.work-page-hero {
  padding: 80px 0 40px;
  border-bottom: 1px solid #e5e5e5;
}

.work-page-hero h1 {
  font-size: 56px;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.work-page-hero p {
  font-size: 16px;
  color: #3c3c5a;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WORK PAGE — ENTRIES LIST
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.work-list { padding: 0; }

.work-entry {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  padding: 52px 0;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  color: #111;
}
.work-entry:last-child { border-bottom: none; }

.work-entry .we-thumb {
  position: relative;
  overflow: hidden;
}
.work-entry .we-thumb .ar-3x2 {
  aspect-ratio: 3/2;
}

.work-entry-meta .tag {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e10087;
  margin-bottom: 10px;
}

.work-entry-meta h3 {
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.work-entry-meta p {
  font-size: 15px;
  color: #3c3c5a;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 8px;
}
.work-entry-meta p:last-child { margin-bottom: 0; }

.work-entry-meta .outcome {
  margin-top: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0f0f3c;
  letter-spacing: -0.2px;
}

.work-entry:hover h3 {
  text-decoration: underline;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CASE STUDY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cs-back {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .15s;
}
.cs-back:hover { color: #0f0f3c; }

.cs-hero {
  padding: 64px 0 48px;
  border-bottom: 2px solid #0f0f3c;
}

.cs-hero h1 {
  font-size: 48px;
  letter-spacing: -1.5px;
  max-width: 700px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cs-hero .cs-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #3c3c5a;
  max-width: 600px;
  line-height: 1.5;
}

.cs-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid #e5e5e5;
}

.cs-meta-item label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8080b8;
  margin-bottom: 5px;
}

.cs-meta-item span {
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  font-weight: 700;
}

.cs-body {
  max-width: 720px;
  padding: 56px 0 80px;
}

.cs-body h2 {
  font-size: 22px;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  margin-top: 48px;
}
.cs-body h2:first-child { margin-top: 0; }

.cs-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #1e1e4b;
  margin-bottom: 18px;
}
.cs-body p:last-child { margin-bottom: 0; }

.pullquote {
  border-left: 3px solid #e10087;
  padding-left: 24px;
  margin: 40px 0;
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

/* Case study inline images */
.cs-img-wrap {
  position: relative;
  overflow: hidden;
  margin: 44px 0;
}
.cs-img-wrap .img-ph { height: 380px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NOTES PAGE — HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.notes-hero {
  padding: 80px 0 40px;
  border-bottom: 1px solid #e5e5e5;
}

.notes-hero h1 {
  font-size: 56px;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.notes-hero p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  max-width: 540px;
  line-height: 1.6;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NOTES — FILTER BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pillar-filters {
  padding: 28px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e5e5;
}

.filter-btn {
  padding: 6px 16px;
  border: 1.5px solid #ddd;
  border-radius: 0;
  background: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  transition: all .12s;
  letter-spacing: 0.2px;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: #0f0f3c;
  background: #0f0f3c;
  color: #fff;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NOTES — LIST
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.notes-list {
  padding: 16px 0 80px;
}

.note-entry {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid #efefef;
  text-decoration: none;
  color: #111;
}
.note-entry:last-child { border-bottom: none; }

.note-date {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #bbb;
  padding-top: 6px;
}

.note-pillar {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e10087;
  margin-bottom: 6px;
}

.note-entry h3 {
  font-size: 19px;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.note-entry:hover h3 {
  text-decoration: underline;
}

.note-entry p {
  font-size: 14px;
  color: #3c3c5a;
  line-height: 1.5;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NOTE ARTICLE (teaching.html)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.note-hero {
  padding: 64px 0 48px;
  border-bottom: 2px solid #0f0f3c;
}

.note-hero h1 {
  font-size: 48px;
  letter-spacing: -1.5px;
  max-width: 700px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.note-hero .note-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #3c3c5a;
  max-width: 600px;
  line-height: 1.5;
}

.note-body {
  max-width: 720px;
  padding: 56px 0 80px;
}

.note-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #1e1e4b;
  margin-bottom: 18px;
}
.note-body p:last-child { margin-bottom: 0; }

.note-body h2 {
  font-size: 22px;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  margin-top: 48px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: #0f0f3c;
  color: #fff;
  padding: 60px 0 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e1e4b;
}

.footer-site-name {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(225,225,240,.35);
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(225,225,240,.55);
  line-height: 1.4;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-contact a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: rgba(225,225,240,.55);
  text-decoration: none;
  transition: color .15s;
}
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom span {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: rgba(225,225,240,.3);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Tablet */
@media (max-width: 900px) {
  /* Nav */
  .site-nav { padding: 16px 24px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-stack { display: none; }

  /* Timeline */
  .tl-era-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .tl-era-row::before { display: none; }

  /* Principles */
  .principle { grid-template-columns: 1fr; gap: 8px; }

  /* Case study meta */
  .cs-meta { grid-template-columns: 1fr 1fr; }

  /* Notes callout */
  .notes-callout-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .site-nav { padding: 16px 24px; }

  /* Hero */
  .home-hero { padding: 72px 0 56px; }
  .home-hero h1 { font-size: 52px; letter-spacing: -2px; }
  .home-hero .hero-sub { font-size: 18px; }

  /* Work grid → single column */
  .work-grid { grid-template-columns: 1fr; }

  /* Focus grid → single column */
  .focus-grid { grid-template-columns: 1fr; }

  /* Work list entries → stack */
  .work-entry { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }

  /* About */
  .about-hero h1 { font-size: 52px; }

  /* Timeline → 2 columns */
  .tl-era-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Case study */
  .cs-hero h1 { font-size: 36px; }
  .cs-meta { grid-template-columns: 1fr 1fr; }
  .cs-body { padding: 40px 0 60px; }

  /* Notes entry */
  .note-entry { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .note-date { padding-top: 0; }

  /* Notes hero */
  .notes-hero h1 { font-size: 44px; }

  /* Work page hero */
  .work-page-hero h1 { font-size: 44px; }

  /* Footer */
  .footer-grid { flex-direction: column; gap: 32px; }
  .footer-contact { align-items: flex-start; }
}

/* Very small screens */
@media (max-width: 480px) {
  .home-hero h1 { font-size: 44px; letter-spacing: -1.5px; }
  .through-line .lede { font-size: 17px; }
  .notes-callout-grid h2 { font-size: 24px; }
  .tl-era-row { grid-template-columns: repeat(2, 1fr); }
  .pillar-filters { gap: 6px; }
  .filter-btn { font-size: 12px; padding: 5px 12px; }
}

/* Mobile nav hamburger — minimal collapse */
@media (max-width: 640px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
}
