/* ============================================================
   MARÍA PARRA — MP DIAMONDS
   Editorial luxury. Bodoni Moda / Jost. Warm ink + antique brass.
   Design rules:
     · Hairlines are BONE at low alpha, never gold. Brass is an
       accent, used sparingly — restraint is what reads as luxury.
     · No border-radius. No card boxes. Structure comes from
       rules and whitespace.
     · Asymmetry over centred symmetry.
   ============================================================ */

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

:root {
    /* Warm near-black, no purple cast */
    --ink:        #0b0a09;
    --ink-2:      #100e0c;
    --ink-3:      #15120f;

    /* Warm off-white — never pure #fff */
    --bone:       #efe9e0;
    --bone-70:    rgba(239, 233, 224, 0.88);
    --bone-52:    rgba(239, 233, 224, 0.74);
    --bone-38:    rgba(239, 233, 224, 0.60);

    /* Antique brass — muted, not yellow gold */
    --brass:      #cba36a;
    --brass-lt:   #d8bc91;
    --brass-dim:  rgba(181, 143, 91, 0.42);

    /* Hairlines */
    --rule:       rgba(239, 233, 224, 0.17);
    --rule-soft:  rgba(239, 233, 224, 0.10);

    --display:    'Bodoni Moda', 'Didot', Georgia, serif;
    --sans:       'Jost', 'Futura', 'Avenir Next', system-ui, sans-serif;

    --bar-h:      56px;
    --nav-h:      62px;

    --page:       1360px;
    --gutter:     clamp(20px, 5vw, 72px);

    --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
    --t:          0.55s var(--ease);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-weight: 300;
    background: var(--ink);
    color: var(--bone);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Film grain — the one texture. Kills the flat "template" plastic. */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.038;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
em { font-style: italic; }

::selection { background: var(--brass); color: var(--ink); }

/* ---------- Type primitives ---------- */

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

.eyebrow {
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--brass);
}

.lede {
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    font-weight: 300;
    line-height: 1.95;
    color: var(--bone-70);
    max-width: 46ch;
}

.display {
    font-family: var(--display);
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.018em;
    line-height: 0.92;
}

/* ---------- Section header: numeral + title + full-bleed rule ---------- */

.sec-head {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 4vw, 56px);
    padding-bottom: 26px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: clamp(48px, 6vw, 88px);
}

.sec-index {
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: var(--brass-dim);
    padding-top: 0.9em;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.sec-titles { flex: 1; }
.sec-titles .eyebrow { margin-bottom: 14px; display: block; }

.sec-title {
    font-family: var(--display);
    font-size: clamp(1.9rem, 4.4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.015em;
}

.sec-title em { color: var(--brass); }

/* ============================================================
   AGENCY BAR
   ============================================================ */

.agency-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    min-height: var(--bar-h);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 9px var(--gutter);
    background: linear-gradient(180deg, #16130f 0%, #100e0c 100%);
    border-bottom: 1px solid var(--brass-dim);
}

.agency-logo { height: 34px; width: auto; object-fit: contain; }

.agency-name {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    color: var(--bone);
    text-transform: uppercase;
}

.agency-tagline {
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass-lt);
    padding-left: 16px;
    border-left: 1px solid var(--brass-dim);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
    position: fixed;
    top: var(--bar-h); left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px var(--gutter);
    background: rgba(11, 10, 9, 0.72);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t), padding var(--t), background var(--t);
}

.nav.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom-color: var(--rule);
    background: rgba(11, 10, 9, 0.92);
}

.nav-logo { display: flex; align-items: center; gap: 13px; }

.nav-logo-img {
    height: 32px;
    width: auto;
}

.nav-logo span {
    white-space: nowrap;
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    color: var(--bone);
}

.nav-links { display: flex; gap: clamp(18px, 2.6vw, 40px); }

.nav-links a {
    position: relative;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--bone-52);
    white-space: nowrap;
    padding-bottom: 3px;
    transition: color var(--t);
}

/* Rule draws in from the left on hover — no colour-flash hover */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--brass);
    transition: width var(--t);
}

.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--brass);
    padding: 11px 24px;
    border: 1px solid var(--brass-dim);
    transition: background var(--t), color var(--t), border-color var(--t);
}

.nav-cta:hover {
    background: var(--brass);
    border-color: var(--brass);
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 26px;
    padding: 6px 0;
    cursor: pointer;
    background: none;
    border: 0;
}

.nav-toggle span {
    display: block;
    height: 1px;
    background: var(--bone);
    margin: 6px 0;
    transition: transform var(--t), opacity var(--t);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 38px;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}

.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn--solid { background: var(--brass); color: var(--ink); }
.btn--solid:hover { background: var(--brass-lt); transform: translateY(-2px); }

.btn--ghost { border-color: var(--rule); color: var(--bone-70); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); }

/* ============================================================
   HERO — asymmetric, image bleeds, name oversized
   ============================================================ */

.hero {
    position: relative;
    padding: clamp(140px, 17vh, 200px) 0 0;
    overflow: hidden;
}

/* Rotated marginalia down the left edge — an editorial signature */
.hero-margin {
    position: absolute;
    left: 20px;
    top: 46%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left center;
    font-size: 0.58rem;
    letter-spacing: 0.44em;
    text-transform: uppercase;
    color: var(--bone-38);
    white-space: nowrap;
    pointer-events: none;
}

.hero-inner {
    max-width: var(--page);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.hero-copy .eyebrow { display: block; margin-bottom: clamp(20px, 3vw, 34px); }

.hero-name {
    font-family: var(--display);
    font-size: clamp(3.6rem, 11.5vw, 9rem);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.03em;
    margin-bottom: clamp(24px, 3.4vw, 40px);
}

/* Second line is italic brass and indented — breaks the block */
.hero-name em {
    display: block;
    color: var(--brass);
    font-style: italic;
    padding-left: 0.14em;
}

.hero-copy .lede { margin-bottom: clamp(30px, 4vw, 46px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-figure { position: relative; }

.hero-figure img {
    width: 100%;
    height: clamp(420px, 74vh, 760px);
    object-fit: cover;
    object-position: center 12%;
    filter: saturate(0.86) contrast(1.04);
}

/* Offset hairline frame — replaces the heavy 2px gold border */
.hero-figure::before {
    content: '';
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 62%;
    height: 42%;
    border-left: 1px solid var(--brass-dim);
    border-bottom: 1px solid var(--brass-dim);
    pointer-events: none;
}

.hero-figure figcaption {
    margin-top: 16px;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--bone-38);
    text-align: right;
}

/* Stats: a full-width hairline band, not a huddled cluster */
.hero-stats {
    max-width: var(--page);
    margin: clamp(56px, 8vw, 104px) auto 0;
    padding: 0 var(--gutter);
}

.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule);
}

.stat {
    padding: clamp(24px, 3vw, 38px) clamp(14px, 2.4vw, 34px);
    border-right: 1px solid var(--rule);
}

.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }

.stat-figure {
    font-family: var(--display);
    font-size: clamp(1.7rem, 3.4vw, 2.9rem);
    font-weight: 400;
    line-height: 1;
    color: var(--bone);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    margin-top: 10px;
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--bone-38);
}

/* ============================================================
   SECTION SHELLS
   ============================================================ */

.band { padding: clamp(80px, 11vw, 152px) 0; }
.band--alt { background: var(--ink-2); }

/* ============================================================
   ABOUT
   ============================================================ */

.about-split {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(36px, 6vw, 88px);
    align-items: end;
}

.about-copy p { margin-bottom: 1.5em; }
.about-copy p:last-child { margin-bottom: 0; }

/* Drop cap — pure editorial, costs nothing */
.about-copy > p:first-of-type::first-letter {
    font-family: var(--display);
    float: left;
    font-size: 3.9em;
    line-height: 0.78;
    padding: 0.06em 0.14em 0 0;
    color: var(--brass);
}

.about-figure img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    filter: grayscale(0.55) sepia(0.28) contrast(1.06);
}

.about-figure figcaption {
    margin-top: 14px;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--bone-38);
}

/* ---------- Pillars: hairline columns, custom line-art marks ---------- */

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(56px, 7vw, 104px);
    border-top: 1px solid var(--rule);
}

.pillar {
    padding: clamp(32px, 4vw, 52px) clamp(18px, 2.8vw, 44px);
    border-right: 1px solid var(--rule);
}

.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: 0; }

.pillar-mark {
    width: 46px;
    height: 46px;
    margin-bottom: 26px;
    color: var(--brass);
    opacity: 0.9;
}

.pillar-mark path,
.pillar-mark circle,
.pillar-mark rect { vector-effect: non-scaling-stroke; }

.pillar-numeral {
    font-family: var(--display);
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    color: var(--brass-dim);
    display: block;
    margin-bottom: 10px;
}

.pillar h3 {
    font-family: var(--display);
    font-size: 1.32rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}

.pillar p {
    font-size: 0.85rem;
    line-height: 1.85;
    color: var(--bone-52);
}

/* ============================================================
   PLATFORMS — hairline rows, not cards
   ============================================================ */

.platforms { border-top: 1px solid var(--rule); }

.platform {
    display: grid;
    grid-template-columns: 26px 1fr auto 34px;
    align-items: center;
    gap: clamp(16px, 3vw, 34px);
    padding: clamp(22px, 2.8vw, 32px) 0;
    border-bottom: 1px solid var(--rule);
    transition: padding-left var(--t), border-color var(--t);
}

.platform:hover { padding-left: 18px; border-bottom-color: var(--brass-dim); }

.platform-icon { width: 21px; height: 21px; color: var(--bone-52); transition: color var(--t); }
.platform:hover .platform-icon { color: var(--brass); }

.platform-name {
    font-family: var(--display);
    font-size: clamp(1.15rem, 2.2vw, 1.65rem);
    font-weight: 400;
    letter-spacing: 0.005em;
}

.platform-meta {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bone-38);
    text-align: right;
}

.platform-arrow {
    width: 22px;
    height: 22px;
    color: var(--bone-38);
    justify-self: end;
    transition: transform var(--t), color var(--t);
}

.platform:hover .platform-arrow { transform: translateX(7px); color: var(--brass); }

/* ============================================================
   GALLERY — irregular editorial mosaic
   ============================================================ */

.mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows:
        clamp(230px, 30vw, 450px)
        clamp(180px, 23vw, 340px)
        clamp(160px, 19vw, 290px);
    gap: clamp(8px, 1vw, 14px);
}

.plate { position: relative; overflow: hidden; background: var(--ink-3); }

.plate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(0.92) sepia(0.34) contrast(1.1) brightness(0.94);
    transition: transform 1.1s var(--ease), filter var(--t);
}

.plate:hover img { transform: scale(1.045); filter: grayscale(0) sepia(0) contrast(1.02) brightness(1); }

/* Spans total 12 per row — deliberately uneven within each */
.plate:nth-child(1) { grid-column: span 5; }
.plate:nth-child(2) { grid-column: span 4; }
.plate:nth-child(3) { grid-column: span 3; }
.plate:nth-child(4) { grid-column: span 3; }
.plate:nth-child(5) { grid-column: span 4; }
.plate:nth-child(6) { grid-column: span 5; }
.plate:nth-child(7) { grid-column: span 7; }
.plate:nth-child(8) { grid-column: span 5; }

/* ---------- The vault: one considered panel, not 4 blurred boxes ---------- */

.vault {
    position: relative;
    margin-top: clamp(10px, 1vw, 14px);
    min-height: clamp(280px, 30vw, 380px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--rule);
}

.vault-bed {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.vault-bed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(17px) brightness(0.52) grayscale(0.6) saturate(0.5);
    transform: scale(1.15);
}

.vault-scrim {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(11,10,9,0.42) 0%, rgba(11,10,9,0.86) 76%);
}

.vault-body {
    position: relative;
    text-align: center;
    padding: clamp(32px, 5vw, 56px) var(--gutter);
}

.vault-mark { width: 30px; height: 30px; margin: 0 auto 22px; color: var(--brass); }

.vault-body h3 {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3.4vw, 2.4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 14px;
}

.vault-body h3 em { color: var(--brass); }

.vault-body p {
    font-size: 0.85rem;
    color: var(--bone-52);
    margin: 0 auto 30px;
    max-width: 42ch;
}

/* ============================================================
   JOURNAL — numbered index rows
   ============================================================ */

.journal { border-top: 1px solid var(--rule); }

.entry {
    display: grid;
    grid-template-columns: 46px 130px 1fr 110px;
    align-items: baseline;
    gap: clamp(14px, 2.6vw, 34px);
    padding: clamp(26px, 3vw, 38px) 0;
    border-bottom: 1px solid var(--rule);
    transition: padding-left var(--t), border-color var(--t);
}

a.entry:hover { padding-left: 18px; border-bottom-color: var(--brass-dim); }

.entry-num {
    font-family: var(--display);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--brass-dim);
    font-variant-numeric: tabular-nums;
}

.entry-date {
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--bone-38);
}

.entry-title {
    display: block;
    font-family: var(--display);
    font-size: clamp(1.1rem, 2.1vw, 1.5rem);
    font-weight: 400;
    line-height: 1.28;
    margin-bottom: 8px;
    transition: color var(--t);
}

a.entry:hover .entry-title { color: var(--brass-lt); }

.entry-excerpt {
    display: block;
    font-size: 0.84rem;
    line-height: 1.8;
    color: var(--bone-52);
    max-width: 56ch;
}

.entry-go {
    font-size: 0.6rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--brass);
    text-align: right;
    white-space: nowrap;
}

.entry--soon { opacity: 0.5; }
.entry--soon .entry-go { color: var(--bone-38); }

/* ============================================================
   INNER CIRCLE — underline field, no boxed input
   ============================================================ */

.circle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 96px);
    align-items: end;
}

.circle-copy h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.018em;
    margin-bottom: 20px;
}

.circle-copy h2 em { color: var(--brass); }

.subscribe { border-bottom: 1px solid var(--rule); padding-bottom: 6px; display: flex; gap: 16px; }

.subscribe input {
    flex: 1;
    min-width: 0;
    background: none;
    border: 0;
    outline: none;
    color: var(--bone);
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    padding: 14px 2px;
}

.subscribe input::placeholder { color: var(--bone-38); }
.subscribe:focus-within { border-bottom-color: var(--brass); }

.subscribe button {
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--brass);
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    padding: 14px 4px;
    transition: color var(--t);
}

.subscribe button:hover { color: var(--brass-lt); }

.subscribe-note {
    margin-top: 16px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bone-38);
}

.form-status {
    margin-top: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--brass);
    min-height: 1.2em;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer { border-top: 1px solid var(--rule); padding: clamp(56px, 7vw, 88px) 0 40px; }

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    padding-bottom: clamp(40px, 5vw, 64px);
    border-bottom: 1px solid var(--rule-soft);
}

.footer-mark {
    font-family: var(--display);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1;
}

.footer-tag {
    margin-top: 14px;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bone-38);
}

.footer-nav { display: grid; gap: 11px; justify-items: end; }

.footer-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bone-52);
    transition: color var(--t);
}

.footer-nav a:hover { color: var(--brass); }

.footer-base {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding-top: 28px;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bone-38);
}

/* ============================================================
   LANGUAGE TOGGLE
   Real links to real URLs (/ and /es/), not a JS text swap —
   both languages have to be crawlable and indexable.
   ============================================================ */

.lang {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.lang a {
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--bone-38);
    transition: color var(--t);
}

.lang a:hover { color: var(--bone); }

.lang a[aria-current="true"] {
    color: var(--brass);
    border-bottom: 1px solid var(--brass-dim);
    padding-bottom: 2px;
}

.lang .sep { color: var(--rule); font-size: 0.66rem; }

/* ============================================================
   ARTICLE (blog post)
   ============================================================ */

.article {
    max-width: 720px;
    margin: 0 auto;
    padding: calc(var(--bar-h) + var(--nav-h) + clamp(48px, 8vw, 96px)) var(--gutter) clamp(72px, 10vw, 128px);
}

.article-back {
    display: inline-block;
    margin-bottom: clamp(32px, 5vw, 56px);
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--brass);
    transition: color var(--t);
}

.article-back:hover { color: var(--brass-lt); }

.article h1 {
    font-family: var(--display);
    font-size: clamp(1.9rem, 5vw, 3.1rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.018em;
    margin-bottom: 22px;
}

.article-meta {
    font-size: 0.64rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--bone-38);
    padding-bottom: clamp(28px, 4vw, 44px);
    border-bottom: 1px solid var(--rule);
    margin-bottom: clamp(32px, 5vw, 52px);
}

.article p {
    font-size: 1.06rem;
    font-weight: 300;
    line-height: 1.95;
    color: var(--bone-70);
    margin-bottom: 1.5em;
}

.article > p:first-of-type::first-letter {
    font-family: var(--display);
    float: left;
    font-size: 3.8em;
    line-height: 0.78;
    padding: 0.06em 0.14em 0 0;
    color: var(--brass);
}

.article h2 {
    font-family: var(--display);
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--bone);
    margin: clamp(44px, 6vw, 72px) 0 20px;
}

/* Hairline above each heading — sets the rhythm without a heavy rule */
.article h2::before {
    content: '';
    display: block;
    width: 46px;
    height: 1px;
    background: var(--brass-dim);
    margin-bottom: 22px;
}

.article-cta {
    margin-top: clamp(52px, 7vw, 84px);
    padding: clamp(32px, 5vw, 48px);
    border: 1px solid var(--rule);
    text-align: center;
}

.article-cta p {
    font-family: var(--display);
    font-size: clamp(1.15rem, 2.6vw, 1.5rem);
    color: var(--bone);
    margin-bottom: 26px;
}

@media (max-width: 768px) {
    .lang { margin-left: auto; margin-right: 4px; }
}

/* ============================================================
   REVEAL — opacity only applied when JS is running
   ============================================================ */

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-margin { display: none; }
    .hero-figure { max-width: 460px; }
    .hero-figure img { height: clamp(380px, 56vh, 560px); }
    .hero-figure figcaption { text-align: left; }
    .about-split { grid-template-columns: 1fr; align-items: start; }
    .about-figure { max-width: 380px; }
    .circle-grid { grid-template-columns: 1fr; }
    .mosaic {
        grid-template-rows: repeat(4, clamp(180px, 30vw, 300px));
    }
    .plate:nth-child(n) { grid-column: span 6; }
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        inset: calc(var(--bar-h) + var(--nav-h)) 0 auto;
        flex-direction: column;
        gap: 0;
        background: var(--ink);
        border-bottom: 1px solid var(--rule);
        padding: 8px var(--gutter) 24px;
        transform: translateY(-130%);
        transition: transform var(--t);
    }
    .nav-links.is-open { transform: translateY(0); }
    .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--rule-soft); font-size: 0.78rem; }
    .nav-links a::after { display: none; }
    .nav-toggle { display: block; }
}

@media (max-width: 768px) {
    .nav-cta { display: none; }

    /* Keep the agency mark legible on phones; drop only the long tagline. */
    .agency-tagline { display: none; }
    .agency-name { font-size: 0.88rem; letter-spacing: 0.26em; }
    .agency-logo { height: 28px; }

    .pillars { grid-template-columns: 1fr; }
    .pillar { border-right: 0; border-bottom: 1px solid var(--rule); padding-left: 0; padding-right: 0; }
    .pillar:last-child { border-bottom: 0; }

    .hero-stats-inner { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--rule); padding-left: 0; padding-right: 0; }
    .stat:last-child { border-bottom: 0; }

    .platform { grid-template-columns: 22px 1fr 26px; gap: 16px; }
    .platform-meta { display: none; }

    .entry { grid-template-columns: 1fr; gap: 8px; }
    .entry-go { text-align: left; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-nav { justify-items: start; }

    .btn { flex: 1 1 auto; justify-content: center; padding: 16px 24px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}
