/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0f1210;
    --bg-secondary: #171b18;
    --bg-elevated: #1e2420;
    --text-primary: #f2ebe1;
    --text-secondary: #b8b0a4;
    --text-muted: #7a746c;
    --accent: #c4896a;
    --accent-soft: rgba(196, 137, 106, 0.18);
    --border: rgba(242, 235, 225, 0.1);
    --overlay: rgba(15, 18, 16, 0.55);
    --glow-x: 50%;
    --glow-y: 30%;

    --font-display: "Fraunces", "Times New Roman", serif;
    --font-body: "DM Sans", system-ui, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6.5rem;

    --max: 1180px;
    --narrow: 720px;

    --ease: 0.35s ease;
    --ease-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-image:
        radial-gradient(600px 400px at var(--glow-x) var(--glow-y), rgba(196, 137, 106, 0.14), transparent 55%),
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 137, 106, 0.1), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(122, 158, 150, 0.08), transparent 50%);
    background-attachment: fixed;
}

body.is-ready {
    opacity: 1;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2000;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.shield-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0f1210;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease;
}

.shield-overlay.is-on {
    opacity: 1;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
    cursor: none;
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3000;
    transform: translate3d(-100px, -100px, 0);
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    background: #fff;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease, opacity 0.25s ease;
}

body.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
    opacity: 0.85;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}

::selection {
    background: rgba(196, 137, 106, 0.35);
    color: var(--text-primary);
}

.photo-item,
.hero-media,
.bio-image,
.work-visual,
.nav-logo,
.footer-logo img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ease), border-color var(--ease), opacity var(--ease), transform var(--ease);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: var(--narrow);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

.section-header {
    margin-bottom: var(--space-lg);
    max-width: 40rem;
}

.section-header.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--text-primary);
    margin-bottom: 0.85rem;
    text-wrap: balance;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 34rem;
    color: var(--text-secondary);
}

.section-header.text-center .section-description {
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity var(--ease-slow) var(--reveal-delay, 0ms),
        transform var(--ease-slow) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.magnetic {
    transition: transform 0.2s ease-out;
    will-change: transform;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem var(--space-md);
    background: rgba(15, 18, 16, 0.45);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background var(--ease), border-color var(--ease), padding var(--ease);
}

.nav.is-scrolled {
    background: rgba(15, 18, 16, 0.88);
    border-bottom-color: var(--border);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    z-index: 1001;
}

.nav-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: 0;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--text-primary);
    transition: var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

@media (max-width: 800px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: var(--space-md);
        left: auto;
        min-width: 12.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem;
        background: rgba(23, 27, 24, 0.96);
        border: 1px solid var(--border);
        backdrop-filter: blur(16px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
        pointer-events: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--accent-soft);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.14) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: none;
}

.btn:hover::after {
    animation: shineSweep 0.7s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(242, 235, 225, 0.35);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.text-link {
    color: var(--accent);
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    border-color: var(--accent);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0 0 5.5rem;
}

.hero-media {
    position: absolute;
    inset: -4%;
    background:
        linear-gradient(180deg, rgba(15, 18, 16, 0.25) 0%, rgba(15, 18, 16, 0.82) 78%, var(--bg-primary) 100%),
        linear-gradient(135deg, #2a332e 0%, #1a1f1c 45%, #3a2f28 100%);
    background-size: cover;
    background-position: center;
    animation: heroDrift 22s ease-in-out infinite alternate;
    transform: scale(1.08);
    will-change: transform;
}

.js .hero-media {
    animation: none;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242, 235, 225, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 235, 225, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
    pointer-events: none;
}

.hero-media.has-image {
    background-image:
        linear-gradient(180deg, rgba(15, 18, 16, 0.2) 0%, rgba(15, 18, 16, 0.78) 72%, var(--bg-primary) 100%),
        var(--hero-image);
}

@keyframes heroDrift {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero-title {
    font-size: clamp(3.4rem, 10vw, 7rem);
    margin-bottom: var(--space-sm);
}

.hero-title .line {
    display: block;
}

.hero-title .line.is-split .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(1.1em) rotate(4deg);
    animation: charIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--char-delay, 0ms);
}

@keyframes charIn {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.hero-title .line:not(.is-split) {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 1s var(--ease-slow) forwards;
}

.hero-title .line:not(.is-split):nth-child(2) {
    animation-delay: 0.12s;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 26rem;
    margin-bottom: var(--space-md);
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeUp 1s 0.28s var(--ease-slow) forwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    opacity: 0;
    animation: fadeUp 1s 0.42s var(--ease-slow) forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    right: var(--space-md);
    bottom: 2rem;
    z-index: 1;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

/* ===== INTRO ===== */
.intro-section {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.lead {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    line-height: 1.55;
    color: var(--text-secondary);
    text-wrap: pretty;
}

.lead strong {
    color: var(--text-primary);
    font-weight: 500;
}

.lead a {
    color: inherit;
    border-bottom: 1px solid rgba(196, 137, 106, 0.45);
}

.lead a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ===== WORK ===== */
.work-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.work-item {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-lg);
    align-items: end;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.work-item-reverse .work-copy {
    order: 2;
}

.work-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
}

.work-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: var(--space-sm);
}

.work-description {
    margin-bottom: var(--space-md);
    max-width: 36rem;
}

.work-meta {
    display: block;
    margin-top: 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.work-visual {
    min-height: 280px;
    background: var(--bg-elevated);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.work-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(242, 235, 225, 0.18) 48%, transparent 62%);
    transform: translateX(-120%);
    pointer-events: none;
}

.work-visual.shine::before {
    animation: shineSweep 0.9s ease;
}

@keyframes shineSweep {
    to { transform: translateX(120%); }
}

.work-visual::after {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.work-visual.tech {
    background-image: linear-gradient(145deg, #243029 0%, #1a1f1c 55%, rgba(196, 137, 106, 0.25) 100%);
}

.work-visual.travel {
    background-image: linear-gradient(145deg, #2c2620 0%, #1a1f1c 50%, rgba(122, 158, 150, 0.25) 100%);
}

/* ===== PHOTOGRAPHY ===== */
.photo-section {
    background: linear-gradient(180deg, transparent, rgba(23, 27, 24, 0.8) 20%, transparent);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
}

.photo-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-elevated);
    background-size: cover;
    background-position: center;
    transition: transform 0.25s ease-out;
    transform-style: preserve-3d;
}

.photo-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        280px circle at var(--spot-x, 50%) var(--spot-y, 50%),
        rgba(242, 235, 225, 0.16),
        transparent 55%
    );
    opacity: 0;
    transition: opacity var(--ease);
}

.photo-item:hover::after {
    opacity: 1;
}

.photo-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 18, 16, 0.85));
    z-index: 1;
}

.photo-item-tall {
    grid-row: span 2;
}

.photo-item-wide {
    grid-column: span 2;
}

.photo-item.aerial {
    background-image: linear-gradient(160deg, #3d4a42, #1c221e);
}

.photo-item.architecture {
    background-image: linear-gradient(160deg, #4a3f36, #221c18);
}

.photo-item.portrait {
    background-image: linear-gradient(160deg, #3a3530, #191714);
}

.photo-item.landscape {
    background-image: linear-gradient(160deg, #2f4038, #151a17);
}

.photo-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 1.25rem;
}

.photo-overlay h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.photo-overlay p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.award-link {
    display: block;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: padding var(--ease), border-color var(--ease);
}

.award-link:hover {
    padding-left: 0.5rem;
    border-color: rgba(196, 137, 106, 0.35);
}

.award-link:hover h3 {
    color: var(--accent);
}

.award-link h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    transition: color var(--ease);
}

.award-link p {
    font-size: 0.95rem;
}

.award-link .award-cta {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ===== CONNECT ===== */
.contact-section {
    border-top: 1px solid var(--border);
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    margin-top: var(--space-md);
}

.social-row a {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.social-row a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 22rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: flex-start;
}

.footer-links a {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== ABOUT ===== */
.about-hero {
    padding: calc(5.5rem + var(--space-lg)) 0 var(--space-lg);
    text-align: center;
}

.page-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.page-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin-bottom: var(--space-sm);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.bio-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.bio-sidebar {
    position: sticky;
    top: 6.5rem;
}

.bio-image {
    aspect-ratio: 4 / 5;
    margin-bottom: var(--space-md);
    background:
        linear-gradient(160deg, rgba(196, 137, 106, 0.35), transparent 60%),
        var(--bg-elevated);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.bio-image span {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.bio-image.has-image span {
    display: none;
}

.bio-quick-facts h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.fact-list {
    list-style: none;
}

.fact-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.fact-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.fact-value {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.fact-value a,
.timeline-content h3 a {
    color: var(--text-secondary);
    border-bottom: 1px solid transparent;
}

.fact-value a:hover,
.timeline-content h3 a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.bio-content h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.bio-content p {
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: var(--space-md);
    text-wrap: pretty;
}

.bio-content em {
    color: var(--text-primary);
    font-style: italic;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.expertise-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.65rem;
}

.expertise-item p {
    font-size: 0.98rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 1px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-lg);
}

.timeline-marker {
    position: absolute;
    left: -1.78rem;
    top: 0.45rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: var(--bg-primary);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.timeline-content p {
    margin-bottom: 0.65rem;
}

.timeline-tag {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.platform-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.platform-item {
    background: var(--bg-primary);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: 140px;
}

.platform-item:hover {
    background: var(--bg-secondary);
}

.platform-item h3 {
    font-size: 1.2rem;
}

.platform-item p {
    font-size: 0.9rem;
    flex: 1;
}

.platform-item span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .work-item,
    .work-item-reverse .work-copy {
        grid-template-columns: 1fr;
    }

    .work-item-reverse .work-copy {
        order: 0;
    }

    .bio-layout {
        grid-template-columns: 1fr;
    }

    .bio-sidebar {
        position: static;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .photo-item-tall {
        grid-row: span 1;
    }

    .photo-item-wide {
        grid-column: span 2;
    }

    .expertise-list,
    .platform-list,
    .award-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        align-items: center;
        padding-bottom: 4rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .footer-content {
        flex-direction: column;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-item-wide {
        grid-column: span 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    body {
        opacity: 1;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-media {
        transform: none;
    }

    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    body.has-custom-cursor,
    body.has-custom-cursor a,
    body.has-custom-cursor button {
        cursor: auto;
    }
}

@media (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    body.has-custom-cursor,
    body.has-custom-cursor a,
    body.has-custom-cursor button {
        cursor: auto;
    }
}
