/* ============================================
   SAHRA MALIN — Personal Brand Website
   Mobile-first responsive design
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --coral: #FF6B5A;
    --coral-hover: #e55a4a;
    --deep-teal: #0A4D4E;
    --deep-teal-light: #0d6263;
    --cream: #FFF8F3;
    --charcoal: #1A1A1A;
    --soft-gray: #E8E4DF;
    --mint: #C8E6D5;
    --accent-purple: #6B5AFF;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

a:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--deep-teal);
    color: #fff;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--deep-teal);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

em {
    font-style: italic;
    font-family: var(--font-display);
}

/* ---------- Section Utilities ---------- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-xs);
}

.section-label--light {
    color: var(--mint);
}

.section-headline {
    margin-bottom: var(--space-lg);
}

.section-headline--light {
    color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    line-height: 1.4;
}

.btn:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--deep-teal);
    border-color: var(--deep-teal);
}

.btn-secondary:hover {
    background: var(--deep-teal);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--coral);
    border-color: var(--coral);
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
}

.btn-outline:hover {
    background: var(--coral);
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 248, 243, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 228, 223, 0.6);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--deep-teal);
    letter-spacing: -0.02em;
}

.nav-logo:hover {
    color: var(--coral);
}

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--deep-teal);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-links {
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    padding: 6rem var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: right var(--transition-slow);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.nav-links.open {
    right: 0;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--charcoal);
    padding: var(--space-xs) 0;
    display: block;
    border-bottom: 1px solid var(--soft-gray);
}

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

.nav-cta {
    background: var(--coral) !important;
    color: #fff !important;
    border-radius: var(--radius-pill) !important;
    padding: 0.55rem 1.2rem !important;
    text-align: center;
    margin-top: var(--space-sm);
    border: none !important;
    white-space: nowrap;
    font-size: 0.85rem !important;
}

.nav-cta:hover {
    background: var(--coral-hover) !important;
}

/* Nav overlay for mobile */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.nav-overlay.visible {
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: 5rem;
    background: var(--cream);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md) var(--space-md);
}

.hero-headline {
    margin-bottom: var(--space-md);
}

.hero-headline em {
    color: var(--coral);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    max-width: 540px;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 0.6rem;
}

.btn-hero {
    padding: 0.7rem 1.4rem;
    font-size: 0.88rem;
}

/* Hero Image Banner — full width bleed */
.hero-image-banner {
    width: 100%;
    margin-top: var(--space-md);
}

.hero-image-banner .hero-image-placeholder,
.hero-image-banner img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Shared placeholder styles */
.hero-image-placeholder,
.venture-image-placeholder {
    width: 100%;
    background: linear-gradient(135deg, var(--soft-gray) 0%, #d6d1cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    padding: var(--space-md);
    line-height: 1.6;
}

.placeholder-text small {
    font-size: 0.75rem;
    color: #bbb;
}

/* Logos Bar */
.logos-bar {
    background: var(--deep-teal);
    padding: var(--space-xl) var(--space-md);
}

.logos-label {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-lg);
}

.logos-track {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md) var(--space-sm);
    align-items: center;
    justify-items: center;
}

.logo-item {
    text-align: center;
    transition: opacity var(--transition-base);
    opacity: 0.65;
    padding: 0.6rem 0;
}

.logo-item:hover {
    opacity: 1;
}

.logo-name {
    font-family: var(--font-display);
    color: #fff;
    display: inline-block;
}

/* Logo style variants — each styled to look like a distinctive wordmark */
.logo-style-bold {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.logo-style-caps {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.logo-style-script {
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

.logo-style-wide {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.logo-style-heavy {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.logo-style-lower {
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.logo-style-italic {
    font-weight: 400;
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: #fff;
}

.about-grid {
    display: grid;
    gap: var(--space-lg);
}

/* Mobile: visual first (natural HTML order), story second */
.about-visual {
    order: -1;
}

.about-story p {
    margin-bottom: var(--space-md);
    color: #444;
    font-size: 1.02rem;
}

.about-story strong {
    color: var(--deep-teal);
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    object-fit: cover;
    aspect-ratio: 1;
}

.about-highlight-card {
    background: var(--mint);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.about-highlight-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--deep-teal);
}

.about-highlight-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    gap: var(--space-md);
}

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--coral);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon-wrapper {
    background: var(--cream);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.service-icon {
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.service-description {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    background: var(--cream);
    color: var(--deep-teal);
    border-radius: var(--radius-pill);
    border: 1px solid var(--soft-gray);
}

.services-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ============================================
   VENTURES SECTION
   ============================================ */
.ventures {
    background: #fff;
}

.ventures-stack {
    display: grid;
    gap: var(--space-lg);
}

.venture-card {
    display: grid;
    gap: var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.venture-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.venture-card--inactive {
    opacity: 0.7;
    filter: grayscale(30%);
}

.venture-card--inactive:hover {
    opacity: 0.85;
    filter: grayscale(10%);
}

.venture-preview {
    position: relative;
    overflow: hidden;
}

/* Lightweight placeholder instead of iframe (avoids slow external loads) */
.venture-preview-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(145deg, var(--soft-gray) 0%, #d6d1cc 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.venture-preview-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.venture-preview-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--deep-teal);
    letter-spacing: 0.02em;
}

.venture-preview-hint {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #888;
}

.venture-image-placeholder {
    height: 250px;
}

.venture-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.venture-content {
    padding: var(--space-md) var(--space-md) var(--space-lg);
}

.venture-meta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.venture-icon {
    font-size: 1.25rem;
}

.venture-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
}

.venture-label--active {
    background: var(--mint);
    color: var(--deep-teal);
}

.venture-label--publication {
    background: #E8D5F5;
    color: #5A2D82;
}

.venture-label--inactive {
    background: var(--soft-gray);
    color: #888;
}

.venture-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.venture-description {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.venture-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.venture-investor-note {
    font-size: 0.85rem;
    color: #777;
}

.venture-investor-note a {
    color: var(--deep-teal);
    font-weight: 500;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values {
    background: var(--deep-teal);
    background-image: radial-gradient(ellipse at 30% 50%, rgba(200, 230, 213, 0.12) 0%, transparent 60%),
                      radial-gradient(ellipse at 80% 20%, rgba(255, 107, 90, 0.08) 0%, transparent 50%);
    color: #fff;
}

.values-grid {
    display: grid;
    gap: var(--space-lg);
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.value-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: var(--space-xs);
}

.value-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    background: var(--cream);
}

.blog-grid {
    display: grid;
    gap: var(--space-md);
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: block;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.blog-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--soft-gray) 0%, #d6d1cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: var(--space-md);
}

.blog-card-meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.blog-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
}

.blog-card-time {
    font-size: 0.75rem;
    color: #999;
}

.blog-card-title {
    font-size: 1.15rem;
    margin-bottom: var(--space-xs);
    color: var(--deep-teal);
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-empty {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: #888;
    font-size: 1.05rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: #fff;
}

.contact-container {
    text-align: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.contact-headline {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: var(--space-md);
}

.contact-headline em {
    color: var(--coral);
}

.contact-subtext {
    font-size: 1.1rem;
    color: #666;
    max-width: 520px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    max-width: 520px;
    margin: 0 auto var(--space-lg);
    text-align: left;
    display: grid;
    gap: var(--space-sm);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--soft-gray);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--charcoal);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 90, 0.1);
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #aaa;
}

.contact-submit {
    width: 100%;
    margin-top: var(--space-xs);
    border: none;
    cursor: pointer;
}

.contact-form-success {
    text-align: center;
    padding: var(--space-lg);
    color: var(--deep-teal);
    font-size: 1.1rem;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--deep-teal);
    transition: all var(--transition-base);
    border: 1px solid var(--soft-gray);
}

.social-link:hover {
    background: var(--deep-teal);
    color: #fff;
    border-color: var(--deep-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--deep-teal);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
    z-index: 90;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.footer-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

/* Tablet — 768px+ */
@media (min-width: 768px) {
    .section-container {
        padding: var(--space-2xl) var(--space-lg);
    }

    /* Nav */
    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        align-items: center;
        gap: var(--space-md);
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0;
        border-bottom: none;
    }

    /* Hero */
    .hero-container {
        padding: var(--space-2xl) var(--space-lg) var(--space-md);
    }

    .btn-hero {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .hero-image-banner .hero-image-placeholder,
    .hero-image-banner img {
        height: 360px;
    }

    /* Logos */
    .logos-track {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg) var(--space-md);
    }

    /* About — desktop: story left, visual right */
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-xl);
        align-items: start;
    }

    .about-visual {
        order: 1;
    }

    .about-story {
        order: 0;
    }

    .about-photo {
        height: auto;
        max-height: 420px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ventures */
    .venture-card {
        grid-template-columns: 1fr 1fr;
    }

    .venture-content {
        padding: var(--space-lg);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop — 1024px+ */
@media (min-width: 1024px) {
    .section-container {
        padding: var(--space-3xl) var(--space-lg);
    }

    /* Hero */
    .hero-container {
        padding: var(--space-3xl) var(--space-lg) var(--space-md);
    }

    .hero-image-banner .hero-image-placeholder,
    .hero-image-banner img {
        height: 440px;
    }

    .hero-image-banner {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 var(--space-lg);
    }

    .hero-image-banner .hero-image-placeholder,
    .hero-image-banner img {
        border-radius: var(--radius-lg);
    }

    /* Logos */
    .logos-track {
        grid-template-columns: repeat(7, 1fr);
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Ventures */
    .venture-preview-placeholder {
        height: 320px;
    }

    .venture-image-placeholder {
        height: 320px;
    }

    .venture-photo {
        height: 320px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop — 1400px+ */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1400px;
    }
}

/* ============================================
   BLOG POST PAGE STYLES
   ============================================ */
.post-page {
    padding-top: 6rem;
}

.post-header {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md) var(--space-md);
}

.post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--coral);
    margin-bottom: var(--space-lg);
}

.post-back:hover {
    color: var(--coral-hover);
}

.post-meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.post-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
}

.post-date,
.post-read-time {
    font-size: 0.8rem;
    color: #999;
}

.post-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.post-body {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--space-md);
}

.post-body p {
    margin-bottom: var(--space-md);
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-body h2 {
    font-size: 1.5rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.post-body h3 {
    font-size: 1.25rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.post-body ul,
.post-body ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
    color: #444;
}

.post-body li {
    margin-bottom: var(--space-xs);
}

.post-body blockquote {
    border-left: 4px solid var(--coral);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
    font-style: italic;
    color: #666;
}

.post-body img {
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.post-body code {
    background: var(--soft-gray);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.post-body pre {
    background: var(--charcoal);
    color: #e0e0e0;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: var(--space-md);
}

.post-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}
