    /* ===== RESET ===== */
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* ===== TOKENS ===== */
    :root {
        --alabaster: #F9F7F2;
        --obsidian: #1A1C1E;
        --bronze: #8C7356;
        --bronze-hover: #7a6349;
        --stone: #D1CDC2;
        --font-heading: 'Tenor Sans', serif;
        --font-body: 'Inter', sans-serif;
        --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ===== BASE ===== */
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        background: var(--alabaster);
        color: var(--obsidian);
        font-size: 18px;
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font-heading);
        letter-spacing: -0.02em;
        font-weight: normal;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    img {
        display: block;
        max-width: 100%;
    }

    button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
    }

    .utility-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 500;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    @media (min-width: 768px) {
        .container {
            padding: 0 3rem;
        }
    }

    @media (min-width: 1024px) {
        .container {
            padding: 0 4rem;
        }
    }

    .hairline {
        width: 100%;
        height: 1px;
        background: rgba(140, 115, 86, 0.2);
    }

    /* ===== NAVBAR ===== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        transition: all 0.5s var(--ease);
    }

    .navbar.scrolled {
        background: rgba(249, 247, 242, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(140, 115, 86, 0.2);
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 4rem;
    }

    @media (min-width: 768px) {
        .nav-inner {
            height: 5rem;
        }
    }

    .nav-logo {
        display: flex;
        align-items: center;
    }

    .nav-logo img {
        height: 42px;
        width: auto;
        display: block;
        transition: .3s;
    }

    .nav-logo:hover img {
        opacity: .85;
    }

    .navbar.scrolled .nav-logo {
        color: var(--obsidian);
    }

    .nav-links {
        display: none;
        align-items: center;
        gap: 2.5rem;
    }

    @media (min-width: 768px) {
        .nav-links {
            display: flex;
        }
    }

    .nav-links a {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #fff;
    }

    .navbar.scrolled .nav-links a {
        color: rgba(26, 28, 30, 0.6);
    }

    .navbar.scrolled .nav-links a:hover {
        color: var(--bronze);
    }

    .nav-cta {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.625rem 1.25rem;
        border: 1px solid var(--bronze);
        color: var(--bronze);
        transition: all 0.3s ease;
    }

    .navbar:not(.scrolled) .nav-cta {
        color: rgba(255, 255, 255, 0.8);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .navbar:not(.scrolled) .nav-cta:hover {
        background: var(--bronze);
        color: var(--alabaster);
        border-color: var(--bronze);
    }

    .navbar.scrolled .nav-cta:hover {
        background: var(--bronze);
        color: var(--alabaster);
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 0.5rem;
    }

    @media (min-width: 768px) {
        .nav-toggle {
            display: none;
        }
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }

    .navbar.scrolled .nav-toggle span {
        background: var(--obsidian);
    }

    .mobile-menu {
        display: none;
        background: var(--alabaster);
        border-top: 1px solid var(--stone);
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    @media (min-width: 768px) {
        .mobile-menu {
            display: none !important;
        }
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(26, 28, 30, 0.7);
    }

    .mobile-menu .nav-cta {
        text-align: center;
        padding: 0.75rem;
    }

    /* ===== HERO ===== */
    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
        cursor: crosshair;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 600px 500px at 50% 50%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
        transition: background 0.1s linear;
    }

    .hero-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 4rem;
    }

    @media (min-width: 768px) {
        .hero-content {
            padding-bottom: 6rem;
        }
    }

    .hero-subtitle {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 1rem;
        opacity: 0;
        animation: fadeUp 0.8s var(--ease) 0.2s forwards;
    }

    @media (min-width: 768px) {
        .hero-subtitle {
            margin-bottom: 1.5rem;
        }
    }

    .hero h1 {
        font-size: 2.25rem;
        color: #fff;
        line-height: 0.95;
        max-width: 900px;
        opacity: 0;
        animation: fadeUp 1s var(--ease) 0.4s forwards;
    }

    @media (min-width: 640px) {
        .hero h1 {
            font-size: 3rem;
        }
    }

    @media (min-width: 768px) {
        .hero h1 {
            font-size: 4.5rem;
        }
    }

    @media (min-width: 1024px) {
        .hero h1 {
            font-size: 5.5rem;
        }
    }

    .hero h1 .muted {
        color: var(--stone);
    }

    .hero-actions {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        opacity: 0;
        animation: fadeIn 0.8s ease 1s forwards;
    }

    @media (min-width: 640px) {
        .hero-actions {
            flex-direction: row;
            align-items: center;
            gap: 2rem;
        }
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.875rem 2rem;
        background: var(--bronze);
        color: var(--alabaster);
        transition: background 0.3s ease;
    }

    .btn-primary:hover {
        background: var(--bronze-hover);
    }

    .btn-primary:focus-visible {
        outline: 2px solid var(--bronze);
        outline-offset: 2px;
    }

    .btn-ghost {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.6);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 0;
        transition: color 0.3s ease;
    }

    .btn-ghost:hover {
        color: #fff;
    }

    .hero-scroll {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
        animation: bounce 2s ease infinite;
    }

    @media (min-width: 768px) {
        .hero-scroll {
            right: 3rem;
        }
    }

    @media (min-width: 1024px) {
        .hero-scroll {
            right: 4rem;
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(8px);
        }
    }

    /* ===== SOLUTIONS ===== */
    .solutions {
        padding: 5rem 0;
    }

    @media (min-width: 768px) {
        .solutions {
            padding: 8rem 0;
        }
    }

    .section-header {
        margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
        .section-header {
            margin-bottom: 6rem;
        }
    }

    .section-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--bronze);
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
        color: var(--obsidian);
        line-height: 1.1;
        max-width: 700px;
    }

    @media (min-width: 768px) {
        .section-title {
            font-size: 3rem;
        }
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    @media (min-width: 768px) {
        .solutions-grid {
            grid-template-columns: repeat(12, 1fr);
            gap: 1.5rem;
        }
    }

    .solution-card {
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }

    .solution-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (min-width: 768px) {
        .solution-card.wide {
            grid-column: span 7;
        }

        .solution-card.narrow {
            grid-column: span 5;
        }
    }

    .solution-img-wrap {
        position: relative;
        aspect-ratio: 3/4;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .solution-img-wrap {
            aspect-ratio: 4/5;
        }
    }

    .solution-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s var(--ease);
    }

    .solution-card:hover .solution-img-wrap img {
        transform: scale(1.05);
    }

    .solution-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 50%, transparent);
    }

    .solution-default {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem;
    }

    @media (min-width: 768px) {
        .solution-default {
            padding: 2rem;
        }
    }

    .solution-num {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(209, 205, 194, 0.8);
        margin-bottom: 0.5rem;
    }

    .solution-default h3 {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 0.25rem;
    }

    @media (min-width: 768px) {
        .solution-default h3 {
            font-size: 1.875rem;
        }
    }

    .solution-default p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .solution-reveal {
        position: absolute;
        inset: 0;
        top: 33%;
        background: rgba(26, 28, 30, 0.6);
        backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.5rem;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    @media (min-width: 768px) {
        .solution-reveal {
            padding: 2rem;
        }
    }

    .solution-card:hover .solution-reveal {
        opacity: 1;
    }

    .solution-reveal p {
        color: rgba(249, 247, 242, 0.8);
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 400px;
    }

    .solution-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .solution-specs span {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--stone);
        border: 1px solid rgba(209, 205, 194, 0.3);
        padding: 0.375rem 0.75rem;
    }

    /* ===== WHY LBS ===== */
    .why {
        background: var(--obsidian);
        padding: 5rem 0;
    }

    @media (min-width: 768px) {
        .why {
            padding: 8rem 0;
        }
    }

    .why-header {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
        .why-header {
            flex-direction: row;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 6rem;
        }
    }

    .why-header h2 {
        font-size: 1.875rem;
        color: var(--alabaster);
        line-height: 1.1;
        max-width: 600px;
    }

    @media (min-width: 768px) {
        .why-header h2 {
            font-size: 3rem;
        }
    }

    .why-header p {
        color: rgba(209, 205, 194, 0.7);
        max-width: 400px;
    }

    .why .hairline {
        background: rgba(140, 115, 86, 0.3);
        margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
        .why .hairline {
            margin-bottom: 5rem;
        }
    }

    .stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 5rem;
    }

    @media (min-width: 768px) {
        .stats {
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 7rem;
        }
    }

    .stat {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s var(--ease);
    }

    .stat.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .stat-num {
        font-family: var(--font-heading);
        font-size: 1.875rem;
        color: var(--bronze);
        margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
        .stat-num {
            font-size: 2.25rem;
        }
    }

    .stat-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(249, 247, 242, 0.9);
        margin-bottom: 0.5rem;
    }

    .stat-detail {
        font-size: 0.875rem;
        color: rgba(209, 205, 194, 0.5);
    }

    .values-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    @media (min-width: 1024px) {
        .values-grid {
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
    }

    .values {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .value {
        border-left: 1px solid rgba(140, 115, 86, 0.4);
        padding-left: 1.5rem;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.6s var(--ease);
    }

    @media (min-width: 768px) {
        .value {
            padding-left: 2rem;
        }
    }

    .value.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .value h3 {
        font-size: 1.25rem;
        color: var(--alabaster);
        margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
        .value h3 {
            font-size: 1.5rem;
        }
    }

    .value p {
        color: rgba(209, 205, 194, 0.6);
        font-size: 1rem;
    }

    .why-img {
        position: relative;
        opacity: 0;
        transition: opacity 0.8s var(--ease);
    }

    .why-img.visible {
        opacity: 1;
    }

    .why-img img {
        width: 100%;
        height: 100%;
        min-height: 400px;
        object-fit: cover;
    }

    .why-img::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 1rem;
        right: 1rem;
        height: 5rem;
        background: rgba(26, 28, 30, 0.6);
        filter: blur(20px);
    }

    /* ===== CONSULTATION ===== */
    .consultation {
        padding: 5rem 0;
    }

    @media (min-width: 768px) {
        .consultation {
            padding: 8rem 0;
        }
    }

    .consult-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    @media (min-width: 1024px) {
        .consult-grid {
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
    }

    .consult-img {
        display: none;
        position: relative;
    }

    @media (min-width: 1024px) {
        .consult-img {
            display: block;
        }
    }

    .consult-img img {
        width: 100%;
        height: 100%;
        min-height: 500px;
        object-fit: cover;
    }

    .consult-img::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 1.5rem;
        right: 1.5rem;
        height: 4rem;
        background: rgba(249, 247, 242, 0.4);
        filter: blur(16px);
    }

    .form-progress {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 2.5rem;
    }

    .form-progress span {
        height: 2px;
        flex: 1;
        background: var(--stone);
        transition: background 0.5s ease;
    }

    .form-progress span.active {
        background: var(--bronze);
    }

    .form-step {
        display: none;
        animation: slideIn 0.3s var(--ease);
    }

    .form-step.active {
        display: block;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(40px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .form-step-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--bronze);
        margin-bottom: 0.75rem;
    }

    .form-step h3 {
        font-size: 1.5rem;
        color: var(--obsidian);
        margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
        .form-step h3 {
            font-size: 1.875rem;
        }
    }

    .option-grid {
        display: grid;
        gap: 0.75rem;
    }

    .option-grid.three {
        grid-template-columns: 1fr;
    }

    .option-grid.two {
        grid-template-columns: 1fr 1fr;
    }

    @media (min-width: 640px) {
        .option-grid.three {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }

    .option-btn {
        padding: 1.25rem;
        border: 1px solid var(--stone);
        text-align: left;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .option-btn:hover {
        border-color: rgba(140, 115, 86, 0.5);
    }

    .option-btn.selected {
        border-color: var(--bronze);
        background: rgba(140, 115, 86, 0.05);
    }

    .option-btn:focus-visible {
        outline: 2px solid var(--bronze);
        outline-offset: 2px;
    }

    .option-color {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        border: 1px solid var(--stone);
    }

    .option-btn .utility-label {
        font-size: 0.875rem;
        color: var(--obsidian);
    }

    .form-fields {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .form-field label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(26, 28, 30, 0.6);
        margin-bottom: 0.375rem;
        display: block;
    }

    .form-field input,
    .form-field textarea {
        width: 100%;
        border: 1px solid var(--stone);
        background: transparent;
        padding: 0.75rem 1rem;
        font-family: inherit;
        font-size: 1rem;
        color: var(--obsidian);
        transition: border-color 0.3s ease;
        resize: none;
    }

    .form-field input:focus,
    .form-field textarea:focus {
        outline: none;
        border-color: var(--bronze);
    }

    .form-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(209, 205, 194, 0.5);
    }

    .btn-back {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(26, 28, 30, 0.6);
        transition: color 0.3s ease;
    }

    .btn-back:hover {
        color: var(--bronze);
    }

    .btn-back:disabled {
        color: var(--stone);
        cursor: not-allowed;
    }

    .btn-next,
    .btn-submit {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.75rem 1.5rem;
        background: var(--bronze);
        color: var(--alabaster);
        transition: background 0.3s ease;
    }

    .btn-next:hover,
    .btn-submit:hover {
        background: var(--bronze-hover);
    }

    .btn-next:disabled,
    .btn-submit:disabled {
        background: var(--stone);
        cursor: not-allowed;
    }

    .btn-next:focus-visible,
    .btn-submit:focus-visible {
        outline: 2px solid var(--bronze);
        outline-offset: 2px;
    }

    .spinner {
        width: 1rem;
        height: 1rem;
        border: 2px solid rgba(249, 247, 242, 0.3);
        border-top-color: var(--alabaster);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .form-success {
        text-align: center;
        padding: 4rem 0;
    }

    .success-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        background: var(--bronze);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        animation: popIn 0.4s var(--ease);
    }

    @keyframes popIn {
        from {
            transform: scale(0);
        }

        to {
            transform: scale(1);
        }
    }

    .success-icon svg {
        width: 1.75rem;
        height: 1.75rem;
        color: var(--alabaster);
    }

    .form-success h3 {
        font-size: 1.5rem;
        color: var(--obsidian);
        margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
        .form-success h3 {
            font-size: 1.875rem;
        }
    }

    .form-success p {
        color: rgba(26, 28, 30, 0.6);
        max-width: 400px;
        margin: 0 auto;
    }

    /* ===== FOOTER ===== */
    .footer {
        background: var(--obsidian);
        position: relative;
        overflow: hidden;
    }

    .footer-watermark {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: var(--font-heading);
        font-size: 20rem;
        color: rgba(255, 255, 255, 0.02);
        line-height: 1;
        pointer-events: none;
        user-select: none;
    }

    @media (min-width: 768px) {
        .footer-watermark {
            font-size: 28rem;
        }
    }

    .footer-content {
        position: relative;
        z-index: 1;
        padding: 5rem 0 2rem;
    }

    @media (min-width: 768px) {
        .footer-content {
            padding: 7rem 0 2rem;
        }
    }

    .footer .hairline {
        background: rgba(140, 115, 86, 0.2);
        margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
        .footer .hairline {
            margin-bottom: 5rem;
        }
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.2fr 1.2fr;
        gap: 40px;
        align-items: start;
    }

    /*=====================================
    TABLET
    =====================================*/

    @media (max-width:1024px) {

        .footer-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /*=====================================
    MOBILE
    =====================================*/

    @media (max-width:768px) {

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 35px;
            text-align: center;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-logo {
            margin: 0 auto 20px;
        }

        .footer-live {
            justify-content: center;
        }

        .footer-nav-links,
        .footer-contact {
            align-items: center;
        }

        .footer-contact a {
            justify-content: center;
            text-align: center;
        }
    }

    .footer-logo {
        height: 55px;
        width: auto;
        margin-bottom: 20px;
    }

    .footer-brand h3 {
        font-size: 1.875rem;
        color: var(--alabaster);
        margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
        .footer-brand h3 {
            font-size: 2.25rem;
        }
    }

    .footer-brand p {
        color: rgba(209, 205, 194, 0.5);
        max-width: 350px;
        margin-bottom: 2rem;
    }

    .footer-live {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-live .num {
        font-family: var(--font-heading);
        font-size: 2.25rem;
        color: var(--bronze);
    }

    @media (min-width: 768px) {
        .footer-live .num {
            font-size: 3rem;
        }
    }

    .footer-nav-heading {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--bronze);
        margin-bottom: 1.5rem;
    }

    .footer-nav-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-nav-links a,
    .footer-contact a {
        color: rgba(209, 205, 194, 0.6);
        font-size: 0.875rem;
        transition: color 0.3s ease;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-nav-links a:hover,
    .footer-contact a:hover {
        color: var(--alabaster);
    }

    .footer-contact svg {
        width: 14px;
        height: 14px;
        color: var(--bronze);
        flex-shrink: 0;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
        }
    }

    .footer-copy {
        color: rgba(209, 205, 194, 0.3);
        font-size: 0.75rem;
    }

    .footer-social {
        display: flex;
        gap: 1.5rem;
    }

    .footer-social a {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(209, 205, 194, 0.3);
        transition: color 0.3s ease;
    }

    .footer-social a:hover {
        color: var(--bronze);
    }

    /*=====================================
FLOATING CALL BUTTON
=====================================*/

    .call-float {
        position: fixed;
        right: 28px;
        bottom: 28px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #B28A5B;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
        transition: .35s ease;
        z-index: 9999;
    }

    .call-float svg {
        width: 26px;
        height: 26px;
    }

    .call-float:hover {
        background: #9A754A;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    }

    .call-float::before {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 2px solid rgba(178, 138, 91, .35);
        animation: callPulse 2s infinite;
    }

    @keyframes callPulse {
        0% {
            transform: scale(.8);
            opacity: 1;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    @media(max-width:768px) {
        .call-float {
            width: 54px;
            height: 54px;
            right: 20px;
            bottom: 20px;
        }

        .call-float svg {
            width: 22px;
            height: 22px;
        }
    }