:root {
    --black: #0B0C10;
    --beige: #D6C2A1;
    --olive: #6B6B3A;
    --olive-light: #8B8B4A;
    --olive-glow: rgba(107, 107, 58, 0.3);
    --white: #F5F0E8;
    --gray: #1A1B1F;
    --gray2: #252628;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1100px;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.55);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(214, 194, 161, 0.12);
    border-radius: 14px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--olive), var(--beige));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    letter-spacing: -0.3px;
}

.nav-logo-text span {
    color: var(--beige);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: rgba(245, 240, 232, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--beige);
}

.nav-cta {
    background: var(--beige);
    color: var(--black);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 12, 16, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.mobile-menu .m-cta {
    background: var(--beige);
    color: var(--black);
    padding: 14px 40px;
    border-radius: 10px;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: var(--white);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, #111318 0%, var(--black) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-sunburst {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-sunburst svg {
    width: 100%;
    height: 100%;
}

.focal-point {
    position: absolute;
    top: 42%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--olive-light), var(--olive));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 40px var(--olive-glow), 0 0 80px rgba(107, 107, 58, 0.15);
    animation: pulseGlow 3s ease-in-out infinite;
}

.focal-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 40px var(--olive-glow), 0 0 80px rgba(107, 107, 58, 0.15);
    }

    50% {
        box-shadow: 0 0 60px rgba(107, 107, 58, 0.5), 0 0 120px rgba(107, 107, 58, 0.25);
    }
}

/* Hero content sectors */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
}

.hero-brand {
    position: absolute;
    top: 15%;
    left: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--beige);
    transform: translateX(-50%);
    white-space: nowrap;
}

.hero-img-circle {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(214, 194, 161, 0.3);
    box-shadow: 0 0 40px rgba(107, 107, 58, 0.2);
}

.hero-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-circle-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f2018, #2a2b1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--olive-light);
}

.hero-headline {
    position: absolute;
    top: 28%;
    left: 54%;
    max-width: 420px;
}

.hero-headline h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

.hero-headline h1 span {
    color: var(--beige);
}

.hero-img-para {
    position: absolute;
    top: 52%;
    left: 60%;
    width: 190px;
    height: 120px;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.hero-img-para img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-para-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1c11, #25271a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--olive-light);
}

.hero-tagline {
    position: absolute;
    top: 60%;
    left: 12%;
    max-width: 260px;
}

.hero-tagline p {
    font-size: 15px;
    color: rgba(214, 194, 161, 0.8);
    line-height: 1.7;
    font-style: italic;
}

.hero-cta {
    position: absolute;
    bottom: 20%;
    left: 60%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--beige);
    color: var(--black);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(214, 194, 161, 0.3);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(214, 194, 161, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(214, 194, 161, 0.4);
    color: var(--beige);
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--beige);
    background: rgba(214, 194, 161, 0.08);
}

.hero-trust {
    position: absolute;
    bottom: 22%;
    left: 14%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(214, 194, 161, 0.1);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--beige);
}

.trust-badge i {
    color: var(--olive-light);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.3);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll i {
    font-size: 16px;
}

@keyframes bounce {

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

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Mobile hero override */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .hero-content {
        min-height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .hero-brand,
    .hero-img-circle,
    .hero-img-para,
    .hero-tagline,
    .hero-cta,
    .hero-trust,
    .hero-headline {
        position: static;
        transform: none;
        max-width: 100%;
        left: auto;
        top: auto;
        bottom: auto;
    }

    .hero-img-circle {
        width: 120px;
        height: 120px;
    }

    .hero-cta {
        align-items: center;
    }

    .focal-point {
        display: none;
    }
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 20px;
    background: var(--black);
    overflow: hidden;
}

.about-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #161810, #1f2118);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214, 194, 161, 0.1);
}

.about-img-wrap i {
    font-size: 80px;
    color: var(--olive-light);
    opacity: 0.4;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--beige);
    color: var(--black);
    padding: 20px 24px;
    border-radius: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(214, 194, 161, 0.3);
}

.about-badge .num {
    font-size: 40px;
    line-height: 1;
}

.about-badge .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.about-text {
    padding-left: 20px;
}

.section-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--beige);

}

.about-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--beige);

}

.about-text h2 em {
    color: var(--beige);
    font-style: normal;
}

.about-text p {
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-feature-box {
    margin-top: 28px;
    padding: 20px 24px;
    border-left: 3px solid var(--beige);
    background: rgba(214, 194, 161, 0.06);
    border-radius: 0 10px 10px 0;
}

.about-feature-box p {
    color: var(--beige);
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

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

    .about-text {
        padding-left: 0;
    }

    .about-badge {
        bottom: -10px;
        right: 10px;
    }
}

/* ─── SERVICES ─── */
.services {
    padding: 120px 20px;
    background: #080909;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236B6B3A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
}

.services-header h2 span {
    color: var(--beige);
}

.services-header p {
    color: rgba(245, 240, 232, 0.5);
    margin-top: 12px;
    font-size: 15px;
}

/* Card deck */
.deck-wrap {
    position: relative;
    width: 480px;
    height: 580px;
    margin: 0 auto;
    z-index: 1;
}

.deck-wrap.narrow {
    width: 90vw;
    max-width: 400px;
    height: auto;
    min-height: 520px;
}

.service-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
    backface-visibility: hidden;
}

.service-card:nth-child(1) {
    transform: rotate(0deg);
    z-index: 6;
}

.service-card:nth-child(2) {
    transform: rotate(-2deg) translateY(8px);
    z-index: 5;
}

.service-card:nth-child(3) {
    transform: rotate(1.5deg) translateY(16px);
    z-index: 4;
}

.service-card:nth-child(4) {
    transform: rotate(-1deg) translateY(24px);
    z-index: 3;
}

.service-card:nth-child(5) {
    transform: rotate(2deg) translateY(32px);
    z-index: 2;
}

.service-card:nth-child(6) {
    transform: rotate(-1.5deg) translateY(40px);
    z-index: 1;
}

.service-card.fly-out {
    transform: rotate(15deg) translate(110vw, -10vh) !important;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.card-img-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.card-img-inner {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.card-body {
    padding: 24px 28px 20px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

.card-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 100px;
    font-weight: 700;
    position: absolute;
    right: 20px;
    top: 0;
    opacity: 0.07;
    line-height: 1;
    color: #000;
    pointer-events: none;
}

.card-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.2;
}

.card-desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 16px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.card-tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.65);
    letter-spacing: 0.5px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-counter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}

.deck-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    position: relative;
    z-index: 2;
}

.deck-controls.narrow-ctrl {
    margin-top: 40px;
    position: static;
}

.deck-btn {
    min-width: 160px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.deck-btn-next {
    background: var(--beige);
    color: var(--black);
}

.deck-btn-next:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.deck-btn-reset {
    background: transparent;
    border: 1px solid rgba(214, 194, 161, 0.3);
    color: var(--beige);
}

.deck-btn-reset:hover {
    border-color: var(--beige);
}

.card-call-link {
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.card-call-link:hover {
    transform: translateX(2px);
    opacity: 0.85;
}

@media (max-width: 576px) {
    .services {
        padding: 90px 16px;
    }

    .deck-wrap {
        width: min(100%, 380px);
        height: 560px;
    }

    .card-body {
        padding: 20px 18px 16px;
    }

    .card-name {
        font-size: 20px;
    }

    .deck-controls {
        margin-top: 28px;
        gap: 12px;
    }

    .deck-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Card colors */
.card-c1 {
    background: #e8dcc8;
}

.card-c2 {
    background: #c8d4c0;
}

.card-c3 {
    background: #d4c8c0;
}

.card-c4 {
    background: #c4ccd4;
}

.card-c5 {
    background: #d4d0c0;
}

.card-c6 {
    background: #c8c4d0;
}

/* ─── DETAIL SERVICE BLOCK ─── */
.detail-service {
    padding: 100px 20px;
    background: #0d0f12;
}

.detail-service-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 42px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(214, 194, 161, 0.18);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.detail-service-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
}

.detail-service-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.detail-service-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 14px;
}

.detail-service-content p {
    color: rgba(245, 240, 232, 0.78);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 54ch;
}

@media (max-width: 900px) {
    .detail-service-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 22px;
    }

    .detail-service-image,
    .detail-service-image img {
        min-height: 260px;
    }
}

@media (max-width: 576px) {
    .detail-service {
        padding: 80px 16px;
    }

    .detail-service-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 22px;
    }
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #111318 0%, #0e100c 100%);
}

.cta-diagonal {
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 107, 58, 0.12) 0%, transparent 60%);
    pointer-events: none;
    transform: skewY(-2deg);
}

.cta-inner {
    max-width: 700px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--beige);

}

.cta-inner h2 span {
    color: var(--beige);
}

.cta-inner p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 16px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--beige);
    margin-bottom: 24px;
    display: block;
    text-decoration: none;
}

.cta-phone i {
    margin-right: 8px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(0);
    }
}

/* ─── WHY CHOOSE US ─── */
.why {
    padding: 120px 20px;
    background: var(--black);
}

.why-inner {
    max-width: 1100px;
    margin: auto;
}

.why-header {
    margin-bottom: 60px;
}

.why-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
}

.why-header h2 span {
    color: var(--beige);
}

.why-header p {
    color: rgba(245, 240, 232, 0.5);
    margin-top: 12px;
    font-size: 15px;
    max-width: 500px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.why-item {
    padding: 40px 36px;
    background: var(--gray);
    border: 1px solid rgba(214, 194, 161, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.why-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--beige);
    transition: width 0.4s;
}

.why-item:hover::after {
    width: 100%;
}

.why-item:hover {
    background: #1e1f22;
}

.why-item:first-child {
    border-radius: 16px 0 0 0;
}

.why-item:nth-child(3) {
    border-radius: 0 16px 0 0;
}

.why-item:nth-child(4) {
    border-radius: 0 0 0 16px;
}

.why-item:last-child {
    border-radius: 0 0 16px 0;
}

.why-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--olive-light);
    margin-bottom: 20px;
}

.why-icon {
    font-size: 32px;
    color: var(--beige);
    margin-bottom: 20px;
}

.why-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-item p {
    color: rgba(245, 240, 232, 0.55);
    font-size: 14px;
    line-height: 1.7;
}

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

    .why-item {
        border-radius: 12px !important;
    }
}

/* ─── FAQ ─── */
.faq {
    padding: 120px 20px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.faq-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(100px, 20vw, 220px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.faq-inner {
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
}

.faq-header h2 span {
    color: var(--beige);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    opacity: 0.5;
    transition: opacity 0.3s, box-shadow 0.3s;
}

.faq-item.c-cyan::before {
    background: #00e5ff;
}

.faq-item.c-violet::before {
    background: #b24bff;
}

.faq-item.c-pink::before {
    background: #ff4b8a;
}

.faq-item.c-green::before {
    background: #4bff8a;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.c-cyan:hover::before {
    box-shadow: 0 0 12px #00e5ff;
}

.faq-item.c-violet:hover::before {
    box-shadow: 0 0 12px #b24bff;
}

.faq-item.c-pink:hover::before {
    box-shadow: 0 0 12px #ff4b8a;
}

.faq-item.c-green:hover::before {
    box-shadow: 0 0 12px #4bff8a;
}

.faq-q {
    padding: 22px 20px 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 15px;
    color: rgba(245, 240, 232, 0.85);
    transition: color 0.25s;
}

.faq-q:hover {
    color: var(--white);
}

.faq-q-icon {
    font-size: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: rgba(245, 240, 232, 0.3);
}

.faq-item.open .faq-q-icon {
    transform: rotate(45deg);
}

.faq-bar {
    height: 1px;
    background: var(--beige);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    margin: 0 28px;
}

.faq-item.open .faq-bar {
    transform: scaleX(1);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 28px;
    color: rgba(245, 240, 232, 0.55);
    font-size: 14px;
    line-height: 1.8;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 28px 22px;
}

/* ─── SERVICE AREAS ─── */
.areas {
    padding: 100px 20px;
    background: var(--black);
}

.areas-inner {
    max-width: 1100px;
    margin: auto;
}

.areas-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    margin-bottom: 8px;
}

.areas-inner h2 span {
    color: var(--beige);
}

.areas-sub {
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 50px;
    font-size: 15px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-card {
    padding: 24px 20px;
    border-radius: 12px;
    border: 1px solid rgba(214, 194, 161, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s;
    cursor: default;
}

.area-card:hover {
    border-color: rgba(214, 194, 161, 0.3);
    background: rgba(214, 194, 161, 0.04);
    transform: translateY(-2px);
}

.area-card .city {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--beige);
}

.area-card .dist {
    font-size: 12px;
    color: rgba(245, 240, 232, 0.35);
    font-family: 'JetBrains Mono', monospace;
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── CONTACT ─── */
.contact {
    padding: 100px 20px;
    background: #080909;
}

.contact-inner {
    max-width: 900px;
    margin: auto;
}

.contact-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-inner h2 span {
    color: var(--beige);
}

.contact-sub {
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 50px;
    font-size: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-card {
    padding: 32px;
    border-radius: 16px;
    background: var(--gray);
    border: 1px solid rgba(214, 194, 161, 0.08);
}

.contact-card .c-icon {
    font-size: 28px;
    color: var(--beige);
    margin-bottom: 14px;
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-card a,
.contact-card p {
    color: rgba(245, 240, 232, 0.65);
    font-size: 15px;
    text-decoration: none;
    line-height: 1.7;
    display: block;
}

.contact-card a:hover {
    color: var(--beige);
}

.map-placeholder {
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #111318, #0e100c);
    border: 1px solid rgba(214, 194, 161, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(245, 240, 232, 0.2);
    margin-top: 24px;
}

.map-placeholder i {
    font-size: 48px;
}

.map-placeholder span {
    font-size: 13px;
}

.map-placeholder a {
    color: var(--beige);
    text-decoration: none;
    font-size: 13px;
}

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

/* ─── FOOTER ─── */
.footer {
    background: #050506;
    padding: 60px 20px 30px;
}

.footer-bento {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.f-cell {
    border-radius: 14px;
    padding: 28px;
    border: 1px solid rgba(214, 194, 161, 0.06);
}

.f-c1 {
    background: #0e0f12;
    grid-column: 1;
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.f-c2 {
    background: #0a0b0d;
    grid-column: 2;
}

.f-c3 {
    background: #0c0d0f;
    grid-column: 3;
}

.f-c4 {
    background: #0e0f11;
    grid-column: 4;
}

.f-c5 {
    background: #080909;
    grid-column: 2/4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.f-c6 {
    background: #0a0b0e;
    grid-column: 4;
}

.f-logo-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.f-logo-name span {
    color: var(--beige);
}

.f-tagline {
    color: rgba(245, 240, 232, 0.4);
    font-size: 13px;
    line-height: 1.7;
}

.f-copy {
    font-size: 11px;
    color: rgba(245, 240, 232, 0.2);
    margin-top: 20px;
}

.f-cell h4 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--olive-light);
    margin-bottom: 16px;
}

.f-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-nav a {
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s;
}

.f-nav a:hover {
    color: var(--beige);
}

.f-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-contact-list a,
.f-contact-list p {
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
}

.f-contact-list a:hover {
    color: var(--beige);
}

.f-social {
    display: flex;
    gap: 12px;
}

.f-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(214, 194, 161, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, 0.5);
    font-size: 16px;
    transition: all 0.25s;
    text-decoration: none;
}

.f-social a:hover {
    border-color: var(--beige);
    color: var(--beige);
}

.f-quote {
    font-style: italic;
    font-size: 13px;
    color: rgba(245, 240, 232, 0.35);
    line-height: 1.7;
    text-align: center;
}

.f-quote strong {
    color: var(--beige);
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    font-style: normal;
}

.f-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.f-hours p {
    font-size: 12px;
    color: rgba(245, 240, 232, 0.4);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.f-hours p span:last-child {
    color: rgba(245, 240, 232, 0.6);
}

.f-bottom {
    max-width: 1100px;
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(245, 240, 232, 0.2);
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 768px) {
    .footer-bento {
        grid-template-columns: 1fr 1fr;
    }

    .f-c1 {
        grid-column: 1/3;
        grid-row: auto;
    }

    .f-c2,
    .f-c3,
    .f-c4,
    .f-c5,
    .f-c6 {
        grid-column: auto;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}