/* ============================================================
   NATE BAUER — Personal Site
   Palette: #F5F2ED (bg) · #1C1C1E (hero/text) · #C9B99A (accent)
   Fonts: Playfair Display (headings) · Inter (body)
============================================================ */

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

:root {
    --bg:          #F5F2ED;
    --hero-bg:     #1C1C1E;
    --text:        #1C1C1E;
    --text-muted:  #6B6B6B;
    --text-body:   #2C2C2C;
    --text-light:  #9A9A9A;
    --accent:      #C9B99A;
    --border:      rgba(28, 28, 30, 0.1);
    --white:       #FFFFFF;

    --serif:  'Playfair Display', Georgia, serif;
    --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --max:    1100px;
    --nav-h:  68px;
    --pad:    clamp(20px, 5vw, 40px);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }


/* ============================================================
   SHARED UTILITIES
============================================================ */

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.section-eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-heading {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 20px;
}

.divider {
    width: 48px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 48px;
}

/* ============================================================
   FADE-IN ON SCROLL
============================================================ */

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   NAVIGATION
============================================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: var(--bg);
    box-shadow: 0 1px 0 var(--border);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent);
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); border-bottom-color: var(--accent); }

/* Scrolled state — over light sections */
.nav.scrolled {
    background: var(--bg);
    box-shadow: 0 1px 0 var(--border);
}

.nav.scrolled .nav-logo { color: var(--text); }

.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav.scrolled .nav-links a.active { color: var(--text); border-bottom-color: var(--accent); }

/* Mobile nav toggle */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: background 0.3s ease;
}

.nav.scrolled .nav-hamburger span { background: var(--text); }


/* ============================================================
   HERO
============================================================ */

.hero {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 80px var(--pad) 100px;
    width: 100%;
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: center;
    gap: 80px;
}

/* Photo */
.hero-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: calc(100% - 24px);
    margin-top: 24px;
    object-fit: cover;
    display: block;
}

.hero-photo-icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(28, 28, 30, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
    fill: none;
    stroke-width: 1.5;
}

.hero-photo-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Hero content */
.hero-content { }

.hero-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}

.hero-name {
    font-family: var(--serif);
    font-size: clamp(60px, 7.5vw, 102px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 32px;
}

.hero-rule {
    width: 56px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 28px;
}

.hero-tagline {
    font-family: var(--serif);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 400;
    font-style: italic;
    color: #3A3A3A;
    line-height: 1.55;
    margin-bottom: 52px;
    max-width: 440px;
}

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

.btn-primary {
    display: inline-block;
    padding: 13px 30px;
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--text);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-block;
    padding: 13px 30px;
    border: 1px solid rgba(28, 28, 30, 0.3);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    border-color: var(--text);
    color: var(--text);
    transform: translateY(-1px);
}


/* ============================================================
   INTRO STRIP (below hero on homepage)
============================================================ */

.intro {
    padding: 100px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    padding-top: 8px;
}

.intro-block {}

.intro-single {
    max-width: 100%;
}

.intro-single p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
}

.intro-single p:last-child {
    margin-bottom: 0;
}

.intro-block-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.intro-block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
}

.intro-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 64px;
}


/* ============================================================
   PRESS PREVIEW (homepage)
============================================================ */

.press-preview {
    padding: 0 0 100px;
}

.press-preview-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
}

.press-preview-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.press-preview-link:hover {
    color: var(--text);
    border-color: var(--accent);
}

.press-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.press-logo-item {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.press-logo-item:hover { color: var(--text); }


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

.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-right a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-right a:hover { color: var(--text); }

.footer-copy {
    font-size: 12px;
    color: var(--text-light);
}

.footer-attribution {
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 20px;
    letter-spacing: 0.02em;
}

.footer-attribution a {
    color: var(--text-light);
    text-decoration: underline;
    text-decoration-color: rgba(154, 154, 154, 0.35);
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.footer-attribution a:hover {
    color: var(--text-muted);
}


/* ============================================================
   PAGE HERO (interior pages)
============================================================ */

.page-hero {
    background: var(--hero-bg);
    padding: calc(var(--nav-h) + 72px) var(--pad) 80px;
}

.page-hero-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}

.page-hero p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.5);
    max-width: 540px;
    line-height: 1.6;
}


/* ============================================================
   WORK PAGE — TIMELINE
============================================================ */

.work-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    padding-left: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-left {
    padding-top: 4px;
}

.timeline-years {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-company {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
}

.timeline-right {}

.timeline-title {
    font-family: var(--serif);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.timeline-body {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--border);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* ============================================================
   PRESS PAGE
============================================================ */

.press-section {
    padding: 100px 0;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.press-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.press-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(28, 28, 30, 0.09);
}

.press-card-meta {
    margin-bottom: 20px;
}

.press-outlet {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
}

.press-year {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.06em;
}

.press-headline {
    font-family: var(--serif);
    font-size: clamp(17px, 1.8vw, 20px);
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 14px;
    transition: color 0.2s ease;
}

.press-card:hover .press-headline { color: var(--hero-bg); }

.press-summary {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-body);
    flex: 1;
    margin-bottom: 24px;
}

.press-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    align-self: flex-start;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.press-link:hover { border-bottom-color: var(--accent); }


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

.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    background: rgba(201, 185, 154, 0.04);
}

.about-photo-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-body p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 24px;
}

.about-body p:last-child { margin-bottom: 0; }

.about-interests {
    padding: 80px 0 100px;
    border-top: 1px solid var(--border);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 56px;
}

.interest-item {}

.interest-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.interest-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.interest-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
}


/* ============================================================
   BUILDER PAGE
============================================================ */

.builder-section {
    padding: 100px 0;
}

.builder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.builder-card {
    border: 1px solid var(--border);
    padding: 40px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.builder-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.builder-card-status {
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid var(--accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.builder-card-status.shipped {
    border-color: var(--text);
    color: var(--text);
}

.builder-card h3 {
    font-family: var(--serif);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.2;
}

.builder-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
}

.builder-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.stack-tag {
    padding: 3px 10px;
    background: rgba(201, 185, 154, 0.12);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
}

.contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 40px;
}

.contact-link-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.contact-link-item:hover { color: var(--text); }

.contact-link-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    width: 72px;
    flex-shrink: 0;
}

.contact-form { }

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid var(--border);
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--hero-bg);
    color: var(--white);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.form-submit:hover { opacity: 0.85; }


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

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .hero-photo {
        width: 240px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
    }

    .hero-rule { margin: 0 auto 28px; }
    .hero-tagline { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-photo {
        max-width: 320px;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .press-preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .press-logos {
        gap: 28px;
    }
}

@media (max-width: 640px) {
    :root { --pad: 20px; }

    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: var(--nav-h) 0 0 0;
        background: var(--bg);
        border-top: 1px solid var(--border);
        padding: 40px var(--pad);
        gap: 32px;
        align-items: flex-start;
    }

    .nav-links.open a {
        font-size: 18px;
        letter-spacing: 0.04em;
        color: var(--text-muted);
    }

    .nav-links.open a.active,
    .nav-links.open a:hover {
        color: var(--text);
    }

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

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/* ============================================================
   ABOUT PAGE — NARRATIVE LAYOUT
============================================================ */

.about-pg-header {
    padding: calc(var(--nav-h) + 88px) 0 80px;
    border-bottom: 1px solid var(--border);
}

.about-pg-header h1 {
    font-family: var(--serif);
    font-size: clamp(64px, 9vw, 120px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 28px;
}

.about-pg-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--accent);
}

.about-pg-block {
    padding: 96px 0;
    border-bottom: 1px solid var(--border);
}

.about-pg-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-pg-headline {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--text);
    margin-bottom: 52px;
    max-width: 740px;
}

.about-pg-prose p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 740px;
}

.about-pg-prose p:last-child {
    margin-bottom: 0;
}

.about-pg-photo-block {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.about-pg-photo-placeholder {
    width: 100%;
    height: clamp(280px, 36vw, 480px);
    border: 1px solid rgba(201, 185, 154, 0.5);
    background: rgba(201, 185, 154, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-pg-photo-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.about-pg-photo-caption {
    font-size: 13px;
    font-style: italic;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.about-pg-close {
    padding: 100px 0 120px;
    text-align: center;
}

.about-pg-close-text {
    font-family: var(--serif);
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .about-pg-header {
        padding: calc(var(--nav-h) + 64px) 0 64px;
    }

    .about-pg-block {
        padding: 72px 0;
    }

    .about-pg-photo-block {
        padding: 64px 0;
    }
}

@media (max-width: 640px) {
    .about-pg-header {
        padding: calc(var(--nav-h) + 48px) 0 52px;
    }

    .about-pg-block {
        padding: 56px 0;
    }

    .about-pg-photo-block {
        padding: 48px 0;
    }

    .about-pg-close {
        padding: 72px 0 88px;
    }
}


/* ============================================================
   WORK PAGE — TIMELINE LAYOUT
============================================================ */

.work-pg-header {
    padding: calc(var(--nav-h) + 88px) 0 80px;
    border-bottom: 1px solid var(--border);
}

.work-pg-header h1 {
    font-family: var(--serif);
    font-size: clamp(64px, 9vw, 120px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 28px;
}

.work-pg-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--accent);
}

.work-intro {
    padding: 56px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.work-intro p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 1.8vw, 21px);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.55;
}

.work-timeline-wrap {
    padding: 0;
}

.work-entry {
    padding: 72px 0;
    border-bottom: 1px solid var(--border);
}

.work-co-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
}

.work-co-info { }

.work-co-name {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 6px;
}

.work-co-location {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.work-co-tenure {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 8px;
}

.work-roles-list {
    display: flex;
    flex-direction: column;
}

.work-role {
    padding: 36px 0;
    border-top: 1px solid var(--border);
}

.work-role:first-child {
    border-top: none;
    padding-top: 0;
}

.work-role-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.work-role-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.work-role-dates {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.work-role-scope {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 680px;
}

.work-role-prose {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-body);
    max-width: 720px;
}

/* Education */
.work-education {
    padding: 72px 0 80px;
    border-top: 1px solid var(--border);
}

.work-edu-heading {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 56px;
}

.work-edu-item {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.work-edu-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.work-edu-detail {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

/* Closing */
.work-close {
    padding: 88px 0 120px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.work-close-text {
    font-family: var(--serif);
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .work-pg-header {
        padding: calc(var(--nav-h) + 64px) 0 64px;
    }

    .work-entry {
        padding: 56px 0;
    }

    .work-co-header {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 32px;
    }

    .work-co-tenure {
        padding-top: 0;
    }

    .work-education {
        padding: 56px 0 64px;
    }

    .work-edu-heading {
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    .work-pg-header {
        padding: calc(var(--nav-h) + 48px) 0 52px;
    }

    .work-entry {
        padding: 48px 0;
    }

    .work-role {
        padding: 28px 0;
    }

    .work-role-meta {
        flex-direction: column;
        gap: 4px;
    }

    .work-education {
        padding: 48px 0 56px;
    }

    .work-close {
        padding: 64px 0 88px;
    }
}


/* ============================================================
   PRESS PAGE — FULL LISTING
============================================================ */

.press-pg-header {
    padding: calc(var(--nav-h) + 88px) 0 80px;
    border-bottom: 1px solid var(--border);
}

.press-pg-header h1 {
    font-family: var(--serif);
    font-size: clamp(64px, 9vw, 120px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 28px;
}

.press-pg-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--accent);
}

.press-pg-intro {
    padding: 56px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.press-pg-intro p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 1.8vw, 21px);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.55;
}

.press-pg-section {
    padding: 64px 0 100px;
}

.press-date {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--accent);
    white-space: nowrap;
}

.press-headline a {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.press-headline a:hover {
    color: var(--accent);
}

.press-card--wide {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .press-pg-header {
        padding: calc(var(--nav-h) + 64px) 0 64px;
    }

    .press-card--wide {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .press-pg-header {
        padding: calc(var(--nav-h) + 48px) 0 52px;
    }

    .press-pg-section {
        padding: 48px 0 72px;
    }
}


/* ============================================================
   PRESS BRAND LOGO TREATMENTS
============================================================ */

.press-brand {
    display: block;
    font-family: var(--sans);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.press-brand--cnbc {
    font-weight: 800;
    text-transform: uppercase;
    color: #E0131A;
    letter-spacing: 0.04em;
}

.press-brand--adweek {
    font-weight: 800;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.03em;
}

.press-brand--adexchanger {
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: rgba(26, 26, 26, 0.3);
}

.press-brand--marketing-dive {
    font-weight: 700;
    color: #0066CC;
}

.press-brand--ad-age {
    font-family: var(--serif);
    font-weight: 700;
    font-style: italic;
    color: #CC0000;
}

.press-brand--digiday {
    font-family: var(--sans);
    font-weight: 700;
    color: #000000;
}

.press-brand--walmart-connect {
    font-weight: 700;
    color: #0071CE;
}

.press-brand--gallup {
    font-weight: 700;
    color: #005EB8;
}

.press-logo-wrap {
    margin-bottom: 20px;
}

.press-logo-img {
    width: 120px;
    height: auto;
    display: block;
}

.press-logo-wrap .press-brand {
    margin-bottom: 0;
}


/* ============================================================
   HOMEPAGE — ANIMATIONS & ENHANCEMENTS
============================================================ */

/* 1. Name fade-up animation */
@keyframes nameRise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-name-word {
    display: inline-block;
    opacity: 0;
    animation: nameRise 0.8s ease-out forwards;
}

.hero-name-word--delay {
    animation-delay: 0.4s;
}

/* 6. Divider draws left-to-right after name completes */
@keyframes drawRule {
    from { width: 0; opacity: 0; }
    to   { width: 56px; opacity: 1; }
}

.hero-rule {
    animation: drawRule 0.6s ease-out 1.2s both;
}

/* 5. Hero photo scale on hover */
.hero-photo img {
    transition: transform 0.4s ease;
}

.hero-photo:hover img {
    transform: scale(1.03);
}

/* 2. Stats strip */
.stats-strip {
    border-top: 1px solid rgba(201, 185, 154, 0.28);
    border-bottom: 1px solid rgba(201, 185, 154, 0.28);
    padding: 44px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--serif);
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2C2C2C;
    line-height: 1.5;
}

/* 3. Press logos on homepage — grayscale → color on hover */
.press-logo-home {
    width: 100px;
    height: auto;
    display: block;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.press-logo-item:hover .press-logo-home {
    filter: grayscale(0%);
    opacity: 1;
}


/* 8. Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--accent);
    z-index: 300;
    pointer-events: none;
}

/* Responsive — stats strip */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }
    .stat-item {
        border-right: none;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }
}

@media (max-width: 640px) {
    .stats-strip { padding: 28px 0; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-name-word { animation: none; opacity: 1; }
    .hero-rule      { animation: none; }
    .hero-photo img { transition: none; }
}
