/* Custom Fonts */
@font-face {
    font-family: 'Avenir';
    src: url('fonts/AvenirLTStd-Roman (1).otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/AvenirLTStd-Medium (1).otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/AvenirLTStd-Heavy (1).otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/AvenirLTStd-Black (1).otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Cardot';
    src: url('fonts/CARDOT (1).ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cardot';
    src: url('fonts/CARDOT-Semibold (2).ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir Light';
    src: url('fonts/AvenirLTStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero{
    
    background-position:100%;
    
    width: 100%;
}
body {
    /*font-family: 'Avenir Light';*/
    margin: 0;
    padding: 0;
    min-height: 100vh;

    /* Background */
    background-image: url('./photos/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    

    /* Text */
    color: #f3f3f3;

    /* Layout (optional, consider moving to a container instead) */
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}


body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* subtle dark overlay for better text readability */
    z-index: -1;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(51, 49, 50, 0.7);
    /* semi-transparent background */
    border-bottom: 1px solid rgba(242, 101, 34, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90px;

    backdrop-filter: blur(12px);
    /* glass blur */
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
}


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

.logo-container {
    position: static;
    padding: 0 1rem;
}

.logo {
    max-height: 40px;
    width: auto;
}

.menu-container {
    position: static;
    padding: 0.5rem 1rem;
}

.menu-toggle {
    display: none;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.menu-link {
    font-family: 'Avenir', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    text-transform: lowercase;
    color: #f3f3f3;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.menu-link:hover {
    color: #f3f3f3;
    background: rgba(242, 101, 34, 0.15);
}

@media (max-width: 768px) {
    .site-header {
        padding: 0;
        margin: 0;
        gap: 0;
        position: fixed;
        top: 0;
        left: 0px;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100px;
        width: 100%;
    }
    .hero{
        margin-top: 130px;
    }
    .logo-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .logo {
        max-height: 45px;
        width: auto;
        height: auto;
        display: block;
    }

    .menu-toggle {
        flex: 0 0 40px;
    }

    .menu-container {
        flex: 1 1 auto;
        text-align: right;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: 1px solid rgba(234, 234, 234, 0.22);
        border-radius: 6px;
        color: #f3f3f3;
        cursor: pointer;
        transition: background-color 200ms ease, border-color 200ms ease;
        margin-left: 0.5rem;
    }

    .menu-bar {
        display: block;
        width: 18px;
        height: 2px;
        background: #f3f3f3;
        transition: transform 250ms ease, opacity 200ms ease, width 200ms ease;
    }

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

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

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

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1200;
    
        display: flex;
        flex-direction: column;
    
        /* Glass background */
        background: rgba(36, 34, 35, 0.7);
        border-bottom: 1px solid rgba(242, 101, 34, 0.3);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px); /* Safari */
    
        padding: 0 1rem;
        margin: 0;
        width: 100%;
    
        /* Animation (hidden by default) */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-6px);
        transition: 
            max-height 280ms ease,
            opacity 220ms ease,
            transform 260ms ease,
            padding 0ms linear 280ms;
    }
    
    .body{
        background-attachment: scroll;
    }
    

    .main-menu.open {
        max-height: 500px; /* adjust based on your content */
        opacity: 1;
        transform: translateY(0);
        padding: 1rem;
        transition: 
            max-height 280ms ease,
            opacity 220ms ease,
            transform 260ms ease,
            padding 0ms;
    }
    

    .menu-container {
        position: static;
    }

    .menu-link {
        padding: 0.6rem 0.25rem;
    }
}

.content {
    max-width: 2100px;
    margin-top: 100px;
    /* Space for fixed header */
}

.main-title {
    font-family: 'Cardot','Avenir Light',  sans-serif;
    font-size: clamp(4rem, 8vw, 4.5rem);
    font-weight: 500;
    line-height: 0.9;
    margin-bottom: 3rem;
    margin-top: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;

}

.body-text {
    font-family: 'Avenir Light';
    font-size: clamp(1rem, 3vw, 1.6rem);
    line-height: 1.5;
    font-weight: 300;
    max-width: 1000px;
}

.highlight {
    background-color: #f26522;
    /* Orange highlight */
    padding: 0.2em 0em;
    border-radius: 0px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.orange-text {
    color: #f26522;
    /* Orange text */
    font-weight: 500;
    font-family: 'Avenir', sans-serif;
}

.strikethrough {
    position: relative;
    display: inline-block;

}

.strikethrough::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgba(242, 101, 34, 0.7);
    transform: translateY(-50%);
}

.button-container {
    margin-top: 1rem;
}

.cta-button {

    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(242, 100, 34, 0.609);
    padding: 0.5rem 0.5rem;
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    background: #F58220;
    background: radial-gradient(circle, rgba(245, 130, 32, 1) 0%, rgba(242, 101, 34, 1) 100%);

}

.cta-button:hover {

    transform: translateY(-2px);
    background: #F58220;
    background: radial-gradient(circle, rgba(245, 130, 32, 1) 0%, rgba(242, 101, 34, 1) 100%);
    transition: 0.2s;
    filter: blur(0px);
    box-shadow: 0 8px 50px rgb(243, 111, 3);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(245, 130, 32, 1);
}

/* Section Divider */
.section-divider {
    width: 9rem;
    height: 2px;
    background-color: #f26522;
    margin: 1rem 0;
}

/* Portfolio Marquee */
.portfolio-section {
    margin-top: 2rem;
}

.portfolio-well {
    position: relative;
    border-radius: 1px;
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(242, 101, 34, 0.3);
    box-shadow: none;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
}

/* side fade masks */
.portfolio-well::before,
.portfolio-well::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    pointer-events: none;
    z-index: 5;
}

.portfolio-well::before {
    left: 0;
}

.portfolio-well::after {
    right: 0;
}

/* subtle top/bottom inner rib for depth */
.portfolio-well .marquee::before,
.portfolio-well .marquee::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    pointer-events: none;
    z-index: 4;
}

.portfolio-well .marquee::before {
    top: 0;
}

.portfolio-well .marquee::after {
    bottom: 0;
}

/* adjust marquee spacing within well */
.portfolio-well .marquee__track {
    gap: 2rem;
}

/* responsive tweaks */
@media (max-width: 768px) {
    .portfolio-well {
        border-radius: 8px;
        padding: 1rem 0;
    }

    .portfolio-well::before,
    .portfolio-well::after {
        width: 0;
    }

    .marquee__item {
        height: 72px;

    }

    .marquee__item {
        padding: 0 14px;
        border-right: 1px solid rgba(242, 101, 34, 0.18);
    }

    .marquee__item:last-child {
        border-right: 0;
    }

    @media (max-width: 768px) {
        .marquee__item {
            padding: 0 10px;
        }
    }
}

@media (max-width: 480px) {
    .portfolio-well {
        border-radius: 8px;
        padding: 0.75rem 0;
    }

    .portfolio-well::before,
    .portfolio-well::after {
        width: 0;
    }

    .marquee__item {
        height: 64px;
    }
}

/* Consent banner */
.consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(24, 24, 24, 0.92);
    border-top: 1px solid rgba(242, 101, 34, 0.35);
    backdrop-filter: blur(6px);
    z-index: 9999;
    transition: opacity 200ms ease;
}

.consent-text {
    font-family: 'Avenir', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;

    color: #00000000
}

.consent-link {
    color: #f26522;
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.consent-primary {
    background: #f26522;
    color: #f3f3f3;
    border: none;
    padding: 0.6rem 1rem;
    font-weight: 600;
    cursor: pointer;
}

.consent-secondary {
    color: #f3f3f3;
    text-decoration: underline;
    font-weight: 500;
}

@media (max-width: 640px) {
    .consent-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .consent-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.portfolio-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 900;
    color: #f3f3f3;
    text-transform: lowercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.portfolio-subtitle {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: #f26522;
    text-transform: lowercase;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.marquee {

    position: relative;
    overflow: hidden;
    width: 100%;
    line-height: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee__track {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2.5rem;
    width: max-content;
    animation: marquee-scroll 50s linear infinite;
}

.marquee__item {
    display: block;
    flex: 0 0 auto;
    height: 120px;
    width: auto;
    max-width: 240px;
    min-width: 120px;
    padding: 0 15px;
    object-fit: contain;
    object-position: center center;
    /* filter: grayscale(0%);*/
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.marquee__item:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
    /*filter: brightness(0) invert(1); */
}

/* Per-project hover colors removed to avoid empty rulesets */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Our Story Section */
.our-story-section {
    margin-top: 0.5rem;
}

.story-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    color: #f3f3f3;
    text-transform: lowercase;
    margin-bottom: 1rem;
    line-height: 1;
}

.story-subtitle {
    font-family: 'Avenir ', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 0;
    color: #f26522;
    text-transform: lowercase;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.story-text {
    font-family: 'Avenir Light';
    font-size: clamp(1rem, 3vw, 1.6rem);
    font-weight: 300;
    color: #f3f3f3;
    line-height: 1.5;
    max-width: 1000px;
}

/* Meet the Team Section */
.team-section {
    position: relative;
    width: 100vw;
    height: 600px;
    background-image: url('photos/meet the team.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}


.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 18, 19, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.team-content {
    text-align: center;
    max-width: 600px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.team-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    color: #f3f3f3;
    text-transform: lowercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.team-subtitle {
    font-family: 'Avenir light', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: #f26522;
    text-transform: lowercase;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.team-button-container {
    margin-top: 2rem;
}

.team-button {
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.4);
    padding: 1rem 2rem;
    font-family: 'Avenir', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(45deg, #f26522, #e55a1a);
    position: relative;
    overflow: hidden;
}

.team-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.team-button:hover::before {
    left: 100%;
}

.team-button:hover {
    background: linear-gradient(45deg, #e55a1a, #d14a0a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.6);
}

.team-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(245, 130, 32, 1);
}

/* What We Do Section */
.what-we-do {
    margin-top: 2rem;
}

.do-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 900;
    color: #f3f3f3;
    text-transform: lowercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.do-subtitle {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: #f26522;
    text-transform: lowercase;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.do-text {
    font-family: 'Avenir Light', sans-serif;
    font-size: clamp(1rem, 3vw, 1.6rem);
    font-weight: 300;
    color: #f3f3f3;
    line-height: 1.5;
    max-width: 1000px;
}

/* Team Members Section */
.team-members-section {
    margin-top: 2rem;
}

.team-members-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 900;
    color: #f3f3f3;
    text-transform: lowercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.team-members-subtitle {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: #f26522;
    text-transform: lowercase;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: rgb(0, 0, 0);
    border: 1px solid rgba(242, 101, 34, 0.3);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(242, 101, 34, 0.1);
    border-color: #f26522;
    transform: translateY(-5px);
}

.member-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(242, 101, 34, 0.2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f26522;
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f26522;
    position: relative;
    transition: all 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
    border-color: #e55a1a;
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.4);
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.member-photo:hover .member-image {
    transform: scale(1.1);
}

.placeholder-icon {
    font-size: 3rem;
    color: #f26522;
}

.member-name {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #f3f3f3;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-role {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: #f26522;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-description {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 400;
    color: #f3f3f3;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    margin-top: 2rem;
    text-align: left;
}

.contact-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(3rem, 7vw, 4.7rem);
    font-weight: 900;
    color: #f3f3f3;
    text-transform: lowercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-subtitle {
    font-family: 'Avenir light', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 100;
    color: #f26522;
    text-transform: lowercase;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.contact-text {
    font-family: 'Avenir Light', sans-serif;
    font-size: clamp(1rem, 3vw, 1.6rem);
    font-weight: 300;
    color: #f3f3f3;
    line-height: 1.6;
    max-width: 800px;
    text-align: left;
}

.contact-button-container {
    margin-top: 2rem;
}

.contact-button {

    color: rgb(255, 255, 255);
    box-shadow: 0 8px 66px rgba(0, 0, 0, 0.50);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    background: #F7941D;
    background: radial-gradient(circle, rgba(247, 148, 29, 1) 0%, rgba(242, 101, 34, 1) 100%);
}

.contact-button:hover {
    background-color: #e55a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3);
}

.contact-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(242, 101, 34, 0.3);
}

/* Our Fields Section */
.fields-section {
    margin-top: 2rem;
}

.fields-title {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(4rem, 8vw, 4rem);
    font-weight: 900;
    color: #f3f3f3;
    text-transform: lowercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.fields-subtitle {
    font-family: 'Avenir light', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2rem);
    font-weight: 500;
    color: #f26522;
    text-transform: lowercase;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.fields-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.field-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(242, 101, 34, 0.3);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.field-item:hover {
    background: rgba(242, 101, 34, 0.1);
    border-color: #f26522;
    transform: translateY(-5px);
}

.field-name {
    font-family: 'Avenir light', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #f26522;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field-description {
    font-family: 'Avenir', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #f3f3f3;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    /* Logo positioning handled in earlier media query */

    .content {
        margin-top: 80px;
        /* Space for fixed header */
    }

    .main-title {
        margin-bottom: 2rem;
    }

    .body-text {
        line-height: 1.5;
    }

    .button-container {
        margin-top: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .section-divider {
        margin: 3rem 0;
    }

    .our-story-section {
        margin-top: 1.5rem;
    }

    .story-title {
        margin-bottom: 0.8rem;
    }

    .story-subtitle {
        margin-bottom: 2rem;
    }

    .what-we-do {
        margin-top: 1.5rem;
    }

    .do-title {
        margin-bottom: 0.8rem;
    }

    .do-subtitle {
        margin-bottom: 2rem;
    }

    .fields-section {
        margin-top: 1.5rem;
    }

    .fields-title {
        margin-bottom: 0.8rem;
    }

    .fields-subtitle {
        margin-bottom: 2rem;
    }

    .fields-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .field-item {
        padding: 1.5rem;
    }

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

    .team-member {
        padding: 1.5rem;
    }

    .team-section {
        width: 100%;
        height: 400px;
        background-size: cover;
        background-attachment: scroll;
        margin: 1rem 0;
        margin-left: 0;
        padding: 0 1rem;
    }
    
    .team-content {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }
    
    .team-title {
        margin-bottom: 0.8rem;
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .team-subtitle {
        margin-bottom: 1.5rem;
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
    
    .team-button-container {
        margin-top: 1.5rem;
    }
    
    .team-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .member-placeholder {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .placeholder-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 40px;
    }

    .logo-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .content {
        margin-top: 80px;
        /* Space for fixed header */
    }

    .main-title {
        font-size: clamp(3rem, 6vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .body-text {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .button-container {
        margin-top: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .section-divider {
        margin: 2rem 0;
    }

    .our-story-section {
        margin-top: 1rem;
    }

    .story-title {
        margin-bottom: 0.6rem;
    }

    .story-subtitle {
        margin-bottom: 1.5rem;
    }

    .team-section {
        width: 100%;
        height: 350px;
        background-attachment: scroll;
        background-size: cover;
        margin-left: 0;
        padding: 0 0.5rem;
    }
    
    .team-content {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .team-title {
        margin-bottom: 0.6rem;
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .team-subtitle {
        margin-bottom: 1.5rem;
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }

    .team-button-container {
        margin-top: 1.5rem;
    }

    .team-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .what-we-do {
        margin-top: 1rem;
    }

    .do-title {
        margin-bottom: 0.6rem;
    }

    .do-subtitle {
        margin-bottom: 1.5rem;
    }

    .fields-section {
        margin-top: 1rem;
    }

    .fields-title {
        margin-bottom: 0.6rem;
    }

    .fields-subtitle {
        margin-bottom: 1.5rem;
    }

    .fields-box {
        gap: 1rem;
    }

    .field-item {
        padding: 1.2rem;
    }

    .team-member {
        padding: 1.2rem;
    }

    .member-placeholder {
        width: 80px;
        height: 80px;
        margin-bottom: 0.8rem;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 0.8rem;
    }

    .placeholder-icon {
        font-size: 2rem;
    }

    .contact-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .team-section {
        height: 300px;
        padding: 0 0.25rem;
    }
    
    .team-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .team-subtitle {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }
    
    .team-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Smooth scroll offset for fixed header */
.contact-section {
    scroll-margin-top: 90px;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* also hides horizontal overflow if present */
}
/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
    -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #f26522, #e55a1a);
    border-radius: 4px;
    border: none;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #e55a1a, #d14a0a);
}

::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0);
}

/* Firefox scrollbar styling */
html {
    scrollbar-width: thin;
    scrollbar-color: #f26522 transparent;
    overflow-x: hidden;
}