/* ============================================================
   SURYAPRAKASH LAKSHMANAN — portfolio
   Editorial field-notes · Instrument Serif · Hanken Grotesk · JetBrains Mono
   ============================================================ */

:root {
    --paper:      #F1EEE6;
    --paper-2:    #E8E4D8;
    --ink:        #17150F;
    --ink-soft:   #4A463B;
    --ink-faint:  #8E8775;
    --line:       rgba(23, 21, 15, 0.16);
    --accent:     #FF4A1C;
    --accent-deep:#C8350F;

    --serif: "Instrument Serif", Georgia, serif;
    --sans:  "Hanken Grotesk", system-ui, sans-serif;
    --mono:  "JetBrains Mono", ui-monospace, monospace;

    --gutter: clamp(22px, 5vw, 64px);
    --maxw: 1240px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: var(--paper); }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* Shared content container — everything aligns to this */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Custom cursor (fine pointers only) ---------- */
@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, .filter, .menu-btn, [role="button"] { cursor: none; }
    .cursor {
        position: fixed; top: 0; left: 0; z-index: 9999;
        width: 11px; height: 11px; border-radius: 50%;
        background: var(--accent);
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: width .28s var(--ease), height .28s var(--ease),
                    background-color .28s var(--ease), opacity .3s;
        mix-blend-mode: multiply;
        will-change: transform;
    }
    .cursor.hover {
        width: 46px; height: 46px;
        background: rgba(255, 74, 28, 0.16);
        mix-blend-mode: normal;
    }
    .cursor.down { width: 8px; height: 8px; }
}
@media (prefers-reduced-motion: reduce) {
    .cursor { transition: none; }
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: calc(var(--ri, 0) * 60ms);
    will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
    * { scroll-behavior: auto !important; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    backdrop-filter: blur(10px) saturate(1.1);
    border-bottom: 1px solid transparent;
    transition: border-color .4s, background .4s;
}
.topbar.scrolled { border-color: var(--line); }
.bar {
    max-width: var(--maxw); margin: 0 auto; padding: 16px var(--gutter);
    display: flex; align-items: center; gap: 28px;
    transition: padding .4s var(--ease);
}
.topbar.scrolled .bar { padding-top: 11px; padding-bottom: 11px; }

.mark { display: flex; align-items: center; gap: 7px; font-family: var(--serif); font-size: 26px; }
.mark-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin-top: 4px; }

.nav { display: flex; gap: 2px; margin-left: auto; }
.nav a {
    font-family: var(--mono); font-size: 12.5px; letter-spacing: .2px;
    padding: 8px 14px; border-radius: 100px; color: var(--ink-soft);
    display: flex; align-items: baseline; gap: 6px;
    transition: color .25s, background .25s;
}
.nav a i { font-style: normal; color: var(--accent); font-size: 10px; }
.nav a:hover { color: var(--ink); background: var(--paper-2); }

.topbar-cta {
    font-family: var(--mono); font-size: 12px;
    display: flex; align-items: center; gap: 8px;
    padding: 9px 16px; border: 1px solid var(--line); border-radius: 100px;
    transition: border-color .25s, background .25s, color .25s;
}
.topbar-cta:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.topbar-cta:hover .pulse { background: var(--accent); }

.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); position: relative; flex: none; }
.pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--accent); animation: ping 1.9s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

.menu-btn { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.menu-btn span { width: 26px; height: 2px; background: var(--ink); transition: transform .35s var(--ease); }
.menu-btn.open span:first-child { transform: translateY(8px) rotate(45deg); }
.menu-btn.open span:last-child { transform: rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0 0 0 auto; z-index: 90; width: min(82vw, 360px);
    background: var(--ink); color: var(--paper);
    transform: translateX(100%); transition: transform .5s var(--ease);
    display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 0 40px;
}
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 36px; display: flex; align-items: baseline; gap: 14px; padding: 8px 0; }
.mobile-menu a i { font-family: var(--mono); font-size: 13px; color: var(--accent); font-style: normal; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(128px, 19vh, 200px) 0 clamp(50px, 8vh, 96px); }
.hero-meta {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: var(--mono); font-size: 12px; color: var(--ink-soft);
    padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.hero-meta .tag { display: flex; align-items: center; gap: 10px; }
.hero-meta .tag::before { content: ""; width: 26px; height: 1px; background: var(--accent); flex: none; }
.hero-meta .loc { letter-spacing: .3px; white-space: nowrap; }

.hero-title {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(44px, 8.4vw, 124px);
    line-height: 0.98; letter-spacing: -0.015em;
    margin: clamp(28px, 5vh, 56px) 0;
}
.hero-title .line { display: block; }
.hero-title em { font-style: italic; }
.hero-title .mark-accent { color: var(--accent); }

.hero-base {
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 80px);
    align-items: start; padding-top: clamp(22px, 3vh, 40px); border-top: 1px solid var(--line);
}
.hero-lede { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-soft); max-width: 54ch; }
.hero-spec { font-family: var(--mono); font-size: 13px; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.spec-row:first-child { border-top: 1px dashed var(--line); }
.spec-row span { color: var(--ink-faint); text-transform: uppercase; letter-spacing: .5px; font-size: 11px; }
.spec-row b { font-weight: 500; text-align: right; }
.spec-row b.live { display: flex; align-items: center; gap: 8px; color: var(--accent-deep); }

.scroll-hint { display: inline-flex; align-items: center; gap: 9px; margin-top: clamp(40px, 6vh, 64px); font-family: var(--mono); font-size: 12px; letter-spacing: .4px; text-transform: uppercase; color: var(--ink-soft); }
.scroll-hint svg { animation: bob 1.9s ease-in-out infinite; }
.scroll-hint:hover { color: var(--accent); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================================================
   BLOCK SCAFFOLD
   ============================================================ */
.block { padding: clamp(72px, 11vh, 140px) 0; border-top: 1px solid var(--line); }
.block-head { margin-bottom: clamp(42px, 6vh, 76px); }
.idx { font-family: var(--mono); font-size: 12px; letter-spacing: .8px; text-transform: uppercase; color: var(--accent-deep); display: inline-block; }
.block-title { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5.6vw, 72px); line-height: 0.98; letter-spacing: -0.015em; margin-top: 16px; }
.block-title em { font-style: italic; }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.filter { font-family: var(--mono); font-size: 12px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px; background: none; color: var(--ink-soft); cursor: pointer; transition: all .25s; }
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ============================================================
   WORK LIST
   ============================================================ */
.work-list { border-top: 1px solid var(--ink); }
.work-item {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1.9fr) minmax(0, 0.9fr) auto 30px;
    align-items: center; gap: clamp(18px, 2.6vw, 44px);
    padding: clamp(26px, 3.2vh, 40px) 6px;
    border-bottom: 1px solid var(--line);
    transition: padding .4s var(--ease), color .3s;
}
.work-item.hidden { display: none; }
.work-item::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: scaleY(0); transform-origin: bottom; transition: transform .45s var(--ease); z-index: -1; }
.work-item:hover { color: var(--paper); padding-left: clamp(16px, 1.8vw, 30px); padding-right: clamp(16px, 1.8vw, 30px); }
.work-item:hover::before { transform: scaleY(1); }
.work-item:hover b { color: var(--accent); }

.work-no { font-family: var(--mono); font-size: 13px; color: var(--ink-faint); transition: color .3s; }
.work-item:hover .work-no { color: var(--accent); }
.work-main h3 { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
.work-main p { font-size: 14.5px; color: var(--ink-soft); margin-top: 9px; max-width: 60ch; transition: color .3s; }
.work-main b { font-weight: 600; transition: color .3s; }
.work-item:hover .work-main p { color: rgba(241,238,230,0.72); }
.work-stack { font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); line-height: 1.5; transition: color .3s; }
.work-item:hover .work-stack { color: rgba(241,238,230,0.6); }
.work-cat { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .5px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; white-space: nowrap; transition: border-color .3s; }
.work-item:hover .work-cat { border-color: rgba(241,238,230,0.3); }
.work-arrow { font-size: 21px; justify-self: end; transition: transform .4s var(--ease), color .3s; }
.work-item:hover .work-arrow { transform: translate(4px, -4px); color: var(--accent); }

/* ============================================================
   AGENTIC SCHEMATIC (the pattern I build)
   ============================================================ */
.schematic { padding: clamp(52px, 8vh, 90px) 0; border-top: 1px solid var(--line); }
.schematic .idx { margin-bottom: 28px; }
.flow {
    display: flex; align-items: stretch; gap: 0;
    border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
    background:
        repeating-linear-gradient(45deg, transparent 0 9px, rgba(23,21,15,0.02) 9px 10px);
}
.node {
    flex: 1 1 0; min-width: 0;
    display: flex; flex-direction: column; gap: 9px;
    padding: clamp(20px, 2.4vw, 32px) clamp(14px, 1.6vw, 22px);
    transition: background .35s;
}
.node:hover { background: var(--paper-2); }
.node svg { width: 26px; height: 26px; color: var(--ink); }
.node.hot svg { color: var(--accent); }
.node span { font-family: var(--serif); font-size: clamp(17px, 1.7vw, 22px); line-height: 1.1; }
.node i { font-family: var(--mono); font-style: normal; font-size: 11px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .4px; }
.node.hot i { color: var(--accent-deep); }
.link { flex: 0 0 clamp(28px, 4vw, 64px); position: relative; }
.link::before {
    content: ""; position: absolute; top: 50%; left: 8%; right: 8%; height: 1px;
    background: linear-gradient(90deg, var(--line) 50%, transparent 50%);
    background-size: 8px 1px;
}
.link::after { content: "→"; position: absolute; top: 50%; right: 2px; transform: translateY(-50%); color: var(--ink-faint); font-size: 13px; }
.link .dot {
    position: absolute; top: 50%; left: 0; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); transform: translateY(-50%);
    animation: flow 2.8s var(--ease) infinite;
}
.node:nth-of-type(4) ~ .link .dot { animation-delay: .4s; }
@keyframes flow { 0% { left: 4%; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { left: 92%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .link .dot { animation: none; opacity: 0; } }

/* ============================================================
   CAPABILITIES
   ============================================================ */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cap { padding: clamp(28px, 3.5vw, 50px) clamp(24px, 3vw, 46px); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); position: relative; transition: background .35s; }
.cap:hover { background: var(--paper-2); }
.cap-no { position: absolute; top: clamp(26px,3.5vw,48px); right: clamp(24px,3vw,46px); font-family: var(--mono); font-size: 13px; color: var(--accent); }
.cap h3 { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 34px); font-weight: 400; letter-spacing: -0.01em; }
.cap > p { color: var(--ink-soft); margin: 12px 0 20px; font-size: 15px; max-width: 40ch; }
.cap ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.cap ul li { font-family: var(--mono); font-size: 12px; padding: 6px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; transition: border-color .25s, transform .25s var(--ease); }
.cap ul li:hover { border-color: var(--accent); transform: translateY(-2px); }

.stack-strip { margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--line); }
.stack-strip-label { display: block; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-deep); margin-bottom: 22px; }
.logo-row { display: flex; flex-wrap: wrap; gap: 10px; }
.logo-chip {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft);
    padding: 9px 15px 9px 13px; border: 1px solid var(--line); border-radius: 100px;
    background: var(--paper); transition: border-color .25s, color .25s, transform .25s var(--ease);
}
.logo-chip i {
    width: 18px; height: 18px; flex: none; background: var(--ink);
    -webkit-mask: var(--m) center / contain no-repeat; mask: var(--m) center / contain no-repeat;
    transition: background .25s;
}
.logo-chip:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.logo-chip:hover i { background: var(--accent); }
.logo-chip.no-icon { padding: 9px 15px; }

/* ============================================================
   WRITING — LinkedIn embeds
   ============================================================ */
.block-sub { color: var(--ink-soft); font-size: clamp(15px, 1.5vw, 17px); max-width: 58ch; margin-top: 20px; }
.post-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.post-card {
    display: flex; flex-direction: column; gap: 14px;
    padding: clamp(26px, 3vw, 40px); min-height: 280px;
    border: 1px solid var(--line); border-radius: 14px; background: var(--paper);
    transition: background .35s, color .35s, border-color .35s, transform .35s var(--ease);
}
.post-card:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-3px); }
.post-top { display: flex; align-items: center; gap: 10px; }
.li-badge { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 6px; background: var(--accent); color: var(--paper); font-family: var(--sans); font-weight: 700; font-size: 13px; flex: none; }
.post-kind { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-faint); transition: color .3s; }
.post-card:hover .post-kind { color: rgba(241,238,230,0.55); }
.post-card h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.8vw, 36px); line-height: 1.04; letter-spacing: -0.01em; }
.post-card p { font-size: 14.5px; color: var(--ink-soft); transition: color .3s; }
.post-card:hover p { color: rgba(241,238,230,0.74); }
.post-tags { font-family: var(--mono); font-size: 11.5px; color: var(--accent-deep); margin-top: auto; }
.post-card:hover .post-tags { color: var(--accent); }
.post-go { font-family: var(--mono); font-size: 12px; letter-spacing: .3px; color: var(--ink); transition: color .3s, transform .3s var(--ease); }
.post-card:hover .post-go { color: var(--accent); transform: translateX(4px); }
.writing-cta {
    display: inline-flex; margin-top: clamp(34px, 5vh, 52px);
    font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3vw, 34px);
    position: relative; padding-bottom: 6px;
}
.writing-cta::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease), background .3s; }
.writing-cta:hover { color: var(--accent); }
.writing-cta:hover::after { transform: scaleX(1); background: var(--accent); }

/* ============================================================
   EXPERIENCE — timeline + credentials
   ============================================================ */
.timeline { list-style: none; border-top: 1px solid var(--ink); }
.timeline li { display: grid; grid-template-columns: 200px 1fr; gap: clamp(20px, 4vw, 60px); padding: clamp(28px, 3.6vh, 44px) 0; border-bottom: 1px solid var(--line); transition: padding-left .35s var(--ease); }
.timeline li:hover { padding-left: 16px; }
.tl-when { font-family: var(--mono); font-size: 12.5px; color: var(--accent-deep); padding-top: 8px; }
.tl-main h3 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 400; letter-spacing: -0.01em; }
.tl-main h3 .tl-sub { font-size: .5em; color: var(--ink-faint); font-style: italic; }
.tl-role { display: block; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); margin: 6px 0 12px; letter-spacing: .2px; }
.tl-main p { color: var(--ink-soft); font-size: 15px; max-width: 64ch; }

.creds { margin-top: clamp(56px, 8vh, 96px); }
.cred-h { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-deep); margin-bottom: 22px; }
.cert-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(36px, 6vw, 80px); border-top: 1px solid var(--line); }
.cert-list li { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cert-org { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-faint); }
.cert-name { font-size: 15.5px; font-weight: 500; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(88px, 14vh, 180px) 0; border-top: 1px solid var(--line); text-align: center; }
.contact .wrap { display: flex; flex-direction: column; align-items: center; }
.contact-title { font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 7vw, 100px); line-height: 0.99; letter-spacing: -0.02em; margin: 16px 0 24px; }
.contact-title em { font-style: italic; color: var(--accent); }
.contact-lede { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 42px; font-size: clamp(16px, 1.7vw, 19px); }
.contact-mail { display: inline-block; font-family: var(--serif); font-style: italic; font-size: clamp(28px, 5vw, 60px); line-height: 1; position: relative; padding-bottom: 8px; transition: color .3s; }
.contact-mail::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease), background .3s; }
.contact-mail:hover { color: var(--accent); }
.contact-mail:hover::after { transform: scaleX(1); background: var(--accent); }
.contact-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 28px; margin-top: 46px; }
.contact-links a { font-family: var(--mono); font-size: 13px; color: var(--ink-soft); padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color .25s, border-color .25s; }
.contact-links a:hover { color: var(--ink); border-color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--ink); padding: 40px 0 52px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-mark { font-family: var(--serif); font-size: 28px; }
.footer-mark b { color: var(--accent); }
.footer-col p { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); margin-top: 6px; }
.footer-colophon { display: flex; flex-direction: column; gap: 5px; text-align: right; }
.footer-colophon span { font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
    .nav, .topbar-cta { display: none; }
    .menu-btn { display: flex; }
}
@media (max-width: 880px) {
    .hero-base { grid-template-columns: 1fr; gap: 34px; }
    .work-item { grid-template-columns: 34px 1fr auto; gap: 16px; }
    .work-stack, .work-arrow { display: none; }
    .timeline li { grid-template-columns: 1fr; gap: 6px; }
    .tl-when { padding-top: 0; }
    .cert-list { grid-template-columns: 1fr; }
    .post-cards { grid-template-columns: 1fr; }
    .flow { flex-direction: column; }
    .flow .link { flex-basis: 34px; align-self: center; width: 34px; }
    .flow .link::before { top: 8%; bottom: 8%; left: 50%; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, var(--line) 50%, transparent 50%); background-size: 1px 8px; }
    .flow .link::after { content: "↓"; top: auto; bottom: 2px; right: 50%; transform: translateX(50%); }
    .flow .link .dot { animation: none; opacity: 0; }
    .node { flex-direction: row; align-items: center; gap: 14px; }
    .node span { flex: 1; }
}
@media (max-width: 600px) {
    body { font-size: 16px; }
    .cap-grid { grid-template-columns: 1fr; }
    .work-item { grid-template-columns: 28px 1fr; }
    .work-cat { display: none; }
    .cert-list li { grid-template-columns: 1fr; gap: 4px; }
    .footer-inner { flex-direction: column; }
    .footer-colophon { text-align: left; }
    .hero-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
}
