/* ============================================================
   Taha K. Sultan — Negotiation & Humanitarian Diplomacy
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:          #0d1117;  /* deep ground            */
  --ink-warm:     #1a1714;  /* warm near-black text   */
  --ink-tile:     #14181f;  /* archive tile backing   */
  --cream:        #f5f2ec;
  --cream-deep:   #f0ece4;
  --paper:        #ffffff;

  --gold:         #b8945a;
  --gold-16:      rgba(184, 148, 90, 0.16);
  --gold-18:      rgba(184, 148, 90, 0.18);
  --gold-14:      rgba(184, 148, 90, 0.14);
  --gold-12:      rgba(184, 148, 90, 0.12);
  --gold-35:      rgba(184, 148, 90, 0.35);
  --gold-40:      rgba(184, 148, 90, 0.40);

  --body:         #4c4844;  /* body copy on light     */
  --muted:        #8a8680;  /* captions on light      */
  --light:        #ede9e1;  /* body copy on dark      */
  --light-muted:  #a8a39b;
  --dim:          #6a6660;
  --dim-deep:     #5a5650;

  --rule:         #dbd7cf;
  --rule-soft:    #e6e2da;
  --rule-hair:    #e2ded7;

  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --gutter:  56px;
  --nav-h:   84px;
  --shell:   1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Default UA margins on figure/p/headings would otherwise shrink grid items
   (figure carries `margin: 1em 40px`) — every spacing value here is explicit. */
body,
h1, h2, h3, h4, h5, h6,
p, figure, figcaption, blockquote,
ul, ol, dl, dd {
  margin: 0;
}

ul, ol { padding: 0; }

body {
  background: var(--ink);
  color: var(--body);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
}

a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection { background: rgba(184, 148, 90, 0.3); }

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

section[id], div[id] { scroll-margin-top: var(--nav-h); }

/* ---------- Shared primitives ---------- */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
}

.shell--wide { max-width: 1320px; }
.shell--narrow { max-width: 760px; }

/* Eyebrow + hairline rule that opens most sections */
.rule-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

.rule-head__label {
  font: 600 10px/1 var(--sans);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.rule-head__line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.rule-head--tight { margin-bottom: 20px; }
.rule-head--dark .rule-head__line { background: var(--gold-18); }
.rule-head--soft .rule-head__line { background: var(--rule-soft); }

/* Lede paragraph beneath a rule-head */
.lede {
  font: 300 14px/1.7 var(--sans);
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 56px;
}

.lede--dark { color: var(--dim); }

.tick {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px var(--gutter);
  background: rgba(13, 17, 23, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-14);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: 0 0 auto;
}

.nav__mark {
  height: 34px;
  width: auto;
  filter: invert(1);
  opacity: 0.92;
}

.nav__name {
  display: flex;
  flex-direction: column;
  font: 500 15px/1.3 var(--display);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
}

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

.nav__link {
  font: 400 11px/1 var(--sans);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--light-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav__link:hover { color: var(--gold); }

.nav__cta {
  color: var(--gold);
  border: 1px solid var(--gold-40);
  padding: 9px 18px;
  transition: background-color 0.25s ease;
}

.nav__cta:hover {
  background: var(--gold-12);
  color: var(--gold);
}

/* Hamburger — only surfaces on narrow viewports */
.nav__toggle {
  display: none;
  width: 40px;
  height: 32px;
  padding: 8px 6px;
  flex-direction: column;
  justify-content: space-between;
}

.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--light-muted);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav[data-open='true'] .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav[data-open='true'] .nav__toggle span:nth-child(2) { opacity: 0; }
.nav[data-open='true'] .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: var(--ink);
}

.hero__copy {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px var(--gutter);
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font: 500 11px/1 var(--sans);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}

.hero__title {
  font: 400 76px/1.02 var(--display);
  letter-spacing: -0.5px;
  color: var(--light);
  margin: 0 0 34px;
}

.hero__tick {
  width: 72px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 34px;
}

.hero__lede {
  font: 300 18px/1.8 var(--sans);
  color: var(--light-muted);
  max-width: 460px;
  margin: 0 0 20px;
  text-wrap: pretty;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.hero__lede:last-child { margin-bottom: 0; }

.hero__figure {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85) saturate(0.92);
}

.hero__wash,
.hero__wash--bottom {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__wash {
  background: linear-gradient(to right, #0d1117 0%, rgba(13, 17, 23, 0.5) 30%, rgba(13, 17, 23, 0) 62%);
}

.hero__wash--bottom {
  background: linear-gradient(to top, #0d1117 0%, transparent 22%);
}

/* ---------- Statement ---------- */
.statement {
  background: var(--cream);
  padding: 110px var(--gutter) 0;
}

.statement__text {
  font: 400 32px/1.55 var(--display);
  color: var(--ink-warm);
  margin: 0;
  text-align: center;
  text-wrap: pretty;
}

.statement__tick {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto 0;
}

/* ---------- Practice ---------- */
.practice {
  background: var(--cream);
  padding: 110px var(--gutter);
}

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

.pillar__title {
  font: 400 24px/1.3 var(--display);
  color: var(--ink-warm);
  margin-bottom: 16px;
}

.pillar__text {
  font: 300 14.5px/1.85 var(--sans);
  color: var(--body);
  margin: 0;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.credentials {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
  align-items: start;
}

.credential {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.credential__label {
  font: 600 10px/1.4 var(--sans);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  flex: 0 0 auto;
  min-width: 122px;
}

.credential__body {
  font: 400 16px/1.5 var(--display);
  color: var(--ink-warm);
}

/* ---------- Service models ---------- */
.models {
  background: var(--cream-deep);
  padding: 100px var(--gutter);
}

.models__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.model {
  background: var(--paper);
  padding: 40px 42px;
  display: flex;
  flex-direction: column;
}

.model__tag {
  font: 600 10px/1 var(--sans);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.model__title {
  font: 400 26px/1.25 var(--display);
  color: var(--ink-warm);
  margin-bottom: 16px;
}

.model__tick {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 26px;
}

.model__steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.model__step-title {
  font: 500 17px/1.4 var(--display);
  color: var(--ink-warm);
  margin-bottom: 7px;
}

.model__step-text {
  font: 300 14.5px/1.8 var(--sans);
  color: var(--body);
  margin: 0;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ---------- Approach ---------- */
.approach {
  background: var(--paper);
  padding: 100px var(--gutter);
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 72px;
}

.principle {
  display: flex;
  gap: 28px;
  align-items: baseline;
}

.principle__numeral {
  font: 400 30px/1 var(--display);
  color: var(--gold);
  flex: 0 0 40px;
}

.principle__title {
  font: 500 20px/1.3 var(--display);
  color: var(--ink-warm);
  margin-bottom: 10px;
}

.principle__text {
  font: 300 14.5px/1.85 var(--sans);
  color: var(--body);
  margin: 0;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ---------- Field record ---------- */
.record {
  background: var(--ink);
  padding: 100px var(--gutter);
}

.record__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 72px;
}

.entry {
  padding: 28px 0;
  border-top: 1px solid var(--gold-16);
  display: flex;
  gap: 32px;
  align-items: baseline;
}

.entry__place {
  font: 600 11px/1.4 var(--sans);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  flex: 0 0 110px;
}

.entry__text {
  font: 300 15px/1.75 var(--sans);
  color: var(--light-muted);
  margin: 0;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ---------- Photo band ---------- */
.band {
  background: var(--ink);
  padding: 0 0 100px;
}

.band__head {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.band__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
}

.frame {
  position: relative;
  overflow: hidden;
  background: var(--ink-tile);
}

.frame--tall { grid-row: span 2; }

.frame__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.frame__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.85) 0%, rgba(13, 17, 23, 0.08) 48%, transparent 100%);
}

.frame__caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 16px;
}

.frame__place {
  font: 600 10px/1 var(--sans);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.frame__label {
  font: 300 13px/1.4 var(--sans);
  color: var(--light);
}

/* ---------- Archive ---------- */
.archive {
  background: var(--ink);
  padding: 90px var(--gutter) 100px;
}

.archive__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.plate {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-tile);
  z-index: 1;
  cursor: zoom-in;
  transition: transform 0.38s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.38s ease;
}

.plate:hover,
.plate:focus-within {
  transform: scale(1.85);
  z-index: 60;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.plate__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plate__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 12px 8px;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.9), transparent);
  font: 500 9px/1.3 var(--sans);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light);
}

/* ---------- Social divider ---------- */
.divider {
  display: block;
  background: var(--ink-warm);
  padding: 40px var(--gutter);
  text-align: center;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.divider:hover { background: #24201b; }

.divider__text {
  font: 500 13px/1 var(--display);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--light);
}

/* ---------- In conversation ---------- */
.conversation {
  background: var(--cream-deep);
  padding: 90px var(--gutter) 100px;
}

.conversation__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.conversation__head .lede { margin-bottom: 0; }

.follow {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.follow__link {
  font: 500 11px/1 var(--sans);
  letter-spacing: 2px;
  color: var(--ink-warm);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.25s ease;
}

.follow__link:hover { color: var(--gold); }

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  /* Captions run 2–3 lines; stretching keeps each row's cards level. */
  align-items: stretch;
}

.post {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(26, 23, 20, 0.1);
}

.post__frame {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  position: relative;
  overflow: hidden;
}

.post__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post__body {
  flex: 1;
  padding: 22px 24px 26px;
}

.post__platform {
  font: 600 9.5px/1 var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.post__text {
  font: 400 16px/1.5 var(--display);
  color: var(--ink-warm);
  margin: 0;
  text-wrap: pretty;
}

/* ---------- Recognition & education ---------- */
.dossier {
  background: var(--paper);
  padding: 100px var(--gutter);
}

.dossier__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.dossier .rule-head { margin-bottom: 36px; }

.achievements {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.achievement {
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.achievement__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  flex: 0 0 5px;
  position: relative;
  top: -3px;
}

.achievement__text {
  font: 300 15px/1.8 var(--sans);
  color: var(--body);
  margin: 0;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.education { display: flex; flex-direction: column; }

.degree {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule-hair);
}

.degree:last-child { border-bottom: 0; }

.degree__subject {
  font: 500 16px/1.35 var(--display);
  color: var(--ink-warm);
}

.degree__school {
  font: 300 12px/1.4 var(--sans);
  color: var(--muted);
  text-align: right;
  flex: 0 0 auto;
}

.languages {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  align-items: baseline;
  flex-wrap: wrap;
}

.languages__label {
  font: 600 10px/1 var(--sans);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.languages__list {
  font: 400 16px/1.5 var(--display);
  color: var(--ink-warm);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  padding: 110px var(--gutter) 60px;
}

.contact__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact__label {
  font: 600 10px/1 var(--sans);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.contact__lead {
  font: 400 30px/1.5 var(--display);
  color: var(--light);
  margin: 0 0 20px;
  text-wrap: pretty;
}

.contact__note {
  font: 300 15px/1.8 var(--sans);
  color: var(--light-muted);
  max-width: 480px;
  margin: 0 auto 48px;
}

.contact__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.contact__link {
  font: 300 15px/1 var(--sans);
  color: var(--light-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-35);
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.contact__link:hover { color: var(--gold); }

/* Phone number is display-only — tel: links get hijacked by WhatsApp Desktop
   on some systems, so it isn't a link at all; drop the interactive affordance. */
.contact__link--static {
  cursor: default;
  transition: none;
}

.contact__link--static:hover { color: var(--light-muted); }

.colophon {
  max-width: var(--shell);
  margin: 90px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--gold-12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.colophon__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.colophon__mark {
  height: 26px;
  width: auto;
  filter: invert(1);
  opacity: 0.55;
}

.colophon__name {
  font: 400 14px/1 var(--display);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim-deep);
}

.colophon__place {
  font: 300 11px/1 var(--sans);
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  :root { --gutter: 32px; }
  .nav { padding: 18px var(--gutter); }
  .nav__links { gap: 20px; }
  .hero__copy { padding: 120px 40px 80px var(--gutter); }
}

/* Collapse the section links into a panel */
@media (max-width: 1000px) {
  /* The toggle row makes the bar taller — keep anchor offsets honest. */
  :root { --nav-h: 100px; }

  .nav { flex-wrap: wrap; }

  .nav__toggle { display: flex; }

  .nav__links {
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, opacity 0.2s ease;
    opacity: 0;
  }

  .nav[data-open='true'] .nav__links {
    max-height: 460px;
    opacity: 1;
    padding-top: 18px;
  }

  .nav__link {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--gold-12);
  }

  .nav__cta {
    border: 1px solid var(--gold-40);
    margin-top: 16px;
    width: auto;
    padding: 11px 20px;
  }
}

@media (max-width: 900px) {
  .archive__grid { grid-template-columns: repeat(3, 1fr); }

  .band__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 260px);
  }

  .frame--tall { grid-row: span 1; }

  .posts { grid-template-columns: repeat(2, 1fr); }

  .dossier__grid { gap: 56px; }
}

@media (max-width: 820px) {
  :root { --gutter: 26px; }

  .hero {
    flex-direction: column;
    min-height: 0;
  }

  .hero__copy {
    flex: 1 1 auto;
    order: 2;
    padding: 52px var(--gutter);
  }

  .hero__figure {
    order: 1;
    flex: 1 1 auto;
    min-height: 62vh;
    margin-top: var(--nav-h);
  }

  .hero__wash { background: linear-gradient(to top, #0d1117 0%, rgba(13, 17, 23, 0.15) 55%, transparent 100%); }
  .hero__wash--bottom { display: none; }

  .hero__title { font-size: 46px; }
  .hero__lede { font-size: 16px; max-width: none; }

  .statement { padding-top: 76px; }
  .statement__text { font-size: 26px; }

  .practice,
  .approach,
  .record,
  .dossier { padding: 76px var(--gutter); }

  .models { padding: 76px var(--gutter); }

  .practice__grid,
  .credentials,
  .models__grid,
  .approach__grid,
  .record__grid,
  .dossier__grid { grid-template-columns: 1fr; }

  .practice__grid { gap: 44px; }
  .record__grid { gap: 0; }
  .approach__grid { gap: 40px; }
  .dossier__grid { gap: 64px; }

  .model { padding: 32px 28px; }

  .archive { padding: 70px var(--gutter) 80px; }
  .conversation { padding: 70px var(--gutter) 80px; }
  .contact { padding: 80px var(--gutter) 48px; }
  .contact__lead { font-size: 25px; }
  .contact__links { gap: 26px 32px; }
  .colophon { margin-top: 60px; }
}

@media (max-width: 600px) {
  .archive__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* The zoom-on-hover reveal is a pointer affordance; on touch it just clips. */
  .plate:hover,
  .plate:focus-within {
    transform: none;
    box-shadow: none;
  }

  .band__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }

  .posts { grid-template-columns: 1fr; gap: 24px; }

  .entry { gap: 8px; flex-direction: column; }
  .entry__place { flex: 0 0 auto; }

  .principle { gap: 18px; }
  .principle__numeral { flex-basis: 30px; font-size: 26px; }

  .credential { flex-direction: column; gap: 8px; }

  .degree { flex-direction: column; align-items: flex-start; gap: 4px; }
  .degree__school { text-align: left; }

  .hero__lede,
  .pillar__text,
  .model__step-text,
  .principle__text,
  .entry__text,
  .achievement__text { text-align: left; }
}

/* ---------- Motion & print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.001s !important;
    animation-duration: 0.001s !important;
  }
  .plate:hover, .plate:focus-within, .post:hover { transform: none; }
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .nav, .divider { display: none !important; }
  .archive { break-before: page; }
  .plate:hover { transform: none; box-shadow: none; }
}
