:root {
    --paper: #fff;
    --muted: #666666;
    /* Neutral Grey */
    --line: #e0e3e7;
    --ink: #111111;
    --accent: #111111;
    /* Pure Black */
    --accent2: #333333;
    /* Dark Grey */
    --accent-secondary: #6B7280;
    --bg: #fbfbfb;
    /* Pure Grey/White */
    --max: 1100px;

    /* Gold/Bronze Accents */
    --gold: #b8860b;
    --gold-light: #d4a84b;
    --gold-subtle: #f8f4e8;
    --gold-border: #e8dcc0;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-y: scroll;
}

body {
    line-height: 1.6
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s
}

a:hover {
    color: var(--muted)
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between
}

@media(max-width:850px) {

    .col-7,
    .col-5 {
        grid-column: span 12
    }

    .grid {
        gap: 24px
    }

    .container {
        padding: 40px 20px
    }

    /* Navigation Stack */
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        /* Reduced gap */
        padding: 12px 20px;
        /* Reduced padding */
    }

    .navlinks {
        gap: 16px;
        width: 100%;
        overflow-x: auto;
        /* Allow scroll if too many links */
        padding-bottom: 4px;
        flex-wrap: nowrap;
        /* Keep single line hint */
        -webkit-overflow-scrolling: touch;
    }

    .nav a {
        white-space: nowrap;
    }

    .h1 {
        font-size: 28px;
    }

    /* Programme Grid Stack */
    .programme-grid {
        grid-template-columns: 1fr;
    }
}

.brand {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 24px;
    color: var(--ink);
    white-space: nowrap;
}

.navlinks {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center
}

.nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

.nav a:hover {
    color: var(--ink)
}

/* Layout */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 60px 24px
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03)
}

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

.col-7 {
    grid-column: span 7
}

.col-5 {
    grid-column: span 5
}

/* Typography */
.h1 {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
    line-height: 1.15;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink)
}

.h2 {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 12px;
    font-weight: 600;
    color: var(--ink)
}

.kicker {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
    display: block
}

.p {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.6
}

.muted {
    color: var(--muted)
}

.descriptor {
    font-size: 20px;
    color: var(--muted);
    margin-top: -8px;
    margin-bottom: 28px;
    line-height: 1.4;
    display: block;
    max-width: 600px
}

/* Components */
.list {
    margin: 16px 0 0 20px;
    padding: 0
}

.list li {
    margin-bottom: 12px;
    padding-left: 4px
}

.list li::marker {
    color: var(--accent-secondary);
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 32px
}

.pill {
    border: 1px solid var(--line);
    background: var(--bg);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

.hr {
    height: 1px;
    background: var(--accent-secondary);
    margin: 32px 0;
    border: none
}

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    margin-top: 60px;
    background: #fff
}

.footer .container {
    padding: 32px 24px
}

.small {
    font-size: 13px;
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    line-height: 1.5
}

/* UI Elements */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    transition: all 0.2s
}

.button:hover {
    background: var(--accent2);
    transform: translateY(-1px)
}

.button.secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--line)
}

.button.secondary:hover {
    border-color: var(--muted);
    background: var(--bg)
}

form {
    display: grid;
    gap: 16px;
    margin-top: 16px
}

.form-group {
    display: grid;
    gap: 6px
}

.label {
    font-size: 13px;
    font-weight: 500;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: var(--muted)
}

input,
select,
textarea,
.input {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 15px;
    width: 100%;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    transition: border 0.2s
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent)
}

textarea {
    min-height: 120px;
    resize: vertical
}

.notice {
    border-left: 3px solid var(--line);
    padding: 16px;
    background: var(--bg);
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--bg);
    border: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    margin-right: 6px;
    margin-bottom: 6px
}

/* Programme Card Selector */
.programme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.programme-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.programme-card:hover {
    border-color: var(--muted);
    background: var(--bg);
}

.programme-card.selected {
    border-color: var(--ink);
    background: var(--bg);
    box-shadow: 0 0 0 1px var(--ink);
    position: relative;
    z-index: 1;
}

.programme-card .title {
    font-family: ui-serif, Georgia, serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.programme-card .code {
    font-family: ui-sans-serif, sans-serif;
    font-size: 12px;
    color: var(--muted);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

body {
    line-height: 1.6
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s
}

a:hover {
    color: var(--muted)
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between
}

.brand {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 24px;
    color: var(--ink);
    white-space: nowrap;
}

.navlinks {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center
}

.nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

.nav a:hover {
    color: var(--ink)
}

/* Layout */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 60px 24px
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03)
}

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

.col-7 {
    grid-column: span 7
}

.col-5 {
    grid-column: span 5
}

@media(max-width:850px) {

    .col-7,
    .col-5 {
        grid-column: span 12
    }

    .grid {
        gap: 24px
    }

    .container {
        padding: 40px 20px
    }

    /* Navigation Stack */
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        /* Reduced gap */
        padding: 12px 20px;
        /* Reduced padding */
    }

    .navlinks {
        gap: 16px;
        width: 100%;
        overflow-x: auto;
        /* Allow scroll if too many links */
        padding-bottom: 4px;
        flex-wrap: nowrap;
        /* Keep single line hint */
        -webkit-overflow-scrolling: touch;
    }

    .nav a {
        white-space: nowrap;
    }

    .h1 {
        font-size: 28px;
    }

    /* Programme Grid Stack */
    .programme-grid {
        grid-template-columns: 1fr;
    }
}

/* Typography */
.h1 {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
    line-height: 1.15;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink)
}

.h2 {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 12px;
    font-weight: 600;
    color: var(--ink)
}

.kicker {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
    display: block
}

.p {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.6
}

.muted {
    color: var(--muted)
}

.descriptor {
    font-size: 20px;
    color: var(--muted);
    margin-top: -8px;
    margin-bottom: 28px;
    line-height: 1.4;
    display: block;
    max-width: 600px
}

/* Components */
.list {
    margin: 16px 0 0 20px;
    padding: 0
}

.list li {
    margin-bottom: 12px;
    padding-left: 4px
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 32px
}

.pill {
    border: 1px solid var(--line);
    background: var(--bg);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

.hr {
    height: 1px;
    background: var(--line);
    margin: 32px 0;
    border: none
}

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    margin-top: 60px;
    background: #fff
}

.footer .container {
    padding: 32px 24px
}

.small {
    font-size: 13px;
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    line-height: 1.5
}

/* UI Elements */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    transition: all 0.2s
}

.button:hover {
    background: var(--accent2);
    transform: translateY(-1px)
}

.button.secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--line)
}

.button.secondary:hover {
    border-color: var(--muted);
    background: var(--bg)
}

form {
    display: grid;
    gap: 16px;
    margin-top: 16px
}

.form-group {
    display: grid;
    gap: 6px
}

.label {
    font-size: 13px;
    font-weight: 500;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: var(--muted)
}

input,
select,
textarea,
.input {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 15px;
    width: 100%;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    transition: border 0.2s
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent)
}

textarea {
    min-height: 120px;
    resize: vertical
}

.notice {
    border-left: 3px solid var(--line);
    padding: 16px;
    background: var(--bg);
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--bg);
    border: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    margin-right: 6px;
    margin-bottom: 6px
}

/* Programme Card Selector */
.programme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.programme-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.programme-card:hover {
    border-color: var(--muted);
    background: var(--bg);
}

.programme-card.selected {
    border-color: var(--ink);
    background: var(--bg);
    box-shadow: 0 0 0 1px var(--ink);
    position: relative;
    z-index: 1;
}

.programme-card .title {
    font-family: ui-serif, Georgia, serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.programme-card .code {
    font-family: ui-sans-serif, sans-serif;
    font-size: 12px;
    color: var(--muted);
}

/* State of the Art Infographic */
.sota-infographic {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    margin: 40px 0;
    width: 100%;
}

.sota-header {
    text-align: center;
    margin-bottom: 32px;
}

.sota-super-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.sota-title {
    font-family: ui-serif, Georgia, serif;
    font-size: 28px;
    color: #111111;
    /* Deep Royal Blue */
    margin: 0 0 8px 0;
    font-weight: 700;
    line-height: 1.2;
}

.sota-sub {
    font-size: 16px;
    font-style: italic;
    color: var(--muted);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.sota-sub::before,
.sota-sub::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #e2e8f0;
}

.sota-sub::before {
    left: -40px;
}

.sota-sub::after {
    right: -40px;
}

.sota-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sota-card {
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s;
    border: 1px solid transparent;
}

.sota-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

/* Card Themes */
.sota-card.mono {
    background: #ffffff;
    border-color: #e5e5e5;
    box-shadow: none;
    border: 1px solid #e5e5e5;
}

.sota-card.mono:hover {
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sota-card.mono .sota-icon {
    background: #f5f5f5;
    color: #111111;
    box-shadow: none;
}

.sota-card.mono h4 {
    color: #111111;
}

.sota-card.mono .sota-list li::before {
    color: #111111;
}

.sota-title {
    color: #111111;
}

.sota-impact {
    background: #111111;
    color: #ffffff;
}

/* Legacy Colors (kept for reference or manual toggle) */
.sota-card.blue {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    border-color: #e5e5e5;
}

.sota-card.green {
    background: linear-gradient(to bottom, #f0fdf4, #ffffff);
    border-color: #dcfce7;
}

.sota-card.orange {
    background: linear-gradient(to bottom, #fff7ed, #ffffff);
    border-color: #ffedd5;
}

.sota-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sota-icon svg {
    width: 28px;
    height: 28px;
}

.sota-card.blue .sota-icon {
    color: #2563eb;
}

.sota-card.green .sota-icon {
    color: #16a34a;
}

.sota-card.orange .sota-icon {
    color: #ea580c;
}

.sota-card h4 {
    font-family: ui-serif, Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #0f172a;
    line-height: 1.3;
}

.sota-card.blue h4 {
    color: #1e40af;
}

.sota-card.green h4 {
    color: #166534;
}

.sota-card.orange h4 {
    color: #9a3412;
}

.sota-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.sota-list li {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
    color: #334155;
}

.sota-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sota-card.blue .sota-list li::before {
    color: #3b82f6;
}

.sota-card.green .sota-list li::before {
    color: #22c55e;
}

.sota-card.orange .sota-list li::before {
    color: #f97316;
}

.sota-impact {
    background: #111111;
    color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sota-impact-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 8px;
    display: block;
}

.sota-impact-text {
    font-family: ui-serif, Georgia, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
}

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

    .sota-sub::before,
    .sota-sub::after {
        display: none;
    }

    .sota-sub {
        padding: 0;
    }
}

.brand img {
    height: 65px;
    display: block;
}

/* ========================================
   Team Section Styles
   ======================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.team-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
}

.team-card:hover {
    border-color: var(--muted);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    border: 3px solid var(--line);
}

.team-card .name {
    font-family: ui-serif, Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.team-card .title {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.team-card .location {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 12px;
    color: var(--accent-secondary);
}

.team-card-principal {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    text-align: left;
    padding: 32px;
}

.team-card-principal .team-photo {
    width: 160px;
    height: 160px;
    margin: 0;
}

.team-card-principal .name {
    font-size: 24px;
    margin-bottom: 8px;
}

.team-card-principal .title {
    font-size: 15px;
    margin-bottom: 12px;
}

.team-card-principal .tagline {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Team Profile Page */
.profile-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid var(--line);
}

.profile-meta {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin-top: 8px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
}

.back-link:hover {
    color: var(--ink);
}

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

    .team-card-principal {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-card-principal .team-photo {
        margin: 0 auto 16px;
    }

    .profile-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-photo {
        margin: 0 auto;
    }
}

/* ========================================
   Blog/Insights Styles
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.blog-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    border-color: var(--muted);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-card .category {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.blog-card .blog-title {
    font-family: ui-serif, Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card .excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-card .meta {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 12px;
    color: var(--accent-secondary);
}

.blog-featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-featured .blog-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured .blog-title {
    font-size: 24px;
}

.blog-featured .excerpt {
    font-size: 16px;
}

/* Blog Post Single */
.blog-post-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.blog-post-title {
    font-family: ui-serif, Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--ink);
}

.blog-post-meta {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    color: var(--muted);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-post-content {
    font-size: 17px;
    line-height: 1.8;
}

.blog-post-content h2 {
    font-family: ui-serif, Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--ink);
}

.blog-post-content h3 {
    font-family: ui-serif, Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--ink);
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 16px 0 20px 24px;
}

.blog-post-content li {
    margin-bottom: 8px;
}

.blog-post-content blockquote {
    border-left: 3px solid var(--ink);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--muted);
}

.blog-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg);
    border-radius: 12px;
    margin-top: 40px;
}

.blog-author-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-info .name {
    font-family: ui-serif, Georgia, serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
}

.blog-author-info .role {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    color: var(--muted);
}

/* Empty state for blog */
.empty-state {
    text-align: center;
    padding: 60px 24px;
    color: var(--muted);
}

.empty-state .icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

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

    .blog-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .blog-post-title {
        font-size: 28px;
    }
}

/* ========================================
   About Page Styles
   ======================================== */

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.vision-box,
.mission-box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
}

.vision-box .kicker,
.mission-box .kicker {
    margin-bottom: 12px;
}

.vision-box p,
.mission-box p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.pillars-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.value-item {
    padding: 0;
}

.value-item .p {
    margin: 0;
}

.pillar-item {
    text-align: center;
    padding: 20px 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.pillar-item .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.pillar-item .pillar-title {
    font-family: ui-serif, Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

@media (max-width: 850px) {
    .vision-mission {
        grid-template-columns: 1fr;
    }

    .pillars-preview {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Blog Category Filter
   ======================================== */

.category-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.category-btn {
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn:hover {
    border-color: var(--muted);
    color: var(--ink);
}

.category-btn.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

/* ========================================
   Blog Content Styling
   ======================================== */

.blog-content {
    font-size: 16px;
    line-height: 1.8;
}

.blog-content h1 {
    font-family: ui-serif, Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--ink);
}

.blog-content h2 {
    font-family: ui-serif, Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    margin: 28px 0 14px;
    color: var(--ink);
}

.blog-content h3 {
    font-family: ui-serif, Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--ink);
}

.blog-content p {
    margin: 0 0 16px;
}

.blog-content ul {
    margin: 0 0 16px;
    padding-left: 24px;
    list-style-type: disc;
}

.blog-content ol {
    margin: 0 0 16px;
    padding-left: 24px;
    list-style-type: decimal;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content blockquote {
    position: relative;
    margin: 32px 0;
    padding: 24px 32px 24px 48px;
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, var(--gold-subtle) 0%, #fefdfb 100%);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.blog-content blockquote::before {
    content: "\201C";
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
}

.blog-content blockquote::after {
    content: "\201D";
    position: absolute;
    bottom: -8px;
    right: 16px;
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
}

.blog-content blockquote p {
    margin: 0;
}

.blog-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Mention styling in blog content */
.blog-content .mention {
    display: inline-block;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border: 1px solid #7dd3fc;
    border-radius: 4px;
    padding: 2px 8px;
    color: #0369a1;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-content .mention:hover {
    background: linear-gradient(135deg, #bae6fd 0%, #e0f2fe 100%);
    border-color: #38bdf8;
    color: #0c4a6e;
}

.blog-content a {
    color: var(--accent);
    text-decoration: underline;
}

.blog-content a:hover {
    color: var(--ink);
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.blog-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    background: var(--bg);
    padding: 2px 6px;
    border-radius: 4px;
}

.blog-content pre {
    background: var(--bg);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
}

.blog-content pre code {
    background: none;
    padding: 0;
}

/* Blog Excerpt/Summary */
.blog-excerpt {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--muted);
    background: linear-gradient(135deg, var(--gold-subtle) 0%, #faf8f3 100%);
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    margin-bottom: 28px;
    border-radius: 0 8px 8px 0;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    color: var(--muted);
    transition: all 0.2s ease;
}

.blog-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   Team Preview (Homepage)
   ======================================== */

.team-preview-card {
    text-align: center;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s ease;
}

.team-preview-card:hover {
    transform: translateY(-2px);
}

.team-preview-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--line);
    margin-bottom: 12px;
    transition: border-color 0.2s ease;
}

.team-preview-card:hover .team-preview-photo {
    border-color: var(--accent);
}

.team-preview-name {
    font-family: ui-serif, Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-preview-title {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-size: 13px;
    color: var(--muted);
}

@media (max-width: 850px) {
    .team-preview {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ========================================
   Gold/Bronze Accent Styles
   ======================================== */

/* Gold accent elements */
.gold-accent {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

.gold-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    border: none;
    margin: 32px 0;
}

.gold-kicker {
    color: var(--gold);
    font-weight: 600;
}

/* Gold bordered card */
.card-gold {
    background: var(--paper);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.card-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 12px 12px 0 0;
}

/* Gold subtle background section */
.section-gold {
    background: var(--gold-subtle);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 48px 0;
    margin: 32px 0;
}

.section-gold .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Gold button variant */
.button-gold {
    background: var(--gold);
    color: var(--paper);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.button-gold:hover {
    background: var(--gold-light);
    color: var(--paper);
}

/* Gold list bullets */
.list-gold li::marker {
    color: var(--gold);
}

/* Homepage hero enhancement */
.hero-title {
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gold);
}

/* Gold stat/metric boxes */
.stat-box {
    text-align: center;
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
}

.stat-number {
    font-family: ui-serif, Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social/LinkedIn link styling */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--gold);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer social links */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.footer-social a {
    color: var(--muted);
    transition: color 0.2s ease;
}

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