/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

:root {
    /* Brand Colors */
    --ink: #0D0D0C;
    --slate: #1A2B3C;
    --verdigris: #2A6457;
    --verd-lite: #4AAD98;
    --fog: #F5F4F1;
    --bone: #EBE9E4;
    --warm-mid: #8C887F;
    --white: #FFFFFF;
    --rule: rgba(13, 13, 12, 0.08);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    --gap-sm: 24px;
    --gap-md: 48px;
    --gap-lg: 72px;
    --gap-xl: 96px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--gap-md);
}

/* ========================================
   EYEBROW
   ======================================== */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verdigris);
}

.eyebrow-line {
    width: 22px;
    height: 1px;
    background-color: var(--verdigris);
}

.eyebrow-light {
    color: var(--verd-lite);
}

.eyebrow-light .eyebrow-line {
    background-color: var(--verd-lite);
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid rgba(13, 13, 12, 0.10);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(13, 13, 12, 0.06);
}

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

/* Logo Lockup */
.logo-lockup {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    position: relative;
}

.logo-accent-bar {
    width: 24px;
    height: 1.5px;
    background-color: var(--verdigris);
    margin-bottom: 6px;
}

.logo-wordmark {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ink);
}

.logo-rule {
    width: 100%;
    height: 1px;
    background-color: var(--ink);
    opacity: 0.15;
}

.logo-corporation {
    font-family: var(--font-mono);
    font-size: 7.5px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.45;
}

/* Footer Logo Variant */
.logo-lockup-footer .logo-accent-bar {
    background-color: var(--verd-lite);
}

.logo-lockup-footer .logo-wordmark,
.logo-lockup-footer .logo-corporation {
    color: var(--white);
}

.logo-lockup-footer .logo-rule {
    background-color: var(--white);
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--ink);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

/* Investor Portal Button */
.nav-portal-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 26px;
    background-color: var(--slate);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-portal-btn:hover {
    background-color: var(--verdigris);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--ink);
    transition: all 0.3s ease;
}

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

.hero {
    background-color: var(--white);
    padding: calc(80px + var(--section-padding)) 0 var(--section-padding);
    position: relative;
    overflow: hidden;
}

.hero-circles {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 0;
}

.hero-circles::before,
.hero-circles::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(13, 13, 12, 0.08);
}

.hero-circles::before {
    width: 300px;
    height: 300px;
}

.hero-circles::after {
    width: 400px;
    height: 400px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--ink);
}

.hero-em {
    font-style: italic;
    color: var(--verdigris);
}

.hero-body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 480px;
    opacity: 0.58;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-primary {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 26px;
    background-color: var(--slate);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--verdigris);
}

.btn-ghost {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: underline;
    color: var(--ink);
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.btn-ghost:hover {
    opacity: 1;
}

/* ========================================
   TENETS SECTION
   ======================================== */

.tenets {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.tenets-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--gap-xl);
}

.tenets-header {
    position: sticky;
    top: 120px;
    align-self: start;
}

.tenets-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.tenet-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(13, 13, 12, 0.08);
}

.tenet-item:last-child {
    border-bottom: none;
}

.tenet-number {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--verdigris);
    margin-bottom: 16px;
}

.tenet-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
}

.tenet-body {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink);
    opacity: 0.58;
}

/* ========================================
   BRAND STATEMENT BAR
   ======================================== */

.brand-bar {
    background-color: var(--slate);
    padding: var(--gap-lg) 0;
    border-top: 2.5px solid var(--verdigris);
    text-align: center;
}

.brand-bar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.brand-bar-wordmark {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.16em;
    color: var(--white);
}

.brand-bar-rule {
    width: 120px;
    height: 1px;
    background-color: var(--white);
    opacity: 0.2;
}

.brand-bar-mantra {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
}

.brand-bar-tagline {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.4;
}

/* ========================================
   STRATEGIES SECTION
   ======================================== */

.strategies {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.strategies-header {
    margin-bottom: var(--gap-lg);
}

.strategies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
}

.strategy-card {
    padding: 48px;
    border: 1px solid rgba(13, 13, 12, 0.10);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(13, 13, 12, 0.08);
}

.strategy-number {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--verdigris);
    margin-bottom: 20px;
}

.strategy-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 20px;
}

.strategy-body {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink);
    opacity: 0.58;
    margin-bottom: 32px;
}

.strategy-bullets {
    list-style: none;
    margin-bottom: 32px;
}

.strategy-bullets li {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--ink);
    opacity: 0.5;
    padding: 8px 0;
    border-bottom: 1px solid rgba(13, 13, 12, 0.06);
}

.strategy-bullets li:last-child {
    border-bottom: none;
}

.strategy-link {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--verdigris);
    transition: opacity 0.3s ease;
}

.strategy-link:hover {
    opacity: 0.7;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.portfolio-header {
    margin-bottom: var(--gap-lg);
}

.portfolio-group {
    margin-bottom: var(--gap-xl);
}

.portfolio-group:last-child {
    margin-bottom: 0;
}

.portfolio-group-header {
    margin-bottom: var(--gap-md);
}

/* Infrastructure Silent Placeholder */
.portfolio-placeholder-silent {
    background-color: var(--white);
    height: 240px;
    border: 1px solid rgba(13, 13, 12, 0.08);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-tile {
    background-color: var(--white);
    border: 1px solid rgba(13, 13, 12, 0.08);
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.portfolio-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(13, 13, 12, 0.08);
}

.portfolio-logo {
    background-color: var(--white);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border-bottom: 1px solid rgba(13, 13, 12, 0.08);
}

.portfolio-name-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--ink);
    opacity: 0.35;
    text-align: center;
}

.portfolio-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--ink);
    padding: 16px 20px 8px;
}

.portfolio-year {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--verdigris);
    opacity: 0.7;
    padding: 0 20px 16px;
}

/* ========================================
   MERIDIAN SECTION
   ======================================== */

.meridian {
    background-color: var(--slate);
    padding: var(--section-padding) 0;
    position: relative;
    border-top: 2.5px solid var(--verdigris);
}

.meridian-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.meridian-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--verdigris);
    z-index: 1;
}

.meridian > .container {
    position: relative;
    z-index: 2;
}

.meridian-header {
    margin-bottom: var(--gap-lg);
}

.meridian-title {
    color: var(--white);
}

.meridian-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.55;
    max-width: 720px;
    margin-top: 24px;
}

.meridian-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
    margin-bottom: var(--gap-lg);
}

.meridian-feature {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.meridian-feature-number {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--verd-lite);
    margin-bottom: 16px;
}

.meridian-feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.meridian-feature-body {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.42;
}

.meridian-verticals {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--gap-lg);
}

.meridian-vertical-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    opacity: 0.65;
}

.meridian-quote {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.55;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: var(--gap-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================
   LEADERSHIP SECTION
   ======================================== */

.leadership {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.leadership-header {
    margin-bottom: var(--gap-xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-lg);
}

.team-member {
    display: flex;
    flex-direction: column;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: var(--white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(13, 13, 12, 0.08);
}

.team-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-photo-placeholder {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--ink);
    opacity: 0.15;
}

.team-info {
    margin-bottom: 16px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 8px;
}

.team-title {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-mid);
    margin-bottom: 16px;
}

.team-bio-toggle {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--verdigris);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.team-bio-toggle:hover {
    opacity: 0.7;
}

.team-bio-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.team-bio-content.active {
    max-height: 2000px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
}

.team-bio-content p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink);
    opacity: 0.65;
    margin-bottom: 16px;
}

.team-bio-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   INSIGHTS SECTION
   ======================================== */

.insights {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.insights-header {
    margin-bottom: var(--gap-lg);
}

.insights-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.58;
    max-width: 600px;
}

.insights-list {
    display: flex;
    flex-direction: column;
}

.insight-item {
    display: grid;
    grid-template-columns: 200px 1fr 40px;
    gap: 48px;
    align-items: start;
    padding: 40px 0;
    border-top: 1px solid var(--rule);
    text-decoration: none;
    transition: all 0.3s ease;
}

.insight-item:first-child {
    border-top: none;
}

.insight-item:hover {
    transform: translateX(4px);
}

.insight-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.insight-source {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-mid);
}

.insight-type {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--verdigris);
}

.insight-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--ink);
}

.insight-description {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink);
    opacity: 0.58;
}

.insight-link {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--verdigris);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.insight-item:hover .insight-link {
    transform: translateX(4px);
}

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

.footer {
    background-color: var(--ink);
    padding: var(--gap-xl) 0 var(--gap-md);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap-md);
    padding-bottom: var(--gap-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-mantra {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    opacity: 0.35;
    margin-top: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--white);
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-legal {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: var(--white);
    opacity: 0.2;
}

.footer-bottom {
    padding-top: var(--gap-sm);
}

.footer-copyright {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--white);
    opacity: 0.18;
    text-align: center;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

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

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

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

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --gap-xl: 64px;
        --gap-lg: 48px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-container {
        padding: 20px 24px;
    }

    .tenets-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }

    .hero-headline {
        font-size: 48px;
    }

    .hero-circles {
        width: 350px;
        height: 350px;
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .meridian-features {
        grid-template-columns: 1fr;
    }

    .insight-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        background-color: var(--white);
        border-bottom: 1px solid rgba(13, 13, 12, 0.10);
        padding: 0;
        gap: 0;
        transition: height 0.3s ease;
    }

    .nav-links.active {
        height: auto;
        padding: 24px;
    }

    .nav-links a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(13, 13, 12, 0.08);
    }

    .nav-portal-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding: calc(80px + 60px) 0 60px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .meridian-verticals {
        flex-direction: column;
    }
}

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