:root {
    --primary-dark: #1C3F3A;
    --light-green: #E0EAE8;
    --beige: #EBE8D8;
    --navy-black: #0A0C29;
    --white: #FFFFFF;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
}

@view-transition {
    navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.45s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

::view-transition-old(services-content) {
    animation-name: fade-out;
}
::view-transition-new(services-content) {
    animation-name: fade-in;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

.hero-title { view-transition-name: hero-title; }
.page-hero h1 { view-transition-name: hero-title; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--navy-black);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.bg-gray {
    background-color: #F8F9FA;
}

h1, h2, h3, h4 { color: var(--navy-black); font-weight: 600; letter-spacing: -0.02em; }

.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    view-transition-name: site-header;
}

.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 40px; }
.logo-text { font-size: 1.5rem; font-weight: 600; color: var(--navy-black); }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
    background: #F0F2F1;
    padding: 6px;
    border-radius: 100px;
}
.main-nav a {
    text-decoration: none;
    color: var(--navy-black);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 100px;
    transition: background 0.25s ease, color 0.25s ease;
}
.main-nav a:hover { background: rgba(28,63,58,0.08); color: var(--primary-dark); }
.main-nav a.active { background: var(--primary-dark); color: var(--white); }
.contact-btn { background-color: var(--primary-dark); color: var(--white) !important; padding: 8px 20px; border-radius: 100px; }
.contact-btn:hover { background-color: var(--navy-black) !important; color: var(--white) !important; }

.header-social {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid #DDE0DF;
}
.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--navy-black);
    transition: background 0.25s ease, color 0.25s ease;
}
.header-social a:hover { background: var(--primary-dark); color: var(--white); }

.hero { padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 24px; }
.hero-text h1 i { font-weight: 400; font-family: Georgia, serif; color: var(--primary-dark); }
.hero-text p { font-size: 1.1rem; color: #555; margin-bottom: 40px; max-width: 480px; }

.btn-primary {
    display: inline-block; background-color: var(--primary-dark); color: var(--white);
    padding: 16px 32px; border-radius: 100px; text-decoration: none; font-weight: 500;
    border: none; cursor: pointer; transition: background 0.3s ease, transform 0.2s ease; font-size: 1rem;
}
.btn-primary:hover { background-color: var(--navy-black); transform: translateY(-2px); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--primary-dark);
    padding: 16px 32px; border-radius: 100px; text-decoration: none; font-weight: 500;
    border: 2px solid var(--primary-dark); cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease; font-size: 1rem;
}
.btn-secondary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btns .btn-primary, .hero-btns .btn-secondary { display: inline-flex; align-items: center; gap: 8px; }

.hero-visuals { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.visual-card {
    border-radius: var(--radius-lg); padding: 30px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
    background-size: cover; background-position: center;
}
.visual-overlay {
    position: absolute; inset: 0;
    background: rgba(28,63,58,0.55);
    border-radius: inherit;
}
.vc-1 {
    grid-column: 1 / 2; grid-row: 1 / 2; min-height: 200px;
    background-color: var(--light-green);
}
.vc-1 .visual-overlay { background: rgba(224,234,232,0.15); }
.vc-2 {
    grid-column: 2 / 3; grid-row: 1 / 2; border-top-right-radius: 100px;
    background-color: var(--beige);
}
.vc-2 .visual-overlay { background: rgba(28,63,58,0.45); }
.vc-3 {
    grid-column: 1 / 2; grid-row: 2 / 3;
    background-color: var(--light-green);
}
.vc-3 .visual-overlay { background: rgba(224,234,232,0.25); }
.vc-4 {
    color: var(--white); grid-column: 2 / 3; grid-row: 2 / 3;
    border-bottom-right-radius: 100px;
    background-color: var(--primary-dark);
}
.vc-4 .visual-overlay { background: rgba(28,63,58,0.4); }
.vc-4 h3 { color: var(--white); position: relative; z-index: 1; }

section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary-dark); margin-bottom: 16px; font-weight: 600; }
.section-header h2 { font-size: 3rem; max-width: 700px; margin: 0 auto 20px auto; }
.section-header p { color: #666; max-width: 600px; margin: 0 auto; }

.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; }
.about-card-dark { background-color: var(--primary-dark); color: var(--white); border-radius: var(--radius-lg); padding: 50px; }
.about-card-dark h3 { color: var(--white); font-size: 2rem; margin-bottom: 30px; }
.about-card-light { background-color: var(--light-green); border-radius: var(--radius-lg); padding: 50px; }
.about-card-light h3 { font-size: 2rem; margin-bottom: 20px; }
.competency-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px;}
.competency-list li { background: var(--white); padding: 15px 20px; border-radius: 100px; font-size: 0.95rem; font-weight: 500; text-align: center;}

/* Team Section */
.team-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}
.team-header-split h2 {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--navy-black);
}
.team-header-split h2 i {
    font-family: Georgia, serif;
    font-weight: 400;
    color: var(--primary-dark);
}
.team-header-split p {
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-left: auto;
}

/* Carousel */
.carousel-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}
.carousel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #DDE0DF;
    background: var(--white);
    color: var(--navy-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.carousel-arrow:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: var(--white);
}
.carousel-track {
    display: flex;
    gap: 16px;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.carousel-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px 24px 24px;
    text-align: center;
    border: 1px solid #EDEDED;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 200px;
}
.carousel-card.active {
    flex: 0 0 240px;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(28,63,58,0.2);
}
.carousel-card.active h4,
.carousel-card.active .carousel-role { color: var(--white); }
.carousel-card:not(.active) {
    transform: scale(0.88);
    opacity: 0.55;
}
.carousel-card:not(.active):hover {
    opacity: 0.8;
    transform: scale(0.9);
}
.carousel-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px auto;
    background: var(--light-green);
    border: 3px solid rgba(255,255,255,0.2);
}
.carousel-card.active .carousel-photo {
    border-color: rgba(255,255,255,0.5);
}
.carousel-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--navy-black);
}
.carousel-role {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Drawer */
.carousel-drawer {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px 40px;
    background: var(--primary-dark);
    border-radius: 18px;
    margin: 0 auto;
    width: fit-content;
    min-width: 500px;
    box-shadow: 0 12px 30px rgba(28,63,58,0.15);
}
.drawer-item {
    text-align: center;
}
.drawer-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}
.drawer-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

/* Team CTA */
.team-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #EDEDED;
    gap: 40px;
}
.team-cta-text h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--navy-black);
}
.team-cta-text h3 i {
    font-family: Georgia, serif;
    font-weight: 400;
    color: var(--primary-dark);
}
.team-cta-text p {
    color: #888;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 520px;
}
.team-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pull-request-container { text-align: center; }
.services-content { margin-top: 40px; text-align: left; view-transition-name: services-content; }
.services-content.hidden { display: none; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

/* News & Events */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: start;
}
.news-left h2 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy-black);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.news-left p {
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 360px;
}
.news-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-black);
    position: relative;
    transition: opacity 0.25s;
}
.news-cta:hover { opacity: 0.75; }
.news-cta-glow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(232,89,12,0.4) 0%, rgba(232,89,12,0.08) 50%, transparent 72%);
    display: inline-block;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}
.news-cta:hover .news-cta-glow {
    transform: scale(1.25);
}

.news-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.news-card {
    background: #F8F8F8;
    border-radius: var(--radius-md);
    padding: 26px 30px;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.news-card:hover {
    background: #F0F0F0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.news-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.news-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #D95A2B;
    transition: color 0.25s ease;
}
.news-card:hover .news-category {
    color: #E8590C;
}
.news-date {
    font-size: 0.7rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}
.news-arrow {
    margin-left: auto;
    color: #ccc;
    font-size: 0.75rem;
    transition: color 0.25s ease, transform 0.25s ease;
}
.news-card:hover .news-arrow {
    color: #E8590C;
    transform: translate(3px, -3px);
}
.news-card h4 {
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--navy-black);
    font-weight: 600;
    max-width: 520px;
}

/* Blogs & Insights */
.blog-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px auto;
}
.blog-intro h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--navy-black);
    margin-bottom: 16px;
    font-weight: 400;
}
.blog-intro p {
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}
.blog-featured-image {
    min-height: 340px;
    overflow: hidden;
}
.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-featured-body {
    background: #DCE8E0;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #1C3F3A;
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    align-self: flex-start;
}
.blog-featured-body h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.6rem;
    line-height: 1.35;
    font-weight: 400;
    color: var(--navy-black);
    margin-bottom: 16px;
}
.blog-featured-body p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    flex: 1;
}
.blog-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.blog-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.blog-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.blog-author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-black);
}
.blog-author-read {
    font-size: 0.78rem;
    color: #888;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #1C3F3A;
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
}
.blog-card h4 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--navy-black);
    padding: 20px 22px 24px 22px;
}

.utilities-header { margin-bottom: 40px; text-align: center;}
.utilities-header h2 { font-size: 3rem; }
.utilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.utility-card { background-color: var(--white); border: 1px solid #E5E5E5; border-radius: var(--radius-lg); padding: 40px; transition: box-shadow 0.3s; }
.utility-icon { width: 48px; height: 48px; background-color: var(--light-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--primary-dark); }
.utility-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.utility-card p { color: #666; }

.bg-cream { background-color: #F8F6F0; }

.faq-header {
    margin-bottom: 50px;
}
.faq-header h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--navy-black);
}
.faq-header h2 i {
    font-family: Georgia, serif;
    font-weight: 400;
    color: var(--primary-dark);
}
.faq-list {
    display: flex;
    flex-direction: column;
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(28,63,58,0.12);
}
.faq-question {
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-black);
    transition: color 0.2s ease;
    gap: 24px;
}
.faq-question:hover { color: var(--primary-dark); }
.faq-question span:last-child {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-dark);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    line-height: 1;
}
.faq-answer {
    padding: 0 0 26px 0;
    color: #666;
    display: none;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 780px;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { color: var(--primary-dark); }

/* Brand Guide */
.brand-guide-card {
    background: #F5F3EE;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.brand-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.brand-guide-header span:last-child {
    opacity: 0.7;
    font-weight: 400;
}
.brand-guide-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px 48px 40px 48px;
}
.brand-col h3 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #aaa;
    margin-bottom: 16px;
}
.brand-font-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.font-weights {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}
.font-weights span {
    font-size: 0.85rem;
    color: #666;
}
.font-weights span:nth-child(1) { font-weight: 700; }
.font-weights span:nth-child(2) { font-weight: 600; }
.font-weights span:nth-child(3) { font-weight: 500; }
.font-weights span:nth-child(4) { font-weight: 400; }
.alphabet {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    line-height: 1.8;
    max-width: 380px;
}
.alphabet span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    width: 42px;
    text-align: left;
}
.color-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.color-swatch {
    text-align: center;
}
.swatch-block {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    margin-bottom: 10px;
}
.color-swatch span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: 0.02em;
    font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
}
.brand-guide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.brand-guide-footer span:last-child {
    opacity: 0.6;
    font-weight: 300;
}

.bottom-cta { background-color: var(--primary-dark); border-radius: var(--radius-lg); padding: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; color: var(--white); }
.bottom-cta h2 { color: var(--white); font-size: 3.5rem; margin-bottom: 24px; line-height: 1.1; }
.bottom-cta h2 i { font-family: Georgia, serif; font-weight: 400; }
.bottom-cta p { opacity: 0.9; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; border-radius: 8px; border: none; font-family: var(--font-main); font-size: 1rem; transition: box-shadow 0.2s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; box-shadow: 0 0 0 3px rgba(28,63,58,0.15); }
.contact-form textarea { resize: vertical; }

.btn-light { display: inline-block; background-color: var(--white); color: var(--primary-dark); padding: 16px 32px; border-radius: 100px; text-decoration: none; font-weight: 600; transition: background 0.3s ease, transform 0.2s ease; }
.btn-light:hover { background-color: var(--beige); transform: translateY(-1px); }

.site-footer {
    background: #F5F3EE;
    color: var(--primary-dark);
    padding: 70px 0 0 0;
    border-top: 1px solid rgba(28,63,58,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.8fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(28,63,58,0.1);
}
.footer-col h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    color: var(--primary-dark);
    opacity: 0.6;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-brand { text-align: right; }
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.footer-address {
    margin-top: 16px;
    font-size: 0.82rem;
    opacity: 0.6;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.footer-address svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.8rem;
    opacity: 0.5;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer-bottom-links a:hover { opacity: 1; }
.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 30px 0;
    font-size: 0.82rem;
    border-top: 1px solid rgba(28,63,58,0.08);
    margin-top: 0;
    opacity: 0.55;
}
.footer-credits a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}
.footer-credits a:hover { opacity: 1; text-decoration: underline; }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #C5C6D0;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    width: 100%;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Due Date Banner */
.due-date-banner {
    background: linear-gradient(135deg, rgba(28,63,58,1) 0%, rgba(10,12,41,1) 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(10,12,41,0.15);
}
.due-date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.due-date-item h3 {
    font-size: 3rem;
    color: var(--beige);
    line-height: 1;
    margin-bottom: 10px;
}
.due-date-item p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Services Pull Toggle */
.services-toggle {
    text-align: center;
    margin-bottom: 40px;
}
.services-toggle .btn-primary {
    min-width: 280px;
}

/* Enhanced Service Cards */
.service-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}
.service-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Last Update Badge */
.last-update {
    font-size: 0.85rem;
    color: #999;
}

/* Page Hero (subpages) */
.page-hero {
    padding: 60px 0 40px 0;
    background: #F8F9FA;
}
.page-hero .section-header { margin-bottom: 0; }

/* Due Dates Tables */
.due-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid #E5E5E5;
    background: var(--white);
}
.due-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.due-table thead {
    background: var(--primary-dark);
    color: var(--white);
}
.due-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.due-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #F0F0F0;
    color: #555;
}
.due-table tbody tr:hover { background: #FAFBFA; }
.due-table tbody tr:last-child td { border-bottom: none; }
.dd-highlight {
    color: var(--primary-dark);
    font-weight: 600;
    white-space: nowrap;
}
.due-disclaimer {
    margin-top: 40px;
    padding: 24px 28px;
    background: #FFFDF5;
    border-left: 4px solid var(--primary-dark);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}
.due-disclaimer strong { color: var(--navy-black); }

/* Focus & Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .faq-section, .bottom-cta { grid-template-columns: 1fr; }
    .utilities-grid, .news-grid { grid-template-columns: 1fr; }
    .news-card.featured { grid-row: auto; }
    .team-header-split { grid-template-columns: 1fr; gap: 12px; }
    .team-header-split p { margin-left: 0; }
    .carousel-wrap { flex-direction: column; }
    .carousel-track { flex-wrap: wrap; justify-content: center; }
    .carousel-card { flex: 0 0 160px; }
    .carousel-card.active { flex: 0 0 200px; }
    .carousel-card:not(.active) { transform: scale(1); opacity: 0.7; }
    .carousel-drawer { min-width: 0; width: 100%; gap: 24px; padding: 20px 24px; flex-wrap: wrap; }
    .team-cta { flex-direction: column; text-align: center; }
    .team-cta-text p { max-width: 100%; }
    .news-layout { grid-template-columns: 1fr; gap: 40px; }
    .news-left h2 { font-size: 2.6rem; }
    .news-left p { max-width: 100%; margin-bottom: 32px; }
    .brand-guide-body { grid-template-columns: 1fr; gap: 36px; padding: 32px 28px; }
    .brand-font-name { font-size: 1.8rem; }
    .blog-intro h2 { font-size: 2rem; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-body { padding: 32px 28px; }
    .blog-featured-body h3 { font-size: 1.3rem; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; text-align: left; }
    .footer-address { justify-content: flex-start; }
    .header-social { display: none; }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .main-nav ul { display: none; }
    .hero-text h1 { font-size: 2.4rem; }
    .section-header h2 { font-size: 2rem; }
    .team-header-split h2 { font-size: 2.2rem; }
    .carousel-card { flex: 0 0 140px; padding: 20px 16px; }
    .carousel-card.active { flex: 0 0 180px; }
    .carousel-photo { width: 68px; height: 68px; }
    .carousel-drawer { flex-direction: column; gap: 16px; align-items: center; }
    .team-cta-text h3 { font-size: 1.6rem; }
    .bottom-cta { padding: 40px 24px; }
    .bottom-cta h2 { font-size: 2.4rem; }
    .competency-list { grid-template-columns: 1fr; }
    .due-date-banner { padding: 40px 20px; }
    .news-left h2 { font-size: 2rem; }
    .news-card { padding: 20px 22px; }
    .news-card h4 { font-size: 0.95rem; }
    .blog-intro h2 { font-size: 1.7rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-image { height: 180px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .footer-brand { grid-column: 1 / -1; text-align: left; }
    .footer-address { justify-content: flex-start; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .footer-credits { flex-direction: column; gap: 8px; text-align: center; }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .hero-text h1 { font-size: 2rem; }
    .hero-visuals { grid-template-columns: 1fr; }
    .vc-1, .vc-2, .vc-3, .vc-4 { grid-column: 1; }
    .vc-2 { border-top-right-radius: var(--radius-lg); }
    .vc-4 { border-bottom-right-radius: var(--radius-lg); }
    section { padding: 60px 0; }
}
