:root {
  --bg: #151a22;
  --surface: #071a38;
  --surface-2: #102442;
  --surface-3: #1b2636;
  --text: #eaf3ff;
  --muted: #aebbd0;
  --line: rgba(234, 243, 255, .13);
  --line-strong: rgba(234, 243, 255, .26);
  --red: #176bff;
  --red-deep: #071a38;
  --green: #1ed760;
  --cream: #eaf3ff;
  --content: 1320px;
}

* { box-sizing: border-box; }
html { min-height: 100%; color-scheme: dark; scroll-behavior: smooth; }
body { min-height: 100vh; margin: 0; overflow-x: hidden; color: var(--text); background: var(--bg); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; letter-spacing: 0; }
button, input, select { font: inherit; }
img { max-width: 100%; }
a { color: inherit; }
[hidden] { display: none !important; }
a:focus-visible, summary:focus-visible, input:focus-visible, button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.app-brand { display: inline-flex; min-width: 0; align-items: center; gap: 11px; color: var(--text); text-decoration: none; }
.app-brand img { width: 40px; height: 40px; flex: 0 0 auto; padding: 5px; border: 1px solid rgba(234,243,255,.35); border-radius: 4px; background: #eaf3ff; object-fit: contain; }
.app-brand strong, .app-brand small { display: block; }
.app-brand strong { font-size: 14px; }
.app-brand small { margin-top: 2px; color: var(--muted); font-size: 10px; font-weight: 600; }

.public-header { position: absolute; z-index: 30; top: 0; right: 0; left: 0; border-bottom: 1px solid rgba(234,243,255,.13); background: rgba(7,26,56,.76); backdrop-filter: blur(16px); }
.public-header__inner { width: min(var(--content), calc(100% - 40px)); min-height: 76px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.public-actions { display: flex; align-items: center; gap: 8px; }
.institutional-nav { display: flex; align-items: center; gap: 22px; }
.institutional-nav a { color: var(--muted); text-decoration: none; font-size: 11px; font-weight: 750; }
.institutional-nav a:hover { color: var(--text); }
.public-menu { display: none; }
.text-action, .solid-action, .outline-action { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 0 15px; border: 1px solid transparent; border-radius: 5px; color: var(--text); text-decoration: none; font-size: 13px; font-weight: 850; }
.text-action:hover { background: rgba(255,255,255,.07); }
.solid-action { border-color: var(--red); background: var(--red); }
.solid-action:hover { background: #3e84ff; }
.solid-action--large { min-height: 50px; padding: 0 20px; }
.outline-action { border-color: var(--line-strong); background: rgba(17,17,17,.68); }
.outline-action:hover { border-color: var(--text); }
.text-action--light { color: var(--cream); }

.app-sidebar { position: fixed; z-index: 60; top: 0; bottom: 0; left: 0; width: 224px; display: flex; flex-direction: column; padding: 24px 16px 16px; border-right: 1px solid var(--line); background: #071a38; }
.app-sidebar > .app-brand { padding: 0 8px 28px; }
.app-nav { display: grid; gap: 3px; }
.app-nav__label { margin: 4px 10px 8px; color: #68615e; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.app-nav__label--spaced { margin-top: 25px; }
.app-nav__link { min-height: 44px; display: grid; grid-template-columns: 28px 1fr; align-items: center; padding: 0 10px; border-left: 2px solid transparent; border-radius: 4px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 750; }
.app-nav__link > span { color: #756d69; font-size: 17px; text-align: center; }
.app-nav__link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.app-nav__link.active { border-left-color: var(--red); color: var(--text); background: var(--surface-2); }
.app-nav__link.active > span { color: var(--red); }
.app-nav__site-link { margin: 24px 10px 0; color: #77706c; text-decoration: none; font-size: 10px; font-weight: 800; }
.app-nav__site-link:hover { color: var(--text); }
.sidebar-account { margin-top: auto; display: grid; grid-template-columns: minmax(0, 1fr) 34px; gap: 5px; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); }
.sidebar-account > a:first-child { min-width: 0; display: flex; align-items: center; gap: 9px; color: var(--text); text-decoration: none; }
.sidebar-account strong, .sidebar-account small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-account strong { font-size: 12px; }
.sidebar-account small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.profile-avatar { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; background: var(--red); text-decoration: none; font-size: 12px; font-weight: 900; }
.sidebar-logout { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 4px; color: var(--muted); text-decoration: none; }
.sidebar-logout:hover { color: var(--text); background: var(--surface); }
.mobile-app-header, .mobile-bottom-nav { display: none; }
.has-app-shell body { padding-left: 224px; }

.section-kicker { margin: 0 0 9px; color: var(--red); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.cover-story { position: relative; min-height: 720px; display: flex; align-items: flex-end; overflow: hidden; background-image: var(--cover-image); background-position: center 20%; background-size: cover; }
.cover-story__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.65) 44%, rgba(5,5,5,.08) 76%), linear-gradient(0deg, rgba(5,5,5,.9), transparent 52%); }
.cover-story__content { position: relative; z-index: 2; width: min(var(--content), calc(100% - 40px)); margin: 0 auto; padding: 150px 0 92px; }
.cover-rank { color: rgba(255,255,255,.3); font-size: 24px; font-weight: 300; }
.cover-story h1 { max-width: 760px; margin: 4px 0 0; overflow-wrap: anywhere; font-size: 86px; line-height: .92; }
.cover-deck { max-width: 620px; margin: 22px 0 0; color: #d1cac5; font-size: 18px; line-height: 1.6; }
.cover-actions { display: flex; align-items: center; gap: 10px; margin-top: 30px; }
.cover-meta { position: absolute; z-index: 2; right: 32px; bottom: 26px; display: flex; gap: 18px; color: rgba(255,255,255,.62); font-size: 10px; text-transform: uppercase; }

.front-list { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; padding: 72px 0 82px; }
.section-header, .module-header, .page-intro { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-header { margin-bottom: 28px; }
.section-header h2, .module-header h2 { margin: 0; font-size: 30px; }
.section-header > a, .module-header > a { color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 800; }
.section-header > a:hover, .module-header > a:hover { color: var(--text); }
.front-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.front-artist { min-width: 0; display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: end; color: var(--text); text-decoration: none; }
.front-artist img { grid-column: 1 / -1; width: 100%; aspect-ratio: 1; margin-bottom: 14px; border-radius: 3px; object-fit: cover; filter: saturate(.86); }
.front-artist:hover img { filter: saturate(1.05); }
.front-artist__rank { grid-row: 2 / span 2; align-self: start; color: var(--red); font-size: 12px; font-weight: 900; }
.front-artist strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 16px; }
.front-artist small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.manifesto-band { padding: 80px max(24px, calc((100% - var(--content)) / 2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-3); }
.manifesto-band p { margin: 0; color: #d4c6c0; font-size: 15px; }
.manifesto-band h2 { max-width: 920px; margin: 10px 0 28px; font-size: 50px; line-height: 1.08; }

.app-page { width: min(var(--content), calc(100% - 56px)); margin: 0 auto; padding: 44px 0 76px; }
.page-intro { min-height: 128px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.page-intro h1 { margin: 0; font-size: 50px; line-height: 1; }
.page-intro p:not(.section-kicker) { margin: 12px 0 0; color: var(--muted); }
.signal-grid { display: grid; grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr)); margin-top: 24px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.signal { min-height: 136px; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.signal > span, .signal > div > span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.signal > strong, .signal > div > strong { display: block; margin-top: 8px; overflow-wrap: anywhere; font-size: 22px; }
.signal small { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.signal--leader { position: relative; min-height: 190px; overflow: hidden; justify-content: flex-end; }
.signal--leader img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; opacity: .5; }
.signal--leader::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,8,.98), rgba(8,8,8,.08)); }
.signal--leader > div { position: relative; z-index: 1; }
.dashboard-columns { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(270px, .72fr); gap: 24px; margin-top: 34px; }
.dashboard-chart, .weekly-notes { min-width: 0; }
.module-header { min-height: 70px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.compact-chart { margin: 0; padding: 0; list-style: none; }
.compact-chart li { border-bottom: 1px solid var(--line); }
.compact-chart a { min-height: 68px; display: grid; grid-template-columns: 34px 44px minmax(0,1fr) 78px 66px; gap: 11px; align-items: center; padding: 8px 4px; text-decoration: none; }
.compact-chart a:hover { background: rgba(255,255,255,.035); }
.compact-chart img { width: 42px; height: 42px; border-radius: 3px; object-fit: cover; }
.compact-rank { color: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; text-align: center; }
.compact-chart strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.compact-chart small { color: var(--muted); font-size: 10px; text-align: right; }
.weekly-notes > a { min-height: 88px; display: grid; grid-template-columns: 64px minmax(0,1fr); align-content: center; gap: 5px 10px; padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.weekly-notes > a > .movement { grid-row: 1 / span 2; align-self: center; }
.weekly-notes > a strong { font-size: 13px; }
.weekly-notes > a small { color: var(--muted); font-size: 10px; }
.weekly-notes .history-callout { min-height: 134px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; margin-top: 24px; padding: 16px; border: 1px solid var(--line); border-left: 3px solid var(--red); background: var(--surface-2); }
.history-callout span { color: var(--red); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.history-callout strong { margin-top: 8px; font-size: 16px; }
.history-callout small { margin-top: 5px; }
.movement { display: inline-flex; width: max-content; min-width: 38px; height: 24px; align-items: center; justify-content: center; padding: 0 7px; border-radius: 4px; color: var(--muted); background: rgba(255,255,255,.06); font-size: 9px; font-weight: 900; white-space: nowrap; }
.movement.is-up, .movement.is-new { color: #aaf7c4; background: rgba(30,215,96,.13); }
.movement.is-down { color: #ffb6ba; background: rgba(229,43,53,.14); }

.institutional-site .public-header { position: fixed; }
.institutional-hero { min-height: 720px; display: flex; align-items: flex-end; padding: 132px 0 78px; border-bottom: 1px solid var(--line); background: #090909; }
.institutional-hero__grid { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .55fr); gap: 80px; align-items: end; }
.institutional-hero__copy h1 { max-width: 930px; margin: 0; font-size: 78px; line-height: .98; }
.institutional-hero__copy > p:not(.section-kicker) { max-width: 720px; margin: 24px 0 0; color: #c7bfbb; font-size: 18px; line-height: 1.7; }
.institutional-actions { display: flex; gap: 10px; margin-top: 32px; }
.institutional-hero__signal { display: grid; border-top: 1px solid var(--line-strong); }
.institutional-hero__signal span { min-height: 52px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 750; }
.institutional-hero__signal span::after { content: "\2197"; color: var(--red); }
.institutional-section { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 50px; padding: 92px 0; border-bottom: 1px solid var(--line); }
.institutional-section__label { color: #736c68; }
.institutional-section__label span { color: var(--red); font-size: 11px; font-weight: 900; }
.institutional-section__label p { margin: 9px 0 0; font-size: 10px; text-transform: uppercase; }
.institutional-section__content h2, .institutional-contact h2 { margin: 0; font-size: 48px; line-height: 1.05; }
.institutional-lead { max-width: 950px; margin: 0; color: #ded6d1; font-size: 28px; line-height: 1.5; }
.institutional-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.institutional-heading p { max-width: 360px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.project-feature { min-height: 220px; display: grid; grid-template-columns: 160px minmax(0, 1fr) auto; gap: 28px; align-items: center; padding: 28px; border: 1px solid var(--line); background: var(--surface); }
.project-feature__mark { width: 160px; height: 160px; display: grid; place-items: center; background: #080808; }
.project-feature__mark img { width: 78px; height: 78px; object-fit: contain; }
.project-feature h3 { margin: 0; font-size: 34px; }
.project-feature__copy > p:last-child { max-width: 600px; margin: 13px 0 0; color: var(--muted); line-height: 1.65; }
.solutions-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.solutions-list li { min-height: 74px; display: grid; grid-template-columns: 56px minmax(0, 1fr); align-items: center; border-bottom: 1px solid var(--line); }
.solutions-list span { color: var(--red); font-size: 10px; font-weight: 900; }
.solutions-list strong { font-size: 19px; }
.institutional-contact { width: min(var(--content), calc(100% - 40px)); min-height: 360px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.institutional-contact > div > p:last-child { max-width: 650px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.contact-pending { color: var(--muted); font-size: 12px; }
.site-footer a { color: #9a918d; text-decoration: none; }
.site-footer a:hover { color: var(--text); }
.site-footer { border-top: 1px solid var(--line); background: #060606; }
.site-footer__inner { width: min(var(--content), calc(100% - 40px)); min-height: 90px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #726b68; font-size: 10px; }
.site-footer--app .site-footer__inner { width: min(var(--content), calc(100% - 56px)); }

@media (max-width: 1040px) {
  .institutional-nav { gap: 13px; }
  .institutional-hero__copy h1 { font-size: 62px; }
  .institutional-hero__grid { gap: 42px; }
  .cover-story h1 { font-size: 68px; }
  .front-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px 12px; }
  .signal-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .signal--leader { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .institutional-nav { display: none; }
  .public-menu { position: relative; display: block; }
  .public-menu summary { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 5px; cursor: pointer; list-style: none; }
  .public-menu summary::-webkit-details-marker { display: none; }
  .public-menu[open] nav { position: absolute; top: 50px; right: 0; width: min(280px, calc(100vw - 24px)); display: grid; padding: 8px; border: 1px solid var(--line); background: #0b0b0b; box-shadow: 0 20px 50px rgba(0,0,0,.42); }
  .public-menu nav a { min-height: 44px; display: flex; align-items: center; padding: 0 12px; border-bottom: 1px solid var(--line); color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 750; }
  .public-menu nav a:last-child { border-bottom: 0; }
  .institutional-hero { min-height: 680px; }
  .institutional-hero__grid { grid-template-columns: 1fr; }
  .institutional-hero__signal { display: none; }
  .institutional-section { grid-template-columns: 120px minmax(0,1fr); gap: 28px; }
  .project-feature { grid-template-columns: 120px minmax(0,1fr); }
  .project-feature__mark { width: 120px; height: 120px; }
  .project-feature > .outline-action { grid-column: 2; justify-self: start; }
  .has-app-shell body { padding: 64px 0 76px; }
  .app-sidebar { display: none; }
  .mobile-app-header { position: fixed; z-index: 60; top: 0; right: 0; left: 0; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid var(--line); background: rgba(8,8,8,.94); backdrop-filter: blur(16px); }
  .mobile-app-header .app-brand img { width: 36px; height: 36px; }
  .mobile-bottom-nav { position: fixed; z-index: 70; right: 0; bottom: 0; left: 0; min-height: 66px; display: grid; grid-template-columns: repeat(4, 1fr); padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid var(--line); background: rgba(8,8,8,.96); backdrop-filter: blur(16px); }
  .mobile-bottom-nav a { display: grid; place-items: center; align-content: center; gap: 3px; color: #7e7773; text-decoration: none; font-size: 9px; font-weight: 800; }
  .mobile-bottom-nav a span { font-size: 16px; line-height: 1; }
  .mobile-bottom-nav a.active { color: var(--text); }
  .mobile-bottom-nav a.active span { color: var(--red); }
  .site-footer--app { display: none; }
  .dashboard-columns { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .public-header__inner, .front-list, .site-footer__inner { width: min(100% - 24px, var(--content)); }
  .public-header__inner { min-height: 64px; }
  .public-header .app-brand small, .public-header--music .text-action { display: none; }
  .public-header .solid-action { min-height: 38px; }
  .institutional-hero { min-height: 620px; padding: 112px 0 54px; }
  .institutional-hero__grid, .institutional-section, .institutional-contact { width: min(100% - 24px, var(--content)); }
  .institutional-hero__copy h1 { font-size: 44px; }
  .institutional-hero__copy > p:not(.section-kicker) { font-size: 15px; }
  .institutional-actions { align-items: stretch; flex-direction: column; }
  .institutional-section { grid-template-columns: 1fr; gap: 24px; padding: 58px 0; }
  .institutional-section__label { display: flex; align-items: center; gap: 8px; }
  .institutional-section__label p { margin: 0; }
  .institutional-section__content h2, .institutional-contact h2 { font-size: 36px; }
  .institutional-lead { font-size: 21px; }
  .institutional-heading { align-items: flex-start; flex-direction: column; }
  .project-feature { grid-template-columns: 76px minmax(0,1fr); gap: 18px; padding: 18px; }
  .project-feature__mark { width: 76px; height: 76px; }
  .project-feature__mark img { width: 44px; height: 44px; }
  .project-feature h3 { font-size: 25px; }
  .project-feature__copy > p:last-child { font-size: 12px; }
  .project-feature > .outline-action { grid-column: 1 / -1; width: 100%; }
  .solutions-list strong { font-size: 15px; }
  .institutional-contact { min-height: 320px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .institutional-contact > .solid-action { width: 100%; }
  .cover-story { min-height: 680px; background-position: 62% center; }
  .cover-story__shade { background: linear-gradient(0deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.58) 58%, rgba(5,5,5,.14) 100%); }
  .cover-story__content { width: min(100% - 24px, var(--content)); padding: 100px 0 74px; }
  .cover-story h1 { font-size: 50px; }
  .cover-deck { font-size: 15px; }
  .cover-actions { align-items: stretch; flex-direction: column; }
  .cover-meta { right: 12px; bottom: 18px; left: 12px; justify-content: space-between; }
  .front-list { padding: 48px 0 58px; }
  .section-header { align-items: flex-start; flex-direction: column; }
  .front-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .front-artist strong { font-size: 13px; }
  .manifesto-band { padding: 54px 20px; }
  .manifesto-band h2 { font-size: 34px; }
  .manifesto-band .outline-action { width: 100%; }
  .app-page { width: min(100% - 24px, var(--content)); padding: 26px 0 40px; }
  .page-intro { min-height: 0; align-items: flex-start; flex-direction: column; padding-bottom: 22px; }
  .page-intro h1 { font-size: 38px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal--leader { grid-column: 1 / -1; }
  .signal { min-height: 112px; padding: 14px; }
  .signal > strong, .signal > div > strong { font-size: 17px; }
  .compact-chart a { grid-template-columns: 28px 40px minmax(0,1fr) 42px; }
  .compact-chart img { width: 38px; height: 38px; }
  .compact-chart small { display: none; }
  .site-footer:not(.site-footer--app) .site-footer__inner { align-items: flex-start; flex-direction: column; justify-content: center; padding: 24px 0; }
}

/* ED Consultoria institutional experience */
.institutional-site { background: #151a22; }
.institutional-site .public-header { position: fixed; border-bottom-color: rgba(234,243,255,.16); background: rgba(7,26,56,.95); }
.institutional-site .public-header__inner { min-height: 92px; }
.institutional-site .app-brand img { width: 46px; height: 46px; }
.institutional-site .app-brand strong { font-size: 15px; }
.institutional-site .app-brand small { font-size: 9px; text-transform: uppercase; }
.header-edition { align-self: stretch; display: flex; align-items: center; padding-left: 22px; border-left: 1px solid var(--line); color: #8fa2bf; font-size: 9px; font-weight: 900; }
.institutional-nav a { position: relative; min-height: 92px; display: inline-flex; align-items: center; gap: 7px; }
.institutional-nav a small { color: #68615d; font-size: 8px; font-weight: 900; }
.institutional-nav a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: transparent; }
.institutional-nav a:hover::after, .institutional-nav a.active::after { background: var(--red); }
.institutional-nav a.active { color: var(--text); }
.header-contact { min-height: 48px; display: inline-flex; align-items: stretch; border: 1px solid var(--line-strong); text-decoration: none; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.header-contact span { display: flex; align-items: center; padding: 0 17px; }
.header-contact b { width: 46px; display: grid; place-items: center; border-left: 1px solid var(--line-strong); background: var(--red); color: #fff; font-size: 16px; }
.header-contact:hover { border-color: #fff; }

.brand-hero { position: relative; min-height: 790px; display: flex; align-items: flex-end; overflow: hidden; border-bottom: 1px solid var(--line); }
.brand-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .16); pointer-events: none; }
.brand-hero__media { position: absolute; inset: 0; background: #071a38 url('/assets/institutional-hero-ed.jpg') center / cover no-repeat; }
.brand-hero__content { position: relative; z-index: 2; width: min(var(--content), calc(100% - 40px)); margin: 0 auto; padding: 188px 0 154px; }
.brand-hero h1 { margin: 0; color: #fff; font-size: 24px; line-height: 1; text-transform: uppercase; }
.brand-hero__statement { max-width: 820px; margin: 18px 0 0; color: #fff; font-size: 66px; font-weight: 850; line-height: 1.02; }
.brand-hero__summary { max-width: 630px; margin: 24px 0 0; color: #c8d7eb; font-size: 17px; line-height: 1.65; }
.brand-hero__actions { display: flex; gap: 10px; margin-top: 30px; }
.brand-hero__footer { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; min-height: 88px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 max(20px, calc((100% - var(--content)) / 2)); border-top: 1px solid rgba(234,243,255,.18); background: rgba(7,26,56,.82); backdrop-filter: blur(12px); }
.brand-hero__footer span { display: flex; align-items: center; gap: 18px; border-right: 1px solid var(--line); color: var(--red); font-size: 10px; font-weight: 900; }
.brand-hero__footer span:last-child { border-right: 0; padding-left: 24px; }
.brand-hero__footer span:nth-child(2) { padding-left: 24px; }
.brand-hero__footer strong { color: var(--text); font-size: 11px; }

.home-intro, .client-logos, .home-capabilities, .story-grid, .principles-section, .project-spotlight, .project-note, .services-index, .contact-process, .page-next { width: min(var(--content), calc(100% - 40px)); margin-right: auto; margin-left: auto; }
.home-intro { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); gap: 76px; align-items: center; padding: 110px 0; }
.home-intro__copy h2, .home-capabilities h2, .principles-section h2 { margin: 0; font-size: 48px; line-height: 1.08; }
.home-intro__copy > p:not(.section-kicker) { max-width: 590px; margin: 25px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 20px; margin-top: 28px; color: var(--text); text-decoration: none; font-size: 12px; font-weight: 850; }
.text-link span { color: var(--red); font-size: 18px; }
.home-intro__image { margin: 0; }
.home-intro__image img { width: 100%; aspect-ratio: 16 / 10; display: block; object-fit: cover; filter: saturate(.72) contrast(1.05); }
.home-intro__image figcaption { padding: 12px 0 0; color: #8fa2bf; font-size: 10px; }

.client-logos { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; padding: 18px 0 105px; }
.client-logos h2 { margin: 0; font-size: 36px; line-height: 1.08; }
.client-logos__list { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.client-logos figure { min-height: 210px; margin: 0; display: grid; place-items: center; align-content: center; gap: 12px; padding: 26px; border-right: 1px solid var(--line); background: #071a38; }
.client-logos figure:last-child { border-right: 0; }
.client-logos img { width: min(180px, 72%); height: 70px; object-fit: contain; filter: grayscale(1) brightness(1.55); opacity: .78; }
.client-logos figure strong { margin-top: 8px; color: #eaf3ff; font-size: 16px; }
.client-logos figcaption { color: #8fa2bf; font-size: 9px; text-transform: uppercase; }
.client-logos--projects { padding: 35px 0 100px; border-top: 1px solid var(--line); }
.client-logos__note { max-width: 430px; margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.selected-work { padding: 20px 0 120px; }
.selected-work__header { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 42px; }
.selected-work__header h2 { max-width: 740px; margin: 0; font-size: 48px; line-height: 1.08; }
.selected-work__header > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.selected-work__grid { display: grid; grid-template-columns: 1.12fr 1fr 1fr; min-height: 430px; border: 1px solid var(--line); }
.work-card { position: relative; min-width: 0; display: flex; align-items: flex-start; flex-direction: column; justify-content: flex-end; padding: 28px; overflow: hidden; border-right: 1px solid var(--line); text-decoration: none; }
.work-card:last-child { border-right: 0; }
.work-card::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.12); pointer-events: none; }
.work-card > * { position: relative; z-index: 1; }
.work-card > img { position: absolute; z-index: 0; top: 58px; right: 28px; left: 28px; width: calc(100% - 56px); height: 150px; object-fit: contain; }
.work-card > span { margin-bottom: 10px; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.work-card > strong { font-size: 34px; line-height: 1; }
.work-card > small { margin-top: 10px; font-size: 11px; }
.work-card > b { margin-top: 24px; font-size: 10px; text-transform: uppercase; }
.work-card--music { background: #071a38; color: #fff; }
.work-card--music::after { content: "LM"; position: absolute; top: 40px; right: 30px; color: #102f5d; font-size: 145px; font-weight: 950; line-height: 1; }
.work-card--music > span, .work-card--music > b { color: var(--red); }
.work-card--terri { background: #eeeadd; color: #103f30; }
.work-card--terri::before { border-color: rgba(16,63,48,.18); }
.work-card--terri > span, .work-card--terri > b { color: #9d7922; }
.work-card--elle { background: #a8998e; color: #211713; }
.work-card--elle::before { border-color: rgba(33,23,19,.18); }
.work-card--elle > span, .work-card--elle > b { color: #633e2f; }

.music-showcase { display: grid; grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr); min-height: 640px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #071a38; }
.music-showcase__intro { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 70px max(30px, calc((100vw - var(--content)) / 2)); padding-right: 52px; }
.music-showcase__intro h2 { margin: 0; font-size: 62px; }
.music-showcase__intro > p:not(.section-kicker) { max-width: 370px; margin: 20px 0 28px; color: var(--muted); line-height: 1.7; }
.music-showcase__artists { min-width: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; }
.music-showcase__artists article { position: relative; min-width: 0; overflow: hidden; border-left: 1px solid var(--line); }
.music-showcase__artists img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.8) brightness(.62); transition: transform .35s ease, filter .35s ease; }
.music-showcase__artists article:hover img { transform: scale(1.035); filter: grayscale(.1) brightness(.78); }
.music-showcase__artists span, .music-showcase__artists strong { position: absolute; z-index: 1; left: 18px; }
.music-showcase__artists span { top: 18px; color: var(--red); font-size: 11px; font-weight: 900; }
.music-showcase__artists strong { right: 16px; bottom: 20px; overflow-wrap: anywhere; font-size: 15px; }

.home-capabilities { display: grid; grid-template-columns: .68fr 1.32fr; gap: 70px; padding: 110px 0; }
.capability-links { border-top: 1px solid var(--line); }
.capability-links a { min-height: 84px; display: grid; grid-template-columns: 55px minmax(0,1fr) 30px; align-items: center; border-bottom: 1px solid var(--line); text-decoration: none; }
.capability-links a:hover { background: rgba(255,255,255,.025); }
.capability-links span { color: var(--red); font-size: 10px; font-weight: 900; }
.capability-links strong { font-size: 18px; }
.capability-links b { color: #77706c; font-size: 16px; }
.closing-cta { min-height: 410px; display: flex; align-items: center; flex-direction: column; justify-content: center; padding: 70px 20px; border-top: 1px solid var(--line); background: #071a38; text-align: center; }
.closing-cta p { margin: 0 0 10px; color: #c8bbb6; }
.closing-cta h2 { max-width: 900px; margin: 0 0 30px; font-size: 54px; line-height: 1.06; }

.inner-page main { padding-top: 82px; }
.inner-hero { width: min(var(--content), calc(100% - 40px)); min-height: 560px; margin: 0 auto; display: flex; align-items: flex-start; flex-direction: column; justify-content: flex-end; padding: 90px 0 74px; }
.inner-hero h1 { max-width: 1080px; margin: 0; font-size: 70px; line-height: 1.02; }
.inner-hero > p:last-child, .inner-hero > div > p:last-child { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.inner-hero--compact { min-height: 500px; }
.inner-hero--split { min-height: 650px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; padding: 76px 0; }
.inner-hero--split img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: grayscale(.55) brightness(.72); }
.editorial-image { position: relative; width: min(1600px, 100%); margin: 0 auto; }
.editorial-image img { width: 100%; max-height: 730px; display: block; object-fit: cover; filter: saturate(.72) brightness(.78); }
.editorial-image span { position: absolute; right: 24px; bottom: 20px; padding: 10px 12px; background: rgba(8,8,8,.84); color: #c9c2bd; font-size: 10px; }
.story-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; padding: 110px 0; border-bottom: 1px solid var(--line); }
.story-grid h2 { max-width: 480px; margin: 0; font-size: 48px; line-height: 1.08; }
.story-grid__body p { margin: 0 0 28px; color: #d6cfca; font-size: 22px; line-height: 1.6; }
.principles-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; padding: 100px 0; }
.principles-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.principles-list li { min-height: 126px; display: grid; grid-template-columns: 55px 1fr; padding: 28px 0; border-bottom: 1px solid var(--line); }
.principles-list li > span { color: var(--red); font-size: 10px; font-weight: 900; }
.principles-list strong { font-size: 20px; }
.principles-list p { margin: 9px 0 0; color: var(--muted); line-height: 1.6; }

.project-spotlight { min-height: 720px; display: grid; grid-template-columns: .72fr 1.28fr; border: 1px solid var(--line); background: #0d0d0d; }
.project-spotlight__copy { display: flex; align-items: flex-start; flex-direction: column; justify-content: center; padding: 54px; }
.product-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 44px; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.product-label img { width: 30px; height: 30px; padding: 4px; border-radius: 3px; background: #eaf3ff; object-fit: contain; }
.project-spotlight h2 { margin: 0; font-size: 64px; }
.project-spotlight__copy > p:not(.section-kicker) { margin: 20px 0 0; color: var(--muted); line-height: 1.75; }
.project-spotlight ul { margin: 25px 0 30px; padding: 0; list-style: none; }
.project-spotlight li { padding: 8px 0; color: #d4ceca; font-size: 12px; }
.project-spotlight li::before { content: "+"; margin-right: 10px; color: var(--red); }
.project-spotlight__visual { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: 1fr 1fr; gap: 2px; background: #050505; }
.project-spotlight__visual article { position: relative; min-width: 0; overflow: hidden; }
.project-spotlight__visual article:nth-child(1) { grid-column: span 4; }
.project-spotlight__visual article:nth-child(2) { grid-column: span 2; }
.project-spotlight__visual article:nth-child(n+3) { grid-column: span 2; }
.project-spotlight__visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) brightness(.65); }
.project-spotlight__visual span, .project-spotlight__visual strong { position: absolute; z-index: 1; }
.project-spotlight__visual span { top: 14px; left: 14px; color: var(--red); font-size: 10px; font-weight: 900; }
.project-spotlight__visual strong { right: 14px; bottom: 14px; left: 14px; font-size: 13px; }
.project-note { display: grid; grid-template-columns: .35fr 1fr; gap: 40px; padding: 34px 0 80px; color: var(--muted); font-size: 11px; }
.project-note p { margin: 0; }

.client-work { padding: 40px 0 110px; }
.client-work > header { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 44px; }
.client-work > header h2 { max-width: 760px; margin: 0; font-size: 48px; line-height: 1.08; }
.client-work > header > p:last-child { margin: 0; color: var(--muted); line-height: 1.7; }
.client-work__grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.portfolio-case { display: grid; grid-template-rows: 380px auto; min-width: 0; border-right: 1px solid var(--line); color: var(--text); text-decoration: none; }
.portfolio-case:last-child { border-right: 0; }
.portfolio-case__visual { position: relative; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.portfolio-case__visual img { position: relative; z-index: 2; width: 48%; max-height: 110px; object-fit: contain; }
.portfolio-case__visual i { position: absolute; display: block; border: 1px solid currentColor; opacity: .14; }
.portfolio-case__visual i:nth-of-type(1) { inset: 28px; }
.portfolio-case__visual i:nth-of-type(2) { width: 62%; height: 44%; right: -10%; bottom: -10%; }
.portfolio-case__visual i:nth-of-type(3) { width: 38%; height: 34%; top: -8%; left: -6%; }
.portfolio-case--terri .portfolio-case__visual { background: #eeeadd; color: #103f30; }
.portfolio-case--elle .portfolio-case__visual { background: #a8998e; color: #33231d; }
.portfolio-case__copy { padding: 30px; }
.portfolio-case__copy span { color: var(--red); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.portfolio-case__copy h3 { margin: 12px 0 0; font-size: 34px; }
.portfolio-case__copy p { min-height: 76px; margin: 15px 0 24px; color: var(--muted); line-height: 1.65; }
.portfolio-case__copy b { font-size: 10px; text-transform: uppercase; }
.portfolio-case:hover .portfolio-case__visual img { transform: scale(1.035); }

.services-index { border-top: 1px solid var(--line); }
.services-index article { min-height: 180px; display: grid; grid-template-columns: 70px minmax(0, 1fr) 220px; gap: 28px; align-items: center; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.services-index article > span { color: var(--red); font-size: 11px; font-weight: 900; }
.services-index h2 { margin: 0; font-size: 30px; }
.services-index p { max-width: 680px; margin: 12px 0 0; color: var(--muted); line-height: 1.65; }
.services-index article > b { color: #77706c; font-size: 10px; text-transform: uppercase; }

.contact-hero { width: min(var(--content), calc(100% - 40px)); min-height: 690px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: center; }
.contact-hero h1 { max-width: 850px; margin: 0; font-size: 70px; line-height: 1.02; }
.contact-hero > div > p:last-child { max-width: 660px; margin: 26px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.contact-hero aside { min-height: 210px; display: flex; align-items: flex-start; flex-direction: column; justify-content: flex-end; padding: 28px; border: 1px solid var(--line); border-top: 3px solid var(--red); background: var(--surface); }
.contact-hero aside > span { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.contact-hero aside a { max-width: 100%; display: flex; justify-content: space-between; gap: 20px; margin-top: 22px; overflow-wrap: anywhere; color: var(--text); text-decoration: none; font-size: 16px; font-weight: 800; }
.contact-hero aside b { color: var(--red); }
.contact-process { display: grid; grid-template-columns: .55fr repeat(3, 1fr); padding: 60px 0 100px; border-top: 1px solid var(--line); }
.contact-process > div { min-height: 140px; padding: 22px; border-left: 1px solid var(--line); }
.contact-process span { color: var(--red); font-size: 10px; font-weight: 900; }
.contact-process strong { max-width: 180px; display: block; margin-top: 28px; font-size: 15px; line-height: 1.5; }
.page-next { min-height: 180px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.page-next > span { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.page-next a { display: flex; align-items: center; gap: 30px; text-decoration: none; font-size: 22px; font-weight: 800; }
.page-next b { color: var(--red); }

.institutional-site .site-footer { overflow: hidden; border-top: 1px solid var(--line); background: #071a38; }
.institutional-site .site-footer__inner { width: min(var(--content), calc(100% - 40px)); min-height: 0; display: block; padding: 0 0 34px; }
.footer-lead { min-height: 330px; display: flex; align-items: flex-start; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--line); }
.footer-lead p { margin: 0 0 14px; color: #8a817c; font-size: 12px; }
.footer-lead a { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--text); text-decoration: none; }
.footer-lead a span { max-width: 1100px; font-size: 62px; font-weight: 850; line-height: 1.03; }
.footer-lead a b { width: 70px; height: 70px; flex: 0 0 auto; display: grid; place-items: center; background: var(--red); font-size: 24px; }
.footer-directory { display: grid; grid-template-columns: 1.45fr .55fr .65fr 1fr; gap: 60px; padding: 62px 0 52px; }
.footer-brand .app-brand { margin-bottom: 22px; }
.footer-brand > p { max-width: 380px; margin: 0; color: #9aabc3; font-size: 12px; line-height: 1.7; }
.footer-column { display: grid; align-content: start; gap: 12px; }
.footer-column strong { margin-bottom: 8px; color: var(--text); font-size: 10px; text-transform: uppercase; }
.footer-column a, .footer-column span { color: #9aabc3; font-size: 11px; line-height: 1.5; }
.footer-column a:hover { color: #fff; }
.footer-contact { display: flex; align-items: flex-start; flex-direction: column; padding-left: 28px; border-left: 1px solid var(--line); }
.footer-contact > span { color: #9aabc3; font-size: 10px; text-transform: uppercase; }
.footer-contact a { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; color: var(--text); text-decoration: none; font-size: 16px; font-weight: 850; }
.footer-contact b { color: var(--red); }
.footer-wordmark { width: 100%; overflow: hidden; color: #102442; font-size: clamp(94px, 14vw, 210px); font-weight: 950; line-height: .72; letter-spacing: 0; white-space: nowrap; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; align-items: center; padding-top: 30px; border-top: 1px solid var(--line); color: #8fa2bf; font-size: 10px; }
.footer-bottom a { color: #c8d7eb; text-decoration: none; }

@media (max-width: 1100px) {
  .institutional-site .public-header__inner { gap: 16px; }
  .institutional-nav { gap: 13px; }
  .header-edition { display: none; }
  .header-contact { display: none; }
  .brand-hero__statement { font-size: 56px; }
  .music-showcase { grid-template-columns: 1fr; }
  .music-showcase__intro { min-height: 340px; }
  .music-showcase__artists { min-height: 480px; }
  .project-spotlight { grid-template-columns: 1fr; }
  .project-spotlight__visual { min-height: 620px; }
  .selected-work__grid { grid-template-columns: 1fr 1fr; }
  .work-card { min-height: 400px; }
  .work-card--music { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .institutional-site .public-header__inner { min-height: 70px; }
  .institutional-nav { display: none; }
  .institutional-site .public-menu { display: block; }
  .brand-hero { min-height: 730px; }
  .brand-hero__content { padding-top: 150px; }
  .brand-hero__footer { grid-template-columns: 1fr; min-height: 78px; }
  .brand-hero__footer span { display: none; }
  .brand-hero__footer span:first-child { display: flex; border-right: 0; }
  .home-intro, .home-capabilities, .story-grid, .principles-section { grid-template-columns: 1fr; gap: 45px; }
  .selected-work__header, .client-work > header { grid-template-columns: 1fr; gap: 24px; }
  .client-logos { grid-template-columns: 1fr; gap: 28px; }
  .client-work__grid { grid-template-columns: 1fr; }
  .portfolio-case { border-right: 0; border-bottom: 1px solid var(--line); }
  .home-intro__image { order: -1; }
  .inner-page main { padding-top: 70px; }
  .inner-hero--split { grid-template-columns: 1fr; }
  .inner-hero--split img { max-height: 420px; }
  .contact-hero { grid-template-columns: 1fr; gap: 50px; padding: 120px 0 70px; }
  .contact-process { grid-template-columns: 1fr 1fr; }
  .contact-process > p { grid-column: 1 / -1; }
  .services-index article { grid-template-columns: 50px 1fr; }
  .services-index article > b { grid-column: 2; padding-bottom: 28px; }
  .footer-directory { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .institutional-site .public-header__inner { width: calc(100% - 24px); }
  .institutional-site .app-brand img { width: 38px; height: 38px; }
  .brand-hero { min-height: 680px; }
  .brand-hero__media { background-position: 61% center; }
  .brand-hero::after { background: rgba(0,0,0,.36); }
  .brand-hero__content { width: calc(100% - 24px); padding: 130px 0 120px; }
  .brand-hero h1 { font-size: 18px; }
  .brand-hero__statement { font-size: 39px; }
  .brand-hero__summary { font-size: 14px; }
  .brand-hero__actions { align-items: stretch; flex-direction: column; }
  .home-intro, .client-logos, .home-capabilities, .story-grid, .principles-section, .project-spotlight, .project-note, .services-index, .contact-process, .page-next { width: calc(100% - 24px); }
  .home-intro { padding: 70px 0; }
  .home-intro__copy h2, .home-capabilities h2, .principles-section h2, .story-grid h2 { font-size: 34px; }
  .home-intro__image img { aspect-ratio: 4 / 3; }
  .selected-work { padding-bottom: 70px; }
  .client-logos { padding: 0 0 70px; }
  .client-logos h2 { font-size: 31px; }
  .client-logos figure { min-height: 145px; padding: 20px; }
  .client-logos img { height: 54px; }
  .selected-work__header h2, .client-work > header h2 { font-size: 34px; }
  .selected-work__grid { grid-template-columns: 1fr; }
  .work-card, .work-card--music { min-height: 380px; grid-column: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .music-showcase__intro { min-height: 360px; padding: 60px 20px; }
  .music-showcase__intro h2 { font-size: 48px; }
  .music-showcase__artists { min-height: 480px; grid-template-columns: 1fr 1fr; }
  .music-showcase__artists article { border-bottom: 1px solid var(--line); }
  .home-capabilities { padding: 70px 0; }
  .closing-cta { min-height: 360px; }
  .closing-cta h2 { font-size: 36px; }
  .inner-hero { width: calc(100% - 24px); min-height: 480px; padding: 70px 0 55px; }
  .inner-hero h1, .contact-hero h1 { font-size: 43px; }
  .inner-hero--split { min-height: 0; padding-top: 100px; }
  .editorial-image span { right: 12px; bottom: 12px; left: 12px; }
  .story-grid, .principles-section { padding: 70px 0; }
  .story-grid__body p { font-size: 18px; }
  .project-spotlight { border-right: 0; border-left: 0; }
  .project-spotlight__copy { padding: 42px 18px; }
  .project-spotlight h2 { font-size: 48px; }
  .project-spotlight__visual { min-height: 560px; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); }
  .project-spotlight__visual article, .project-spotlight__visual article:nth-child(1), .project-spotlight__visual article:nth-child(2), .project-spotlight__visual article:nth-child(n+3) { grid-column: span 1; }
  .project-spotlight__visual article:first-child { grid-column: 1 / -1; }
  .project-note { grid-template-columns: 1fr; gap: 10px; }
  .client-work { padding-bottom: 70px; }
  .portfolio-case { grid-template-rows: 280px auto; }
  .portfolio-case__copy p { min-height: 0; }
  .services-index article { min-height: 210px; padding: 24px 0; }
  .services-index h2 { font-size: 23px; }
  .contact-hero { width: calc(100% - 24px); min-height: 680px; padding-top: 110px; }
  .contact-process { grid-template-columns: 1fr; padding-bottom: 70px; }
  .contact-process > div { border-top: 1px solid var(--line); border-left: 0; }
  .page-next { align-items: flex-start; flex-direction: column; justify-content: center; gap: 18px; }
  .page-next a { font-size: 18px; }
  .institutional-site .site-footer__inner { width: calc(100% - 24px); padding-bottom: 28px; }
  .footer-lead { min-height: 300px; }
  .footer-lead a { align-items: flex-end; }
  .footer-lead a span { font-size: 38px; }
  .footer-lead a b { width: 52px; height: 52px; font-size: 18px; }
  .footer-directory { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding: 50px 0 42px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .footer-wordmark { font-size: 26vw; }
  .footer-bottom { grid-template-columns: 1fr; gap: 8px; }
}
