/* ------------ Base reset ------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    background-color: #000;
    color: #f6f6f6;
    line-height: 1.5;
}


/* ------------ Layout helpers ------------ */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 0.8rem 4vw;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.0) 100%);
}


.nav-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-right: 2rem;
}

.logo-icon {
    height: 70px;
    width: auto;
}

.logo-text {
    height: 38px;
    width: auto;
}

.brand-mark {
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 1.2rem;
    color: #f6f6f6;
    border: none;

    width: auto;
    height: auto;
}

/* ------------ Nav links ------------ */
.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 2rem;
}


.nav-links a {
    color: #f6f6f6;
    text-decoration: none;
    position: relative;
    padding: 0.4rem 0;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ffcf24;
    transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero--video {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: #000;
}

.hero-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 35%,
            rgba(0, 0, 0, 0.35) 65%,
            rgba(0, 0, 0, 0.15) 100%),
        linear-gradient(to bottom,
            rgba(243, 197, 61, 0.15) 0%,
            rgba(243, 197, 61, 0.05) 100%);
}


/* ------------ Buttons ------------ */
.btn {
    cursor: pointer;
    border-radius: 999px;
    font-size: 0.94rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.8rem 1.9rem;
    border: none;
    outline: none;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
        background-color 0.12s ease-out, color 0.12s ease-out;
    white-space: nowrap;
}

.btn-primary {
    background-color: #ffcf24;
    color: #111;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    background-color: #ffcf24;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ffcf24;
    color: #ffcf24;
    font-weight: 500;
}

.btn-outline:hover {
    background: #ffcf24;
}

/* ------------ Mobile nav toggle ------------ */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: transparent;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background-color: #f6f6f6;
    border-radius: 999px;
}

/* ------------ Hero section ------------ */
/* ============================= */
/*          HERO (SPLIT)         */
/* ============================= */

.hero {
    position: relative;
    min-height: 100vh;
    background: #0b0b0b;
    overflow: hidden;
}

.hero-split {
    min-height: 100vh;
    display: flex;
}

/* THIS WAS MISSING */
.hero-shell {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 0.0fr 1.20fr;
    align-items: stretch;
    gap: 0;

    border-radius: 28px;
    overflow: hidden;
}

/* LEFT */
.hero-left {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: right;
}

.hero-left-body .highlight {
    color: #ffcf24;
}

.hero-left h1 {
    font-size: clamp(2rem, 2.7vw, 2.9rem);
    line-height: 1.20;
    letter-spacing: 0.04em;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.hero-left p {
    margin: .6rem 0 0;
    max-width: 44ch;
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
}

/* RIGHT */
.hero-right {
    display: flex;
    min-height: 100vh;
}

.hero-video-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    border-top-left-radius: 150px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 207, 36, .18), transparent 55%),
        linear-gradient(to right, rgba(0, 0, 0, .55), rgba(0, 0, 0, .18));
    pointer-events: none;
    z-index: 1;
}

.hero-video-ui {
    position: absolute;
    inset: 0;
    padding: 1.1rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 2;
}

@media (max-width: 980px) {
    .hero-shell {
        grid-template-columns: 1fr;
    }

    .hero-right {
        min-height: 45vh;
    }
}



/* ---------------- REFINED SCROLLING BAND OVER HERO ----------------*/
.hero-tagline-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* soft dark band over the image */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.0));

    overflow: hidden;
    z-index: 15;
    pointer-events: none;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    height: 100%;
}

.marquee-inner {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: social-scroll 85s linear infinite;
}


.marquee-inner span {
    font-size: clamp(2.1rem, 2.8vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.marquee-inner span:hover {
    opacity: 0.85;
    /* light glow when hovered — modern feel */
}



/* ------------ Placeholder sections ------------ */
main section:not(.hero) {
    min-height: 0;
}

/* ------------ RESPONSIVE NAV ------------ */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.is-open {
        display: flex;
        position: absolute;
        top: 4rem;
        right: 4vw;
        flex-direction: column;
        padding: 1rem 1.2rem;
        border-radius: 0.75rem;
        background-color: rgba(0, 0, 0, 0.9);
        gap: 1rem;
    }

    /* Button on the far right */
    .nav-cta {
        flex-shrink: 0;
    }

}

@media (max-width: 600px) {
    .site-header {
        padding-inline: 5vw;
    }

    .hero-inner {
        padding-inline: 5vw;
    }
}

/* ---------------- EXCLUSIVE SERVICES SECTION ----------------*/

.services-section {
    background-color: #f6f6f6;
    color: #111;
    padding: 5.5rem 6vw;
    display: block;
}

.services-image img {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 4.5rem;
    /* more breathing room */
    align-items: flex-start;
}

.services-heading {
    font-size: clamp(2.2rem, 3.1vw, 2.7rem);
    /* ~35–43px on desktop */
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.services-intro {
    font-size: 1.08rem;
    /* ~17–18px */
    line-height: 1.8;
    max-width: 34rem;
    color: #333333;
    margin-bottom: 2.6rem;
}

.services-title {
    font-size: 2.25rem;
    /* 36px */
    font-weight: 700;
    letter-spacing: 0.03em;
}

.services-left {
    max-width: 560px;
}

.service-body p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #444;
    /* comfortable grey */
}

/* plus/minus icon color */
.service-icon::before,
.service-icon::after {
    background-color: #111;
}

/* Accordion container */
.services-accordion {
    border-top: 1px solid #f6f6f6;
}

/* Individual service row */
.service-item {
    border-bottom: 1px solid #f6f6f6;
}

/* Clickable header */
.service-header {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.service-title {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111;
}

.services-description {
    font-size: 1.05rem;
    /* ~17px */
    line-height: 1.7;
    max-width: 520px;
    color: #333;
    /* slightly softer black */
}

.accordion-title {
    font-size: 1.1rem;
    /* ~17-18px */
    font-weight: 600;
    letter-spacing: 0.02em;
}


/* Plus / minus icon made from lines */
.service-icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.service-icon::before,
.service-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: #111;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

/* vertical line for the "+" */
.service-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* when open, rotate to show "-" only */
.service-item.is-open .service-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

/* Body text with smooth open/close */
.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-right: 3rem;
}

.service-body p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #444;
    max-width: 32rem;
}

/* expand when active */
.service-item.is-open .service-body {
    max-height: 200px;
    /* big enough for the copy */
}

/* Right column image */
.services-right {
    display: flex;
    justify-content: flex-end;
}

.services-media {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
}

.services-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}



/* Responsive adjustments */
@media (max-width: 900px) {
    .services-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-right {
        order: -1;
        /* image on top for mobile if you prefer */
    }
}

/* ---------------- SERVICES CTA BUTTON ----------------*/

/* ---------------- EXCLUSIVE SERVICES – TYPO & LAYOUT ---------------- */

.services-section {
    background-color: #f6f6f6;
    color: #111;
    padding: 5.5rem 6vw 5.5rem;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 4.5rem;
    align-items: flex-start;
}

/* LEFT COLUMN */

.services-left {
    max-width: 560px;
}

/* Bigger, stronger heading */
.services-heading {
    font-size: clamp(2.2rem, 3.1vw, 2.7rem);
    /* ~35–43px on desktop */
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

/* Larger body copy under heading */
.services-intro {
    font-size: 1.08rem;
    /* ~17–18px */
    line-height: 1.8;
    max-width: 34rem;
    color: #333333;
    margin-bottom: 2.6rem;
}

/* Accordion titles – a bit bigger & bolder */
.service-title {
    font-size: 1.05rem;
    /* ~17px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111;
}

/* Accordion body text */
.service-body p {
    font-size: 0.97rem;
    /* ~15–16px */
    line-height: 1.8;
    color: #444;
    max-width: 32rem;
}

/* Keep the plus icon dark */
.service-icon::before,
.service-icon::after {
    background-color: #111;
}

/* RIGHT COLUMN – keep image confidently large */
.services-right {
    display: flex;
    justify-content: flex-end;
}

.services-media {
    max-width: 600px;
    /* adjust if you want even larger */
    width: 100%;
}

.services-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* CTA button under accordion (what you already have, just for reference) */
.services-cta {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2.4rem;
    background-color: #ffcf24;
    color: #111;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease,
        background-color 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.services-cta:hover {
    transform: translateY(-3px);
    background-color: #ffcf24;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

/* ============================= */
/*        CTA SECTION            */
/* ============================= */

.cta-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: url('images/appointment.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* Dark overlay */
    backdrop-filter: none !important;
}

.cta-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

/* Heading */
.cta-heading {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #f6f6f6;
    line-height: 1.15;
    margin-bottom: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Subtext */
.cta-subtext {
    font-size: 1.05rem;
    color: #f6f6f6;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

/* CTA Button */
.cta-button {
    background: #ffcf24;
    color: #111;
    font-size: 1.1rem;
    padding: 1.1rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.cta-button:hover {
    background: #ffcf24;
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}

/* ============================= */
/*          OUR STORY            */
/* ============================= */

.about-section {
    background-color: #f6f6f6;
    padding: 5rem 6vw;
    /* was 6rem 8rem – this scales better and adds space */
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;

    /* LEFT: fixed logo column, RIGHT: flexible text column */
    grid-template-columns: 320px minmax(0, 1.6fr);
    gap: 4rem;
    align-items: center;
}

/* IMAGE ON THE LEFT */
.about-media {
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: center;
    /* or flex-start if you want it closer to text */
    align-items: center;
}

.about-media img {
    width: 90%;
    /* fill most of that 320px column */
    max-width: 340px;
    /* safety cap on huge screens */
    height: auto;
    object-fit: contain;
    display: block;
}


/* TEXT ON THE RIGHT */
.about-content {
    color: #111;
    position: relative;
}

/* Heading – bold & spaced like inspo */
.about-heading {
    font-size: clamp(2.2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 2.1rem;
}


/* Two-column copy, like the reference */
.about-text-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.about-text-columns p {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #333;
    max-width: 32rem;
    /* keeps each column from feeling too wide */
}

.about-arrow {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    margin-top: 1.5rem;
    text-decoration: none;
    color: #111;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .95rem;
    padding: .45rem 0;
    position: relative;

}

.about-arrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #111;
    transition: width .25s ease;
    opacity: .85;
}

.about-arrow:hover::after {
    width: 50%;
}

.about-arrow:hover i {
    transform: translateX(6px);
}




/* --------- Responsive tweaks --------- */
@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-media img {
        max-height: 380px;
    }

    .about-text-columns {
        grid-template-columns: 1fr;
    }

}

/* ============================= */
/*         SOCIAL STRIP           */
/* ============================= */

.social-section {
    background-color: #f6f6f6;
    padding: 1rem 0 2rem;
    text-decoration: none;
}

/* ---- marquee ---- */

.social-marquee {
    overflow: hidden;
    white-space: nowrap;
    padding-block: 1.2rem;
    border: none;
    /* remove lines */
}


.social-marquee-inner {
    display: inline-flex;
    align-items: center;
    gap: 3.5rem;
    animation: social-scroll 65s linear infinite;
}

.social-marquee-inner span {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    /* smaller, balanced */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #050505;
}

@keyframes social-scroll {
    0% {
        transform: translateX(0);
    }

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

/* ---- social icons ---- */

.social-icons {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    text-decoration: none;
}

.social-btn {
    width: 58px;
    height: 58px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #f6f6f6;
    transition: 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none !important;
}

.social-icons a {
    text-decoration: none !important;
}

.social-btn:hover {
    color: #ffcf24;
    /* gold brand color */
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* ============================= */
/*          CONTACT              */
/* ============================= */

.contact-section {
    background-color: #f6f6f6;
    padding: 5rem 8vw;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: stretch;
}

/* LEFT: card with form */
.contact-form-wrapper {
    background-color: transparent;
    border-radius: 22px;
    padding: 2.5rem 2.8rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #111;
    margin: 0 0 0.4rem;
}


.contact-form-row {
    margin-bottom: 1.6rem;
}

.contact-name-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
    color: #333;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 0.65rem 0.2rem;
    font-size: 1rem;
    font-family: inherit;
    color: #111;
    outline: none;
    background: transparent;
    border: none;
    border-bottom: 2px solid #111;
    transition: border-color 0.2s ease;
    padding-bottom: 0.9rem;

}

.contact-input:focus,
.contact-textarea:focus {
    border-bottom: 2px solid #111;
}


.contact-textarea {
    min-height: 120px;
    resize: vertical;
}

/* submit button */
.contact-cta {
    margin-top: 0.8rem;
    background: #000;
    color: #f6f6f6;
    border: none;
    border-radius: 999px;
    padding: 0.95rem 3rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: 0.2s ease;
}

.contact-cta:hover {
    background: #222;
    transform: translateY(-3px);
}

/* RIGHT: image panel */

.contact-image-wrapper {
    border-radius: 22px;
    overflow: hidden;

}

.contact-media {
    width: 100%;
    height: 100%;
}

.contact-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE STACKING */
@media (max-width: 980px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-name-row {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/*            FOOTER             */
/* ============================= */

.site-footer {
    background-color: #f6f6f6;
    color: #090817;
    padding: 3.5rem 8vw 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    /* ✅ 3 columns */
    gap: 2.8rem;
    align-items: start;
}

/* Brand column */
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 22rem;
    color: rgba(13, 7, 25, 0.82);
}

/* Social icons */
.footer-social {
    margin-top: 1.4rem;
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #f6f6f6;
    font-size: 0.95rem;
    transition: 0.2s ease;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.footer-social a:hover {
    background: #ffcf24;
    color: #111;
    transform: translateY(-2px);
}

/* Headings + lists */
.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
    color: #090817;
}

.footer-links,
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-list li {
    margin-bottom: 0.55rem;
    font-size: 0.92rem;
    color: rgba(13, 7, 25, 0.82);
}

.footer-links a,
.footer-list a {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover,
.footer-list a:hover {
    color: #ffcf24;
}

/* Bottom bar */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.303);
}

.footer-credit {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        /* ✅ stacks into 2 columns */
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        /* ✅ fully stacked */
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        color: rgba(0, 0, 0, 0.303);
    }
}

/* ============================= */
/*       SERVICES PAGE STENCIL   */
/* ============================= */

.services-page {
    background: #f6f6f6;
    color: #111;
}

/* optional: a light header variant for white sections */
.site-header--light {
    position: relative;
    top: 0;
    background: #f6f6f6;
    backdrop-filter: blur(10px);
    border-bottom: none;
    box-shadow: none;
}

.nav-links--dark a {
    color: #111;
}

.nav-links--dark a::after {
    background-color: #ffcf24;
}

.nav-links a.is-active::after {
    width: 100%;
}

/* TOP INTRO */
.services-hero {
    padding: 6.5rem 8vw 3.5rem;
}

.services-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.services-hero-title {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 0.92;
}

.services-hero-copy {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(17, 17, 17, 0.85);
    max-width: 36rem;
    justify-self: end;
}

/* CARDS GRID */
.services-grid-wrap {
    padding: 0 8vw 3rem;
}

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

.service-card {
    background: transparent;
}

.service-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0;
    /* stencil is sharp corners */
    background: #e7e7e7;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding-top: 2.2rem;
}

.service-card-title {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1.3rem;
}

.service-card-price {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}

.service-card-text {
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.82);
    max-width: 32rem;
}

/* ============================= */
/*   SERVICES & CAPABILITIES     */
/* ============================= */

.service-capabilities {
    background: #ffcf24;
    color: #111;
    padding: 3.2rem;
    box-shadow:
        inset 0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 -10px 20px rgba(0, 0, 0, 0.08);
}

.service-capabilities-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.capabilities-head {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.capabilities-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-top: 0;
    color: #111;
}

.capabilities-subtext {
    max-width: 62rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(17, 17, 17, 0.84);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    /* slightly tighter */
    margin-top: 1.2rem;
}

.capabilities-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    /* cleaner */
    border: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    /* subtle premium depth */
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.capabilities-list:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.10);
}

.capabilities-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    font-weight: 650;
    letter-spacing: 0.01em;
}

.capabilities-list li:last-child {
    border-bottom: none;
}

.capabilities-cta-row {
    margin-top: 2.6rem;
}

.capabilities-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.6rem;
    border-radius: 999px;
    background: #000;
    color: #f6f6f6;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.capabilities-cta:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ============================= */
/* RESPONSIVE (MERGED)           */
/* ============================= */
@media (max-width: 980px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .services-hero-inner {
        grid-template-columns: 1fr;
    }

    .services-hero-copy {
        justify-self: start;
        max-width: 42rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-card-body {
        padding-top: 1.6rem;
    }
}

/* ============================= */
/*        INDUSTRIES SERVED      */
/* ============================= */

.industries-section {
    background: #f6f6f6;
    color: #111;
    padding: 4.5rem 6vw 6rem;
}

.industries-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-head {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.industries-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
}

.industries-subtext {
    max-width: 62rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(17, 17, 17, 0.84);
}

/* Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    margin-top: 1.4rem;
}

/* Cards */
.industry-card {
    background: #f6f6f6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.8rem 1.6rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.10);
}

.industry-card h3 {
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.7rem;
}

.industry-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.78);
}

@media (max-width: 980px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* ============================= */
/*        HOW IT WORKS           */
/* ============================= */

.how-it-works {
    background: #f6f6f6;
    color: #111;
    padding: 4.5rem 8vw 4.5rem;
}

.how-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.how-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.05;
}

.how-subtext {
    margin-top: 0.9rem;
    max-width: 62rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(17, 17, 17, 0.84);
}

.steps-grid {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.step {
    background: #f6f6f6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    padding: 1.6rem 1.5rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.10);
}

.step-num {
    display: inline-block;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: rgba(17, 17, 17, 0.55);
    margin-bottom: 0.9rem;
}

.step-heading {
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
}

.step-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.78);
}

/* Responsive */
@media (max-width: 980px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/*       DIRECT CONTACT STRIP    */
/* ============================= */

.contact-strip {
    background: #ffcf24;
    /* brand pop */
    color: #111;
    padding: 4.2rem 8vw 4.6rem;
}

.contact-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-strip-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.contact-strip-subtext {
    margin: 1rem auto 2rem;
    max-width: 46rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.78);
}

.contact-strip-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.1rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    background: #f6f6f6;
    border: 1px solid rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #111;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, background 0.18s ease;
}

.contact-pill:hover {
    transform: translateY(-2px);
    background: #f6f6f6;
}

.contact-strip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.6rem;
    border-radius: 999px;
    background: #000;
    color: #f6f6f6;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-strip-btn:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
}

/* ============================= */
/*           ABOUT PAGE          */
/* ============================= */

.about-page {
    background: #f6f6f6;
    color: #111;
}

/* HERO */
.about-hero {
    padding: 3rem 8vw;
    margin-bottom: 0;
}

.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-hero-title {
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.about-hero-text p {
    font-size: 1.05rem;
    line-height: 1.8;

    color: rgba(17, 17, 17, 0.85);
}

.about-hero-media img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* EXPERIENCE */
.about-experience {
    background: #f6f6f6;
    padding: 4.5rem 8vw;
    margin-top: 0;
}

.experience-list {
    margin-top: 1.5rem;
    list-style: none;
}

.experience-list li {
    padding: 0.6rem 0;
    font-size: 1rem;
}

/* ============================= */
/*        WHY CHOOSE US          */
/* ============================= */

.about-why {
    background: #f6f6f6;
    padding: clamp(3.5rem, 6vw, 5.5rem) 8vw;
}

.about-why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-why .section-title {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

/* Optional subtitle if you add one later */
.about-why .section-subtitle {
    max-width: 70ch;
    opacity: .8;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.6rem);
    margin-top: 2.2rem;
}

/* Cards */
.why-card {
    position: relative;
    background: #f6f6f6;
    /* key fix */
    padding: 2rem 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}

/* Golden accent line */
.why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #ffcf24;
}

/* Tiny soft glow */
.why-card::after {
    content: "";
    position: absolute;
    inset: -40% -40% auto -40%;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 207, 36, .22), transparent 65%);
    pointer-events: none;
}

.why-card h3 {
    margin: 0 0 .6rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
}

.why-card p {
    margin: 0;
    line-height: 1.75;
    color: rgba(0, 0, 0, .78);
    font-size: 1rem;
}

/* Hover – premium, not “cartoony” */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .16);
    border-color: rgba(0, 0, 0, .14);
}

/* Responsive */
@media (max-width: 980px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 1.8rem 1.4rem;
    }
}


/* MISSION */
.about-mission {
    padding: 4.5rem 8vw;
    background: #f6f6f6;
}

.about-mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* VALUES */
.about-values {
    background: #f6f6f6;
    padding: 4.5rem 8vw;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.values-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.6rem;
}

/* CTA */
.about-cta {
    background: #ffcf24;
    padding: 2rem 5vw;
    text-align: center;
}

.cta-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #000;
    color: #f6f6f6;
    border-radius: 999px;
    margin: 0.5rem;
    text-decoration: none;
}

.cta-pill.outline {
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

/* ============================= */
/*        ABOUT MARQUEE          */
/* ============================= */

.about-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f6f6f6;
    padding: 1.4rem 0;
    margin-bottom: 0;
}

/* REMOVE separators completely */
.about-marquee::before,
.about-marquee::after {
    display: none;
}

/* scrolling text */
.about-marquee-track {
    display: flex;
    align-items: center;
    gap: 3.2rem;
    /* slightly tighter */
    white-space: nowrap;
    transform: translateX(0);
    animation: aboutScroll 40s linear infinite;
}

/* text styling */
.about-marquee-track span {
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(17, 17, 17, 0.85);
    transition: color 0.25s ease, transform 0.25s ease;
}

/* hover micro-interaction */
.about-marquee-track span:hover {
    color: #ffcf24;
    transform: translateY(-1px);
}

/* fade edges (keep – subtle luxury) */
.about-marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    pointer-events: none;
    z-index: 2;
}

.about-marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #f6f6f6 35%, transparent);
}

.about-marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #f6f6f6 35%, transparent);
}

.experience-yellow {
    background: #ffcf24;
    padding: clamp(3.5rem, 6vw, 5.2rem) 8vw;
}

.experience-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

/* LEFT SIDE: make it easier to read */
.experience-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 46rem;
}

.experience-list li {
    position: relative;
    padding: .9rem 0 .9rem 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, .86);
    /* ✅ easier than white */
    font-weight: 600;
    border-bottom: 1px solid rgba(17, 17, 17, .12);
}

.experience-list li:last-child {
    border-bottom: none;
}

/* small premium bullet */
.experience-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.55rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(17, 17, 17, .85);
}

/* RIGHT SIDE */
.experience-highlight {
    text-align: right;
}

.experience-heading {
    font-size: clamp(2.2rem, 3.2vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(17, 17, 17, .85);
    /* soft white */
    margin-bottom: 1.3rem;
}

/* 6+ stays white for impact */
.experience-number {
    font-size: clamp(5rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    color: #f6f6f6;
    margin-bottom: .6rem;
    letter-spacing: -0.02em;
}


.experience-sub {
    font-size: .98rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .85);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .experience-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-highlight {
        text-align: left;
    }
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .experience-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}



/* RESPONSIVE */
@media (max-width: 900px) {
    .experience-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .experience-highlight {
        text-align: left;
    }
}

/* animation */
@keyframes aboutScroll {
    0% {
        transform: translateX(0);
    }

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

/* mobile tuning */
@media (max-width: 768px) {
    .about-marquee {
        padding: 1rem 0;
    }

    .about-marquee-track {
        gap: 2.4rem;
    }

    .about-marquee-track span {
        font-size: 1.2rem;
        letter-spacing: 0.12em;
    }
}

/* ============================= */
/*     VISION & MISSION (△ ▽)    */
/* ============================= */

.vision-mission-section {
    height: clamp(420px, 80vh, 760px);
    background: #f6f6f6;
    position: relative;
    overflow: hidden;
}

.vm-shapes {
    height: 100%;
    width: 100%;
    position: relative;
}

.shape {
    position: absolute;
    top: 0;
    height: 85%;
    width: min(1600px, 100vw);
    min-width: 560px;
    padding-inline: clamp(2.5rem, 6vw, 7rem);
}

.shape svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


/* Left shape: big & coming from left */
.shape--vision {
    justify-content: flex-start;
    transform: translateX(-18vw);
    left: -8vw;
    z-index: 1;
    text-align: left;
}

.shape--vision svg path {
    fill: #ffcf24;
}

/* Right shape: big & coming from right */
.shape--mission {
    justify-content: flex-end;
    transform: translateX(18vw);
    right: -8vw;
    z-index: 2;
    text-align: right;
}

.shape--mission svg path {
    fill: #222222;
}

/* Content positioning */
.shape-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: min(520px, 42vw);
    z-index: 5;
}

.shape-content h3 {
    font-size: clamp(2.1rem, 3.3vw, 3.6rem);
    margin: 0 0 0.9rem 0;
    line-height: 0.92;
    letter-spacing: 0.06em;
    font-weight: 900;
    text-transform: uppercase;
}

.shape-content p {
    margin: 0;
    font-size: clamp(0.98rem, 1.15vw, 1.12rem);
    line-height: 1.7;
    opacity: 0.92;
}

/* Vision (Yellow/Left) - Text aligned LEFT */
.shape--vision .shape-content {
    left: 42%;
    text-align: left;
    color: #111;
}

.shape--vision .shape-content h3 {
    max-width: 10ch;
}

.shape--vision .shape-content p {
    max-width: 36ch;
}

/* Mission (Gray/Right) - Text aligned RIGHT */
.shape--mission .shape-content {
    right: 42%;
    text-align: right;
    color: #f6f6f6;
}

.shape--mission .shape-content h3 {
    max-width: 10ch;
    margin-left: auto;
}

.shape--mission .shape-content p {
    max-width: 36ch;
    margin-left: auto;
}

/* ============================= */
/*          CONTACT PAGE         */
/* ============================= */

.contact-page {
    background: #f6f6f6;
}

/* ---------- HERO ---------- */
.contact-hero {
    padding: clamp(6.2rem, 9vh, 7.6rem) 8vw 3.2rem;
    background: #f6f6f6;
}

.contact-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: clamp(1.8rem, 3.5vw, 3.2rem);
    align-items: start;
}

.contact-kicker {
    margin: 0 0 0.65rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgba(17, 17, 17, 0.6);
}

.contact-title {
    margin: 0 0 1rem;
    font-size: clamp(3.1rem, 5.5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 0.95;
    color: #111;
}

.contact-subtitle {
    margin: 0;
    max-width: 60ch;
    line-height: 1.85;
    font-size: 1.05rem;
    color: rgba(17, 17, 17, 0.82);
}

.contact-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1.6rem;
}

.contact-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.78);
    font-weight: 800;
    font-size: 0.9rem;
}

/* ---------- CARDS ---------- */
.contact-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Remove default link styles in this block */
.contact-hero a,
.contact-card {
    text-decoration: none !important;
    color: #111 !important;
}

.contact-card {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1.15rem;
    border-radius: 18px;
    background: #f6f6f6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.12);
}

.contact-card--plain {
    cursor: default;
}

.contact-card--plain:hover {
    transform: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #ffcf24;
    color: #111;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    font-size: 1.05rem;
}

.contact-card-label {
    display: block;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 900;
    opacity: 0.55;
    margin-bottom: 0.25rem;
}

.contact-card-value {
    font-weight: 900;
    font-size: 0.98rem;
    line-height: 1.2;
}

.contact-card-arrow {
    opacity: 0.4;
}

/* ---------- FORM SECTION (YELLOW STRIP) ---------- */
/* Smaller yellow area + centered content */
.contact-form-section {
    background: #ffcf24;
}

.contact-form-inner {
    max-width: 780px;
    margin: 0;
    margin-left: 8vw;
    border-radius: 20px;
    padding: 1.6rem 1.6rem 1.5rem;
    background: #ffcf24;
}


.contact-heading {
    font-size: clamp(1.7rem, 2.2vw, 2.1rem);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 0.55rem;
    padding-left: 0.35rem;
}

.contact-form-subtitle {
    margin: 0 0 1.3rem;
    color: rgba(17, 17, 17, 0.75);
    line-height: 1.7;
    max-width: 62ch;
    padding-left: 0.35rem;
}

/* tighter vertical rhythm */
.contact-form-row {
    margin-bottom: 1.5rem;
}

.contact-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.contact-label {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
    color: rgba(17, 17, 17, 0.85);
}

.contact-label-hint {
    font-weight: 800;
    opacity: 0.6;
    text-transform: none;
    letter-spacing: 0.02em;
}

/* compact inputs + transparent feel */


.contact-textarea {
    min-height: 80px;
    resize: vertical;
}


/* placeholder styling */
.contact-input::placeholder,
.contact-textarea::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

/* focus effect */
.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-bottom-color: #000;
}

/* button aligned left + premium */
.contact-actions {
    margin-top: 0.6rem;
    display: flex;
    justify-content: flex-start;
}

.contact-cta {
    border: none;
    cursor: pointer;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #111;
    color: #f6f6f6;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-cta:hover {
    transform: translateY(-2px);
    background: #1a1a1a;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .contact-hero-inner {
        grid-template-columns: 1fr;
    }

    .contact-name-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 1.6rem 8vw 2rem;
    }

    .contact-form-inner {
        padding: 1.6rem 1.4rem 1.4rem;
    }
}

@media (max-width: 980px) {
    .hero-left {
        padding: 2.2rem 1.4rem;
        text-align: left;
    }

    .hero-right {
        min-height: 45vh;
    }
}

@media (max-width: 700px) {
    .vision-mission-section {
        height: auto;
        padding: 2.5rem 0;
    }

    .vm-shapes {
        height: 760px;
    }
}

@media (max-width: 980px) {
    .contact-form-inner {
        margin-left: 0;
        max-width: 100%;
    }
}


@media (max-width: 700px) {
    .shape {
        min-width: 0;
        width: 100%;
        padding-inline: 1.2rem;
        height: 50%;
    }

    .shape--vision,
    .shape--mission {
        transform: none;
        left: 0;
        right: 0;
    }

    .shape--vision {
        top: 0;
    }

    .shape--mission {
        top: 45%;
    }

    .shape-content {
        width: 90%;
        left: 5% !important;
        right: auto !important;
        text-align: left !important;
    }
}

@media (max-width: 900px) {
    .about-text-columns {
        grid-template-columns: 1fr;
    }
}

/* ---------------- MOBILE SAFETY NET ---------------- */
html,
body {
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------------- HEADER MOBILE FIX ---------------- */
@media (max-width: 600px) {
    .nav-inner {
        gap: 0.7rem;
        flex-wrap: wrap;
    }

    .brand {
        margin-right: 0;
        gap: 0.5rem;
    }

    .logo-icon {
        height: 44px;
    }

    .logo-text {
        height: 26px;
    }

    .btn {
        padding: 0.65rem 1.1rem;
        font-size: 0.82rem;
    }

    /* if button container exists */
    .nav-cta {
        flex-shrink: 0;
    }
}

/* ---------------- ABOUT PAGE MOBILE FIX ---------------- */
@media (max-width: 980px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero {
        padding: 2.5rem 6vw;
    }
}

/* ---------------- VISION/MISSION MOBILE FIX ---------------- */
@media (max-width: 700px) {
    .vision-mission-section {
        height: auto;
        padding: 2.5rem 0;
    }

    .vm-shapes {
        height: auto;
        display: grid;
        gap: 1.2rem;
        padding: 0 6vw;
    }

    /* kill the giant absolute positioning */
    .shape {
        position: relative;
        inset: auto;
        transform: none !important;
        width: 100%;
        height: auto;
        min-width: 0;
        padding: 0;
    }

    /* hide the SVG triangles on mobile */
    .shape svg {
        display: none;
    }

    /* make clean cards instead */
    .shape--vision,
    .shape--mission {
        border-radius: 22px;
        overflow: hidden;
        padding: 1.4rem 1.2rem;
    }

    .shape--vision {
        background: #ffcf24;
        color: #111;
    }

    .shape--mission {
        background: #222;
        color: #f6f6f6;
    }

    .shape-content {
        position: relative;
        top: auto;
        left: auto !important;
        right: auto !important;
        transform: none;
        width: 100%;
        text-align: left !important;
    }

    .shape-content h3 {
        max-width: none;
    }

    .shape-content p {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.85rem;
    }

    .hero-left p {
        font-size: 0.98rem;
    }
}

/* =========================
   EXCLUSIVE SERVICES — MOBILE FIX
   ========================= */
@media (max-width: 900px) {
    .services-section {
        padding: 3.2rem 6vw !important;
    }

    .services-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Image on top */
    .services-right {
        order: -1;
        justify-content: center !important;
    }

    .services-media {
        max-width: 520px !important;
    }

    /* Make heading not overflow / not too huge */
    .services-heading {
        font-size: 2rem !important;
        letter-spacing: 0.08em !important;
        margin-bottom: 1.2rem !important;
    }

    .services-intro {
        max-width: 100% !important;
        margin-bottom: 1.6rem !important;
    }

    /* Accordion spacing */
    .service-header {
        padding: 0.9rem 0 !important;
    }

    .service-body {
        padding-right: 0 !important;
        /* you had padding-right: 3rem */
    }

    .service-body p {
        max-width: 100% !important;
    }
}

/* Even smaller phones */
@media (max-width: 480px) {
    .services-heading {
        font-size: 1.75rem !important;
    }

    .service-title {
        font-size: 0.98rem !important;
        letter-spacing: 0.05em !important;
    }
}

/* =========================
   HAMBURGER — MOBILE FIX
   ========================= */
@media (max-width: 900px) {
    .site-header {
        position: fixed;
        /* better on mobile */
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        /* keep above hero/video */
    }

    .nav-toggle {
        display: flex !important;
        z-index: 10000;
        position: relative;
    }
}

.nav-toggle span {
    background-color: #f6f6f6;
}

/* Hamburger lines should be dark on light header pages */
.site-header--light .nav-toggle span {
    background-color: #111;
}

.nav-links.is-open {
    display: flex;
    /* ... */
}