/* Typography-first — silver & black, no boxes */
:root {
    --silver: #c0c0c0;
    --black: #0a0a0a;
    --muted: rgba(10, 10, 10, 0.55);
    --muted-on-dark: rgba(192, 192, 192, 0.65);
    --line: rgba(0, 0, 0, 0.08);
    --line-on-dark: rgba(192, 192, 192, 0.15);
    --ease: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --max-read: 46rem;
    --max-wide: 56rem;
    --page-pad: clamp(20px, 5vw, 80px);
    --header-h: 60px;
    --hero-pad-top: calc(var(--header-h) + 2.75rem);
    --type-title-home: clamp(3.25rem, 11vw, 8.5rem);
    --type-title-page: clamp(2.5rem, 6vw, 4rem);
    --type-tagline: 0.8rem;
    --section-pad-y: clamp(72px, 10vw, 104px);
    --section-band-pad-y: clamp(96px, 14vw, 152px);
    --type-read-title: clamp(2rem, 1.4rem + 2.8vw, 3.35rem);
    --type-read-dek: clamp(1.2rem, 1.05rem + 0.55vw, 1.5rem);
    --type-read-body: clamp(1.125rem, 1rem + 0.45vw, 1.3125rem);
    --type-read-h2: clamp(1.05rem, 0.95rem + 0.35vw, 1.25rem);
    --type-read-quote: clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem);
    --type-read-line: 1.82;
    --type-read-line-tight: 1.38;
}

::selection {
    background: var(--black);
    color: var(--silver);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    background: var(--silver);
    color: var(--black);
    line-height: 1.65;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 3px;
}

.section-band a:focus-visible,
.site-footer a:focus-visible {
    outline-color: var(--silver);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--page-pad);
    z-index: 10001;
    padding: 0.75rem 1rem;
    background: var(--black);
    color: var(--silver);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.skip-link:focus {
    top: 0.75rem;
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(2px);
}

.nav-backdrop.is-visible {
    display: block;
}

/* Site chrome only — never bare `header` (article/index headers are in-flow) */
#site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(192, 192, 192, 0.92);
    backdrop-filter: blur(12px);
    transition: box-shadow var(--ease), background var(--ease);
}

#site-header.header--scrolled {
    background: rgba(192, 192, 192, 0.97);
    box-shadow: 0 1px 0 var(--line);
}

/* In-page headers must stay in document flow */
.article-header,
.content-index-header {
    position: static;
    width: auto;
    z-index: auto;
    padding: 0;
    margin: 0;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(16px, 3vw, 28px);
}

nav a {
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    padding-bottom: 3px;
    color: var(--black);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
    transition: width var(--ease);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:not(.active):not(:hover) {
    color: var(--muted);
}

nav a:hover,
nav a.active {
    color: var(--black);
}

nav a.active {
    font-weight: 500;
}

nav a.nav-external::after {
    content: none;
}

nav a.nav-external {
    padding-right: 0;
}

.mobile-menu-btn,
.close-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.6;
}

/* Hero — fixed scale system */
.hero {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    padding: var(--hero-pad-top) var(--page-pad) 3rem;
    min-height: 0;
}

.hero-inner {
    width: 100%;
    max-width: var(--max-wide);
    text-align: left;
}

.hero .tagline {
    font-size: var(--type-tagline);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero h1 {
    font-size: var(--type-title-page);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero .lead {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: var(--max-read);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Home only — large name */
.hero--home {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100svh;
    padding-bottom: clamp(48px, 8vh, 80px);
}

.hero-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.35rem;
    width: 100%;
    max-width: var(--max-wide);
    margin-bottom: 1.5rem;
}

.hero-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    color: var(--black);
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity var(--ease), transform var(--ease);
}

.hero-social a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.hero-social a:focus-visible {
    opacity: 1;
    outline: 2px solid var(--black);
    outline-offset: 3px;
}

.hero--home .hero-inner {
    margin-top: auto;
}

.hero--home h1 {
    font-size: var(--type-title-home);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero--home .lead {
    max-width: 32rem;
    margin-bottom: 2rem;
}

.hero--home .hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    justify-content: flex-start;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}

.text-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 2px;
    transition: opacity var(--ease), border-color var(--ease);
}

.text-link:hover {
    opacity: 0.6;
    border-bottom-color: var(--black);
}

.section-band .text-link {
    border-bottom-color: rgba(192, 192, 192, 0.4);
    color: var(--silver);
}

.section-band .text-link:hover {
    border-bottom-color: var(--silver);
}

/* Motion */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero .tagline { animation: rise 0.9s var(--ease) 0.1s both; }
    .hero h1 { animation: rise 0.9s var(--ease) 0.2s both; }
    .hero .lead { animation: rise 0.9s var(--ease) 0.35s both; }
    .hero-links { animation: rise 0.9s var(--ease) 0.5s both; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-section {
    scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

#identity,
#journey,
#contact {
    scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

/* Sections */
.section-full,
.section-band {
    width: 100%;
    padding: var(--section-pad-y) var(--page-pad);
}

.section-full--index {
    padding-top: 0;
}

.section-full--index > .content-index-header,
.section-full--index > .content-index,
.section-full--index > .blog-index-header,
.section-full--index > .blog-index {
    width: 100%;
    max-width: var(--max-wide);
}

.section-band {
    background: var(--black);
    color: var(--silver);
    padding-top: var(--section-band-pad-y);
    padding-bottom: var(--section-band-pad-y);
}

.section-band p,
.section-band h2,
.section-band h3,
.section-band li,
.section-band a {
    color: var(--silver);
}

.section-intro {
    max-width: var(--max-read);
    margin-bottom: clamp(48px, 8vw, 72px);
}

.section-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.section-band .section-intro {
    max-width: 48rem;
    margin-bottom: clamp(56px, 8vw, 88px);
}

.section-band .section-intro h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-intro .subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    font-weight: 300;
}

.section-band .section-intro .subtitle {
    font-size: clamp(1.1rem, 1rem + 0.35vw, 1.25rem);
    line-height: 1.6;
}

.section-intro--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-band .section-intro .subtitle {
    color: var(--muted-on-dark);
}

.statement-lead {
    font-size: clamp(1.55rem, 4.5vw, 2.65rem);
    font-weight: 400;
    text-align: center;
    max-width: 22ch;
    margin: 0 auto;
    line-height: 1.32;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-band .statement-lead {
    font-size: clamp(1.65rem, 5vw, 2.85rem);
    max-width: 24ch;
    line-height: 1.28;
}

.section-band .text-block h3 {
    font-size: clamp(1.15rem, 1rem + 0.35vw, 1.3rem);
}

.section-band .text-block p,
.section-band .text-block li {
    font-size: clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
    line-height: 1.7;
}

.section-band .text-list > li {
    border-bottom-color: var(--line-on-dark);
}

.section-band .text-list p {
    color: var(--silver);
    opacity: 0.88;
}

.section-band .section-cta {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* Text columns — no boxes */
.prose {
    max-width: var(--max-read);
}

.prose-wide {
    max-width: var(--max-wide);
}

.text-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(40px, 6vw, 80px);
}

.text-block h3 {
    font-size: 1.15rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.text-block p,
.text-block li {
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.prose-snippet {
    font-weight: 300;
    line-height: 1.72;
    max-width: var(--max-read);
    margin-bottom: 0;
}

.text-block ul {
    margin-left: 1.25rem;
    margin-top: 0.5rem;
}

.text-list {
    list-style: none;
    max-width: var(--max-wide);
}

.text-list > li {
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
    transition: opacity var(--ease);
}

.text-list > li:hover {
    opacity: 0.82;
}

.text-list > li:first-child {
    padding-top: 0;
}

.text-list h3 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.course-code {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
    margin-left: 0.35rem;
}

.section-band .course-code {
    color: var(--muted-on-dark);
}

.text-list--courses h3 {
    text-transform: none;
    letter-spacing: 0.04em;
}

.text-list p {
    font-weight: 300;
    max-width: 36rem;
    margin-bottom: 0;
}

.text-list a {
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

/* Quotes */
.quote-list {
    list-style: none;
    max-width: var(--max-wide);
}

.quote-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.quote-item:first-child {
    padding-top: 0;
}

.quote-item blockquote {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-style: normal;
}

.quote-item__link {
    color: inherit;
    text-decoration: none;
}

.quote-item__link:hover {
    opacity: 0.55;
}

.quote-item cite {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-style: normal;
    font-weight: 500;
}

.quote-item .role {
    display: block;
    font-weight: 300;
    color: var(--muted);
    margin-top: 0.25rem;
    letter-spacing: 0.08em;
}

/* Content index — thoughts & testimonials lists */
.content-index,
.blog-index {
    list-style: none;
    max-width: var(--max-wide);
    margin: 0;
    padding: 0;
}

.content-entry,
.blog-entry {
    border-bottom: 1px solid var(--line);
}

.content-entry:first-child,
.blog-entry:first-child {
    border-top: 1px solid var(--line);
}

.content-entry article,
.blog-entry article {
    display: grid;
    grid-template-columns: minmax(8.5rem, 11rem) 1fr;
    gap: clamp(24px, 3vw, 48px);
    padding: 2.5rem 0;
    align-items: start;
}

.content-entry--featured article,
.blog-entry--featured article {
    padding-top: 0;
    padding-bottom: 3rem;
}

.content-entry__meta,
.blog-entry__meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding-top: 0.25rem;
}

.content-entry__meta strong,
.content-entry__meta time,
.blog-entry__meta strong,
.blog-entry__meta time {
    font-weight: 500;
    color: var(--black);
}

.content-entry__meta span,
.blog-entry__meta span {
    color: rgba(10, 10, 10, 0.62);
    font-weight: 300;
}

.content-entry__title,
.blog-entry__title {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.content-entry--featured .content-entry__title,
.blog-entry--featured .blog-entry__title {
    font-size: 1.5rem;
}

.content-entry__title a,
.blog-entry__title a {
    text-decoration: none;
    color: inherit;
}

.content-entry__title a:hover,
.blog-entry__title a:hover {
    opacity: 0.55;
}

.content-entry__dek,
.blog-entry__dek {
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 40rem;
    margin-bottom: 1rem;
}

.content-entry__footer,
.blog-entry__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.content-entry__read-time,
.blog-entry__read-time {
    color: var(--muted);
    font-weight: 300;
}

.content-entry__status,
.blog-entry__status {
    color: var(--muted);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.content-entry--draft,
.blog-entry--draft {
    opacity: 0.65;
}

.content-index-header,
.blog-index-header {
    max-width: var(--max-wide);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.content-index-header p,
.blog-index-header p {
    font-size: var(--type-tagline);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 0;
}

/* Essay / testimonial reading mode */
.page-reading {
    --reading-header-h: 56px;
    font-size: var(--type-read-body);
}

.page-reading #site-header.header-reading {
    padding: 0;
    border-bottom: 1px solid var(--line);
}

.header-reading.header--scrolled {
    box-shadow: 0 1px 0 var(--line);
}

.header-reading__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 14px var(--page-pad);
    max-width: var(--max-wide);
    margin: 0 auto;
}

.reading-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    min-height: 44px;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: opacity var(--ease), border-color var(--ease);
}

.reading-back:hover {
    opacity: 0.65;
    border-bottom-color: var(--black);
}

.reading-back__arrow {
    font-size: 1.1rem;
    line-height: 1;
}

.reading-home {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.page-reading main.article-read {
    padding-top: calc(var(--reading-header-h) + clamp(2.5rem, 5vw, 3.5rem));
    padding-bottom: 0;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
}

.article-body {
    max-width: var(--max-read);
    margin: 0 auto;
    padding: 0;
    font-variation-settings: "wght" 300;
}

.article-header {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
    border-bottom: 1px solid var(--line);
}

.article-meta {
    font-size: clamp(0.7rem, 0.65rem + 0.15vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    font-weight: 400;
}

.article-header h1 {
    font-size: var(--type-read-title);
    font-weight: 500;
    line-height: var(--type-read-line-tight);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
    max-width: 100%;
    overflow-wrap: break-word;
    font-variation-settings: "wght" 500;
}

.article-dek {
    font-size: var(--type-read-dek);
    font-weight: 300;
    line-height: var(--type-read-line);
    color: var(--black);
    margin-bottom: 0;
    letter-spacing: 0.01em;
    font-variation-settings: "wght" 300;
}

.article-content {
    font-weight: 300;
    font-size: var(--type-read-body);
    line-height: var(--type-read-line);
    letter-spacing: 0.012em;
    font-variation-settings: "wght" 300;
}

.article-content p {
    margin-bottom: 1.5rem;
    max-width: 42em;
}

.article-content p:first-of-type {
    font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.4rem);
    line-height: 1.78;
    font-weight: 400;
    font-variation-settings: "wght" 400;
}

.article-content h2 {
    font-size: var(--type-read-h2);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: clamp(2.75rem, 6vw, 3.5rem);
    margin-bottom: 1.15rem;
    line-height: 1.35;
    font-variation-settings: "wght" 500;
}

.article-content h2 + p {
    margin-top: 0;
}

.article-content h3 {
    font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.article-content h3 + p {
    margin-top: 0;
}

.article-content p strong {
    font-weight: 500;
    font-variation-settings: "wght" 500;
}

.article-content a.text-link {
    font-size: inherit;
    letter-spacing: 0.08em;
}

.article-footer {
    margin-top: clamp(3.5rem, 8vw, 5rem);
    margin-left: calc(-1 * var(--page-pad));
    margin-right: calc(-1 * var(--page-pad));
    width: calc(100% + 2 * var(--page-pad));
    padding: var(--section-band-pad-y) var(--page-pad);
    background: var(--black);
    color: var(--silver);
    border-top: none;
    font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-footer > p,
.article-footer > .article-footer__nav {
    width: 100%;
    max-width: var(--max-read);
}

.article-footer p,
.article-footer a {
    color: var(--silver);
}

.article-footer .text-link {
    border-bottom-color: rgba(192, 192, 192, 0.45);
}

.article-footer .text-link:hover {
    border-bottom-color: var(--silver);
    opacity: 0.85;
}

.article-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-top: 1.5rem;
    font-size: clamp(0.85rem, 0.8rem + 0.15vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.article-content blockquote {
    font-size: var(--type-read-quote);
    line-height: var(--type-read-line);
    margin: clamp(2rem, 4vw, 2.75rem) 0;
    padding: 0 0 0 clamp(1.25rem, 3vw, 1.75rem);
    border-left: 3px solid var(--line);
    font-weight: 400;
    font-variation-settings: "wght" 400;
    letter-spacing: 0.01em;
}

.article-content blockquote p {
    font-size: inherit;
    margin-bottom: 0;
    max-width: none;
}

.article-content blockquote + p {
    font-size: var(--type-read-body);
    font-weight: 300;
    font-variation-settings: "wght" 300;
}

/* Inline labels (was tags) */
.word-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.section-band .word-row {
    color: var(--muted-on-dark);
    justify-content: center;
}

.milestone-words {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
}

.milestone-words span::before {
    content: '— ';
    opacity: 0.35;
}

.milestone-words span:first-child::before {
    content: '';
}

.contact-lines p {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.contact-lines h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.contact-lines h3:first-child {
    margin-top: 0;
}

.section-cta {
    margin-top: 2rem;
}

.section-band .section-cta {
    text-align: center;
}

/* Footer — text only */
.site-footer {
    background: var(--black);
    color: var(--silver);
    padding: clamp(72px, 10vw, 112px) 5vw clamp(40px, 6vw, 48px);
}

.page-reading .site-footer {
    padding-top: clamp(64px, 9vw, 96px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    color: var(--silver);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.footer-tagline,
.footer-values,
.footer-links li {
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    list-style: none;
}

.footer-values {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 1rem;
}

.footer-quote {
    margin-top: 1.25rem;
    opacity: 0.6;
    font-weight: 300;
}

.footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity var(--ease), text-decoration var(--ease);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-links a.is-current {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero .lead .text-link {
    font-size: inherit;
    letter-spacing: 0.04em;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.footer-social a {
    color: var(--silver);
    opacity: 0.5;
    font-size: 1rem;
    transition: opacity var(--ease);
}

.footer-social a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--line-on-dark);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-weight: 300;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.35rem;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: var(--silver);
        flex-direction: column;
        padding: 100px 28px 28px;
        transition: right var(--ease);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.06);
    }

    nav ul.show-menu {
        right: 0;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet & mobile */
@media (max-width: 768px) {
    #site-header {
        padding: 12px 0;
    }

    .page-reading #site-header.header-reading {
        padding: 0;
    }

    .header-container {
        padding: 0 clamp(16px, 4vw, 24px);
    }

    .logo {
        font-size: 0.95rem;
        letter-spacing: 0.1em;
        gap: 8px;
    }

    .logo img {
        width: 28px;
        height: 28px;
    }

    .hero {
        padding: calc(var(--header-h) + 2rem) var(--page-pad) 2.5rem;
    }

    .hero--home {
        min-height: 100svh;
        padding-bottom: 3rem;
        align-items: flex-start;
    }

    .hero--home h1 {
        font-size: clamp(2.75rem, 12vw, 5rem);
    }

    .hero h1 {
        font-size: clamp(2.25rem, 8vw, 3.25rem);
    }

    .hero--home .hero-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .text-link {
        padding: 6px 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .section-full {
        padding: clamp(56px, 10vw, 80px) clamp(20px, 5vw, 28px);
    }

    .section-band {
        padding: clamp(72px, 12vw, 104px) clamp(20px, 5vw, 28px);
    }

    .section-intro {
        margin-bottom: 36px;
    }

    .section-intro h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .statement-lead {
        font-size: clamp(1.25rem, 5vw, 1.85rem);
        max-width: none;
    }

    .section-band .statement-lead {
        font-size: clamp(1.35rem, 5.5vw, 2rem);
    }

    .section-band .section-intro h2 {
        font-size: clamp(1.65rem, 6vw, 2.25rem);
    }

    .content-entry article,
    .blog-entry article {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .text-list > li,
    .quote-item {
        padding: 1.75rem 0;
    }

    .content-entry__meta,
    .blog-entry__meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem;
        padding-top: 0;
    }

    .quote-item blockquote {
        font-size: 1.05rem;
    }

    .milestone-words {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .milestone-words span::before {
        content: '';
    }

    .word-row {
        gap: 0.4rem 1rem;
        line-height: 1.8;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    nav ul {
        width: 100%;
        right: -100%;
        padding: 88px 24px max(28px, env(safe-area-inset-bottom));
    }

    nav ul a {
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        letter-spacing: 0.14em;
    }

    .mobile-menu-btn {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-reading__inner {
        padding: 12px clamp(20px, 5vw, 28px);
    }

    .reading-back {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }

    .page-reading main.article-read {
        padding-top: calc(var(--reading-header-h) + 2rem);
    }

    .article-content p:first-of-type {
        font-size: 1.2rem;
    }

    .article-footer {
        margin-left: calc(-1 * clamp(20px, 5vw, 28px));
        margin-right: calc(-1 * clamp(20px, 5vw, 28px));
        width: calc(100% + 2 * clamp(20px, 5vw, 28px));
        padding-left: clamp(20px, 5vw, 28px);
        padding-right: clamp(20px, 5vw, 28px);
    }
}

@media (max-width: 480px) {
    :root {
        --type-title-page: clamp(2rem, 9vw, 2.75rem);
    }

    nav ul {
        gap: 4px;
    }
}

@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    #site-header {
        padding-left: max(var(--page-pad), env(safe-area-inset-left));
        padding-right: max(var(--page-pad), env(safe-area-inset-right));
    }

    .page-reading #site-header.header-reading {
        padding-left: 0;
        padding-right: 0;
    }
}