/* ========================================
   Wes Anderson Design System — Neutral Palette
   ======================================== */

:root {
    /* Typography */
    --font-display: 'Jost', sans-serif;
    --font-body: 'Jost', sans-serif;
    --font-serif: 'Libre Baskerville', serif;

    /* Neutrals (Primary Palette) */
    --cream: #FAF3E8;
    --cream-warm: #F5EDE0;
    --ivory: #FFFDF5;
    --parchment: #F0E8D8;
    --khaki: #C4B498;
    --taupe: #8A7E6C;
    --charcoal: #3C3632;
    --burgundy: #6B3A3A;

    /* Muted Accents (used sparingly) */
    --dusty-pink: #E8A0A0;
    --dusty-pink-light: #F2C4C4;
    --dusty-pink-dark: #C47878;
    --mustard: #D4A843;
    --mustard-light: #E8C878;
    --mustard-dark: #B08A2E;
    --powder-blue: #7EB5C4;
    --mint: #8EBE9A;

    /* Semantic */
    --text-primary: var(--charcoal);
    --text-secondary: var(--taupe);
    --text-muted: var(--khaki);
    --bg-primary: var(--cream);
    --bg-secondary: var(--cream-warm);
    --bg-card: var(--ivory);
    --border-color: var(--khaki);

    /* Spacing (4px base) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 128px;

    /* Shadows & Radius */
    --shadow-soft: 0 2px 8px rgba(60, 54, 50, 0.06);
    --shadow-medium: 0 4px 16px rgba(60, 54, 50, 0.10);
    --shadow-strong: 0 8px 32px rgba(60, 54, 50, 0.14);
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 10px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-cozy: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
   ======================================== */

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-6);
}

h2 {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-5);
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-4);
}

h4 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: none;
    margin-bottom: var(--space-3);
}

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

a {
    color: var(--taupe);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--charcoal);
}

small {
    font-size: 0.875rem;
    opacity: 0.85;
}

/* ========================================
   Layout
   ======================================== */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

@media (max-width: 768px) {
    .col-8, .col-6, .col-4, .col-3 {
        grid-column: span 12;
    }
    .container {
        padding: 0 var(--space-4);
    }
}

/* ========================================
   Sections
   ======================================== */

.section {
    padding: var(--space-9) 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    text-align: center;
}

.section:nth-child(even) {
    background: var(--cream-warm);
}

.section-alt {
    background: var(--cream-warm);
}

.section-left {
    text-align: left;
}

.section-left .section-title,
.section-left .section-number {
    text-align: left;
    margin-left: 0;
}

.section-left .cross-ornament {
    display: none;
}

.section-left h3,
.section-left h4,
.section-left .card,
.section-left .card p,
.section-left .card h3,
.section-left .card h4,
.section-left .company,
.section-left .experience-bullets li {
    text-align: left;
}

.section-left .card p {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-4);
}

.section-number {
    font-family: var(--font-serif);
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--taupe);
    margin-bottom: var(--space-3);
    letter-spacing: 0.08em;
}

.section-intro {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Decorative Ornaments
   ======================================== */

.cross-ornament {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    margin: var(--space-5) 0 var(--space-7);
}

.cross-ornament::before,
.cross-ornament::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: var(--khaki);
}

.cross-shape {
    width: 18px;
    height: 18px;
    position: relative;
}

.cross-shape::before,
.cross-shape::after {
    content: '';
    position: absolute;
    background: var(--mustard);
}

.cross-shape::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
}

.cross-shape::after {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
}

.diamond-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    margin: var(--space-5) 0;
}

.diamond-divider::before,
.diamond-divider::after {
    content: '';
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: var(--border-color);
}

.diamond-shape {
    width: 10px;
    height: 10px;
    background: var(--khaki);
    transform: rotate(45deg);
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    background: rgba(250, 243, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-4) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--khaki);
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mustard);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.nav-logo {
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: var(--space-6);
}

.nav-links a {
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color var(--transition-base);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mustard);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: var(--space-3);
    }

    .nav-links {
        gap: var(--space-2);
        font-size: 0.625rem;
        flex-wrap: nowrap;
    }

    .nav-links a {
        white-space: nowrap;
    }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: var(--space-9) 0 var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--parchment);
    border-bottom: 3px solid var(--khaki);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mustard);
}

.header-frame {
    border: 2px solid var(--khaki);
    padding: var(--space-7) var(--space-8);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.header-frame::before,
.header-frame::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--mustard);
}

.header-frame::before {
    top: -4px;
    left: -4px;
    border-right: none;
    border-bottom: none;
}

.header-frame::after {
    bottom: -4px;
    right: -4px;
    border-left: none;
    border-top: none;
}

.header-corner-tl {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--mustard);
    top: -4px;
    right: -4px;
    border-left: none;
    border-bottom: none;
}

.header-corner-br {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--mustard);
    bottom: -4px;
    left: -4px;
    border-right: none;
    border-top: none;
}

.header-chapter {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: var(--space-4);
}

.hero-title {
    margin-bottom: var(--space-4);
    color: var(--charcoal);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--taupe);
    font-style: italic;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto var(--space-5);
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .header-frame {
        padding: var(--space-5) var(--space-4);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--charcoal);
    color: var(--cream);
    border-color: var(--charcoal);
}

.btn-primary:hover {
    background: var(--taupe);
    border-color: var(--taupe);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--taupe);
    color: var(--ivory);
    border-color: var(--taupe);
}

.btn-secondary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: var(--parchment);
    color: var(--text-primary);
    border-color: var(--taupe);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-color);
    padding: var(--space-2) var(--space-4);
}

.btn-ghost:hover {
    background: var(--parchment);
    color: var(--text-primary);
    border-color: var(--taupe);
}

.btn-framed {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
    position: relative;
}

.btn-framed::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid var(--border-color);
    border-radius: 1px;
    pointer-events: none;
}

.btn-framed:hover {
    background: var(--charcoal);
    color: var(--cream);
}

.btn-framed:hover::before {
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-download {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-download:hover {
    background: var(--charcoal);
    color: var(--cream);
    transform: translateY(-2px);
}

/* ========================================
   Cards
   ======================================== */

.card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    transition: all var(--transition-base);
    text-align: center;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.card h3 {
    margin-bottom: var(--space-3);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

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

.card-wood {
    background: var(--parchment);
    border-color: var(--khaki);
}

.card-featured {
    background: var(--ivory);
    border: 3px solid var(--charcoal);
    border-left: 3px solid var(--charcoal);
    padding: var(--space-7);
    position: relative;
}

.card-featured::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

/* ========================================
   Badges
   ======================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
}

.badge-orange {
    background: var(--parchment);
    color: var(--taupe);
    border-color: var(--khaki);
}

.badge-olive {
    background: var(--parchment);
    color: var(--taupe);
    border-color: var(--khaki);
}

.badge-mustard {
    background: var(--parchment);
    color: var(--taupe);
    border-color: var(--khaki);
}

.badge-brass {
    background: var(--parchment);
    color: var(--taupe);
    border-color: var(--khaki);
}

.badge-wood {
    background: var(--parchment);
    color: var(--taupe);
    border-color: var(--khaki);
}

.badge-fjord {
    background: var(--parchment);
    color: var(--taupe);
    border-color: var(--khaki);
}

/* ========================================
   Tech Stack
   ======================================== */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-5) var(--space-4);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.tech-item:hover {
    border-color: var(--taupe);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.tech-icon {
    font-size: 2rem;
    line-height: 1;
}

.tech-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tech-category-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    text-align: center;
}

/* ========================================
   Pipeline
   ======================================== */

.pipeline {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    margin-top: var(--space-7);
    overflow-x: auto;
}

.pipeline-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--parchment);
}

.pipeline-icon {
    width: 32px;
    height: 32px;
    background: var(--taupe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 0.875rem;
    font-weight: 700;
}

.pipeline-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pipeline-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: auto;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.pipeline-stages {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.pipeline-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    flex: 1;
    position: relative;
    z-index: 1;
}

.pipeline-stage:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: var(--khaki);
    z-index: 0;
}

.stage-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 3px solid var(--taupe);
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.stage-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stage-tools {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 100px;
}

@media (max-width: 768px) {
    .pipeline-stages {
        flex-direction: column;
        gap: var(--space-3);
    }

    .pipeline-stage:not(:last-child)::after {
        top: 40px;
        left: 20px;
        width: 2px;
        height: calc(100% - 10px);
    }
}

/* ========================================
   What I Do / Impact
   ======================================== */

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.impact-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--parchment);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.impact-card:hover {
    border-color: var(--taupe);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.impact-icon {
    font-size: 2rem;
    margin-bottom: var(--space-3);
}

.impact-title {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--charcoal);
    margin-bottom: var(--space-3);
}

.impact-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Fact List
   ======================================== */

.fact-list {
    list-style: none;
    margin-top: var(--space-5);
}

.fact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--khaki);
    text-align: left;
}

.fact-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ========================================
   Experience
   ======================================== */

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
}

.experience-bullets {
    margin: var(--space-4) 0 0 var(--space-4);
    padding: 0;
    list-style: disc;
}

.experience-bullets li {
    margin-bottom: var(--space-2);
    line-height: 1.6;
    color: var(--ink);
}

.company {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--taupe);
    font-style: italic;
    margin-top: var(--space-1);
}

.location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   Projects
   ======================================== */

.project-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-header {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    justify-content: center;
}

.project-card h3 {
    margin-bottom: var(--space-3);
}

.project-card p {
    flex-grow: 1;
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    text-align: center;
}

.project-links {
    margin-top: auto;
}

/* ========================================
   Contact
   ======================================== */

.contact-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
}

.contact-card:hover {
    border-color: var(--taupe);
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--parchment);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    border: 2px solid var(--khaki);
}

.contact-info {
    flex-grow: 1;
    text-align: left;
}

.contact-info h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-1);
    text-align: left;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.contact-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.contact-card:hover .contact-arrow {
    transform: translateX(4px);
    color: var(--charcoal);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: var(--space-8) 0;
    background: var(--charcoal);
    position: relative;
    text-align: center;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mustard);
}

.footer-frame {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--space-6);
    max-width: 500px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.footer p {
    color: var(--khaki);
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-style: italic;
    margin: 0 auto;
}

.footer-strip {
    display: flex;
    height: 4px;
    margin-top: var(--space-5);
    border-radius: 2px;
    overflow: hidden;
}

.footer-strip span {
    flex: 1;
}

.footer a {
    color: var(--khaki);
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition-fast);
}

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

/* ========================================
   Utilities
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mt-8 { margin-top: var(--space-8); }
