/* 
   Authentic Earth Design System
   Colors: Sage Green, Muted Terracotta, Sand/Beige, Charcoal
*/

html {
    scroll-behavior: smooth;
    zoom: 0.8; /* Moved from body to prevent top border rendering glitches */
    margin: 0;
    padding: 0;
    background-color: var(--color-bg-main); /* Paint the root element to cover Chrome's black sub-pixel edge bleed */
}

:root {
    --color-bg-main: #F5F2EB; /* Sand/Beige */
    --color-bg-light: #FFFFFF;
    --color-text-main: #333333; /* Charcoal */
    --color-text-muted: #595959;
    --color-primary: #8A9A86; /* Sage Green */
    --color-primary-dark: #748371;
    --color-accent: #CC7A6B; /* Muted Terracotta */
    --color-accent-dark: #B5685B;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    
    --shadow-sm: 0 2px 8px rgba(51, 51, 51, 0.05);
    --shadow-md: 0 8px 24px rgba(51, 51, 51, 0.08);
    
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-main);
    line-height: 1.6;
    font-size: 16px;
}

/* Chrome Zoom Bug Overlay Fix: Creates a 2px beige border fixed to the screen edges to hide the black bleed */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid var(--color-bg-main);
    pointer-events: none;
    z-index: 99999;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 40px 0;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--color-bg-light); }
.bg-green { background-color: var(--color-primary); }
.text-white h2, .text-white p { color: #FFFFFF; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-terracotta {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-terracotta:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-text {
    background-color: transparent;
    color: var(--color-text-main);
    padding: 0.8rem 0;
}

.btn-text:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.link-terracotta {
    color: var(--color-accent);
    font-weight: 500;
    font-family: var(--font-heading);
    display: inline-block;
    margin-top: 1rem;
}

.link-terracotta:hover {
    color: var(--color-accent-dark);
    transform: translateX(4px);
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(51, 51, 51, 0.05);
    transition: var(--transition);
}

/* Chrome zoom artifact fix: a physical block that covers the negative space above the viewport */
.navbar::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background-color: inherit;
}


.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.logo span {
    font-weight: 300;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero-moment {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 2.5rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--color-accent);
}

.hero h1 em {
    font-style: italic;
    color: var(--color-primary-dark);
}


.hero {
    padding-top: 8rem; /* Account for navbar */
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(138, 154, 134, 0.15); /* Light Sage */
    color: var(--color-primary-dark);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    background-color: var(--color-bg-light);
    border-radius: 200px 200px 16px 16px; /* Arch shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.05);
}

.decorative-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    bottom: -20px;
    right: 20px;
}

/* Problem / Solution Section */
.section-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.subtitle {
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background-color: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.terracotta-bg { background-color: var(--color-accent); }
.green-bg { background-color: var(--color-primary); }

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Logos Section */
.logos-section {
    padding: 4rem 0;
}

.subtitle-small {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.logos-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    opacity: 0.6;
}

.logo-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--color-bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.service-card:nth-child(2) {
    border-top-color: var(--color-accent);
}

.service-duration {
    display: inline-block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-content {
    flex: 2;
}

.cta-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Footer */
.footer {
    background-color: var(--color-text-main);
    color: #FFFFFF;
    padding: 5rem 0 2rem 0;
}

.footer .logo {
    color: #FFFFFF;
}

.footer .logo span {
    color: var(--color-primary);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .footer-social a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--color-primary);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-action {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-links, .navbar .btn-outline {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* --- INTEGRATED COMPONENTS (from v1.1) --- */

.eyebrow { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.eyebrow::before { content: ''; display: inline-block; width: 30px; height: 2px; background: var(--color-accent); flex-shrink: 0; }
.eyebrow-light { color: rgba(255,255,255,0.6); }
.eyebrow-light::before { background: rgba(255,255,255,0.4); }

.lead { font-size: 1.1rem; color: var(--color-text-muted); font-weight: 400; line-height: 1.8; margin-bottom: 2rem; }

/* TENSIONS */
.tensions-top { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.tensions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.tension-card { background: var(--color-bg-light); padding: 2.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border-top: 4px solid var(--color-primary); }
.tension-card:nth-child(even) { border-top-color: var(--color-accent); }
.tc-voice { font-family: var(--font-heading); font-size: 1.2rem; font-style: italic; color: var(--color-text-main); line-height: 1.5; margin-bottom: 1.5rem; }
.tc-copy { font-size: 1rem; color: var(--color-text-muted); line-height: 1.7; }
.tc-body {
    max-height: 3.4em; /* ~2 lines at 1.7 line-height */
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}
.about-collapsible .tc-body {
    max-height: 4.4em; /* slightly taller for .who-body text */
}
.tc-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5em;
    background: linear-gradient(transparent, var(--color-bg-light));
    pointer-events: none;
    transition: opacity 0.3s;
}
.tension-card.expanded .tc-body, .about-collapsible.expanded .tc-body {
    max-height: 500px;
}
.tension-card.expanded .tc-body::after, .about-collapsible.expanded .tc-body::after {
    opacity: 0;
}
.tc-toggle {
    background: none;
    border: none;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding: 0;
    margin-top: 0.75rem;
    display: inline-block;
    transition: color 0.2s;
}
.tc-toggle:hover { color: var(--color-primary); }
.tc-toggle-less { display: none; }
.tension-card.expanded .tc-toggle-more, .about-collapsible.expanded .tc-toggle-more { display: none; }
.tension-card.expanded .tc-toggle-less, .about-collapsible.expanded .tc-toggle-less { display: inline; }
/* Collapsible Global About section */
.about-global-collapsible .tc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}
.about-global-collapsible .tc-body::after {
    display: none; /* No gradient fade needed for a hard text break */
}
.about-global-collapsible.expanded .tc-body {
    max-height: 1500px; /* Large enough to hold all inner content */
}
.about-global-collapsible .tc-toggle-less { display: none; }
.about-global-collapsible .tc-toggle-more { display: inline; }
.about-global-collapsible.expanded .tc-toggle-more { display: none; }
.about-global-collapsible.expanded .tc-toggle-less { display: inline; }
.about-global-collapsible.expanded .ag-dots { display: none; }

/* Collapsible wb-meta (programs tab) */
.wb-meta-collapsible .tc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.wb-meta-collapsible .tc-body::after {
    display: none;
}
.wb-meta-collapsible.expanded .tc-body {
    max-height: 500px;
}
.wb-meta-collapsible .tc-toggle-less { display: none; }
.wb-meta-collapsible .tc-toggle-more { display: inline; }
.wb-meta-collapsible.expanded .tc-toggle-more { display: none; }
.wb-meta-collapsible.expanded .tc-toggle-less { display: inline; }
.wb-meta.wb-meta-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    align-self: stretch;
}
.wb-meta.wb-meta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.wb-inline-meta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}
.tc-ref { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 1rem; display: block; opacity: 0.7; }

/* REFRAME */
.reframe { background: var(--color-primary); padding: 6rem 0; color: white; border-radius: var(--radius-lg); margin-top: 2rem;}
.reframe-inner { max-width: 800px; margin: 0 auto; padding: 0 2rem;}
.reframe-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 600; color: white; line-height: 1.2; margin-bottom: 1.5rem; }
.reframe-body { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.8; margin-bottom: 1.5rem; }
.reframe-cta { margin-top: 3rem; display: flex; gap: 1.5rem; }
.reframe-cta .btn-outline { border-color: white; color: white; }
.reframe-cta .btn-outline:hover { background: white; color: var(--color-primary); }

/* APPROACH / MODES */
.what-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.scene-block { background: var(--color-bg-main); padding: 2.5rem; border-radius: var(--radius-md); margin-top: 2rem; box-shadow: var(--shadow-sm); }
.scene-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; }
.scene-text { font-family: var(--font-heading); font-size: 1.1rem; font-style: italic; color: var(--color-text-main); line-height: 1.6; }
.mode-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.mode { padding: 1.5rem; background: var(--color-bg-light); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); display: flex; gap: 1.5rem; align-items: flex-start; border-left: 4px solid var(--color-primary); }
.mode:nth-child(2) { border-left-color: var(--color-accent); }
.mode:nth-child(3) { border-left-color: var(--color-text-main); }
.mode-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--color-bg-main); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); }
.mode:nth-child(2) .mode-icon { color: var(--color-accent); }
.mode:nth-child(3) .mode-icon { color: var(--color-text-main); }
.mode-title { font-size: 1.2rem; font-weight: 600; color: var(--color-text-main); margin-bottom: 0.5rem; }
.mode-copy { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.6; }
.mode-when { font-size: 0.85rem; color: var(--color-primary-dark); font-weight: 500; margin-top: 0.75rem; }
.mode-when::before { content: 'When: '; font-weight: 700; }

/* TABBED WORK */
.work-top { margin-bottom: 3rem; }
.work-unified { background: var(--color-bg-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.work-header { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(0,0,0,0.05); }
.work-tab, .prog-tab { padding: 2rem; cursor: pointer; transition: var(--transition); border-right: 1px solid rgba(0,0,0,0.05); background: var(--color-bg-main); opacity: 0.7; }
.work-tab:last-child, .prog-tab:last-child { border-right: none; }
.work-tab.active, .prog-tab.active { background: var(--color-bg-light); opacity: 1; border-bottom: 3px solid var(--color-accent); }
.work-tab:hover:not(.active), .prog-tab:hover:not(.active) { opacity: 0.9; }
.work-tab-tag { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; color: var(--color-primary); }
.work-tab:nth-child(2) .work-tab-tag, .prog-tab:nth-child(2) .work-tab-tag { color: var(--color-accent); }
.work-tab:nth-child(3) .work-tab-tag { color: var(--color-text-muted); }
.work-tab h3, .prog-tab h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.work-body, .prog-body { display: none; padding: 4rem; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.work-body.active, .prog-body.active { display: grid; }
.wb-copy p { margin-bottom: 1rem; }
.wb-voice { font-family: var(--font-heading); font-size: 1.1rem; font-style: italic; border-left: 3px solid var(--color-accent); padding-left: 1.5rem; margin: 2rem 0; color: var(--color-text-main); }
.wb-meta { background: var(--color-bg-main); padding: 2rem; border-radius: var(--radius-md); align-self: start; }
.wb-meta-row { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.wb-meta-row:last-child { border-bottom: none; }
.wb-meta-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); font-weight: 600; }
.wb-meta-val { font-size: 0.95rem; font-weight: 500; text-align: right; }

/* PROGRAMS */
.programs-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3rem; }
.prog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.prog { background: var(--color-bg-light); padding: 3rem; border-radius: var(--radius-lg); position: relative; box-shadow: var(--shadow-sm); transition: var(--transition); border-top: 4px solid transparent; }
.prog:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-top-color: var(--color-primary); }
.prog-badge { position: absolute; top: 2rem; right: 2rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(138, 154, 134, 0.15); color: var(--color-primary-dark); padding: 0.3rem 0.8rem; border-radius: var(--radius-pill); font-weight: 600; }
.prog-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 1rem; font-weight: 600; }
.prog-meta { display: flex; gap: 2rem; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.pm-label { font-size: 0.75rem; text-transform: uppercase; color: var(--color-text-muted); display: block; margin-bottom: 0.3rem; }
.pm-val { font-size: 0.95rem; font-weight: 500; color: var(--color-text-main); }
.prog-link { display: inline-block; margin-top: 2rem; font-weight: 600; color: var(--color-accent); font-family: var(--font-heading); }
.prog-link:hover { color: var(--color-accent-dark); transform: translateX(4px); }

/* VOICES */
.testi-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.tc2 { background: var(--color-bg-light); padding: 3rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); position: relative; }
.tc2-quote { font-family: var(--font-heading); font-size: 1.1rem; font-style: italic; line-height: 1.6; margin-bottom: 2rem; color: var(--color-text-main); position: relative; z-index: 2; }
.tc2::before { content: '"'; position: absolute; top: 1rem; left: 1.5rem; font-size: 6rem; color: var(--color-bg-main); font-family: var(--font-heading); line-height: 1; z-index: 1; }
.tc2-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 1.5rem; }
.tc2-init { width: 45px; height: 45px; border-radius: 50%; background: var(--color-primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-heading); }
.tc2-name { font-weight: 600; color: var(--color-text-main); display: block; }
.tc2-role { font-size: 0.85rem; color: var(--color-text-muted); display: block; }

/* START HERE */
.start { background: var(--color-bg-light); padding: 6rem 0; }
.start-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius-md); overflow: hidden; margin-top: 2rem; }
.sc { padding: 3rem; border-right: 1px solid rgba(0,0,0,0.05); background: var(--color-bg-light); }
.sc:last-child { border-right: none; }
.sc-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 300; color: var(--color-primary-dark); opacity: 0.5; line-height: 1; margin-bottom: 1.5rem; }
.sc h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; line-height: 1.4; margin-bottom: 1rem; color: var(--color-text-main); }
.sc p { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 2rem; }
.sc-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; text-decoration: none; transition: var(--transition); }
.sc-link::after { content: '→'; font-size: 1.1em; transition: var(--transition); }
.sc-link:hover { color: var(--color-accent-dark); }
.sc-link:hover::after { transform: translateX(4px); }

/* RESPONSIVE ADDITIONS */
@media (max-width: 992px) {
    .tensions-top, .what-inner, .work-body, .programs-top, .testi-top { grid-template-columns: 1fr; gap: 2rem; }
    .tensions-grid, .prog-grid, .testi-grid { grid-template-columns: 1fr; }
    .work-header { grid-template-columns: 1fr; }
    .work-tab { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .start-grid { grid-template-columns: 1fr; }
    .sc { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 2rem; }
    .sc:last-child { border-bottom: none; }
}

/* ABOUT / WHO I AM */
.hero-content-full { max-width: 700px; }

/* Scroll offset for all anchored sections — accounts for sticky navbar */
section[id], header[id] {
    scroll-margin-top: 75px;
}


.who-inner { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-template-areas: 
        "head photo"
        "text photo";
    gap: 0 5rem; 
    align-items: start; 
}
.who-headline { grid-area: head; }
.who-text { grid-area: text; }
.who-photo { grid-area: photo; position: sticky; top: 100px; }

@media (max-width: 992px) {
    .who-inner { 
        grid-template-columns: 1fr; 
        grid-template-areas: 
            "head"
            "photo"
            "text";
        gap: 2rem; 
    }
    .who-photo { position: static; }
    .who-photo img { max-height: 400px; }
}
.who-body { font-size: 1rem; color: var(--color-text-muted); line-height: 1.85; margin-bottom: 1.2rem; }
.who-body strong { color: var(--color-text-main); font-weight: 600; }
.who-frameworks { margin-top: 2rem; }
.fw-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; }
.fw-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.fw-tag { font-size: 0.9rem; padding: 6px 14px; border: 1px solid rgba(0,0,0,0.1); color: var(--color-text-muted); border-radius: var(--radius-sm); background: var(--color-bg-main); }
.field-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.field-tag { font-size: 0.8rem; padding: 4px 12px; background: rgba(138, 154, 134, 0.15); color: var(--color-primary-dark); border-radius: var(--radius-pill); font-weight: 500; }

