/* =========================================================
   ROOT / VARIABLES
========================================================= */

:root {
    --bg: #06111f;
    --bg2: #0b1830;
    --gold: #d4a64f;
    --gold2: #f1c979;
    --text: #f5f2eb;
    --muted: #b8c0cc;
    --card: #0d1a2e;
    --white: #ffffff;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #f6f3ee;
    color: #1b2430;

    line-height: 1.65;
}

body.forte-lightbox-open {
    overflow: hidden !important;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: sticky;
    top: 0;

    z-index: 10000;

    background: rgba(6, 17, 31, 0.92);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(212, 166, 79, 0.18);
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding: 16px 0;

    min-height: 82px;

    position: relative;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-shrink: 0;

    margin-right: auto;
}

.brand-badge {
    width: 52px;
    height: 52px;

    border-radius: 16px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--gold2),
            var(--gold)
        );

    color: #08111e;

    font-weight: 800;

    font-size: 22px;

    box-shadow:
        0 10px 30px rgba(212, 166, 79, 0.25);
}

.brand h1 {
    margin: 0;

    font-size: 18px;

    letter-spacing: 0.16em;

    color: var(--text);

    font-weight: 700;
}

.brand p {
    margin: 2px 0 0;

    font-size: 11px;

    letter-spacing: 0.28em;

    color: var(--gold2);

    text-transform: uppercase;
}


/* =========================================================
   NAV LINKS - DESKTOP
========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 28px;

    color: #dfe5ee;

    font-size: 14px;

    font-weight: 500;

    margin-left: auto;
}

.nav-links a {
    position: relative;

    white-space: nowrap;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition:
        width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--gold2),
            var(--gold)
        );

    color: #08111e;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 10px 24px rgba(212, 166, 79, 0.28);

    margin-left: 28px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(212, 166, 79, 0.35);
}


/* =========================================================
   HAMBURGER BUTTON
   DESKTOP HIDDEN
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    margin: 0;

    border:
        1px solid rgba(212, 166, 79, 0.45);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.04);

    cursor: pointer;

    position: relative;

    z-index: 10002;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    flex-shrink: 0;

    -webkit-tap-highlight-color: transparent;

    appearance: none;
}

.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--gold2);

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        width 0.3s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(212, 166, 79, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 10%,
            rgba(212, 166, 79, 0.12),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            var(--bg),
            var(--bg2)
        );

    color: var(--text);

    overflow: hidden;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 56px;

    align-items: center;

    padding: 72px 0 84px;
}

.eyebrow {
    color: var(--gold2);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.26em;

    text-transform: uppercase;

    margin-bottom: 22px;
}

.hero h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 82px;

    line-height: 0.92;

    font-weight: 700;

    letter-spacing: 0.01em;
}

.hero h2 span {
    color: var(--gold2);
}

.hero .lead {
    margin: 28px 0 18px;

    font-size: 28px;

    font-weight: 600;

    color: #fff;
}

.hero .sub {
    max-width: 620px;

    color: var(--muted);

    font-size: 17px;
}

.hero-actions {
    display: flex;

    gap: 16px;

    flex-wrap: wrap;

    margin-top: 34px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    padding: 14px 22px;

    border-radius: 14px;

    font-weight: 700;

    border:
        1px solid rgba(212, 166, 79, 0.45);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn.primary {
    background:
        linear-gradient(
            135deg,
            var(--gold2),
            var(--gold)
        );

    color: #08111e;

    border: none;

    box-shadow:
        0 12px 28px rgba(212, 166, 79, 0.28);
}

.btn.secondary {
    color: var(--text);

    background:
        rgba(255, 255, 255, 0.02);
}

.btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
    position: relative;

    border-radius: 34px;

    padding: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(212, 166, 79, 0.45),
            rgba(212, 166, 79, 0.08)
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45);
}

.hero-card::before {
    content: "";

    position: absolute;

    inset: 1px;

    border-radius: 33px;

    background:
        linear-gradient(
            180deg,
            #12233e,
            #091321
        );

    z-index: 0;
}

.hero-card img {
    position: relative;

    z-index: 1;

    width: 100%;

    display: block;

    border-radius: 26px;

    object-fit: cover;

    min-height: 560px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding: 84px 0;

    background: #f6f3ee;
}

.section-tag {
    color: #9a7230;

    font-size: 25px;

    font-weight: 700;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    margin-bottom: 14px;
}

.section-title {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 34px;

    line-height: 1;

    margin: 0 0 18px;

    color: #111827;
}

.about-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 54px;

    align-items: center;
}

.about-photo {
    background: #fff;

    border-radius: 30px;

    padding: 18px;

    border:
        1px solid #eadfcd;

    box-shadow:
        0 18px 50px rgba(17, 24, 39, 0.08);
}

.about-photo img {
    width: 100%;

    border-radius: 22px;

    display: block;
}

.about p {
    color: #4b5563;

    font-size: 17px;
}

.signature {
    margin-top: 28px;

    font-family:
        "Alex Brush",
        cursive;

    font-size: 52px;

    font-weight: 400;

    letter-spacing: 1px;

    line-height: 1;

    color: #a47732;
}


/* =========================================================
   EXPERTISE
========================================================= */

.expertise {
    background:
        linear-gradient(
            135deg,
            var(--bg),
            var(--bg2)
        );

    color: var(--text);

    padding: 88px 0;
}

.expertise .section-title {
    color: #fff;

    text-align: center;
}

.expertise .section-tag {
    text-align: center;

    color: var(--gold2);
}

.expertise-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-top: 42px;
}

.expert-card {
    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(212, 166, 79, 0.28);

    border-radius: 24px;

    padding: 28px 22px;

    min-height: 140px;

    transition: 0.25s;
}

.expert-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(241, 201, 121, 0.55);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28);
}

.expert-icon {
    width: 56px;
    height: 56px;

    border-radius: 18px;

    display: grid;
    place-items: center;

    background:
        rgba(212, 166, 79, 0.14);

    color: var(--gold2);

    font-size: 28px;

    margin-bottom: 18px;
}

.expert-card h3 {
    margin: 0 0 12px;

    color: #fff;

    font-size: 18px;
}

.expert-card p {
    margin: 0;

    color: #c7d0dd;

    font-size: 14px;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    padding: 34px 0;

    background: #fff;

    border-top:
        1px solid #eee2d0;

    border-bottom:
        1px solid #eee2d0;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 18px;

    text-align: center;
}

.stat strong {
    display: block;

    font-size: 34px;

    color: #9a7230;

    font-family:
        "Cormorant Garamond",
        serif;
}

.stat span {
    color: #6b7280;

    font-size: 14px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects {
    padding: 88px 0;

    background: #f6f3ee;
}

.projects-head {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 34px;
}

.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 26px;
}

.project {
    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    border:
        1px solid #eadfcd;

    box-shadow:
        0 18px 46px rgba(17, 24, 39, 0.08);

    transition: 0.25s;
}

.project:hover {
    transform: translateY(-6px);
}

.project img {
    width: 100%;

    height: 220px;

    object-fit: cover;

    display: block;
}

.project-body {
    padding: 24px;
}

.project h3 {
    margin: 0 0 8px;

    font-size: 22px;

    color: #111827;

    font-family:
        "Cormorant Garamond",
        serif;
}

.project .loc {
    color: #9a7230;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.project p {
    color: #4b5563;

    margin: 12px 0 18px;
}

.project a {
    color: #9a7230;

    font-weight: 700;
}

.project-btn {
    color: #111827 !important;

    border-color: #d7c3a2 !important;

    background: #fff !important;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background:
        linear-gradient(
            135deg,
            var(--bg),
            #08111e
        );

    color: var(--text);

    padding: 90px 0;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 60px;

    align-items: center;
}

.contact .section-title {
    color: #fff;

    font-size: 58px;

    line-height: 1.05;

    margin-bottom: 25px;
}

.contact-text {
    color: #c7d0dd;

    font-size: 18px;

    line-height: 1.8;

    max-width: 650px;
}

.white {
    color: #fff;
}

.contact-card {
    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid rgba(212, 166, 79, 0.22);

    border-radius: 28px;

    padding: 38px;
}

/* =========================================================
CONTACT LIST
========================================================= */

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}


/* =========================================================
CONTACT ITEM
========================================================= */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}


/* =========================================================
CONTACT ICON
========================================================= */

.contact-icon {
    width: 54px !important;
    height: 54px !important;

    min-width: 54px;

    border-radius: 16px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    background: rgba(212, 166, 79, 0.14);

    color: var(--gold2);

    font-size: 22px;

    flex-shrink: 0;

    line-height: 1;

    padding: 0;
}


/* =========================================================
CONTACT INFORMATION
========================================================= */

.contact-info {
    flex: 1;

    min-width: 0;

    color: #fff;

    font-size: 16px;

    line-height: 1.5;
}


/* =========================================================
CONTACT TITLE
========================================================= */

.contact-info strong {
    display: block;

    color: #fff;

    font-size: 18px;

    line-height: 1.3;

    margin: 0 0 6px;
}


/* =========================================================
CONTACT VALUE
========================================================= */

.contact-info > div {
    color: #fff;

    font-size: 16px;

    line-height: 1.5;

    margin: 0;

    padding: 0;

    background: none;

    border: 0;

    width: auto;

    height: auto;
}


/* =========================================================
PHONE / EMAIL LINKS
========================================================= */

.contact-info a {
    color: #fff;

    font-size: 16px;

    line-height: 1.5;

    text-decoration: underline;

    text-underline-offset: 4px;
}


/* =========================================================
CONTACT BUTTON
========================================================= */

.contact-btn {
    margin-top: 35px;
}

.contact-btn .btn {
    display: inline-block;
}
/* =========================================================
   PROPRIETOR SECTION
========================================================= */

.proprietor-section {
    background:
        linear-gradient(
            135deg,
            var(--bg),
            var(--bg2)
        );

    color: var(--text);

    padding: 40px 0 88px;
}

.proprietor-section .section-tag {
    text-align: center;

    color: var(--gold2);

    margin-bottom: 14px;
}

.proprietor-section .section-title {
    color: #fff;

    text-align: center;

    margin-top: 0;

    margin-bottom: 50px;
}

.proprietor-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
    margin-top: 70px;
}

.proprietor-card {
    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(212, 166, 79, 0.28);

    border-radius: 28px;

    padding: 35px 25px;

    min-height: 240px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    transition: 0.3s;
}

.proprietor-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(241, 201, 121, 0.55);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28);
}

.proprietor-logo {
    width: 120px;
    height: 120px;

    object-fit: contain;

    margin-bottom: 25px;

    transition: 0.3s ease;
}

.proprietor-card:hover .proprietor-logo {
    transform: scale(1.08);
}

.proprietor-card h3 {
    margin: 0;

    color: #fff;

    font-size: 20px;

    line-height: 1.5;
}


/* =========================================================
   MY FORTE
========================================================= */

.forte-modern {
    padding: 110px 0;

    background: #f7f5f0;

    overflow: hidden;
}

.forte-modern-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;

    margin-bottom: 55px;
}

.forte-modern-header h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(60px, 8vw, 105px);

    line-height: 0.8;

    font-weight: 500;

    color: #071a2d;
}

.forte-modern-header h2 span {
    color: #a27835;
}

.forte-modern-header > p {
    max-width: 420px;

    margin: 0;

    color: #687483;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FORTE ACCORDION
========================================================= */

.forte-accordion {
    width: 100%;

    border-top:
        1px solid #dcd5ca;

    overflow-anchor: none;
}

.forte-item {
    border-bottom:
        1px solid #dcd5ca;

    scroll-margin-top: 100px;
}


/* =========================================================
   FORTE TRIGGER
========================================================= */

.forte-trigger {
    width: 100%;

    display: grid;

    grid-template-columns:
        1fr 60px;

    align-items: center;

    gap: 30px;

    padding: 30px 10px;

    border: 0;

    background: transparent;

    color: #071a2d;

    text-align: left;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

.forte-trigger:focus {
    outline: none;
}

.forte-trigger:focus-visible {
    outline:
        2px solid #a27835;

    outline-offset: -2px;
}

.forte-trigger-title h3 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(35px, 4vw, 58px);

    font-weight: 500;

    line-height: 0.9;
}

.forte-trigger-title h3 span {
    color: #a27835;
}


/* =========================================================
   FORTE ICON
========================================================= */

.forte-trigger-icon {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border:
        1px solid #cfc6b8;

    border-radius: 50%;

    color: #a27835;

    font-size: 25px;

    font-weight: 300;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.forte-item.active .forte-trigger-icon {
    transform: rotate(45deg);

    background: #a27835;

    color: #fff;

    border-color: #a27835;
}


/* =========================================================
   FORTE CONTENT
========================================================= */

.forte-content {
    display: block;

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.5s ease;
}

.forte-item.active .forte-content {
    max-height: 3000px;
}

.forte-content-inner {
    min-height: 0;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 55px;

    padding: 0 10px;
}

.forte-item.active .forte-content-inner {
    padding-bottom: 45px;
}


/* =========================================================
   FORTE GALLERY
========================================================= */

.forte-gallery {
    width: 100%;
}

.forte-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;
}

.forte-gallery-item {
    position: relative;

    width: 100%;

    height: 145px;

    padding: 0;

    border: 0;

    overflow: hidden;

    background: #ddd;

    cursor: pointer;
}

.forte-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}

.forte-gallery-item::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        rgba(7, 26, 45, 0);

    transition: 0.3s ease;
}

.forte-gallery-item::after {
    content: "+";

    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 2;

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    transform:
        translate(-50%, -50%)
        scale(0.7);

    border:
        1px solid rgba(255, 255, 255, 0.7);

    border-radius: 50%;

    background:
        rgba(7, 26, 45, 0.65);

    color: #fff;

    font-size: 21px;

    opacity: 0;

    transition: 0.3s ease;
}

.forte-gallery-item:hover img {
    transform: scale(1.08);

    filter: brightness(0.7);
}

.forte-gallery-item:hover::before {
    background:
        rgba(7, 26, 45, 0.2);
}

.forte-gallery-item:hover::after {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1);
}


/* =========================================================
   FORTE SINGLE IMAGE
========================================================= */

.forte-image {
    position: relative;

    height: 420px;

    overflow: hidden;
}

.forte-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.forte-image:hover img {
    transform: scale(1.04);
}

.forte-image-number {
    position: absolute;

    right: 20px;
    bottom: 20px;

    color: #fff;

    font-size: 11px;

    letter-spacing: 0.15em;
}


/* =========================================================
   FORTE DETAILS
========================================================= */

.forte-details {
    display: flex;

    align-items: flex-start;

    justify-content: center;
}

.forte-services {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin: 0;
}

.forte-services span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 18px;

    border:
        1px solid #a27835;

    border-radius: 4px;

    background:
        rgba(162, 120, 53, 0.08);

    color: #a27835;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.forte-services span:hover {
    background: #a27835;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(162, 120, 53, 0.2);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.forte-lightbox {
    position: fixed !important;

    inset: 0 !important;

    z-index: 999999 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 100vw !important;

    height: 100vh !important;

    background:
        rgba(2, 8, 15, 0.97);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease;
}

.forte-lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.forte-lightbox-content {
    width: 100vw;
    height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 70px 90px;

    box-sizing: border-box;
}

.forte-lightbox-content img {
    max-width:
        calc(100vw - 180px);

    max-height:
        calc(100vh - 140px);

    width: auto;

    height: auto;

    object-fit: contain;

    user-select: none;

    -webkit-user-drag: none;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.6);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* =========================================================
   LIGHTBOX BUTTONS
========================================================= */

.forte-lightbox-close,
.forte-lightbox-prev,
.forte-lightbox-next {
    position: fixed;

    z-index: 1000000;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.4);

    color: #fff;

    cursor: pointer;

    transition: 0.3s ease;
}

.forte-lightbox-close {
    top: 20px;
    right: 25px;

    width: 50px;
    height: 50px;

    font-size: 30px;
}

.forte-lightbox-prev,
.forte-lightbox-next {
    top: 50%;

    width: 55px;
    height: 55px;

    font-size: 25px;

    transform:
        translateY(-50%);
}

.forte-lightbox-prev {
    left: 25px;
}

.forte-lightbox-next {
    right: 25px;
}

.forte-lightbox-close:hover,
.forte-lightbox-prev:hover,
.forte-lightbox-next:hover {
    background: #a27835;

    border-color: #a27835;
}

.forte-lightbox-close:hover {
    transform: rotate(90deg);
}


/* =========================================================
   LIGHTBOX COUNTER
========================================================= */

.forte-lightbox-counter {
    position: fixed;

    left: 50%;

    bottom: 22px;

    transform:
        translateX(-50%);

    color:
        rgba(255, 255, 255, 0.7);

    font-size: 11px;

    letter-spacing: 0.15em;
}

#forteLightboxCurrent {
    color: #c5a66e;

    font-weight: 600;
}


/* =========================================================
   VERTICAL SOCIAL MEDIA BAR
========================================================= */

.vertical-socials {
    position: fixed;

    right: 0;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 9999;

    width: 58px;

    display: flex;

    flex-direction: column;

    align-items: center;

    background:
        rgba(6, 17, 31, 0.82);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-left:
        1px solid rgba(255, 255, 255, 0.28);

    border-top-left-radius: 3px;

    border-bottom-left-radius: 3px;

    overflow: hidden;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.vertical-socials a {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 17px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.vertical-socials a:last-child {
    border-bottom: none;
}

.vertical-socials a::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background: var(--gold2);

    transition:
        height 0.3s ease;
}

.vertical-socials a:hover {
    color: var(--gold2);

    background:
        rgba(212, 166, 79, 0.10);

    transform:
        translateX(-3px);
}

.vertical-socials a:hover::before {
    height: 100%;
}

.vertical-socials i {
    transition:
        transform 0.3s ease;
}

.vertical-socials a:hover i {
    transform: scale(1.15);
}


/* =========================================================
   MOBILE CALL BUTTON
========================================================= */

.vertical-socials .mobile-call {
    display: none;
}

.vertical-socials .mobile-call:hover {
    color: #fff;

    background:
        rgba(212, 166, 79, 0.18);
}

.vertical-socials .mobile-call:hover i {
    transform: scale(1.15);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #050b15;

    color: #9ca3af;

    padding: 24px 0;

    border-top:
        1px solid rgba(212, 166, 79, 0.14);
}

.footer-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    align-items: center;

    flex-wrap: wrap;
}


/* =========================================================
   PREMIUM PORTFOLIO
========================================================= */

.portfolio-modern {
    position: relative;

    padding: 120px 0 130px;

    background: #f7f5f0;

    overflow: hidden;
}


/* =========================================================
   PORTFOLIO HEADER
========================================================= */

.portfolio-header {
    max-width: 900px;

    margin-bottom: 90px;
}

.portfolio-kicker {
    margin-bottom: 18px;

    color: #a27835;

    font-family: Inter, sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}

.portfolio-header h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(34px, 5vw, 70px);

    line-height: 0.85;

    font-weight: 500;

    letter-spacing: -0.02em;

    color: #071a2d;
}

.portfolio-header h2 span {
    color: #a27835;
}

.portfolio-header p {
    max-width: 520px;

    margin: 32px 0 0;

    color: #687483;

    font-family: Inter, sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   PORTFOLIO ROW
========================================================= */

.portfolio-row {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 80px;

    align-items: center;

    padding: 85px 0;

    border-top:
        1px solid #dcd5ca;
}

.portfolio-row.reverse {
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);
}

.portfolio-row.reverse .portfolio-copy {
    order: 2;
}

.portfolio-row.reverse .portfolio-image {
    order: 1;
}


/* =========================================================
   PORTFOLIO NUMBER
========================================================= */

.portfolio-number {
    margin-bottom: 18px;

    color: #a27835;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;

    font-weight: 500;

    letter-spacing: 0.08em;
}


/* =========================================================
   PORTFOLIO CATEGORY
========================================================= */

.portfolio-category {
    margin-bottom: 14px;

    color: #7c7469;

    font-family: Inter, sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* =========================================================
   PORTFOLIO TITLE
========================================================= */

.portfolio-copy h3 {
    margin-bottom: 50px;

    max-width: 620px;

    color: #071a2d;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(42px, 4.5vw, 68px);

    line-height: 0.95;

    font-weight: 500;

    letter-spacing: -0.015em;
}

.portfolio-copy h3 span {
    color: #a27835;
}


/* =========================================================
   PORTFOLIO DESCRIPTION
========================================================= */

.portfolio-copy > p {
    max-width: 500px;

    margin: 28px 0;

    color: #687483;

    font-family: Inter, sans-serif;

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   PORTFOLIO SERVICES
========================================================= */

.portfolio-services {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    max-width: 550px;
}

.portfolio-services span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 9px 13px;

    border:
        1px solid #d5c5aa;

    color: #8f6b31;

    background:
        rgba(162, 120, 53, 0.04);

    font-family: Inter, sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.07em;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.portfolio-services span:hover {
    background: #a27835;

    color: #fff;

    transform:
        translateY(-2px);
}


/* =========================================================
   PORTFOLIO LINK
========================================================= */

.portfolio-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 32px;

    color: #071a2d;

    font-family: Inter, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    transition:
        color 0.3s ease;
}

.portfolio-link span {
    color: #a27835;

    font-size: 18px;

    transition:
        transform 0.3s ease;
}

.portfolio-link:hover {
    color: #a27835;
}

.portfolio-link:hover span {
    transform:
        translate(4px, -4px);
}


/* =========================================================
   PORTFOLIO IMAGE
========================================================= */

.portfolio-image {
    position: relative;

    width: 100%;

    height: 520px;

    overflow: hidden;

    background: #e9e3d8;

    border-radius: 2px;

    box-shadow:
        0 25px 60px rgba(17, 24, 39, 0.12);
}

.portfolio-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(7, 26, 45, 0.08),
            transparent 55%
        );

    pointer-events: none;
}

.portfolio-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.portfolio-row:hover .portfolio-image img {
    transform: scale(1.045);
}


/* =========================================================
   PORTFOLIO IMAGE LABEL
========================================================= */

.portfolio-image-label {
    position: absolute;

    right: 22px;
    bottom: 20px;

    z-index: 2;

    padding: 7px 10px;

    background:
        rgba(7, 26, 45, 0.78);

    color: #fff;

    font-family: Inter, sans-serif;

    font-size: 9px;

    letter-spacing: 0.18em;
}

.portfolio-row:last-child {
    border-bottom:
        1px solid #dcd5ca;
}


/* =========================================================
   TABLET
   1100px
========================================================= */

@media (max-width: 1100px) {

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

    .hero h2 {
        font-size: 64px;
    }

    .proprietor-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero-card img {
        min-height: 500px;
    }
}


/* =========================================================
   TABLET / MOBILE NAVIGATION
   900px AND BELOW

   IMPORTANT:
   This is the ONLY mobile navigation system.
========================================================= */

@media (max-width: 900px) {

    header .nav {
        position: relative;

        min-height: 76px;
    }


    /* -----------------------------------------------------
       HAMBURGER
    ----------------------------------------------------- */

    .menu-toggle {
        display: flex;

        margin-left: 18px;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    header .cta {
        margin-left: 12px;
    }


    /* -----------------------------------------------------
       NAVIGATION CLOSED
    ----------------------------------------------------- */

    .nav-links {
        position: absolute;

        top:
            calc(100% + 1px);

        left: 0;
        right: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 10px 0;

        background:
            rgba(6, 17, 31, 0.98);

        backdrop-filter: blur(15px);

        -webkit-backdrop-filter: blur(15px);

        border-top:
            1px solid rgba(212, 166, 79, 0.15);

        border-bottom:
            1px solid rgba(212, 166, 79, 0.18);

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        pointer-events: none;

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        z-index: 10001;
    }


    /* -----------------------------------------------------
       NAVIGATION OPEN
    ----------------------------------------------------- */

    .nav-links.menu-open {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

        pointer-events: auto;
    }


    /* -----------------------------------------------------
       NAVIGATION LINKS
    ----------------------------------------------------- */

    .nav-links a {
        display: block;

        width: 100%;

        padding: 15px 24px;

        color: #dfe5ee;

        font-size: 14px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--gold2);

        background:
            rgba(212, 166, 79, 0.06);
    }


    /* -----------------------------------------------------
       HAMBURGER → X
    ----------------------------------------------------- */

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;

        width: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* -----------------------------------------------------
       FORTE
    ----------------------------------------------------- */

    .forte-content-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .forte-gallery-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    /* -----------------------------------------------------
       PORTFOLIO
    ----------------------------------------------------- */

    .portfolio-modern {
        padding: 90px 0 100px;
    }

    .portfolio-header {
        margin-bottom: 60px;
    }

    .portfolio-row,
    .portfolio-row.reverse {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 65px 0;
    }

    .portfolio-row.reverse .portfolio-copy,
    .portfolio-row.reverse .portfolio-image {
        order: initial;
    }

    .portfolio-image {
        height: 450px;
    }
}


/* =========================================================
   MOBILE
   768px AND BELOW
========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    header {
        position: sticky;

        top: 0;

        z-index: 10000;
    }

    header .nav {
        min-height: 70px;

        padding: 12px 0;
    }


    /* -----------------------------------------------------
       CTA HIDDEN
    ----------------------------------------------------- */

    header .cta {
        display: none !important;
    }


    /* -----------------------------------------------------
       HAMBURGER
    ----------------------------------------------------- */

    .menu-toggle {
        display: flex !important;

        width: 44px;
        height: 44px;

        margin-left: auto;

        flex-shrink: 0;
    }


    /* -----------------------------------------------------
       BRAND
    ----------------------------------------------------- */

    .brand {
        gap: 10px;

        margin-right: 0;

        min-width: 0;
    }

    .brand-badge {
        width: 44px;
        height: 44px;

        border-radius: 13px;

        font-size: 18px;

        flex-shrink: 0;
    }

    .brand h1 {
        font-size: 14px;

        letter-spacing: 0.13em;

        white-space: nowrap;
    }

    .brand p {
        font-size: 8px;

        letter-spacing: 0.22em;
    }


    /* -----------------------------------------------------
       ABOUT
    ----------------------------------------------------- */

    .about-grid {
        display: flex !important;

        flex-direction: column-reverse !important;

        gap: 35px;
    }

    .about-photo {
        width: 100%;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {
        padding-top: 8px;
    }

    .hero-grid {
        padding: 48px 0 60px;

        gap: 40px;
    }

    .hero h2 {
        font-size: 50px;
    }

    .hero .lead {
        font-size: 22px;
    }

    .hero-card img {
        min-height: 420px;
    }


    /* -----------------------------------------------------
       GENERAL
    ----------------------------------------------------- */

    .section-title {
        font-size: 42px;
    }

    .expertise-grid,
    .projects-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       PROJECTS
    ----------------------------------------------------- */

    .projects-head {
        flex-direction: column;

        align-items: flex-start;
    }


    /* -----------------------------------------------------
       PROPRIETOR
    ----------------------------------------------------- */

    .proprietor-grid {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       FORTE
    ----------------------------------------------------- */

    .forte-modern {
        padding: 70px 0;
    }

    .forte-modern-header {
        display: block;

        margin-bottom: 35px;
    }

    .forte-modern-header h2 {
        font-size: 65px;
    }

    .forte-modern-header > p {
        margin-top: 25px;

        font-size: 12px;
    }

    .forte-trigger {
        grid-template-columns:
            1fr 42px;

        gap: 12px;

        padding: 25px 0;
    }

    .forte-trigger-title h3 {
        font-size: 35px;
    }

    .forte-trigger-icon {
        width: 38px;
        height: 38px;

        font-size: 21px;
    }

    .forte-content-inner {
        padding: 0;
    }

    .forte-item.active .forte-content-inner {
        padding-bottom: 30px;
    }

    .forte-gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 6px;
    }

    .forte-gallery-item {
        height: 125px;
    }

    .forte-gallery-item::after {
        width: 32px;
        height: 32px;

        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(0.9);
    }

    .forte-image {
        height: 300px;
    }

    .forte-details {
        padding-top: 0;
    }

    .forte-services {
        width: 100%;

        gap: 10px;
    }

    .forte-services span {
        padding: 11px 14px;

        font-size: 10px;
    }


    /* -----------------------------------------------------
       SOCIAL BAR
    ----------------------------------------------------- */

    .vertical-socials {
        width: 46px;

        border-left:
            1px solid rgba(255, 255, 255, 0.22);
    }

    .vertical-socials a {
        width: 46px;
        height: 48px;

        font-size: 15px;
    }


    /* -----------------------------------------------------
       MOBILE CALL BUTTON
    ----------------------------------------------------- */

    .vertical-socials .mobile-call {
        display: flex;
    }


    /* -----------------------------------------------------
       LIGHTBOX
    ----------------------------------------------------- */

    .forte-lightbox-content {
        padding:
            60px 10px 65px;
    }

    .forte-lightbox-content img {
        max-width:
            calc(100vw - 20px);

        max-height:
            calc(100vh - 120px);
    }

    .forte-lightbox-close {
        top: 10px;

        right: 10px;

        width: 42px;
        height: 42px;
    }

    .forte-lightbox-prev {
        left: 7px;

        width: 40px;
        height: 40px;
    }

    .forte-lightbox-next {
        right: 7px;

        width: 40px;
        height: 40px;
    }


    /* -----------------------------------------------------
       PORTFOLIO
    ----------------------------------------------------- */

    .portfolio-modern {
        padding: 70px 0 80px;
    }

    .portfolio-header {
        margin-bottom: 45px;
    }

    .portfolio-kicker {
        font-size: 10px;

        letter-spacing: 0.22em;
    }

    .portfolio-header h2 {
        font-size: 58px;

        line-height: 0.88;
    }

    .portfolio-header p {
        margin-top: 25px;

        font-size: 13px;

        line-height: 1.7;
    }

    .portfolio-row,
    .portfolio-row.reverse {
        gap: 30px;

        padding: 50px 0;
    }

    .portfolio-number {
        margin-bottom: 12px;

        font-size: 16px;
    }

    .portfolio-category {
        font-size: 9px;

        letter-spacing: 0.14em;
    }

    .portfolio-copy h3 {
        font-size: 42px;

        line-height: 0.95;
    }

    .portfolio-copy > p {
        margin: 22px 0;

        font-size: 14px;

        line-height: 1.75;
    }

    .portfolio-services {
        gap: 7px;
    }

    .portfolio-services span {
        padding: 8px 10px;

        font-size: 8px;
    }

    .portfolio-link {
        margin-top: 25px;

        font-size: 9px;
    }

    .portfolio-image {
        height: 330px;
    }

    .portfolio-image-label {
        right: 14px;

        bottom: 14px;

        font-size: 8px;
    }
}


/* =========================================================
   MOBILE HERO ORDER
   600px
========================================================= */

@media (max-width: 600px) {

    .hero-grid {
        display: flex;

        flex-direction: column;

        gap: 28px;
    }

    .hero-grid > div:first-child {
        display: contents;
    }


    /* Entrepreneur */

    .hero-grid .eyebrow {
        order: 1;

        margin-bottom: 0;
    }


    /* Neeraj Krishna */

    .hero-grid h2 {
        order: 2;

        margin-bottom: 0;
    }


    /* Image */

    .hero-card {
        order: 3;

        width: 100%;
    }


    /* Remaining content */

    .hero-grid .lead {
        order: 4;

        margin-top: 0;
    }

    .hero-grid .sub {
        order: 5;

        margin-top: 0;
    }

    .hero-grid .hero-actions {
        order: 6;
    }


    /* Hero buttons */

    .hero-actions {
        width: 100%;

        display: flex;

        justify-content: flex-start;

        align-items: center;

        text-align: left;
    }


    /* -----------------------------------------------------
       ABOUT ORDER
    ----------------------------------------------------- */

    .about-grid {
        display: flex !important;

        flex-direction: column !important;

        gap: 5px;
    }

    .about-grid > div:last-child {
        display: contents;
    }

    .about-grid .section-tag {
        order: 1;
    }

    .about-photo {
        order: 2;

        width: 100%;
    }

    .about-grid .section-title {
        order: 3;
    }

    .about-grid p {
        order: 4;
    }

    .about-grid .signature {
        order: 5;
    }
}


/* =========================================================
   SMALL PHONES
   480px
========================================================= */

@media (max-width: 480px) {

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .vertical-socials {
        width: 42px;
    }

    .vertical-socials a {
        width: 42px;
        height: 44px;

        font-size: 14px;
    }

    .forte-modern-header h2 {
        font-size: 58px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   400px
========================================================= */

@media (max-width: 400px) {

    .brand h1 {
        font-size: 13px;
    }

    .brand p {
        font-size: 7px;
    }

    .forte-modern-header h2 {
        font-size: 55px;
    }

    .forte-trigger-title h3 {
        font-size: 31px;
    }

    .forte-trigger {
        grid-template-columns:
            1fr 38px;
    }

    .forte-gallery-item {
        height: 110px;
    }
}


/* =========================================================
   DESKTOP NAVIGATION RESTORE
   901px+
========================================================= */

@media (min-width: 901px) {

    .nav-links {
        position: static;

        display: flex;

        flex-direction: row;

        align-items: center;

        width: auto;

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;

        background: transparent;

        border: none;

        box-shadow: none;

        padding: 0;
    }

    .menu-toggle {
        display: none !important;
    }
}



/* ****** */
/* =========================================================
   MOBILE NAVIGATION - FINAL FIX
========================================================= */

@media (max-width: 900px) {

    /* =====================================================
       HEADER
    ===================================================== */

    header {
        position: sticky;
        top: 0;
        z-index: 1000000;
    }


    /* =====================================================
       NAV CONTAINER
    ===================================================== */

    header .nav {
        position: relative;
        min-height: 76px;
    }


    /* =====================================================
       HAMBURGER
    ===================================================== */

    .menu-toggle {
        display: flex !important;

        width: 46px;
        height: 46px;

        margin-left: 18px;

        padding: 0;

        position: relative;
        z-index: 1000002;

        flex-shrink: 0;

        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 5px;

        cursor: pointer;

        border:
            1px solid rgba(212, 166, 79, 0.45);

        border-radius: 12px;

        background:
            rgba(6, 17, 31, 1);

        appearance: none;

        -webkit-tap-highlight-color: transparent;
    }


    .menu-toggle span {
        display: block;

        width: 20px;
        height: 2px;

        background: var(--gold2);

        border-radius: 10px;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease,
            width 0.3s ease;
    }


    /* =====================================================
       MOBILE MENU
       
       IMPORTANT:
       FIXED = NOT LIMITED BY .container
    ===================================================== */

    .nav-links {

        position: fixed !important;

        /* Header height */
        top: 76px !important;

        /* FULL SCREEN */
        left: 0 !important;
        right: 0 !important;

        width: 100vw !important;

        /* Do not inherit container width */
        max-width: none !important;

        margin: 0 !important;

        padding: 0 !important;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        /* Completely solid */
        background: #0b1830 !important;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform: translateY(-12px);

        border: none !important;

        border-top:
            1px solid rgba(212, 166, 79, 0.20);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.50);

        z-index: 1000001 !important;

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        /* Prevent menu from becoming taller than screen */
        max-height:
            calc(100vh - 76px);

        overflow-y: auto;

        box-sizing: border-box;
    }


    /* =====================================================
       MENU OPEN
    ===================================================== */

    .nav-links.mobile-open {

        opacity: 1 !important;

        visibility: visible !important;

        pointer-events: auto !important;

        transform: translateY(0) !important;
    }


    /* =====================================================
       MENU LINKS
    ===================================================== */

    .nav-links a {

        display: flex;

        align-items: center;

        width: 100%;

        min-height: 72px;

        padding:
            0 45px;

        box-sizing: border-box;

        background:
            #0b1830 !important;

        color:
            #dfe5ee !important;

        font-size: 17px;

        font-weight: 500;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);

        white-space: nowrap;

        transition:
            background 0.25s ease,
            color 0.25s ease;
    }


    .nav-links a:last-child {
        border-bottom: none;
    }


    /* Remove desktop underline */

    .nav-links a::after {
        display: none !important;
    }


    /* Active / hover */

    .nav-links a:hover,
    .nav-links a.active {

        color:
            var(--gold2) !important;

        background:
            #12233e !important;
    }


    /* =====================================================
       SOCIAL BAR - KEEP BELOW MENU
    ===================================================== */

    .vertical-socials {

        z-index: 9000 !important;
    }


    /* =====================================================
       HAMBURGER → X
    ===================================================== */

    .menu-toggle.active span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {

        opacity: 0;

        width: 0;
    }

    .menu-toggle.active span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);
    }

}


/* =========================================================
   MOBILE 768px
========================================================= */

@media (max-width: 768px) {

    header .nav {

        min-height: 70px;

        padding: 12px 0;
    }


    header .cta {

        display: none !important;
    }


    .menu-toggle {

        width: 44px;
        height: 44px;

        margin-left: auto;
    }


    /* FIXED MENU STARTS BELOW 70px HEADER */

    .nav-links {

        top: 70px !important;

        max-height:
            calc(100vh - 70px);
    }


    /* Brand */

    .brand {

        gap: 10px;

        margin-right: 0;

        min-width: 0;
    }


    .brand-badge {

        width: 44px;
        height: 44px;

        border-radius: 13px;

        font-size: 18px;

        flex-shrink: 0;
    }


    .brand h1 {

        font-size: 14px;

        letter-spacing: 0.13em;

        white-space: nowrap;
    }


    .brand p {

        font-size: 8px;

        letter-spacing: 0.22em;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .menu-toggle {

        width: 42px;
        height: 42px;
    }


    .nav-links a {

        min-height: 68px;

        padding:
            0 30px;

        font-size: 16px;
    }

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 901px) {

    .nav-links {

        position: static !important;

        display: flex;

        flex-direction: row;

        align-items: center;

        width: auto !important;

        max-width: none !important;

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;

        background: transparent !important;

        border: none !important;

        box-shadow: none;

        padding: 0;

        margin-left: auto;

        gap: 28px;

        max-height: none;

        overflow: visible;
    }


    .menu-toggle {

        display: none !important;
    }

}