@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #f4f3ef;
    --panel: #ffffff;
    --panel-alt: #fdfcf8;
    --text: #111111;
    --muted: #444444;
    --line: #121212;
    --accent: #111111;
    --accent-strong: #000000;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: radial-gradient(circle at top left, #ffffff 0%, var(--bg) 62%);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    position: relative;
}

a { color: inherit; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--line);
}

.brand-row {
    width: min(1280px, 94%);
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: #111;
}

.brand-mark {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.14);
}

.brand:focus-visible {
    outline: 3px solid #111;
    outline-offset: 4px;
    border-radius: 10px;
}

.brand-text {
    line-height: 1;
}
.site-nav { display: flex; gap: 20px; align-items: center; }
.site-nav a { text-decoration: none; color: #222; font-weight: 500; }
.site-nav a:hover { color: #000; text-decoration: underline; text-underline-offset: 4px; }

.site-nav-projects {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-nav-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.85;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--line);
    color: var(--text);
    border-radius: 8px;
    padding: 4px;
    line-height: 0;
    box-sizing: border-box;
    width: max-content;
    height: max-content;
    font: inherit;
    box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.menu-toggle-bars {
    width: 17px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle-bars span {
    display: block;
    height: 2px;
    width: 100%;
    background: #111;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

main {
    position: relative;
    z-index: 2;
    width: min(1280px, 94%);
    margin: 0 auto;
    padding: 20px 0 48px;
}

.bg-orb {
    position: fixed;
    z-index: 0;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(56px);
    opacity: 0.09;
    pointer-events: none;
    animation: floatOrb 14s ease-in-out infinite;
}
.orb-a { top: -80px; right: -60px; background: #000; }
.orb-b { bottom: -120px; left: -80px; background: #222; animation-delay: -4s; }

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.38;
    background-image:
        radial-gradient(rgba(0, 0, 0, 0.045) 0.7px, transparent 0.7px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
    background-size: 5px 5px, 100% 100%;
}

/* Hero: surfer photo + single centered copy block */
.hero {
    position: relative;
}

.hero--split {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    padding: clamp(32px, 5vw, 56px) clamp(16px, 4vw, 40px) clamp(24px, 4vw, 40px);
    background: #fafaf8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(18px, 3vw, 26px);
    overflow: visible;
    padding-bottom: 6px;
}

.hero-photo {
    margin: 0;
    width: 100%;
    max-width: min(400px, 88vw);
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: #e8e8e6;
}

.hero-photo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(420px, 52vh);
    object-fit: cover;
    object-position: center 30%;
}

.hero-copy-block {
    width: 100%;
    max-width: 52ch;
}

.hero-copy-block h1 {
    margin: 0 0 6px;
}

.hero-copy-block .eyebrow {
    margin-bottom: 12px;
}

.hero-copy-block .lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-copy-block .hero-actions {
    justify-content: center;
}

/* Recent work — expandable project tiles */
.recent-work {
    width: 100%;
    margin: clamp(20px, 4vw, 36px) auto clamp(8px, 2vw, 16px);
    padding: 0 0 clamp(12px, 2vw, 24px);
}

.recent-work-heading {
    text-align: center;
    margin: 0 0 clamp(18px, 3vw, 26px);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #777;
}

.eyebrow {
    margin: 0;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}
h1 { margin: 10px 0 14px; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.12; }
.lead { color: var(--muted); max-width: 65ch; }
.hero-actions {
    margin-top: 0;
    margin-bottom: 2px;
    padding-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 17px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #111;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button--icon {
    gap: 8px;
    padding-left: 14px;
    padding-right: 18px;
}

.button-icon {
    width: 1.15em;
    height: 1.15em;
    flex-shrink: 0;
    opacity: 0.95;
}

.button.primary { background: #101010; color: #fff; box-shadow: 3px 4px 0 #000; }
.button.ghost { border-color: var(--line); color: var(--text); background: #fff; box-shadow: 3px 4px 0 #000; }
.button:hover { transform: translate(1px, 1px) rotate(-0.5deg); box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.9); }

.button--projects.button.primary {
    background: #3a3a38;
    border-color: #2a2a28;
    box-shadow: 3px 4px 0 rgba(42, 42, 40, 0.45);
}

.button--projects.button.primary:hover {
    background: #2f2f2d;
    box-shadow: 2px 3px 0 rgba(42, 42, 40, 0.5);
}

.section {
    border: 2px solid var(--line);
    border-radius: 18px;
    padding: 20px 22px 18px;
    margin-top: 14px;
    background: linear-gradient(180deg, var(--panel) 0%, #f2f2ef 100%);
    box-shadow:
        7px 8px 0 rgba(0, 0, 0, 0.92),
        0 0 0 1px rgba(0, 0, 0, 0.08) inset;
    position: relative;
    overflow: hidden;
}

.hero + .section {
    margin-top: 10px;
}

.section::before {
    content: "";
    position: absolute;
    right: 14px;
    top: 10px;
    width: 42px;
    height: 18px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    opacity: 0.3;
    transform: rotate(-8deg);
}

.hero-inner::after,
.section::after,
.project-block::after,
.timeline-card::after,
.education-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background:
        repeating-linear-gradient(8deg, rgba(0, 0, 0, 0.12) 0 1px, transparent 1px 9px),
        repeating-linear-gradient(-9deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 12px);
}
.section-head p {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000;
    font-weight: 700;
}
.section-head h2 { margin: 8px 0 0; font-size: clamp(1.4rem, 2.8vw, 2rem); }

/* Single-line section title (Experience, Education, Contact) */
.section-head--solo h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Expandable project tiles */
.recent-work .project-grid {
    margin-top: 0;
}

.project-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

@media (max-width: 960px) {
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

.project-block {
    border: 2px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    height: 100%;
    box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.82);
}

/* Collapsed tiles: modest min height; row stretch matches tallest card in that row */
.project-block:not(.is-expanded) {
    min-height: clamp(132px, 15vw, 168px);
}

.project-block.is-expanded {
    grid-column: 1 / -1;
    height: auto;
    min-height: 0;
    align-self: start;
    box-shadow: 7px 8px 0 rgba(0, 0, 0, 0.88);
}

.project-block:not(.is-expanded):hover {
    transform: translateY(-2px);
    box-shadow: 6px 7px 0 rgba(0, 0, 0, 0.85);
}

.project-block-toggle {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    padding: 12px 14px;
    margin: 0;
    border: none;
    background: #fafaf7;
    cursor: pointer;
    font: inherit;
    text-align: left;
    color: inherit;
    transition: background 0.2s ease;
}

.project-block-toggle:hover {
    background: #f2f2ed;
}

.project-block-toggle:focus-visible {
    outline: 3px solid #111;
    outline-offset: 2px;
}

.project-block.is-expanded .project-block-toggle {
    flex: 0 0 auto;
    min-height: 0;
    background: #fff;
    border-bottom: 2px solid var(--line);
    padding: clamp(14px, 2vw, 18px) clamp(20px, 3.5vw, 44px);
    gap: 12px;
}

.project-block-toggle-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.project-block-toggle-body {
    width: 100%;
    min-width: 0;
}

.project-block-toggle-thumb-wrap {
    flex: 0 0 auto;
    width: 88px;
    height: 66px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--line);
    background: #111;
}

.project-block-toggle-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.project-block-toggle-head .project-block-toggle-title {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
    text-align: left;
}

.project-tile-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px 8px;
    width: 100%;
}

.project-tile-details .project-tile-desc {
    flex: 1 0 100%;
    width: 100%;
}

.project-tile-details .project-tile-platforms {
    flex: 1 1 calc(100% - 5.5rem);
    min-width: 0;
}

.project-tile-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    max-width: 100%;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.project-tile-badge--org {
    text-transform: none;
    color: #525a63;
    background: #e6e9ee;
    border: 2px solid #b3bcc8;
    box-shadow: 2px 2px 0 rgba(72, 80, 90, 0.2);
}

.project-tile-platforms {
    display: flex;
    flex-flow: row wrap;
    gap: 5px 7px;
    align-items: center;
    width: 100%;
}

.project-tile-badge--platform {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: clamp(0.54rem, 0.95vw, 0.6rem);
    font-weight: 600;
    color: #5c5a57;
    background: #ebe9e4;
    border: 2px solid #b8b5ae;
    box-shadow: 2px 2px 0 rgba(80, 78, 72, 0.22);
    padding: 2px 7px;
    max-width: 100%;
    white-space: nowrap;
    gap: 4px;
}

.platform-badge-icon {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
}

img.platform-badge-icon--vr {
    width: auto;
    height: 14px;
    max-width: 26px;
    object-fit: contain;
    display: block;
}

img.platform-badge-icon--xreal {
    width: auto;
    height: 14px;
    max-width: 32px;
    object-fit: contain;
    display: block;
}

img.platform-badge-icon--pc {
    width: auto;
    height: 14px;
    max-width: 30px;
    object-fit: contain;
    display: block;
}

.project-tile-desc {
    display: block;
    margin: 0;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.35;
    color: #444;
}

.project-block-chevron {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    margin-left: auto;
    border: 2px solid var(--line);
    border-radius: 50%;
    position: relative;
    background: #fff;
    align-self: center;
}

.project-block-chevron::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 10px;
    width: 7px;
    height: 7px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg);
    transition: transform 0.25s ease, top 0.25s ease;
}

.project-block.is-expanded .project-block-chevron::after {
    transform: rotate(-135deg);
    top: 12px;
}

.project-block-detail {
    display: flex;
    flex-direction: column;
}

.project-block-detail[hidden] {
    display: none !important;
}

.project-block-media {
    width: 100%;
    min-height: 0;
    background: #0a0a0a;
}

.project-block-body {
    padding: clamp(22px, 2.8vw, 34px) clamp(20px, 3.5vw, 44px);
    max-width: none;
}

.project-block-body > h3 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.2vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Title → meta grid → description → View project */
.project-meta {
    margin: 0 0 18px;
    padding: 16px 18px;
    border: 2px solid var(--line);
    border-radius: 10px;
    background: #fafaf7;
    display: grid;
    gap: 10px 14px;
    font-size: 0.95rem;
}

.project-meta-row {
    display: grid;
    grid-template-columns: minmax(0, 150px) minmax(0, 1fr);
    gap: 10px 16px;
    align-items: baseline;
}

.project-meta dt {
    margin: 0;
    font-weight: 700;
    color: #444;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.3;
}

.project-meta dd {
    margin: 0;
    color: #111;
    line-height: 1.5;
}

.project-desc {
    margin: 0 0 8px;
    max-width: none;
}

.project-desc p {
    margin: 0 0 12px;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.65;
}

.project-desc p:last-child {
    margin-bottom: 0;
}

.project-desc a {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.project-cta {
    margin: 20px 0 0;
}

.project-cta .button {
    text-decoration: none;
}

.press-empty {
    margin: 0;
    padding: 10px 12px;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    border: 2px dashed rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
}

.press-empty a {
    font-weight: 600;
    color: #000;
    font-style: normal;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 480px) {
    .project-meta-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

/* Full-width “tear strip” for press — lives outside the main copy column */
.project-block-press {
    padding: 0 clamp(18px, 3.5vw, 44px) clamp(18px, 2vw, 22px);
    background: linear-gradient(180deg, #f6f6f2 0%, #eceae4 100%);
    border-top: 2px dashed rgba(0, 0, 0, 0.18);
}

.project-block-press .press-awards {
    margin-top: 0;
    padding-top: 12px;
    border-top: none;
}

/* Coverage as small “clippings” instead of a tall list in the main column */
.project-block-press .press-awards-title {
    margin-bottom: 10px;
    color: #222;
}

.project-block-press .press-awards-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-block-press .press-awards-list li {
    margin-bottom: 0;
    flex: 1 1 100%;
}

@media (min-width: 560px) {
    .project-block-press .press-awards-list li {
        flex: 1 1 calc(50% - 10px);
        min-width: 240px;
    }
}

.project-block-press .press-awards-item {
    height: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.project-block-press .press-awards-item:hover {
    transform: translateY(-1px);
    box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.1);
}
.project-links { margin: 12px 0 0; }
.project-links a {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tag { margin: 0; color: #000; font-size: 0.82rem; font-weight: 600; }
.text-link { display: inline-block; margin-top: 8px; color: var(--text); text-underline-offset: 3px; }

/* Image carousel (replaces inline video embeds) */
.media-carousel {
    position: relative;
    width: 100%;
    background: #111;
    line-height: 0;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.carousel-track {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #222;
}

.carousel-slide--video {
    position: relative;
    background: #0a0a0a;
}

.carousel-slide--video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
}

html.embed-youtube .carousel-slide--video iframe {
    display: block;
}

.carousel-video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    z-index: 1;
}

html.embed-youtube .carousel-video-fallback {
    display: none;
}

.carousel-video-fallback-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
}

.carousel-video-fallback-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.92);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    position: relative;
}

.carousel-video-fallback-play::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-35%, -50%);
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
}

.carousel-video-fallback-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    max-width: 16rem;
    line-height: 1.35;
}

.carousel-video-fallback:hover .carousel-video-fallback-play,
.carousel-video-fallback:focus-visible .carousel-video-fallback-play {
    background: #f00;
    transform: scale(1.05);
    transition: transform 0.15s ease, background 0.15s ease;
}

.carousel-video-fallback:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Press — shared block (in-page or inside .project-block-press) */
.press-awards {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 2px solid var(--line);
}

.press-awards-title {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
}

.press-awards-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.press-awards-list li {
    margin-bottom: 10px;
    line-height: 1.45;
}

.press-awards-list li:last-child {
    margin-bottom: 0;
}

.press-awards-item {
    display: block;
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
    padding: 4px 0;
}

.press-awards-item:hover .press-awards-outlet {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.press-awards-outlet {
    font-weight: 700;
    color: #000;
}

.press-awards-sep {
    color: #555;
    font-weight: 400;
}

.press-awards-quote {
    color: #333;
}

.education-card {
    margin-top: 4px;
    padding: 22px 24px;
    border: 2px solid var(--line);
    border-radius: 14px;
    background: #fff;
    max-width: 640px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.88);
}

.education-card:hover {
    transform: translateY(-2px);
    box-shadow: 7px 8px 0 rgba(0, 0, 0, 0.88);
}

.education-card-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.education-icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #faf9f7 0%, #ece9e3 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: #1a1a18;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.education-icon {
    width: auto;
    height: 36px;
    max-width: 44px;
    object-fit: contain;
    display: block;
}

.education-card-copy {
    flex: 1;
    min-width: 0;
}

.education-card-copy h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.education-degree {
    margin: 0 0 10px;
    font-weight: 600;
    color: #222;
}

.education-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Experience timeline */
.timeline {
    list-style: none;
    margin: 18px 0 0;
    padding: 4px 0 8px;
    position: relative;
    max-width: 820px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 10px;
    bottom: 8px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #111 0%, #111 35%, #c8c8c0 100%);
    opacity: 0.9;
}

.timeline-item {
    position: relative;
    padding: 0 0 30px 82px;
    margin: 0;
}

.timeline-item:last-child {
    padding-bottom: 4px;
}

.timeline-marker {
    position: absolute;
    left: 5px;
    top: 8px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.timeline-marker img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.timeline-item--current .timeline-marker {
    border-color: #0a5c0a;
    box-shadow:
        4px 5px 0 rgba(0, 0, 0, 0.85),
        0 0 0 3px rgba(10, 92, 10, 0.15);
}

.timeline-card {
    border: 2px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 18px 20px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.88);
}

.timeline-card::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 26px;
    width: 18px;
    height: 2px;
    background: rgba(0, 0, 0, 0.55);
}

.timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 7px 8px 0 rgba(0, 0, 0, 0.88);
}

.timeline-date {
    display: block;
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
}

.timeline-role {
    margin: 0 0 6px;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.timeline-location {
    margin: 0 0 10px;
    color: #444;
    font-size: 0.88rem;
}

.role-head { display: flex; align-items: center; gap: 10px; }
.role-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    border: 2px solid var(--line);
    padding: 4px;
    flex: 0 0 auto;
}
.resume-badge {
    display: inline-block;
    margin: 0 0 10px;
    border: 2px solid #1f1f1f;
    color: #111;
    background: #fff;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 9px;
}
.role-body p { margin: 0; color: #222; }
.role-related {
    margin-top: 14px;
    border: 2px solid var(--line);
    border-radius: 10px;
    padding: 0 12px;
    background: #fafaf8;
}
.role-related summary {
    cursor: pointer;
    font-weight: 600;
    padding: 10px 0;
    list-style: none;
}
.role-related summary::-webkit-details-marker { display: none; }
.role-related[open] summary { border-bottom: 1px dashed rgba(0, 0, 0, 0.2); margin-bottom: 8px; }
.role-related ul {
    margin: 0 0 12px;
    padding-left: 18px;
    color: #333;
    font-size: 0.94rem;
}
.role-related li { margin-bottom: 6px; }
.role-related a { color: #000; text-decoration: underline; text-underline-offset: 2px; }

.contact-section .contact-panel {
    margin-top: 8px;
    max-width: 480px;
    border: 2px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.06);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: background 0.15s ease;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row:hover {
    background: #fafaf8;
}

.contact-row:focus-visible {
    outline: none;
    background: #f3f2ef;
    box-shadow: inset 0 0 0 2px #111;
}

.contact-row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    background: #f4f2ee;
    color: #252523;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-row-icon svg {
    width: 20px;
    height: 20px;
}

.contact-row-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-row-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #6f6f6c;
}

.contact-row-detail {
    font-size: 0.98rem;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
    word-break: break-word;
}

.contact-row-chevron {
    flex-shrink: 0;
    font-size: 1rem;
    color: #b0aea8;
    font-weight: 400;
    transition: color 0.15s ease, transform 0.15s ease;
}

.contact-row:hover .contact-row-chevron {
    color: #111;
    transform: translateX(2px);
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(14px) translateX(8px); }
}

@media (max-width: 760px) {
    .menu-toggle { display: block; }
    .site-nav {
        position: absolute;
        top: 64px;
        right: 4%;
        left: 4%;
        flex-direction: column;
        border: 2px solid var(--line);
        border-radius: 12px;
        background: #fff;
        padding: 10px 12px;
        display: none;
        box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.7);
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        display: block;
        width: 100%;
        padding: 7px 2px;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    }
    .site-nav a:last-child {
        border-bottom: none;
    }
    .timeline::before {
        left: 12px;
        top: 6px;
    }
    .timeline {
        margin-top: 14px;
    }
    .timeline-item {
        padding-left: 44px;
        padding-bottom: 22px;
    }
    .timeline-marker {
        left: -1px;
        top: 7px;
        width: 26px;
        height: 26px;
        border-width: 2px;
        box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.7);
    }
    .timeline-marker img {
        width: 14px;
        height: 14px;
    }
    .timeline-card {
        padding: 14px 14px 15px;
    }
    .timeline-card::before {
        left: -16px;
        top: 18px;
        width: 12px;
    }
    .bg-orb { width: 240px; height: 240px; opacity: 0.1; }
    .role-icon { width: 30px; height: 30px; padding: 3px; }
    .section { box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.9); }
}
