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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111111;
    color:white;
}

/* NAVIGATION */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(14px);
    z-index:1000;
    transition:.35s ease;
}

.logo img{
    height:95px;
    width:auto;
    display:block;
    transition:.3s ease;
    filter:drop-shadow(0 0 12px rgba(249,115,22,.45));
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#F97316;
}

.btn-nav{
    background:#F97316;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-nav:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(249,115,22,.45);
}

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.68),rgba(0,0,0,.82)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:170px 8% 90px;
}

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

.hero-logo{
    width:430px;
    max-width:90%;
    margin-bottom:35px;
    filter:drop-shadow(0 0 35px rgba(249,115,22,.55));
    animation:floatLogo 4s ease-in-out infinite;
}

.hero h1{
    font-family:'Bebas Neue',sans-serif;
    font-size:80px;
    letter-spacing:3px;
    color:white;
    line-height:1;
}

.hero h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:82px;
    letter-spacing:3px;
    color:#F97316;
    line-height:1;
    margin-bottom:30px;
}

.hero p{
    font-size:21px;
    color:#e6e6e6;
    line-height:1.8;
    margin:25px auto;
}

.hero-slogan{
    color:#F97316;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
    font-size:18px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
    margin-top:35px;
}

.btn-orange,
.btn-white{
    text-decoration:none;
    padding:18px 42px;
    border-radius:50px;
    font-weight:700;
    transition:.3s ease;
}

.btn-orange{
    background:#F97316;
    color:white;
}

.btn-white{
    border:2px solid white;
    color:white;
}

.btn-orange:hover{
    transform:translateY(-6px) scale(1.03);
    box-shadow:0 25px 50px rgba(249,115,22,.45);
}

.btn-white:hover{
    background:white;
    color:#111111;
    transform:translateY(-6px);
}

/* STATS */

.stats{
    padding:90px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    background:#171717;
}

.stat-card{
    background:#202020;
    padding:40px;
    text-align:center;
    border-radius:18px;
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(249,115,22,.25);
    border:1px solid #F97316;
}

.stat-card h2{
    font-size:52px;
    color:#F97316;
    margin-bottom:10px;
    font-family:'Bebas Neue',sans-serif;
}

.stat-card p{
    color:#d6d6d6;
}

/* SERVICES */

.services{
    padding:120px 8%;
    background:#111111;
    text-align:center;
}

.services h2,
.audience h2,
.why h2{
    font-size:48px;
    color:#F97316;
    margin-bottom:20px;
    font-family:'Bebas Neue',sans-serif;
}

.section-text{
    max-width:700px;
    margin:0 auto 60px;
    color:#cfcfcf;
    font-size:18px;
    line-height:1.8;
}

.service-grid,
.audience-grid,
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card,
.audience-card,
.why-card{
    background:#1d1d1d;
    padding:40px;
    border-radius:20px;
    transition:.35s;
    cursor:pointer;
}

.service-card:hover,
.audience-card:hover,
.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(249,115,22,.28);
    border:1px solid #F97316;
}

.icon{
    font-size:55px;
    color:#F97316;
    margin-bottom:25px;
    transition:.35s;
}

.service-card:hover .icon{
    transform:scale(1.2) rotate(8deg);
}

.service-card h3,
.audience-card h3,
.why-card h3{
    color:#F97316;
    margin-bottom:20px;
}

.service-card p,
.audience-card p,
.why-card p{
    color:#d6d6d6;
    line-height:1.8;
}

/* AUDIENCE */

.audience{
    padding:120px 8%;
    background:#171717;
    text-align:center;
}

/* WHY */

.why{
    padding:120px 8%;
    text-align:center;
}

/* CTA */

.cta{
    padding:120px 8%;
    background:#F97316;
    text-align:center;
}

.cta h2{
    font-size:54px;
    margin-bottom:25px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
}

/* FOOTER */

footer{
    background:#0d0d0d;
    padding:60px;
    text-align:center;
}

.footer-logo{
    height:80px;
    margin-bottom:25px;
}

footer p{
    margin:10px 0;
    color:#bfbfbf;
}

/* ANIMATIONS */

section{
    opacity:0;
    transform:translateY(80px);
    transition:all .9s ease;
}

section.show{
    opacity:1;
    transform:translateY(0);
}

.hero{
    opacity:1;
    transform:none;
}

@keyframes floatLogo{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

/* MOBILE */

@media(max-width:950px){
    nav ul,
    .btn-nav{
        display:none;
    }

    nav{
        padding:12px 6%;
    }

    .logo img{
        height:75px;
    }

    .hero{
        padding-top:150px;
    }

    .hero-logo{
        width:300px;
    }

    .hero h1{
        font-size:52px;
    }

    .hero h2{
        font-size:56px;
    }

    .hero p{
        font-size:16px;
    }
}
.audience-card{
    min-height:330px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
}

.audience-card p{
    margin-bottom:35px;
}

.audience-card .btn-orange{
    margin-top:auto;
}
@media(max-width:950px){
    .audience-card{
        min-height:auto;
    }

    .hero{
        min-height:100vh;
    }

    .stats,
    .services,
    .audience,
    .why,
    .cta{
        padding:80px 6%;
    }

    .service-grid,
    .audience-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-orange,
    .btn-white{
        width:100%;
        max-width:280px;
        text-align:center;
    }
}
.page-hero{
    min-height:55vh;
    padding:180px 8% 100px;
    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.85)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
    text-align:center;
    opacity:1;
    transform:none;
}

.page-hero h1{
    font-family:'Bebas Neue',sans-serif;
    font-size:78px;
    color:#F97316;
    letter-spacing:3px;
}

.page-hero p{
    max-width:750px;
    margin:25px auto 0;
    color:#e6e6e6;
    font-size:20px;
    line-height:1.8;
}

.page-content{
    padding:100px 8%;
    max-width:1000px;
    margin:auto;
    opacity:1;
    transform:none;
}

.page-content h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:44px;
    color:#F97316;
    margin:35px 0 15px;
}

.page-content p{
    color:#d6d6d6;
    line-height:1.9;
    margin-bottom:20px;
    font-size:18px;
}
/* SERVICES PAGE */

.services-page{
    padding:100px 8%;
    background:#111111;
    opacity:1;
    transform:none;
}

.services-page-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

.service-detail-card{
    background:#1d1d1d;
    padding:42px;
    border-radius:20px;
    border:1px solid transparent;
    transition:.35s ease;
}

.service-detail-card:hover{
    transform:translateY(-8px);
    border-color:#F97316;
    box-shadow:0 24px 50px rgba(249,115,22,.2);
}

.service-detail-card h2{
    color:#F97316;
    margin-bottom:18px;
    font-size:25px;
}

.service-detail-card p{
    color:#d7d7d7;
    line-height:1.8;
    margin-bottom:22px;
}

.service-detail-card ul{
    list-style:none;
}

.service-detail-card li{
    color:#c9c9c9;
    margin:12px 0;
    padding-left:24px;
    position:relative;
}

.service-detail-card li::before{
    content:"✓";
    color:#F97316;
    font-weight:700;
    position:absolute;
    left:0;
}

@media(max-width:800px){
    .services-page-grid{
        grid-template-columns:1fr;
    }

    .service-detail-card{
        padding:32px 24px;
    }
}
/* FORMS */

.form-section{
    padding:100px 8%;
    background:#111111;
    opacity:1;
    transform:none;
}

.form-container{
    max-width:1050px;
    margin:0 auto;
    background:#1a1a1a;
    padding:55px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.form-intro{
    margin-bottom:45px;
}

.eyebrow{
    color:#F97316;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:12px;
}

.form-intro h2{
    font-family:'Bebas Neue',sans-serif;
    color:white;
    font-size:48px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.form-intro p{
    color:#cfcfcf;
    line-height:1.8;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.form-group-full{
    grid-column:1 / -1;
}

.form-group label{
    color:#f1f1f1;
    font-size:15px;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    background:#101010;
    color:white;
    border:1px solid #3b3b3b;
    border-radius:12px;
    padding:15px 16px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    outline:none;
    transition:.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#F97316;
    box-shadow:0 0 0 3px rgba(249,115,22,.12);
}

.form-group textarea{
    resize:vertical;
}

.checkbox-group label{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#cfcfcf;
    line-height:1.7;
    font-weight:400;
}

.checkbox-group input{
    width:auto;
    margin-top:6px;
}

.form-submit-button{
    margin-top:32px;
    background:#F97316;
    color:white;
    border:none;
    padding:17px 34px;
    border-radius:50px;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s ease;
}

.form-submit-button:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(249,115,22,.35);
}

.form-note{
    color:#9f9f9f;
    font-size:13px;
    line-height:1.7;
    margin-top:18px;
}

@media(max-width:750px){
    .form-container{
        padding:35px 22px;
    }

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

    .form-group-full{
        grid-column:auto;
    }

    .form-intro h2{
        font-size:38px;
    }
}
/* CAREERS PAGE */

.careers-section{
    padding:100px 8%;
    background:#111111;
    opacity:1;
    transform:none;
}

.careers-intro{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.careers-intro h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:52px;
    color:#F97316;
    letter-spacing:2px;
    margin-bottom:20px;
}

.careers-intro p{
    color:#d5d5d5;
    line-height:1.8;
}

.careers-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:30px;
}

.career-card{
    background:#1d1d1d;
    padding:40px;
    border-radius:20px;
    border:1px solid transparent;
    transition:.3s ease;
}

.career-card:hover{
    transform:translateY(-8px);
    border-color:#F97316;
    box-shadow:0 24px 50px rgba(249,115,22,.2);
}

.career-card i{
    color:#F97316;
    font-size:42px;
    margin-bottom:22px;
}

.career-card h3{
    color:#F97316;
    margin-bottom:15px;
}

.career-card p{
    color:#d5d5d5;
    line-height:1.8;
}

.career-expectations{
    padding:100px 8%;
    background:#171717;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:45px;
    opacity:1;
    transform:none;
}

.expectations-content{
    max-width:550px;
    margin:0 auto;
}

.expectations-content h2{
    font-family:'Bebas Neue',sans-serif;
    color:#F97316;
    font-size:42px;
    margin-bottom:25px;
}

.expectations-content ul{
    list-style:none;
}

.expectations-content li{
    color:#d5d5d5;
    margin:16px 0;
    padding-left:25px;
    position:relative;
}

.expectations-content li::before{
    content:"✓";
    color:#F97316;
    font-weight:700;
    position:absolute;
    left:0;
}

@media(max-width:800px){
    .careers-grid,
    .career-expectations{
        grid-template-columns:1fr;
    }
}
/* CONTACT PAGE */

.contact-section{
    padding:100px 8%;
    background:#111111;
    opacity:1;
    transform:none;
}

.contact-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    align-items:start;
}

.contact-info h2{
    font-family:'Bebas Neue',sans-serif;
    color:#F97316;
    font-size:52px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.contact-description{
    color:#d4d4d4;
    line-height:1.8;
    margin-bottom:40px;
}

.contact-item{
    display:flex;
    gap:20px;
    margin:30px 0;
    align-items:flex-start;
}

.contact-item i{
    color:#F97316;
    font-size:28px;
    width:35px;
}

.contact-item h3{
    color:white;
    margin-bottom:8px;
}

.contact-item p,
.contact-item a{
    color:#cfcfcf;
    line-height:1.7;
    text-decoration:none;
}

.contact-item a:hover{
    color:#F97316;
}

.contact-actions{
    display:grid;
    gap:28px;
}

.contact-action-card{
    background:#1d1d1d;
    padding:40px;
    border-radius:20px;
    border:1px solid transparent;
    transition:.3s ease;
}

.contact-action-card:hover{
    transform:translateY(-6px);
    border-color:#F97316;
    box-shadow:0 24px 50px rgba(249,115,22,.2);
}

.contact-action-card i{
    color:#F97316;
    font-size:42px;
    margin-bottom:22px;
}

.contact-action-card h3{
    color:#F97316;
    margin-bottom:15px;
}

.contact-action-card p{
    color:#d4d4d4;
    line-height:1.8;
    margin-bottom:28px;
}

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

/* Clickable service cards */
.service-card { cursor: pointer; }
.service-card:focus { outline: 2px solid #F97316; outline-offset: 4px; }
/* ================================
   MEET THE FOUNDER
================================ */

.founder-section {
    padding: 90px 8%;
    background: #0b0b0b;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #f97316;
    border-radius: 18px;
    top: 16px;
    left: 16px;
    z-index: 0;
}

.founder-image img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 18px;
    position: relative;
    z-index: 1;
}

.founder-content {
    position: relative;
    z-index: 2;
}

.founder-label {
    color: #f97316;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.founder-content h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.95;
    color: #ffffff;
    margin: 0 0 10px;
}

.founder-content h3 {
    color: #f97316;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-content p {
    color: #d1d1d1;
    line-height: 1.8;
    margin-bottom: 18px;
}

.founder-content .founder-quote {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    border-left: 3px solid #f97316;
    padding-left: 15px;
    margin: 28px 0;
}

.founder-button {
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 7px;
    transition: 0.25s ease;
}

.founder-button:hover {
    transform: translateY(-2px);
    background: #ff8534;
}


/* Founder section mobile */

@media (max-width: 800px) {

    .founder-section {
        padding: 65px 6%;
    }

    .founder-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .founder-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .founder-image::before {
        top: 10px;
        left: 10px;
    }

    .founder-content {
        text-align: left;
    }

    .founder-content h2 {
        font-size: 52px;
    }
}

/* ===== MOBILE FORM FIX ===== */
@media (max-width: 800px) {

    form,
    .form-container,
    .application-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    input,
    select,
    textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    input[type="date"] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
}

/* ===== MOBILE HAMBURGER NAVIGATION ===== */
.menu-toggle{
    display:none;
    background:transparent;
    border:0;
    color:#ffffff;
    font-size:34px;
    line-height:1;
    cursor:pointer;
    padding:8px;
    font-family:Arial,sans-serif;
}

@media(max-width:950px){
    nav{
        padding:12px 6%;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
        position:relative;
        z-index:1002;
    }

    nav ul{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        right:0;
        width:100%;
        padding:18px 6% 86px;
        background:#0d0d0d;
        border-top:1px solid rgba(249,115,22,.35);
        box-shadow:0 18px 35px rgba(0,0,0,.45);
        flex-direction:column;
        gap:0;
        z-index:1001;
    }

    nav ul li{
        width:100%;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    nav ul li a{
        display:block;
        width:100%;
        padding:15px 0;
    }

    nav .btn-nav{
        display:none;
        position:absolute;
        top:calc(100% + 324px);
        left:6%;
        right:6%;
        width:auto;
        text-align:center;
        border-radius:10px;
        z-index:1002;
        box-shadow:0 18px 35px rgba(0,0,0,.45);
    }

    nav.menu-open ul{
        display:flex;
    }

    nav.menu-open .btn-nav{
        display:block;
    }
}

/* =====================================
   T2K DIVISIONS
===================================== */

.divisions-section {
    background: #0b0b0b;
    padding: 90px 7%;
}

.divisions-intro {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.division-eyebrow {
    color: #f97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.divisions-intro h2,
.divisions-cta h2 {
    font-family: "Bebas Neue", sans-serif;
    color: #ffffff;
    font-size: clamp(45px, 6vw, 70px);
    margin: 8px 0 15px;
}

.divisions-intro > p:last-child {
    color: #c7c7c7;
    line-height: 1.8;
}

.divisions-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.division-card {
    position: relative;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 15px;
    padding: 38px;
    overflow: hidden;
    transition: 0.3s ease;
}

.division-card:hover {
    transform: translateY(-5px);
    border-color: #f97316;
}

.division-number {
    position: absolute;
    right: 25px;
    top: 15px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 75px;
    color: rgba(255, 255, 255, 0.04);
}

.division-card h2 {
    position: relative;
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 12px;
}

.division-card > p {
    color: #bdbdbd;
    line-height: 1.7;
    margin-bottom: 20px;
}

.division-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.division-card li {
    color: #eeeeee;
    padding: 7px 0;
    border-bottom: 1px solid #252525;
}

.division-card li::before {
    content: "✓";
    color: #f97316;
    font-weight: 700;
    margin-right: 10px;
}

.division-button {
    display: inline-block;
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.division-button:hover {
    color: #ffffff;
}

.division-commercial {
    border: 1px solid #f97316;
    background:
        linear-gradient(
            135deg,
            rgba(249, 115, 22, 0.10),
            #151515 55%
        );
}

.commercial-label {
    display: inline-block;
    color: #f97316 !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px !important;
}

.divisions-cta {
    background: #111111;
    text-align: center;
    padding: 90px 7%;
}

.divisions-cta > p:not(.division-eyebrow) {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #c7c7c7;
    line-height: 1.7;
}


/* DIVISIONS MOBILE */

@media (max-width: 800px) {

    .divisions-section {
        padding: 65px 6%;
    }

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

    .division-card {
        padding: 30px 25px;
    }

    .division-card h2 {
        font-size: 36px;
    }

    .division-number {
        font-size: 60px;
    }

    .divisions-cta {
        padding: 70px 6%;
    }
}


/* ===== PROJECT REQUEST DIVISION SELECTOR ===== */
.division-select-group select {
    border-color: rgba(249,115,22,.55);
}
.optional-label {
    color: #8f8f8f;
    font-size: .82em;
    font-weight: 400;
}
.field-help {
    margin-top: 8px;
    color: #9f9f9f;
    font-size: 13px;
    line-height: 1.5;
}


/* ===== FINAL RESPONSIVE NAV + FORM FIX ===== */
/* Keep the desktop navigation comfortable before switching to hamburger mode. */
nav ul{
    gap:clamp(16px, 2vw, 35px);
}

.btn-nav{
    white-space:nowrap;
    flex-shrink:0;
}

.logo{
    flex-shrink:0;
}

.mobile-project-link{
    display:none;
}

/* iOS/Safari form controls can have an intrinsic minimum width. */
.form-grid,
.form-group,
.form-group-full{
    min-width:0;
}

.form-group input,
.form-group select,
.form-group textarea{
    display:block;
    min-width:0;
    max-width:100%;
}

@media(max-width:1180px){
    nav{
        padding:12px 6%;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
        position:relative;
        z-index:1002;
    }

    nav > ul{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        right:0;
        width:100%;
        max-height:calc(100vh - 100px);
        overflow-y:auto;
        padding:18px 6% 28px;
        background:#0d0d0d;
        border-top:1px solid rgba(249,115,22,.35);
        box-shadow:0 18px 35px rgba(0,0,0,.45);
        flex-direction:column;
        gap:0;
        z-index:1001;
    }

    nav > ul li{
        width:100%;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    nav > ul li a{
        display:block;
        width:100%;
        padding:15px 0;
    }

    nav > .btn-nav{
        display:none !important;
    }

    nav.menu-open > ul{
        display:flex;
    }

    nav > ul .mobile-project-link{
        display:block;
        border-bottom:0;
        padding-top:18px;
    }

    nav > ul .mobile-project-link a{
        background:#F97316;
        color:#fff;
        text-align:center;
        padding:16px 20px;
        border-radius:12px;
        font-weight:700;
    }
}

@media(max-width:800px){
    .form-section{
        padding-left:5%;
        padding-right:5%;
    }

    .form-container{
        width:100%;
        max-width:100%;
        padding:32px 20px;
        overflow:hidden;
    }

    .form-grid{
        width:100%;
        max-width:100%;
        grid-template-columns:minmax(0,1fr);
    }

    .form-group{
        width:100%;
        max-width:100%;
        min-width:0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea,
    input[type="date"],
    input[type="time"],
    input[type="number"]{
        width:100% !important;
        min-width:0 !important;
        max-width:100% !important;
        box-sizing:border-box !important;
    }
}
