/* ==========================================================================
   MUJAHID AZIMABADI — Design System
   Executive Consultancy × Modern University × Premium Technology Studio
   ========================================================================== */

:root {
  --bg: #f8f7f4;
  --ink: #111111;
  --navy: #111d2f;
  --blue: #223a5e;
  --stone: #ede9e2;
  --line: #ddd9d2;
  --bronze: #9b7b4d;
  --bronze-ink: #7a5f38; /* AA on light */
  --bronze-soft: #c9ad7f; /* AA on navy */
  --white: #ffffff;
  --muted: #5b5852;
  --muted-2: #7a766e;
  --navy-muted: #a9b3c2;

  --serif: 'Newsreader', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --sec: clamp(88px, 11vw, 168px);
  --radius: 2px;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--navy); color: var(--white); }

:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; border-radius: 1px; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--navy); color: #fff; padding: 10px 16px; font-size: 14px; }
.skip-link:focus { top: 12px; }
.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; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.sec { padding: var(--sec) 0; position: relative; }
.sec--tight { padding: clamp(64px, 8vw, 112px) 0; }
.sec--stone { background: var(--stone); }
.sec--white { background: var(--white); }
.sec--navy { background: var(--navy); color: #e9ecf1; }
.sec--navy .muted { color: var(--navy-muted); }
.sec--ink { background: #0c0c0c; color: #ecebe7; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.sec--navy .rule { border-color: rgba(255, 255, 255, 0.12); }

.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(20px, 2.4vw, 40px); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze-ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }
.sec--navy .eyebrow, .sec--ink .eyebrow { color: var(--bronze-soft); }
.eyebrow--plain::before { display: none; }

.display, .h1, .h2, .h3, .h4, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; font-optical-sizing: auto; }
.display { font-size: clamp(56px, 9.4vw, 148px); line-height: 0.92; letter-spacing: -0.035em; margin: 0; }
.h1 { font-size: clamp(44px, 6.4vw, 96px); line-height: 0.98; letter-spacing: -0.03em; margin: 0; }
.h2 { font-size: clamp(36px, 4.6vw, 68px); line-height: 1.02; letter-spacing: -0.025em; margin: 0; }
.h3 { font-size: clamp(26px, 2.6vw, 38px); line-height: 1.1; margin: 0; }
.h4 { font-size: clamp(21px, 1.7vw, 25px); line-height: 1.2; margin: 0; }
.italic, em.i { font-style: italic; }
.lead { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: var(--muted); max-width: 44ch; }
.sec--navy .lead, .sec--ink .lead { color: var(--navy-muted); }
.body-lg { font-size: 18px; line-height: 1.7; color: #2b2a27; }
.sec--navy .body-lg { color: #cfd6e0; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.xs { font-size: 12.5px; }
.mono-meta { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }
.sec--navy .mono-meta { color: #8795aa; }
.accent { color: var(--bronze-ink); }
.sec--navy .accent { color: var(--bronze-soft); }
.num { font-family: var(--serif); font-variant-numeric: lining-nums tabular-nums; }
p { margin: 0 0 1em; }

/* ---------- Buttons ---------- */
.btn {
  --bgc: var(--navy);
  display: inline-flex; align-items: center; gap: 12px;
  min-height: 52px; padding: 0 26px;
  background: var(--bgc); color: #fff;
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em;
  border: 1px solid var(--bgc); border-radius: var(--radius);
  cursor: pointer; transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn:hover { --bgc: var(--blue); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { --bgc: #fff; color: var(--navy); }
.btn--light:hover { --bgc: var(--stone); }
.sec--navy .btn--ghost, .sec--ink .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.sec--navy .btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 14px; }
.link {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 500; font-size: 15px;
  background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size 0.4s var(--ease); padding-bottom: 3px;
}
.link:hover { background-size: 100% 1px; }
.link .arr { transition: transform 0.35s var(--ease); }
.link:hover .arr { transform: translateX(4px); }
.link--ext .arr { transform: none; }
.link--ext:hover .arr { transform: translate(2px, -2px); }

/* ---------- Tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; list-style: none; }
.tag { font-size: 12px; line-height: 1; padding: 7px 10px; border: 1px solid var(--line); border-radius: 100px; color: #3a3833; background: transparent; white-space: nowrap; }
.sec--navy .tag { border-color: rgba(255, 255, 255, 0.16); color: #cdd4df; }
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--blue); }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); }
.sec--navy .badge { color: #d4dae4; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 247, 244, 0.86);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__in { max-width: 1520px; display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; flex: 0 0 auto; }
.brand__name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }
.brand__role { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; font-weight: 500; }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 28px); list-style: none; margin: 0; padding: 0; }
.nav__links a { white-space: nowrap; font-size: 14px; color: #33312d; position: relative; padding: 6px 0; }
.nav__links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav__links a:hover::after, .nav__links a[aria-current='page']::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__menu-btn { display: inline-flex; align-items: center; gap: 10px; background: none; border: 0; cursor: pointer; font-size: 14px; padding: 10px 4px; min-height: 44px; }
.nav__menu-btn .bars { width: 22px; height: 10px; position: relative; }
.nav__menu-btn .bars::before, .nav__menu-btn .bars::after { content: ''; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform 0.35s var(--ease); }
.nav__menu-btn .bars::before { top: 0; }
.nav__menu-btn .bars::after { bottom: 0; }
.menu-open .nav__menu-btn .bars::before { transform: translateY(4.25px) rotate(45deg); }
.menu-open .nav__menu-btn .bars::after { transform: translateY(-4.25px) rotate(-45deg); }

.menu {
  position: fixed; inset: 76px 0 0 0; z-index: 99; background: var(--navy); color: #fff;
  overflow-y: auto; opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.menu-open .menu { opacity: 1; visibility: visible; }
.menu-open { overflow: hidden; }
.menu__in { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; padding-top: 56px; padding-bottom: 56px; }
.menu__list { list-style: none; margin: 0; padding: 0; counter-reset: m; }
.menu__list li { counter-increment: m; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.menu__list a { display: flex; align-items: baseline; gap: 20px; padding: 14px 0; font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.02em; transition: color 0.3s, padding 0.4s var(--ease); }
.menu__list a::before { content: counter(m, decimal-leading-zero); font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; color: var(--bronze-soft); min-width: 22px; }
.menu__list a:hover { padding-left: 10px; color: var(--bronze-soft); }
.menu__aside { color: var(--navy-muted); font-size: 15px; }
.menu__aside .h4 { color: #fff; margin-bottom: 12px; }

@media (max-width: 1480px) {
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 13.5px; }
  .nav__menu-btn .lbl { display: none; }
}
@media (max-width: 1360px) {
  .nav__links li.opt { display: none; }
}
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__menu-btn .lbl { display: inline; }
}
@media (max-width: 720px) {
  .nav__in { height: 64px; }
  .menu { inset: 64px 0 0 0; }
  .menu__in { grid-template-columns: 1fr; padding-top: 24px; }
  .nav__cta { display: none; }
  .brand__name { font-size: 19px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding: clamp(40px, 6vw, 88px) 0 clamp(64px, 8vw, 120px); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(32px, 5vw, 88px); align-items: end; }
.hero__label { margin-bottom: clamp(28px, 3vw, 44px); }
.hero__name { margin: 0 0 clamp(28px, 3vw, 40px); }
.hero__name span { display: block; }
.hero__name .l2 { padding-left: clamp(0px, 8vw, 128px); font-style: italic; }
.hero__title { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.hero__title strong { font-size: clamp(17px, 1.4vw, 20px); font-weight: 600; letter-spacing: -0.005em; }
.hero__desc { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; font-weight: 500; }
.hero__intro { font-family: var(--serif); font-size: clamp(21px, 1.8vw, 26px); line-height: 1.42; color: #2c2b28; max-width: 34ch; margin-bottom: 38px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px 14px; align-items: center; }
.hero__meta { margin-top: 44px; display: flex; gap: 12px; align-items: center; color: var(--muted); font-size: 13.5px; }
.hero__meta .dot { width: 7px; height: 7px; border-radius: 50%; background: #3f8f5f; box-shadow: 0 0 0 4px rgba(63, 143, 95, 0.14); }

.portrait { position: relative; margin: 0; }
.portrait__frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--stone); }
.portrait__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; filter: saturate(0.9) contrast(1.02); transform: scale(1.04); transition: transform 1.6s var(--ease); }
.portrait:hover .portrait__frame img { transform: scale(1.0); }
.portrait__frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(17, 29, 47, 0.28)); pointer-events: none; }
.portrait figcaption { display: flex; justify-content: space-between; gap: 16px; margin-top: 14px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.portrait__tag { position: absolute; left: -1px; bottom: 28px; background: var(--navy); color: #fff; padding: 14px 18px; font-size: 12.5px; letter-spacing: 0.04em; max-width: 78%; }
.portrait__tag b { display: block; font-family: var(--serif); font-weight: 400; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 2px; }
.hero__line { position: absolute; top: 0; bottom: 0; left: calc(50% + 180px); width: 1px; background: var(--line); opacity: 0.6; pointer-events: none; }

.hero-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--bg); }
.hero-strip__track { display: flex; gap: 56px; padding: 22px 0; width: max-content; animation: marquee 60s linear infinite; }
.hero-strip__track span { font-family: var(--serif); font-size: 22px; color: #3b3935; white-space: nowrap; display: inline-flex; align-items: center; gap: 56px; }
.hero-strip__track span::after { content: '✦'; font-size: 11px; color: var(--bronze); }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .portrait { max-width: 460px; }
  .hero__line { display: none; }
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.sh { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 72px); align-items: end; margin-bottom: clamp(48px, 6vw, 88px); }
.sh__l .eyebrow { margin-bottom: 26px; }
.sh__r { padding-bottom: 6px; }
.sh--stack { grid-template-columns: 1fr; gap: 20px; }
.sh__index { font-family: var(--serif); font-style: italic; color: var(--bronze-ink); font-size: 18px; margin-right: 10px; }
@media (max-width: 860px) { .sh { grid-template-columns: 1fr; } }

/* ==========================================================================
   INTRO — Strategy meets execution
   ========================================================================== */
.intro { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 110px); }
.intro__statement .h1 em { color: var(--blue); }
.intro__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); margin-top: 40px; }
.intro__col { padding: 22px 22px 0 0; }
.intro__col + .intro__col { padding-left: 22px; border-left: 1px solid var(--line); }
.intro__col h3 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin: 0 0 14px; color: var(--muted); }
.intro__col ul { list-style: none; margin: 0; padding: 0; }
.intro__col li { font-family: var(--serif); font-size: 20px; line-height: 1.2; padding: 9px 0; border-bottom: 1px solid var(--line); }
.intro__col li:last-child { border-bottom: 0; }
.dropcap::first-letter { font-family: var(--serif); float: left; font-size: 78px; line-height: 0.82; padding: 6px 12px 0 0; color: var(--navy); }
@media (max-width: 860px) { .intro { grid-template-columns: 1fr; } }

/* ==========================================================================
   PILLARS
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.pillar { padding: 28px 28px 36px 0; position: relative; }
.pillar + .pillar { padding-left: 28px; border-left: 1px solid var(--line); }
.pillar__n { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--bronze-ink); }
.pillar h3 { margin: 18px 0 26px; }
.pillar ul { list-style: none; margin: 0; padding: 0; }
.pillar li { font-size: 15px; padding: 9px 0; border-bottom: 1px dashed var(--line); color: #34322e; display: flex; justify-content: space-between; gap: 12px; }
.pillar li:last-child { border-bottom: 0; }
.five-dim { margin-top: 64px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); background: var(--white); }
.five-dim div { padding: 20px 20px 22px; border-right: 1px solid var(--line); font-size: 14.5px; line-height: 1.35; }
.five-dim div:last-child { border-right: 0; background: var(--stone); }
.five-dim b { display: block; font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--bronze-ink); font-size: 17px; margin-bottom: 8px; }
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(3) { padding-left: 0; border-left: 0; }
  .pillar:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .five-dim { grid-template-columns: 1fr 1fr; }
  .five-dim div { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar, .pillar + .pillar { padding-left: 0; border-left: 0; }
  .pillar + .pillar { border-top: 1px solid var(--line); }
  .five-dim { grid-template-columns: 1fr; }
}

/* ==========================================================================
   INSTITUTIONS (navy)
   ========================================================================== */
.inst-list { display: grid; gap: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.inst {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 5fr) minmax(0, 3fr); gap: clamp(24px, 3vw, 56px);
  padding: clamp(36px, 4vw, 56px) 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); align-items: start;
}
.inst__logo { background: #fff; padding: 22px 24px; display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 7; max-width: 380px; }
.inst__logo img { width: 100%; height: 100%; max-height: 92px; object-fit: contain; }
.inst__name { margin: 0 0 12px; color: #fff; }
.inst__loc { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--navy-muted); margin-bottom: 18px; }
.inst__desc { color: #c9d1dc; font-size: 16.5px; line-height: 1.65; max-width: 56ch; }
.inst__side dl { margin: 0; display: grid; gap: 16px; }
.inst__side dt { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #8795aa; margin-bottom: 4px; }
.inst__side dd { margin: 0; font-size: 15px; color: #e6e9ee; }
.inst__shot { margin-top: 28px; }
@media (max-width: 1024px) { .inst { grid-template-columns: 1fr 1fr; } .inst__side { grid-column: 1 / -1; } }
@media (max-width: 680px) { .inst { grid-template-columns: 1fr; } }

.inst-areas { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid rgba(255, 255, 255, 0.14); margin-top: clamp(48px, 6vw, 80px); }
.inst-areas div { padding: 18px 18px 20px; font-size: 14px; color: #d8dde5; border-right: 1px solid rgba(255, 255, 255, 0.14); border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.inst-areas div:nth-child(6n) { border-right: 0; }
.inst-areas div:nth-last-child(-n + 6) { border-bottom: 0; }
.inst-areas span { display: block; font-family: var(--serif); font-style: italic; color: var(--bronze-soft); font-size: 14px; margin-bottom: 6px; }
@media (max-width: 1024px) {
  .inst-areas { grid-template-columns: repeat(3, 1fr); }
  .inst-areas div { border-right: 1px solid rgba(255, 255, 255, 0.14) !important; border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important; }
}
@media (max-width: 560px) { .inst-areas { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   CAPABILITIES GRID (technology)
   ========================================================================== */
.caps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cap { padding: 26px 24px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background 0.4s var(--ease); min-height: 170px; display: flex; flex-direction: column; }
.cap:hover { background: var(--white); }
.cap__n { font-size: 11.5px; letter-spacing: 0.1em; color: var(--muted-2); }
.cap h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.15; margin: 22px 0 10px; letter-spacing: -0.01em; }
.cap p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 1024px) { .caps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .caps { grid-template-columns: 1fr; } .cap { min-height: 0; } }

/* ==========================================================================
   BROWSER FRAME / SCREENSHOTS
   ========================================================================== */
.frame { background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), 0 30px 60px -30px rgba(17, 29, 47, 0.25); overflow: hidden; position: relative; }
.frame__bar { height: 30px; display: flex; align-items: center; gap: 12px; padding: 0 12px; border-bottom: 1px solid #ebe8e2; background: #f5f3ef; }
.frame__dots { display: flex; gap: 5px; }
.frame__dots i { width: 8px; height: 8px; border-radius: 50%; background: #d8d4cc; display: block; }
.frame__url { flex: 1; font-size: 11px; color: #8a867e; background: #fff; border: 1px solid #ebe8e2; border-radius: 4px; height: 18px; display: flex; align-items: center; padding: 0 8px; max-width: 320px; margin: 0 auto; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.frame__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--stone); }
.frame__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 1.2s var(--ease); }
.frame:hover .frame__img img, a:hover .frame__img img { transform: scale(1.025); }
.sec--navy .frame { border-color: rgba(255, 255, 255, 0.1); }

.phone { width: 100%; aspect-ratio: 600 / 1299; border-radius: 14% / 6.5%; overflow: hidden; background: #0e1522; padding: 3.2%; box-shadow: 0 40px 80px -40px rgba(17, 29, 47, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.08); }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 11% / 5.2%; }
.phone--plain { background: transparent; padding: 0; box-shadow: 0 30px 60px -30px rgba(17, 29, 47, 0.35); border-radius: 10px; }
.phone--plain img { border-radius: 10px; }

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.logo-chip { width: 44px; height: 44px; flex: 0 0 44px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.logo-chip img { width: 30px; height: 30px; object-fit: contain; }
.logo-chip--dark { background: var(--navy); border-color: var(--navy); }
.logo-chip--lg { width: 64px; height: 64px; flex-basis: 64px; border-radius: 14px; }
.logo-chip--lg img { width: 44px; height: 44px; }

.pmeta { display: flex; align-items: center; gap: 14px; }
.pmeta__t { display: flex; flex-direction: column; gap: 2px; }
.pmeta__name { font-family: var(--serif); font-size: 24px; line-height: 1.1; letter-spacing: -0.01em; }
.pmeta__sub { font-size: 13px; color: var(--muted); }

/* Featured (large) */
.feat { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 4vw, 72px); align-items: center; }
.feat__body .h2 { margin: 22px 0 18px; }
.feat__kv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); margin: 28px 0; }
.feat__kv div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.feat__kv div:nth-child(odd) { padding-right: 16px; }
.feat__kv div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.feat__kv dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.feat__kv dd { margin: 0; font-size: 15px; }
@media (max-width: 960px) { .feat { grid-template-columns: 1fr; } }

/* Medium pair */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); margin-top: clamp(72px, 8vw, 120px); }
.duo .pcard:nth-child(2) { margin-top: clamp(0px, 8vw, 120px); }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; } .duo .pcard:nth-child(2) { margin-top: 0; } }

.pcard { display: block; position: relative; }
.pcard__body { padding-top: 22px; }
.pcard__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.pcard__type { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); text-align: right; }
.pcard__desc { color: #3b3935; font-size: 15.5px; line-height: 1.6; margin: 0 0 16px; max-width: 58ch; }
.pcard__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.pcard__loc { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.pin { width: 7px; height: 7px; border-radius: 50%; background: var(--bronze); flex: 0 0 7px; }

/* Editorial strip */
.strip { margin-top: clamp(80px, 9vw, 140px); border-top: 1px solid var(--ink); }
.strip__row { display: grid; grid-template-columns: 60px minmax(0, 3fr) minmax(0, 4fr) minmax(0, 3fr) 220px; gap: 24px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); position: relative; transition: background 0.4s var(--ease), padding 0.4s var(--ease); }
.strip__row:hover { background: var(--white); padding-left: 16px; padding-right: 16px; }
.strip__n { font-family: var(--serif); font-style: italic; color: var(--bronze-ink); font-size: 17px; }
.strip__name { font-family: var(--serif); font-size: clamp(24px, 2.2vw, 32px); line-height: 1.1; letter-spacing: -0.015em; }
.strip__desc { font-size: 14.5px; color: var(--muted); margin: 0; }
.strip__img { width: 220px; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--line); opacity: 0.9; }
.strip__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
@media (max-width: 1024px) {
  .strip__row { grid-template-columns: 40px 1fr 1fr; }
  .strip__row .strip__desc, .strip__row .strip__img { display: none; }
}
@media (max-width: 560px) { .strip__row { grid-template-columns: 32px 1fr; } .strip__row > :nth-child(4) { grid-column: 2; } }

/* ==========================================================================
   WEBSITES GRID + FILTERS
   ========================================================================== */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filters--scroll { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 4px; margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); }
.filters--scroll::-webkit-scrollbar { display: none; }
.chip { font-size: 13.5px; padding: 0 16px; min-height: 40px; border: 1px solid var(--line); background: transparent; border-radius: 100px; cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed='true'] { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip .c { font-size: 11px; opacity: 0.6; }

.wgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 36px); }
.wcard { display: flex; flex-direction: column; }
.wcard[hidden] { display: none; }
.wcard .frame__img { aspect-ratio: 16 / 10.5; }
.wcard__meta { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.wcard__name { font-family: var(--serif); font-size: 21px; line-height: 1.15; }
.wcard__ind { font-size: 12.5px; color: var(--muted); }
.wcard__type { margin-top: 12px; font-size: 13px; color: #3b3935; display: flex; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.wcard__type span:last-child { color: var(--muted); text-align: right; }
@media (max-width: 1024px) { .wgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .wgrid { grid-template-columns: 1fr; }
  .wgrid--compact-mobile .wcard { display: grid; grid-template-columns: 112px 1fr; gap: 14px; align-items: center; }
  .wgrid--compact-mobile .wcard[hidden] { display: none; }
  .wgrid--compact-mobile .frame__bar { display: none; }
  .wgrid--compact-mobile .wcard .frame__img { aspect-ratio: 4 / 3; }
  .wgrid--compact-mobile .wcard__meta { margin-top: 0; }
  .wgrid--compact-mobile .wcard__type { grid-column: 1 / -1; margin-top: 0; }
}
.empty-filter { padding: 40px 0; color: var(--muted); display: none; }

/* Industry groupings */
.ind { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-top: clamp(72px, 8vw, 120px); }
.ind__g { padding: 26px 26px 30px 0; border-bottom: 1px solid var(--line); }
.ind__g:not(:nth-child(3n + 1)) { padding-left: 26px; border-left: 1px solid var(--line); }
.ind__g h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; margin: 0 0 4px; }
.ind__g .c { font-size: 12px; color: var(--muted-2); letter-spacing: 0.08em; text-transform: uppercase; }
.ind__g ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 860px) { .ind { grid-template-columns: 1fr; } .ind__g:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; } }

/* ==========================================================================
   APPS & SYSTEMS
   ========================================================================== */
.app-hero { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 90px); align-items: center; }
.app-id { display: flex; align-items: center; gap: 18px; margin: 24px 0 26px; }
.app-id img { width: 76px; height: 76px; border-radius: 18px; box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.4); }
.stores { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.store { display: inline-flex; align-items: center; gap: 10px; background: #000; color: #fff; border-radius: 9px; padding: 8px 16px 8px 12px; min-height: 50px; border: 1px solid #000; transition: transform 0.3s var(--ease); }
.store:hover { transform: translateY(-2px); }
.store svg { width: 24px; height: 24px; }
.store small { display: block; font-size: 10px; line-height: 1; opacity: 0.85; letter-spacing: 0.02em; }
.store b { display: block; font-size: 17px; line-height: 1.15; font-weight: 600; letter-spacing: -0.01em; }
.sec--navy .store { border-color: rgba(255, 255, 255, 0.3); }
.phones { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 28px); align-items: end; }
.phones .phone:nth-child(1) { transform: translateY(40px); }
.phones .phone:nth-child(3) { transform: translateY(-40px); }
@media (max-width: 960px) { .app-hero { grid-template-columns: 1fr; } }

.sys { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(64px, 7vw, 104px); }
.sys__i { background: var(--bg); padding: 28px 26px 30px; display: flex; flex-direction: column; gap: 14px; transition: background 0.4s var(--ease); }
.sys__i:hover { background: var(--white); }
.sys__i .h4 { margin: 6px 0 0; }
.sys__i p { font-size: 14.5px; color: var(--muted); margin: 0; }
.sys__type { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze-ink); font-weight: 600; }
@media (max-width: 960px) { .sys { grid-template-columns: 1fr; } }

.sys-kinds { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 32px; font-size: 14px; color: var(--muted); }
.sys-kinds span { display: inline-flex; align-items: center; gap: 8px; }
.sys-kinds span::before { content: ''; width: 5px; height: 5px; background: var(--bronze); border-radius: 50%; }

/* ==========================================================================
   CASE STUDY HIGHLIGHT
   ========================================================================== */
.case { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 88px); }
.case__steps { list-style: none; margin: 32px 0 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); counter-reset: s; }
.case__steps li { counter-increment: s; display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.case__steps b { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-soft); font-weight: 600; padding-top: 3px; }
.case__steps p { margin: 0; color: #cfd6e0; font-size: 15.5px; line-height: 1.6; }
.case__visual { position: relative; }

@media (max-width: 960px) { .case { grid-template-columns: 1fr; } .case__visual { margin-bottom: 80px; } }
@media (max-width: 560px) { .case__steps li { grid-template-columns: 1fr; gap: 6px; } }

/* ==========================================================================
   IMPACT / STATS
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.stat { padding: 26px 20px 8px 0; }
.stat + .stat { padding-left: 20px; border-left: 1px solid var(--line); }
.stat__v { font-family: var(--serif); font-size: clamp(52px, 6vw, 88px); line-height: 0.95; letter-spacing: -0.035em; }
.stat__l { font-size: 14px; font-weight: 600; margin-top: 16px; }
.stat__n { font-size: 12.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(4) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n + 4) { border-top: 1px solid var(--line); margin-top: 20px; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { padding-left: 0 !important; border-left: 0 !important; }
  .stat:nth-child(even) { padding-left: 16px !important; border-left: 1px solid var(--line) !important; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); margin-top: 16px; }
}

/* ==========================================================================
   US MAP
   ========================================================================== */
.borders { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.usmap { position: relative; }
.usmap img, .usmap svg { width: 100%; height: auto; }
.usmap__pin { position: absolute; transform: translate(-50%, -50%); }
.usmap__pin i { display: block; width: 14px; height: 14px; border-radius: 50%; background: var(--bronze-soft); box-shadow: 0 0 0 6px rgba(201, 173, 127, 0.18); }
.usmap__pin span { position: absolute; left: 50%; top: 22px; transform: translateX(-50%); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; color: #e6e9ee; background: rgba(17, 29, 47, 0.8); padding: 3px 7px; }
.loclist { list-style: none; margin: 32px 0 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.loclist li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); font-size: 15px; }
.loclist li span:last-child { color: var(--navy-muted); font-size: 13.5px; text-align: right; }
@media (max-width: 960px) { .borders { grid-template-columns: 1fr; } .usmap__pin span { display: none; } }

/* ==========================================================================
   ORGANIZATIONS (logo walls)
   ========================================================================== */
.orgs { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.orgs__row { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.orgs__row h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0; }
.orgs__row .c { font-size: 12.5px; color: var(--muted-2); margin-top: 6px; }
.orgs__logos { display: flex; flex-wrap: wrap; gap: 14px 36px; align-items: center; }
.olog { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; color: #2d2b28; transition: opacity 0.3s; }
.olog img { width: 32px; height: 32px; object-fit: contain; border-radius: 8px; }
.olog--lockup img { width: 180px; height: 48px; object-fit: contain; object-position: left center; border-radius: 0; }
.orgs__logos:hover .olog { opacity: 0.45; }
.orgs__logos .olog:hover { opacity: 1; }
@media (max-width: 760px) { .orgs__row { grid-template-columns: 1fr; gap: 18px; } }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.tl { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.tl li { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 4fr) minmax(0, 6fr); gap: 32px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.tl__p { font-family: var(--serif); font-size: 22px; color: var(--blue); }
.tl__p--u { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); padding-top: 8px; }
.tl__t { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.tl__o { font-size: 13px; color: var(--muted); margin-top: 6px; }
.tl__d { color: #3b3935; font-size: 15.5px; margin: 0; }
@media (max-width: 760px) { .tl li { grid-template-columns: 1fr; gap: 8px; } }

/* ==========================================================================
   BEYOND / ROOH E HAYAT
   ========================================================================== */
.moment { position: relative; min-height: min(92vh, 900px); display: flex; align-items: flex-end; overflow: hidden; background: #0b0b0b; color: #f1efe9; }
.moment__img { position: absolute; inset: 0; }
.moment__img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; opacity: 0.62; transform: scale(1.08); will-change: transform; filter: saturate(0.85); }
.moment::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.55) 45%, rgba(8, 8, 8, 0.1) 100%), linear-gradient(0deg, rgba(8, 8, 8, 0.8), transparent 50%); }
.moment__in { position: relative; z-index: 2; padding-bottom: clamp(56px, 8vw, 120px); padding-top: 120px; }
.moment .display { font-size: clamp(48px, 7.6vw, 124px); max-width: 11ch; }
.moment .lead { color: #cfccc4; margin-top: 30px; max-width: 40ch; font-family: var(--serif); font-size: clamp(20px, 1.8vw, 26px); }

.rooh { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 88px); }
.rooh__mark { background: #0b0b0b; aspect-ratio: 3 / 2; overflow: hidden; }
.rooh__mark img { width: 100%; height: 100%; object-fit: contain; }
.rooh__facts { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); margin-top: 36px; }
.rooh__facts div { padding: 18px 16px 18px 0; border-bottom: 1px solid var(--line); }
.rooh__facts div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.rooh__facts b { display: block; font-family: var(--serif); font-weight: 400; font-size: 36px; line-height: 1; letter-spacing: -0.02em; }
.rooh__facts span { font-size: 13px; color: var(--muted); display: block; margin-top: 8px; }
.rooh__facts a { font-size: 11.5px; color: var(--muted-2); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 900px) { .rooh { grid-template-columns: 1fr; } }

.shelf { display: flex; gap: clamp(16px, 2vw, 28px); overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--gutter) 24px; margin: 0 calc(var(--gutter) * -1); scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
.shelf::-webkit-scrollbar { height: 4px; }
.shelf::-webkit-scrollbar-thumb { background: var(--line); }
.release { flex: 0 0 clamp(200px, 20vw, 260px); scroll-snap-align: start; }
.release__cover { aspect-ratio: 1; overflow: hidden; background: var(--stone); position: relative; }
.release__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.release:hover .release__cover img { transform: scale(1.04); }
.release__t { font-family: var(--serif); font-size: 19px; line-height: 1.2; margin: 14px 0 4px; }
.release__m { font-size: 12.5px; color: var(--muted); }
.release__links { display: flex; gap: 12px; margin-top: 10px; font-size: 12.5px; }
.release__links a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.release__links a:hover { text-decoration-color: currentColor; }
.shelf-nav { display: flex; gap: 8px; }
.shelf-nav button { width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s; }
.shelf-nav button:hover { border-color: var(--ink); background: var(--white); }

.editions { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.edition { background: var(--bg); padding: 18px 16px 20px; transition: background 0.3s; display: block; }
.edition:hover { background: var(--white); }
.edition b { display: block; font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1; }
.edition span { font-size: 12px; color: var(--muted); display: block; margin-top: 8px; }
.edition em { font-style: normal; font-size: 12px; color: var(--blue); display: block; margin-top: 12px; }
@media (max-width: 900px) { .editions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .editions { grid-template-columns: repeat(2, 1fr); } }

.rtl { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--line); }
.rtl li { position: relative; padding: 0 0 26px 28px; }
.rtl li::before { content: ''; position: absolute; left: -4px; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--bronze); }
.rtl b { font-family: var(--serif); font-weight: 400; font-size: 20px; display: block; }
.rtl span { font-size: 14.5px; color: var(--muted); }

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.principle { padding: 34px 32px 10px 0; }
.principle + .principle { padding-left: 32px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
.principle blockquote { margin: 18px 0 0; font-family: var(--serif); font-size: clamp(22px, 2vw, 29px); line-height: 1.3; color: #f1f3f6; letter-spacing: -0.01em; }
@media (max-width: 900px) { .principles { grid-template-columns: 1fr; } .principle + .principle { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); } }

/* ==========================================================================
   INSIGHTS (empty state)
   ========================================================================== */
.insights-empty { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); border: 1px solid var(--line); background: var(--white); padding: clamp(28px, 4vw, 56px); }
.insights-empty ol { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 32px; }
.insights-empty li { break-inside: avoid; padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; font-family: var(--serif); font-size: 19px; }
.insights-empty li small { font-family: var(--sans); font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 860px) { .insights-empty { grid-template-columns: 1fr; } .insights-empty ol { columns: 1; } }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 110px); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: #3a3833; }
.field label .opt { font-weight: 400; color: var(--muted-2); text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; border: 0; border-bottom: 1px solid #bdb8ae; background: transparent; padding: 12px 0; font-size: 17px; border-radius: 0;
  transition: border-color 0.3s; appearance: none; -webkit-appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23111' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--navy); box-shadow: 0 1px 0 0 var(--navy); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--bronze); outline-offset: 4px; }
.field [aria-invalid='true'] { border-bottom-color: #a33a2b; }
.field .err { font-size: 13px; color: #a33a2b; min-height: 0; }
.form__foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form__status { font-size: 14.5px; }
.form__status.ok { color: #2d6a45; }
.form__status.bad { color: #a33a2b; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact__aside dl { margin: 40px 0 0; display: grid; gap: 22px; border-top: 1px solid var(--line); padding-top: 26px; }
.contact__aside dt { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.contact__aside dd { margin: 0; font-size: 16px; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy); color: #d4dae3; padding: clamp(72px, 9vw, 128px) 0 32px; }
.footer__big { font-family: var(--serif); font-size: clamp(52px, 10vw, 168px); line-height: 0.9; letter-spacing: -0.04em; color: #fff; margin: 0 0 20px; }
.footer__big em { color: var(--bronze-soft); }
.footer__role { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy-muted); }
.footer__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 32px; margin-top: clamp(56px, 7vw, 96px); padding-top: 36px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer h2 { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #8795aa; font-weight: 600; margin: 0 0 16px; font-family: var(--sans); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { font-size: 14.5px; color: #dbe0e7; transition: color 0.3s; }
.footer a:hover { color: var(--bronze-soft); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 72px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 13px; color: #8795aa; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   DETAIL PAGES
   ========================================================================== */
.crumbs { font-size: 13px; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; padding-top: 28px; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.crumbs span[aria-hidden] { color: var(--line); }
.dhero { padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 80px); }
.dhero__top { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.dhero__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 80px); align-items: end; }
.dhero .h1 { margin-bottom: 26px; }
.kv { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--ink); margin: 0; }
.kv > div { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.kv dt { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); padding-top: 3px; }
.kv dd { margin: 0; }
.sec--navy .kv { border-top-color: rgba(255,255,255,.5); }
.sec--navy .kv > div { border-bottom-color: rgba(255,255,255,.12); }
@media (max-width: 900px) { .dhero__grid { grid-template-columns: 1fr; } }

.dbody { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: clamp(28px, 5vw, 88px); }
.dnav { position: sticky; top: 108px; align-self: start; }
.dnav ol { list-style: none; padding: 0; margin: 0; border-left: 1px solid var(--line); }
.dnav a { display: block; padding: 7px 0 7px 18px; font-size: 14px; color: var(--muted); margin-left: -1px; border-left: 1px solid transparent; transition: all 0.3s; }
.dnav a:hover, .dnav a.is-active { color: var(--ink); border-left-color: var(--ink); }
.dsec { padding: 0 0 clamp(48px, 5vw, 72px); margin-bottom: clamp(48px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.dsec:last-child { border-bottom: 0; }
.dsec .eyebrow { margin-bottom: 20px; }
.dsec .h3 { margin-bottom: 20px; max-width: 26ch; }
.dsec .body-lg { max-width: 64ch; }
.flist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.flist li { padding: 14px 0 14px 28px; border-bottom: 1px solid var(--line); position: relative; font-size: 15.5px; }
.flist li::before { content: ''; position: absolute; left: 0; top: 23px; width: 12px; height: 1px; background: var(--bronze); }
@media (max-width: 900px) { .dbody { grid-template-columns: 1fr; } .dnav { display: none; } .flist { grid-template-columns: 1fr; } }
.tech-note { font-size: 13px; color: var(--muted); margin-top: 16px; border-left: 2px solid var(--bronze); padding-left: 14px; max-width: 64ch; }
.tech-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.tech-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.tech-list li span:last-child { font-size: 13px; color: var(--muted); }
.screens { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; align-items: start; }
.screens .phone--plain { max-width: 260px; justify-self: center; }
@media (max-width: 700px) { .screens { grid-template-columns: 1fr; } }
.props { display: grid; gap: 0; border-top: 1px solid var(--line); }
.props a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.props a:hover { color: var(--blue); }
.props small { color: var(--muted); font-size: 13px; }
.built-by { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; padding: 10px 16px; font-size: 13px; letter-spacing: 0.02em; }
.built-by::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--bronze-soft); }

.next { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); }
.next a { padding: 34px 0; display: block; }
.next a + a { border-left: 1px solid var(--line); padding-left: 32px; text-align: right; }
.next small { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.next .h3 { margin-top: 10px; }

.hrms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 28px); }
.hrms-grid figure { margin: 0; }
.hrms-grid figcaption { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: center; }
@media (max-width: 860px) { .hrms-grid { grid-template-columns: repeat(2, 1fr); } }
.fgroups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
.fgroups h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0 0 12px; padding-bottom: 12px; border-bottom: 1px solid var(--ink); }
.fgroups ul { list-style: none; padding: 0; margin: 0; }
.fgroups li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
@media (max-width: 760px) { .fgroups { grid-template-columns: 1fr; } }

.tbc { font-size: 14px; color: var(--muted); font-style: italic; }

/* page header (index pages) */
.phead { padding: clamp(48px, 7vw, 112px) 0 clamp(40px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.phead .h1 { margin: 24px 0 26px; max-width: 16ch; }

/* ==========================================================================
   MOTION
   ========================================================================== */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.js .rv-d1 { transition-delay: 0.08s; }
.js .rv-d2 { transition-delay: 0.16s; }
.js .rv-d3 { transition-delay: 0.24s; }
.js .rv-line { display: block; overflow: hidden; }
.js .rv-line > span { display: block; transform: translateY(105%); transition: transform 1.2s var(--ease); }
.js .in .rv-line > span, .js .rv-line.in > span { transform: none; }
.js .in .rv-line:nth-child(2) > span { transition-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .rv, .js .rv-line > span { opacity: 1 !important; transform: none !important; }
  .moment__img img { transform: none !important; }
}

/* print */
@media print { .nav, .menu, .footer, .hero-strip { display: none; } body { background: #fff; } }

html, body { overflow-x: clip; }
.moment__img { overflow: hidden; }
@media (max-width: 720px) {
  .nav__in { gap: 12px; }
  .brand__role { font-size: 9.5px; letter-spacing: 0.14em; }
  .nav__right { gap: 0; }
}
/* grid children must be allowed to shrink */
.intro > *, .dbody > *, .dhero__grid > *, .app-hero > *, .rooh > *, .case > *, .contact > *, .borders > *, .feat > *, .sh > *, .inst > *, .hero__grid > * { min-width: 0; }
.h1, .h2 { overflow-wrap: break-word; }
.kv dd { overflow-wrap: anywhere; }
.intro__cols--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 600px) { .intro__cols--5 { grid-template-columns: repeat(2, 1fr); } .intro__cols--5 .intro__col { border-left: 0 !important; padding-left: 0 !important; } .kv > div { grid-template-columns: 1fr; gap: 4px; } }
@media (max-width: 400px) {
  .brand__role { display: none; }
  .brand__name { font-size: 18px; }
}

/* ---- Hero fixes ---- */
.hero__line { display: none; }
.hero__grid { align-items: center; }
.hero__name.display { font-size: clamp(44px, 8.2vw, 136px); line-height: 0.95; }
.hero__name span { white-space: nowrap; overflow-wrap: normal; }
.hero__name .l2 { padding-left: 0.5em; }
.portrait { align-self: center; width: 100%; max-width: 460px; justify-self: end; }
.portrait__frame { position: relative; }
.portrait__tag { left: 0; bottom: 0; max-width: 86%; }
.portrait figcaption { margin-top: 16px; }
@media (max-width: 960px) {
  .portrait { justify-self: start; }
}
@media (max-width: 420px) {
  .hero__name .l2 { padding-left: 0.3em; }
}
@media (max-width: 600px) {
  .hero__name.display { font-size: 15vw; }
  .hero__name .l2 { padding-left: 0.35em; }
}
.intro__cols > *, .wcard > *, .wgrid > * { min-width: 0; }
@media (max-width: 400px) { .intro__col li { font-size: 17px; } .intro__col + .intro__col { padding-left: 14px; } .intro__col { padding-right: 14px; } }
@media (max-width: 600px) { .wgrid--compact-mobile .wcard { grid-template-columns: 96px minmax(0,1fr); } .wcard__type { flex-wrap: wrap; } .wcard__name { font-size: 19px; } }
.borders__h { font-size: clamp(34px, 3.6vw, 60px); overflow-wrap: normal; }
.usmap__pin--t span { top: auto; bottom: 22px; }
.usmap__pin--r span { left: 22px; top: 50%; transform: translateY(-50%); }
.usmap__pin--l span { left: auto; right: 22px; top: 50%; transform: translateY(-50%); }
/* Editorial spread (no upscaling: images capped near native width) */
.spread__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 5fr); gap: clamp(20px, 3vw, 48px); align-items: center; }
.spread figure { margin: 0; overflow: hidden; background: var(--stone); }
.spread img { width: 100%; height: 100%; object-fit: cover; }
.spread__a { aspect-ratio: 2 / 3; max-width: 460px; }
.spread__b { aspect-ratio: 3 / 2; max-width: 680px; }
.spread__txt .eyebrow { margin-bottom: 22px; }
.spread__q { font-size: clamp(22px, 2vw, 30px); line-height: 1.3; margin: 0 0 22px; }
@media (max-width: 960px) { .spread__grid { grid-template-columns: 1fr 1fr; } .spread__txt { grid-column: 1 / -1; order: -1; } }
@media (max-width: 560px) { .spread__grid { grid-template-columns: 1fr; } }
/* Event galleries: even rows, images always shown at or below native size */
.gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: clamp(260px, 30vw, 440px); gap: clamp(12px, 1.4vw, 20px); max-width: 1200px; margin-inline: auto; }
.gallery--sm { grid-auto-rows: clamp(220px, 24vw, 360px); max-width: none; }
.gallery figure { margin: 0; overflow: hidden; background: var(--stone); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; display: block; }
.gallery figcaption { position: absolute; left: 0; bottom: 0; padding: 22px 16px 12px; width: 100%; color: #f1efe9; background: linear-gradient(0deg, rgba(8,8,8,.7), transparent); }
.gallery .s4 { grid-column: span 4; } .gallery .s8 { grid-column: span 8; }
@media (max-width: 760px) {
  .gallery { grid-auto-rows: auto; }
  .gallery > figure { grid-column: span 12 !important; aspect-ratio: 3 / 2; }
  .gallery > figure.tall { grid-column: span 6 !important; aspect-ratio: 2 / 3; }
  .gallery > .hide-sm { display: none; }
}

/* Awards & Recognition (About) — native-size images, no upscaling */
.recog__lead { display: grid; grid-template-columns: minmax(0, 1024fr) minmax(0, 455fr); gap: clamp(12px, 1.4vw, 20px); max-width: 1200px; margin: 0 auto clamp(12px, 1.4vw, 20px); align-items: stretch; }
.recog figure { margin: 0; overflow: hidden; background: var(--stone); position: relative; }
.recog img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.recog figure:hover img { transform: scale(1.015); }
.recog__hero { aspect-ratio: 3 / 2; }
.recog__tall img { object-position: 50% 45%; }
.recog__hero figcaption { position: absolute; left: 0; bottom: 0; width: 100%; padding: 26px 18px 14px; color: #f1efe9; background: linear-gradient(0deg, rgba(8,8,8,.72), transparent); }
.recog__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 1.4vw, 20px); max-width: 1200px; margin: 0 auto; }
.recog__grid figure { aspect-ratio: 3 / 2; }
.recog__grid img { object-position: 50% 55%; }
@media (max-width: 860px) { .recog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .recog__lead { grid-template-columns: 1fr; } .recog__tall { aspect-ratio: 2 / 3; max-width: 420px; } .recog__grid { grid-template-columns: 1fr; } }

/* Press & Felicitation (About) */
.press__top, .press__row { display: grid; gap: clamp(12px, 1.4vw, 20px); max-width: 1200px; margin: 0 auto; }
.press__top { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: clamp(12px, 1.4vw, 20px); }
.press__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.press figure { margin: 0; overflow: hidden; position: relative; aspect-ratio: 3 / 2; background: var(--stone); }
.press img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.press figure:hover img { transform: scale(1.015); }
.press figcaption { position: absolute; left: 0; bottom: 0; width: 100%; padding: 26px 16px 12px; color: #f1efe9; background: linear-gradient(0deg, rgba(8,8,8,.75), transparent); }
@media (max-width: 860px) { .press__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } .press__row figure:last-child { grid-column: 1 / -1; } }
@media (max-width: 600px) { .press__top, .press__row { grid-template-columns: 1fr; } }

/* Milestones — year ladder */
.tl2 { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.tl2__yr { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: clamp(24px, 4vw, 64px); padding: clamp(36px, 4vw, 56px) 0; border-bottom: 1px solid var(--line); }
.tl2__year { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; gap: 10px; }
.tl2__num { font-family: var(--serif); font-size: clamp(56px, 7vw, 104px); line-height: .9; letter-spacing: -.03em; color: var(--blue); font-feature-settings: "lnum"; }
.tl2__yr--now .tl2__num { color: var(--ink); }
.tl2__yr--now .tl2__year .mono-meta { color: var(--bronze-ink); }
.tl2__items { position: relative; padding-left: 36px; display: grid; gap: clamp(26px, 3vw, 40px); }
.tl2__items::before { content: ''; position: absolute; left: 5px; top: 10px; bottom: 6px; width: 1px; background: linear-gradient(var(--bronze), var(--line)); }
.tl2__item { position: relative; }
.tl2__dot { position: absolute; left: -36px; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--bronze); }
.tl2__yr--now .tl2__item:first-child .tl2__dot { background: var(--bronze); box-shadow: 0 0 0 5px rgba(155, 123, 77, .16); }
.tl2__meta { margin: 0 0 8px; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.tl2__meta span { color: var(--bronze-ink); margin-right: 10px; }
.tl2__t { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2vw, 28px); line-height: 1.2; margin: 0 0 8px; max-width: 30ch; }
.tl2__d { margin: 0; color: #3b3935; font-size: 15.5px; max-width: 62ch; }
.tl2__works { margin-top: 20px; padding: 22px 24px; background: var(--bg); border: 1px solid var(--line); }
.sec--stone .tl2__works { background: #fbfaf7; }
.tl2__count { margin: 0 0 14px; font-size: 13px; color: var(--muted); }
.tl2__count strong { font-family: var(--serif); font-weight: 400; font-size: 26px; color: var(--ink); margin-right: 4px; }
.tl2__works ul { list-style: none; margin: 0; padding: 0; columns: 3 170px; column-gap: 28px; }
.tl2__works li { break-inside: avoid; border-top: 1px solid var(--line); }
.tl2__works a { display: block; padding: 8px 0; font-size: 14px; color: var(--ink); text-decoration: none; transition: color .2s, padding .2s; }
.tl2__works a:hover { color: var(--bronze-ink); padding-left: 4px; }
.tl2__works em { font-style: normal; color: var(--muted-2); font-size: 12px; }
@media (max-width: 760px) {
  .tl2__yr { grid-template-columns: 1fr; gap: 20px; }
  .tl2__year { position: static; flex-direction: row; align-items: baseline; justify-content: space-between; }
  .tl2__items { padding-left: 28px; }
  .tl2__dot { left: -28px; }
  .tl2__works { padding: 18px; }
}

/* ---------- Article card ---------- */
.acard { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 0; background: var(--white); border: 1px solid var(--line); color: inherit; text-decoration: none; overflow: hidden; transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.acard:hover { box-shadow: 0 24px 60px -30px rgba(17, 29, 47, .35); transform: translateY(-2px); }
.acard__img { margin: 0; overflow: hidden; background: var(--stone); min-height: 100%; max-height: 520px; }
.acard__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.acard:hover .acard__img img { transform: scale(1.02); }
.acard__body { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.acard__t { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -.025em; margin: 0; }
.acard__x { margin: 0; font-family: var(--serif); font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; color: #3b3935; max-width: 52ch; }
@media (max-width: 860px) { .acard { grid-template-columns: 1fr; } .acard__img { aspect-ratio: 3 / 2; } }

/* ---------- About: speech band ---------- */
.speech__grid { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: clamp(32px, 6vw, 96px); align-items: end; }
.speech__q { margin: 28px 0 22px; font-family: var(--serif); font-size: clamp(30px, 3.6vw, 54px); line-height: 1.12; letter-spacing: -.02em; color: #f4f1ea; max-width: 24ch; }
.speech__q em { color: var(--bronze-soft); }
.speech__by { color: var(--navy-muted); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 40px; }
.speech__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 26px; margin-bottom: 40px; max-width: 760px; }
.speech__facts span { display: block; font-family: var(--serif); font-size: clamp(30px, 3vw, 44px); line-height: 1; color: #fff; letter-spacing: -.02em; }
.speech__facts small { display: block; margin-top: 10px; font-size: 13px; line-height: 1.45; color: var(--navy-muted); }
.speech__acts { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); }
.speech__acts li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--serif); font-size: 19px; color: #e6e9ef; }
.speech__acts span { font-family: var(--sans); font-size: 11.5px; letter-spacing: .12em; color: var(--bronze-soft); padding-top: 5px; }
@media (max-width: 860px) { .speech__grid { grid-template-columns: 1fr; } .speech__facts { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- Article page ---------- */
.art__head { padding: clamp(40px, 6vw, 96px) 0 clamp(32px, 4vw, 56px); }
.art__head .wrap { max-width: 1080px; }
.art__title { font-family: var(--serif); font-weight: 400; font-size: clamp(52px, 8.4vw, 128px); line-height: .92; letter-spacing: -.035em; margin: 26px 0 28px; }
.art__dek { font-family: var(--serif); font-size: clamp(21px, 2vw, 28px); line-height: 1.4; color: #3b3935; max-width: 40ch; margin: 0 0 36px; }
.art__by { display: flex; flex-wrap: wrap; gap: 12px 36px; border-top: 1px solid var(--line); padding-top: 20px; font-size: 13px; color: var(--muted); }
.art__by strong { display: block; color: var(--ink); font-weight: 600; font-size: 14.5px; margin-bottom: 2px; }
.art__hero { margin: 0 auto; max-width: 1080px; }
.art__hero img { width: 100%; height: auto; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.art__hero figcaption { padding-top: 12px; }
.art { padding-top: clamp(48px, 6vw, 88px); }
.art__grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); max-width: 1200px; }
.art__toc { position: sticky; top: 108px; align-self: start; }
.art__toc ol { list-style: none; margin: 16px 0 0; padding: 0; border-top: 1px solid var(--line); }
.art__toc a { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.art__toc a:hover { color: var(--ink); }
.art__toc span { font-size: 11px; letter-spacing: .1em; color: var(--bronze-ink); padding-top: 3px; }
.art__body { max-width: 680px; font-family: var(--serif); font-size: 20.5px; line-height: 1.68; color: #22211e; }
.art__body > p { margin: 0 0 1.15em; }
.art__lede { font-size: clamp(23px, 2.1vw, 27px); line-height: 1.5; color: var(--ink); }
.art__h { display: flex; gap: 18px; align-items: baseline; font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3vw, 42px); line-height: 1.1; letter-spacing: -.02em; margin: 2.2em 0 .8em; scroll-margin-top: 110px; }
.art__h span { font-family: var(--sans); font-size: 12px; letter-spacing: .14em; color: var(--bronze-ink); flex: none; }
.art__q { margin: 1.8em 0; padding: 4px 0 4px 28px; border-left: 2px solid var(--bronze); }
.art__q p { margin: 0; font-size: clamp(25px, 2.4vw, 32px); line-height: 1.3; letter-spacing: -.01em; color: var(--navy); font-style: italic; }
.art__cad { margin: 1.6em 0; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.art__cad p { margin: 0; font-size: clamp(22px, 2vw, 27px); line-height: 1.45; color: var(--ink); }
.art__cad p:first-child { color: var(--bronze-ink); }
.art__stat { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 24px; align-items: center; margin: 2em 0; padding: clamp(24px, 3vw, 36px); background: var(--navy); color: #e9ecf1; font-family: var(--sans); }
.art__num { display: block; font-family: var(--serif); font-size: clamp(40px, 4.4vw, 62px); line-height: 1; letter-spacing: -.03em; color: #fff; }
.art__num--b { color: var(--bronze-soft); }
.art__stat p { margin: 12px 0 0; font-size: 14px; line-height: 1.5; color: var(--navy-muted); }
.art__arrow { font-size: 28px; color: var(--bronze-soft); }
.art__fig { margin: 2.2em 0; }
.art__fig img { width: 100%; height: auto; display: block; }
.art__fig figcaption { font-family: var(--sans); font-size: 13px; color: var(--muted); padding-top: 12px; }
.art__end { margin: 3em 0 1.4em; padding: clamp(24px, 3vw, 36px); background: var(--white); border: 1px solid var(--line); font-family: var(--sans); }
.art__end dl { margin: 18px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 32px; }
.art__end dt { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze-ink); margin-bottom: 6px; }
.art__end dd { margin: 0; font-family: var(--serif); font-size: 20px; line-height: 1.35; color: var(--ink); }
.art__note { font-family: var(--sans); font-size: 13px; color: var(--muted-2); }
.art__cta { display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; margin-top: 32px; font-family: var(--sans); }
@media (max-width: 960px) { .art__grid { grid-template-columns: 1fr; } .art__toc { position: static; } }
@media (max-width: 600px) { .art__body { font-size: 18.5px; } .art__stat { grid-template-columns: 1fr; } .art__arrow { transform: rotate(90deg); justify-self: start; } .art__end dl { grid-template-columns: 1fr; } }

/* ---------- Home: On stage band ---------- */
.stage { background: var(--navy); color: #e9ecf1; padding: clamp(80px, 10vw, 150px) 0; overflow: hidden; }
.stage__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(48px, 7vw, 120px); align-items: center; }
.stage__media { position: relative; max-width: 440px; padding: 0 clamp(40px, 6vw, 90px) clamp(60px, 7vw, 100px) 0; }
.stage__main { margin: 0; aspect-ratio: 2 / 3; overflow: hidden; background: #0b1422; }
.stage__main img, .stage__inset img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stage__inset { position: absolute; right: 0; bottom: 0; width: 62%; max-width: 340px; aspect-ratio: 3 / 2; margin: 0; overflow: hidden; border: 6px solid var(--navy); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.stage__tag { position: absolute; left: 0; bottom: 18px; color: var(--bronze-soft); letter-spacing: .16em; }
.stage__tag::before { content: ''; display: inline-block; width: 28px; height: 1px; background: currentColor; vertical-align: middle; margin-right: 12px; opacity: .7; }
.stage .eyebrow { color: var(--bronze-soft); }
.stage__q { position: relative; margin: 34px 0 28px; padding-top: clamp(44px, 4.4vw, 70px); }
.stage__mark { position: absolute; left: -.06em; top: -.18em; font-family: var(--serif); font-size: clamp(120px, 12vw, 190px); line-height: 1; color: var(--bronze); opacity: .35; pointer-events: none; }
.stage__q p { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.4vw, 50px); line-height: 1.14; letter-spacing: -.02em; color: #f4f1ea; max-width: 22ch; }
.stage__q em { color: var(--bronze-soft); }
.stage__by { margin: 0 0 clamp(36px, 4vw, 56px); font-size: 13px; color: var(--navy-muted); letter-spacing: .04em; }
.stage__by strong { display: block; color: #fff; font-weight: 600; font-size: 14.5px; letter-spacing: 0; margin-bottom: 4px; }
.stage__links { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); max-width: 640px; }
.stage__links a { display: grid; grid-template-columns: 40px minmax(0, 1fr) minmax(0, 1.3fr) 24px; gap: 16px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #e6e9ef; text-decoration: none; transition: padding .35s var(--ease), color .3s; }
.stage__links a:hover { padding-left: 8px; color: #fff; }
.stage__links span { font-size: 11.5px; letter-spacing: .14em; color: var(--bronze-soft); }
.stage__links b { font-family: var(--serif); font-weight: 400; font-size: 20px; }
.stage__links em { font-style: normal; font-size: 13.5px; color: var(--navy-muted); }
.stage__links i { font-style: normal; color: var(--bronze-soft); transition: transform .35s var(--ease); }
.stage__links a:hover i { transform: translateX(4px); }
@media (max-width: 960px) { .stage__grid { grid-template-columns: 1fr; } .stage__media { max-width: 460px; } }
@media (max-width: 560px) { .stage__links a { grid-template-columns: 32px minmax(0, 1fr) 20px; row-gap: 4px; } .stage__links em { grid-column: 2; grid-row: 2; } .stage__links i { grid-row: 1; grid-column: 3; } }
