/*
* Anotherland Custom CSS
* Ver: 2.0.0
*/

@font-face {
    font-family: 'Anotherland Sans';
    src: url('../fonts/typekit-00000000000000007735a458.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Anotherland Serif';
    src: url('../fonts/typekit-00000000000000007735a459.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-black: #0a0a0a;
    --color-dark: #1c1c1c;
    --color-ink: #101828;
    /* rgb(16, 24, 40) - Used for primary text on light */
    --color-white: #ffffff;
    --color-off-white: #DEDFE3;
    /* rgb(222, 223, 227) - Hero Subtext */
    --color-peach: #EFCFA0;
    --color-gray-500: #888888;
    --color-gray-100: #f8f8f8;

    --font-serif: source-serif-pro, sans-serif;
    --font-sans: "Work Sans", sans-serif;

    --container-width: 1320px;
    --gutter: 2rem;
    --gutter-mobile: 20px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for fixed header */
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    opacity: 1;
    /* Ensure visible */
}

/* Reveal Animations */
.item-reveal,
.service-card,
.work-card,
.section-title,
.intro-text,
.btn-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
    will-change: opacity, transform;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--gutter-mobile);
    }
}

.text-center {
    text-align: center;
}

.text-dark {
    color: var(--color-black);
}

/* --- Components --- */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: #fae1dc;
    color: var(--color-black);
    border: 1px solid #fae1dc;
}

.btn-primary:hover {
    background: #ffffff;
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--color-black);
    color: var(--color-black);
}

.btn-outline:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-rect {
    border-radius: 0;
    /* Rectangle */
    background: #fae1dc;
    /* Peach/Pink from image */
    color: var(--color-black);
    font-weight: 400;
    text-transform: none;
    font-size: 16px;
    padding: 10px 18px;
    letter-spacing: normal;
    border: 1px solid #fae1dc;
}

.btn-rect:hover {
    background: #ffffff;
    border-color: #fae1dc;
    color: var(--color-black);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 26px 32px;
    background: #000000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.brand-logo {
    width: 140px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    /* Logo is white on black header */
}

.site-navigation {
    margin-right: 3rem;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    color: #fff;
}

.nav-links a:hover {
    color: var(--color-peach);
}

.phone-link {
    font-weight: 500;
    font-size: 16px;
    color: #FBD8D3;
}

/* --- Mobile Menu --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 0;
    margin-left: auto;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding-top: 100px;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 3rem;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-links a {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
}

.mobile-contact {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.4s;
}

.mobile-menu-overlay.active .mobile-contact {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact .phone-link {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* User provided image shows a phone icon, likely can reuse or add if needed. Content just has text link for now. */

/* Menu Open State */
body.menu-open {
    overflow: hidden;
}

/* Change bar color to white when menu is open */
body.menu-open .mobile-toggle .bar {
    background-color: #ffffff;
}

/* Simple Cross Animation */
body.menu-open .mobile-toggle .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

body.menu-open .mobile-toggle .bar:nth-child(2) {
    opacity: 0;
}

body.menu-open .mobile-toggle .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {

    .site-navigation,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .site-header {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px var(--gutter-mobile);
        background: #000000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .brand-logo {
        width: 90px;
        filter: brightness(0) invert(1);
    }

    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        z-index: 200;
        margin-left: auto;
    }

    .mobile-toggle .bar {
        background-color: #ffffff;
        /* White icon on Black header */
        display: block;
        height: 2px;
        width: 100%;
    }

    /* Adjust cross animation */
    body.menu-open .mobile-toggle .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.menu-open .mobile-toggle .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu-overlay {
        padding-top: 80px;
        z-index: 90;
        background-color: #ffffff;
        /* White menu background */
    }

    .mobile-nav-links {
        margin-top: 2rem;
    }

    .mobile-nav-links a,
    .mobile-contact .phone-link {
        color: var(--color-black);
        /* Black text for white menu */
    }
}

/* --- Hero --- */
.section-hero {
    position: relative;
    /* Height driven by padding like original site */
    padding: 225px 0;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 38px;
    line-height: 42px;
    letter-spacing: -1.52px;
    color: var(--color-white);
    margin-bottom: 1rem;
    padding: 0;
    /* Align with container */
    /* Ensure side padding on mobile */
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.36px;
    color: var(--color-off-white);
    opacity: 1;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .section-hero {
        padding: 160px 0 100px;
        /* Reduced padding top/bottom */
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 2.5rem;
        padding: 0;
        /* Align with container */
        /* Ensure text doesn't touch edges */
    }

    .hero-content .btn {
        width: 100%;
        display: block;
    }


}

#constellation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* --- Intro --- */
.section-intro {
    background: #f9fafc;
    /* Sampled from reference */
    color: var(--color-black);
    padding: 8rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.collage-img {
    width: 100%;
    max-width: 464px;
    /* Restrict max width */
    margin: 0 auto;
    /* Center in its column if smaller */
    display: block;
    border-radius: 8px;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 400 !important;
    font-size: 40px !important;
    line-height: 1.2;
    letter-spacing: -1.52px;
    margin-bottom: 2rem;
    color: var(--color-black);
    white-space: nowrap;
    /* Strictly single line */
}

.intro-text {
    font-size: 16px;
    margin-bottom: 3rem;
    color: var(--color-dark);
    line-height: 24px;
    letter-spacing: 0;
}

/* --- Services (Playground) --- */
.section-services {
    background: var(--color-white);
    padding: 8rem 0;
    overflow: hidden;
    color: var(--color-black);
}

.section-services .section-title {
    margin-bottom: 0.5rem;
    text-align: left;
}

.section-services .section-subtitle {
    margin-bottom: 2rem;
    color: var(--color-dark);
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.services-cta {
    margin-bottom: 5rem;
}

.btn-primary-pink {
    background: #fae1dc;
    color: var(--color-black);
    border-radius: 0;
    /* Rectangular */
    display: inline-block;
    font-weight: 400;
    text-transform: none;
    /* As per image */
    padding: 10px 18px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #fae1dc;
    /* Maintain box model consistency */
}

.btn-primary-pink:hover {
    background: #ffffff;
    transform: translateY(-2px);
}





.services-scroller {
    margin-top: 0;
    padding-top: 30px;
    /* Prevent hover clipping */
    padding-bottom: 1rem;
    overflow-x: auto;
    /* Hide Scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Finite Snap */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    /* Variables for offsets */
    --services-offset: max(var(--gutter), calc((100% - var(--container-width)) / 2 + var(--gutter)));

    scroll-padding-left: var(--services-offset);
    scroll-padding-right: var(--gutter);
}

.services-scroller::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .services-scroller {
        --services-offset: var(--gutter-mobile);
        scroll-padding-right: var(--gutter-mobile);
    }
}

.services-track {
    display: flex;
    gap: 4rem;
    /* Dynamic padding to align first item with container */
    padding-left: var(--services-offset);
    padding-right: var(--gutter);
    width: max-content;
}

@media (max-width: 768px) {
    .services-track {
        /* Reduce gap to ensure next slide peek (Edge Reveal) */
        gap: 1.5rem;

        /* Mobile padding override */
        padding-right: var(--gutter-mobile);
    }
}

.service-card {
    width: 300px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    transition: transform 0.3s;
    flex-shrink: 0;
    /* Snap start for most items */
    scroll-snap-align: start;
}

.service-card:last-of-type {
    /* Snap end for the last item prevents it from being pulled to the start offset */
    scroll-snap-align: end;
}



.service-card:hover {
    transform: translateY(-5px);
    background: transparent;
}

.service-icon {
    width: auto;
    height: 80px;
    /* Increased size */
    max-width: 100%;
    margin-bottom: 2rem;
    filter: none;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.service-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 1rem;
    color: var(--color-ink);
}

.service-desc {
    font-size: 1rem;
    color: var(--color-dark);
    line-height: 1.6;
}

.playground-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0;
    /* Border removed */
}

.playground-dots {
    display: flex;
    gap: 0.75rem;
}

.playground-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e5e5;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.playground-dots .dot.active {
    background: #fae1dc;
    /* Match button pink */
    transform: scale(1.2);
}

.playground-arrows {
    display: flex;
    gap: 1rem;
}

.playground-prev,
.playground-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s, opacity 0.3s;
    color: var(--color-black);
}

.playground-prev.hidden,
.playground-next.hidden {
    opacity: 0;
    pointer-events: none;
}

.playground-prev:hover,
.playground-next:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* --- Testimonials --- */
.section-testimonials {
    background: #faf4ef;
    color: var(--color-black);
    padding: 8rem 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-testimonials .section-title {
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 38px !important;
    line-height: 42px;
    color: #000000;
    text-align: center !important;
    width: 100%;
    white-space: normal;
}

@media (max-width: 768px) {
    .section-testimonials .section-title {
        font-size: 40px !important;
        line-height: 1.1;
    }
}

.section-testimonials .section-subtitle {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    text-align: center !important;
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0;
    width: 100%;
    display: block;
    max-width: 100% !important;
}

.testimonials-slider {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0 1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    width: 100%;
    text-align: center;
}

.testimonial-slide[style*="display: block"] {
    animation: fadeIn 0.6s ease-out forwards;
}

.testi-quote {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 20px;
    /* Visually estimated from hierarchy */
    line-height: 1.5;
    font-style: normal;
    margin-bottom: 2.5rem;
    color: var(--color-ink);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
}

.testi-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testi-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-meta {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testi-author {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #101828;
    font-style: normal;
    margin-bottom: 0;
    font-family: var(--font-sans);
}

.testi-role {
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    display: block;
    font-family: var(--font-sans);
    font-weight: 400;
}

/* Nav Buttons */
.nav-prev,
.nav-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #101828;
    z-index: 10;
}

.nav-prev:hover,
.nav-next:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d5dd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s;
}

.testimonial-dots .dot.active {
    background: #fbd8d3;
    /* Peach active dot */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- selected work --- */
.section-work {
    background: var(--color-white);
    color: var(--color-black);
    padding: 8rem 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.work-card {
    display: block;
}

.work-thumb {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.work-thumb img {
    width: 100%;
    transition: transform 0.6s ease;
}

.work-card:hover .work-thumb img {
    transform: scale(1.05);
}

.work-title {
    margin-bottom: 0.25rem;
    font-size: 1.75rem;
}

.work-cat {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid #ddd;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* --- Team --- */
/* --- Team Styles Removed (Moved to component-specific styling) --- */

/* --- Values --- */
.section-values {
    background: var(--color-white);
    color: var(--color-black);
    padding: 6rem 0;
    border-top: 1px solid #eee;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    font-weight: 700;
}

.value-desc {
    font-family: var(--font-serif);
    color: #555;
    font-size: 1.1rem;
}

/* --- Logos --- */
.section-logos {
    background: var(--color-white);
    padding: 4rem 0;
    border-top: 1px solid #eee;
}

.logos-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    opacity: 0.5;
}

.logo-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.logo-item:hover img {
    filter: grayscale(0);
}

/* --- Contact --- */
.section-contact {
    background: var(--color-black);
    padding: 8rem 0;
    text-align: center;
}

.contact-title {
    font-size: 4rem;
    margin-bottom: 3rem;
}

.al-contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
    border-radius: 0;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--color-peach);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-footer {
    margin-top: 2rem;
    text-align: center;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.5rem;
}

.form-status.success {
    color: #4cd964;
}

.form-status.error {
    color: #ff3b30;
}

/* Footer & Mobile Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    /* Mobile Header Updates */
    .site-header {
        padding: 15px var(--gutter-mobile);
    }

    .brand-logo {
        width: 100px;
        /* Smaller logo */
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        /* Tighter gap */
        margin-left: auto;
        justify-content: flex-end;
        /* Push to right */
    }

    .nav-links a {
        font-size: 13px;
        /* Smaller font */
        white-space: nowrap;
    }

    .site-navigation {
        margin-right: 0;
    }

    .header-cta,
    .mobile-toggle {
        display: none;
    }

    /* Mobile Text Sizes */
    .hero-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        max-width: 100%;
        padding: 0;
    }

    .section-title,
    .section-testimonials .section-title {
        font-size: 32px !important;
        line-height: 1.1;
        white-space: normal;
    }

    /* Stack Grids */
    .intro-grid,
    .work-grid,
    .values-grid,
    .featured-article-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        margin-top: 2rem;
    }

    .logos-flex {
        gap: 2rem;
    }

    /* Adjust Section Padding */
    .section-hero {
        padding: 140px 0 80px;
        /* Reduced top padding */
        min-height: auto;
    }

    .section-intro,
    .section-services,
    .section-work,
    .section-values,
    .section-contact,
    .section-testimonials,
    .section-featured-article {
        padding: 4rem 0;
        /* Reduced from 8rem */
    }

    /* Intro Image */
    .collage-img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .section-testimonials .nav-prev,
    .section-testimonials .nav-next {
        display: none !important;
    }

    .contact-title {
        font-size: 32px;
    }

    .section-intro .btn {
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* --- Featured Article --- */
.section-featured-article {
    background: var(--color-gray-100);
    padding: 8rem 0;
}

.featured-article-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.article-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-black);
}

.article-excerpt {
    margin-bottom: 2rem;
    color: var(--color-dark);
}