/* ══════════════════════════════════════════
       NAVBAR — DESKTOP
    ══════════════════════════════════════════ */
.site-nav {
    /* background: #F2F4FF; */
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 900;
    transition: box-shadow 0.3s;
    margin-top: 32px !important;
}

.site-nav.scrolled {
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.nav-logo img {
    width: 400PX !important;
}


/* Desktop centered nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    /* padding: 0; */
    position: absolute;
    left: 65%;
    transform: translateX(-50%);
}

.nav-links>li>a {
    font-family: "f2";
    font-size: 18px;
    color: black;
    text-decoration: none;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.2s;
}

.nav-links>li>a:hover {
    color: #111;
    background-color: #e8e8e8 !important;
    border-radius: 32px;
}

.nav-links>li.active>a {
    font-family: "f2";
    background-color: black;
    color: white;
    padding: 6px 16px;
    border-radius: 32px;
}

.nav-links>li>a .bi {
    font-size: 11px;
}

/* Dropdown */
.nav-links>li {
    position: relative;
}

.nav-dd {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: #ffffff;
    border: 1px solid #ddd9d2;
    border-radius: 10px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
    padding: 8px 0;
    list-style: none;
    z-index: 300;
}

.nav-links>li:hover .nav-dd,
.nav-links>li.dd-open .nav-dd {
    display: block;
}

.nav-dd li a {
    font-family: "f2";
    font-size: 15px;
    color: #222;
    text-decoration: none;
    display: block;
    padding: 9px 10px;
    /* transition: background 0.15s; */
}

.nav-dd li {
    position: relative;
}

.nav-dd li a:hover,
.nav-dd li.has-submenu:hover > a {
    background: #CE5407;
    color: white;
    margin: 0px 8px 0px 8px;
    border-radius: 4px;
}

.nav-subdd {
    display: none;
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    min-width: 210px;
    background: #ffffff;
    border: 1px solid #ddd9d2;
    border-radius: 10px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
    padding: 8px 0;
    list-style: none;
    z-index: 301;
}

.nav-dd li.has-submenu:hover > .nav-subdd {
    display: block;
}

.nav-subdd li a {
    margin: 0;
}

.nav-subdd li a:hover {
    margin: 0px 8px 0px 8px;
}


/* Hamburger — hidden on desktop */
.nav-ham {
    display: none;
    background: none;
    border: none;
    border-radius: 6px;
    padding: 5px 9px;
    cursor: pointer;
    z-index: 2;
    flex-shrink: 0;
    /* border: #222 solid 1px; */
}

.nav-ham .bi {
    font-size: 22px;
    color: #111;
    line-height: 1;
}

/* ══════════════════════════════════════════
       MOBILE DRAWER
    ══════════════════════════════════════════ */
.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.45);
}

.mob-overlay.open {
    display: block;
}

.mob-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: #ffffff;
    padding: 20px 18px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-overlay.open .mob-panel {
    transform: translateX(0);
}

.mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.mob-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #111;
    line-height: 1;
    padding: 2px;
}

.mob-menu {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.mob-menu>li {
    border-bottom: 1px solid #e8e4dc;
}

.mob-menu>li>a {
    font-family: "f2", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 2px;
    transition: color 0.2s;
}

/* Mobile row: link text + icon button side by side */
.mob-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
}

.mob-item-row>a {
    font-family: "f2", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    padding: 13px 2px;
    flex: 1;
    transition: color 0.2s;
}

.mob-item-row>a:hover,
.mob-item-row>a.mob-active {
    color: #2C4A6E;
}

.mob-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 13px 4px;
    color: #111;
    display: flex;
    align-items: center;
    font-size: 13px;
    transition: color 0.2s;
}

.mob-toggle-btn:hover {
    color: #111;
}

/* Active state for plain mobile links */
a.mob-active {
    color: #111 !important;
    font-family: "f3";
}

.mob-menu>li>a:hover {
    color: #555;
}

.mob-sub {
    list-style: none;
    padding: 0 0 10px 14px;
    display: none;
}

.mob-sub.open {
    display: block;
}

.mob-sub li a {
    font-family: "f2";
    font-size: 14px;
    color: #555;
    text-decoration: none;
    display: block;
    padding: 8px;
    transition: color 0.2s;
}

.mob-sub li a:hover {
    background: #CE5407;
    color: white !important;
    margin: 0px 8px 0px 8px;
    border-radius: 4px;
}


/* Hamburger Menu */

/* ── 992px: hide desktop nav, show hamburger ── */
@media (max-width: 992px) {
    .nav-links {
        display: none !important;
    }

    .btn-letstalk {
        display: none !important;
    }

    .nav-ham {
        display: flex !important;
        align-items: center;
    }

    .site-nav {
        padding: 0 20px;
    }

    .banner-wrap {
        padding: 14px 16px 10px;
    }

    .banner-card {
        min-height: 480px;
        border-radius: 14px;
    }

    .banner-body {
        padding: 44px 36px;
        max-width: 70%;
    }

    .banner-h1,
    .banner-italic {
        font-size: 44px;
    }

    .banner-tag {
        font-size: 20px;
    }

    .banner-copy {
        font-size: 16px;
    }

    .stats-bar {
        padding: 30px 20px;
    }

    .stat-num {
        font-size: 26px;
    }

    .stat-lbl {
        font-size: 12px;
    }
}

/* ── 768px: tablet portrait ── */
@media (max-width: 768px) {
    .banner-body {
        max-width: 80%;
    }

    .banner-h1,
    .banner-italic {
        font-size: 38px;
    }

    .banner-tag {
        font-size: 18px;
        gap: 10px;
    }

    .banner-tag::before {
        width: 26px;
    }

    .banner-copy {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .btn-start {
        font-size: 15px;
        padding: 11px 22px;
    }

    /* Overlay switch to top-bottom for better text legibility on tablet */
    .banner-overlay {
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.97) 0%,
                rgba(255, 255, 255, 0.92) 30%,
                rgba(255, 255, 255, 0.70) 55%,
                rgba(255, 255, 255, 0.20) 80%,
                rgba(255, 255, 255, 0.00) 100%);
    }

    /* Stats: 3 columns on tablet */
    .stats-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 0;
    }

    .stat-item+.stat-item::before {
        display: none;
    }

    .stat-item:nth-child(2)::before,
    .stat-item:nth-child(3)::before {
        display: block;
    }
}

/* ── 576px: mobile ── */
@media (max-width: 576px) {
    .site-nav {
        height: 60px;
        padding: 0 16px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .banner-wrap {
        padding: 10px 10px 8px;
    }

    .banner-card {
        min-height: 420px;
        border-radius: 12px;
        align-items: flex-start;
    }

    .banner-body {
        padding: 32px 22px 80px;
        max-width: 100%;
    }

    .banner-h1,
    .banner-italic {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .banner-tag {
        font-size: 15px;
        gap: 8px;
        margin-bottom: 14px;
    }

    .banner-tag::before {
        width: 22px;
    }

    .banner-copy {
        font-size: 14px;
        margin-bottom: 22px;
        line-height: 1.6;
    }

    .btn-start {
        font-size: 14px;
        padding: 10px 20px;
    }

    .btn-viewwork {
        font-size: 14px;
    }

    .banner-ctas {
        gap: 16px;
    }

    /* Full white overlay on mobile — text always readable */
    .banner-overlay {
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(255, 255, 255, 0.95) 55%,
                rgba(255, 255, 255, 0.65) 80%,
                rgba(255, 255, 255, 0.30) 100%);
    }

    /* Stats: 2 cols on mobile */
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .stat-item+.stat-item::before {
        display: none;
    }

    .stat-item:nth-child(even)::before {
        display: block;
    }

    .stat-item:nth-child(odd)::before {
        display: none;
    }

    .stat-num {
        font-size: 24px;
    }

    .stat-lbl {
        font-size: 12px;
    }

    .stats-bar {
        padding: 28px 16px;
    }
}

/* ── 375px: small phones ── */
@media (max-width: 375px) {

    .banner-h1,
    .banner-italic {
        font-size: 28px;
    }

    .banner-body {
        padding: 26px 16px 72px;
    }

    .banner-tag {
        font-size: 13px;
    }

    .banner-copy {
        font-size: 13px;
    }

    .btn-start,
    .btn-viewwork {
        font-size: 13px;
    }

    .banner-ctas {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ..................................................................... */


/* ══════════════════════════════════════════
       SITE FOOTER
   ══════════════════════════════════════════ */
.site-footer {
    background: #FFDAB9;
    padding: 64px 40px 64px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Brand col */
.footer-brand img {
   width: 400px;
   margin-bottom: 12px;
}

.footer-logo strong {
    font-family: "f3";
    font-weight: 600;
}

.footer-tagline {
    font-family: "f2";
    font-size: 16px;
    color:black;
    line-height: 1.75;
    /* max-width: 300px; */
    width: 100%;
}

/* Nav cols */
.footer-col-heading {
    font-family: "f3", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color:black;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links li a {
    font-family: "f2", sans-serif;
    font-size: 16px;
    color: black;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #7B2D26;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 48px 16px 56px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-links li a {
    font-family: "f2";
    font-size: 14px;
    color: black;
    text-decoration: none;
    transition: color 0.2s;
   }
}
