/* =====================================================
   CYNOSURE CONSTRUCTION
   PREMIUM MASTER STYLESHEET
===================================================== */

/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    background: #0b0c0c;
    color: #f4f1e8;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =====================================================
   GOLD VARIABLES
===================================================== */

:root {
    --gold: #c9a45c;
    --gold-light: #efd28a;
    --gold-dark: #8d6b32;

    --black: #080909;
    --black-soft: #101111;
    --black-card: #151616;

    --cream: #f4f1e8;
    --muted: #a8a49b;

    --gold-glow:
        0 0 8px rgba(201, 164, 92, .35),
        0 0 24px rgba(201, 164, 92, .15);

    --gold-glow-strong:
        0 0 8px rgba(239, 210, 138, .65),
        0 0 25px rgba(201, 164, 92, .45),
        0 0 55px rgba(201, 164, 92, .2);
}


/* =====================================================
   LOADING SCREEN
===================================================== */

.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #080909;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 18px;
}

.loading-content p {
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.loading-line {
    width: 130px;
    height: 1px;
    background: rgba(201, 164, 92, .2);
    margin: 22px auto 0;
    overflow: hidden;
}

.loading-line span {
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold);
    animation: loadingLine 1.4s ease infinite;
    box-shadow: var(--gold-glow);
}

@keyframes loadingLine {
    from {
        transform: translateX(-150%);
    }

    to {
        transform: translateX(350%);
    }
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(8, 9, 9, .25);
    backdrop-filter: blur(12px);

    transition: .4s ease;
}

.site-header.scrolled {
    background: rgba(8, 9, 9, .92);
    border-bottom: 1px solid rgba(201, 164, 92, .16);
}

.nav-bar {
    width: 100%;
}

.nav-inner {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.text-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.text-logo span {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: .12em;
}

.text-logo small {
    margin-top: 6px;

    font-size: 7px;
    letter-spacing: .34em;
    color: var(--gold);
}


/* NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    position: relative;

    font-size: 12px;
    color: #d0cdc5;
    transition: .3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);
    box-shadow: var(--gold-glow);

    transition: .3s ease;
}

.main-nav a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 12px rgba(239, 210, 138, .35);
}

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


/* RIGHT */

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-contact {
    padding: 10px 17px;

    border: 1px solid rgba(201, 164, 92, .55);
    border-radius: 50px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;

    transition: .3s ease;
}

.nav-contact:hover {
    background: var(--gold);
    color: #090909;
    box-shadow: var(--gold-glow-strong);
}


/* MOBILE BUTTON */

.mobile-toggle {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    cursor: pointer;
}

.mobile-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--gold-light);

    transition: .3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* =====================================================
   HERO — FLOATING PREMIUM CARD
===================================================== */

.hero {
    position: relative;

    width: calc(100% - 32px);
    height: 650px;

    margin: 100px auto 0;

    border-radius: 28px;
    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.72);

    background: #0b0c0c;

    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.12),
        0 0 16px rgba(212, 175, 55, 0.30),
        0 0 38px rgba(212, 175, 55, 0.16),
        0 22px 55px rgba(0, 0, 0, 0.58);

    isolation: isolate;
}


/* VIDEO */

.hero-media {
    position: absolute;
    inset: 0;

    overflow: hidden;

    border-radius: inherit;
}

.hero-video {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* CINEMATIC OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .38) 50%,
            rgba(0, 0, 0, .20) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .58),
            transparent 55%
        );

    pointer-events: none;
}


/* CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px;
}


/* HERO TEXT */

.hero-eyebrow {
    color: #d4af37;

    font-size: 13px;
    letter-spacing: .16em;

    text-shadow:
        0 0 8px rgba(212, 175, 55, .55),
        0 0 20px rgba(212, 175, 55, .22);
}

.hero-content h1 {
    max-width: 760px;

    margin-top: 14px;

    font-size: clamp(48px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -.045em;

    color: #f4f1e8;

    text-shadow:
        0 0 20px rgba(255,255,255,.08),
        0 0 35px rgba(212,175,55,.10);
}

.hero-content h1 em {
    color: #d4af37;
    font-style: italic;

    text-shadow:
        0 0 10px rgba(212,175,55,.55),
        0 0 28px rgba(212,175,55,.28);
}

.hero-content > p {
    max-width: 600px;

    margin-top: 20px;

    color: #d0cdc5;

    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 28px;
}

.primary-button,
.secondary-button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        border-color .3s ease;
}


/* GOLD BUTTON */

.primary-button {
    background: var(--gold);
    color: #080909;

    box-shadow:
        0 0 10px rgba(201,164,92,.28),
        0 0 25px rgba(201,164,92,.12);
}

.primary-button:hover,
.primary-button:active {
    background: var(--gold-light);

    transform: translateY(-3px);

    box-shadow: var(--gold-glow-strong);
}


/* OUTLINE BUTTON */

.secondary-button {
    border: 1px solid rgba(244,241,232,.45);

    background: rgba(8,9,9,.18);

    color: #f4f1e8;
}

.secondary-button:hover,
.secondary-button:active {
    border-color: var(--gold-light);

    color: var(--gold-light);

    transform: translateY(-3px);

    box-shadow: var(--gold-glow-strong);
}


/* =====================================================
   HERO MOBILE
===================================================== */

@media (max-width: 768px) {

    .hero {
        width: calc(100% - 24px);

        height: 560px;

        min-height: 0;

        margin: 88px auto 0;

        border-radius: 22px;

        box-shadow:
            0 0 0 1px rgba(212,175,55,.14),
            0 0 15px rgba(212,175,55,.28),
            0 0 32px rgba(212,175,55,.14),
            0 18px 42px rgba(0,0,0,.58);
    }

    .hero-content {
        width: 100%;

        padding: 40px 28px;
    }

    .hero-eyebrow {
        font-size: 11px;
    }

    .hero-content h1 {
        max-width: 100%;

        margin-top: 12px;

        font-size: 42px;
        line-height: 1.02;
    }

    .hero-content > p {
        margin-top: 16px;

        font-size: 12px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;

        margin-top: 23px;
    }

    .primary-button,
    .secondary-button {
        min-height: 46px;

        padding: 0 20px;

        font-size: 11px;
    }
}

/* =====================================================
   SUBSIDIARIES
   PREMIUM GROUP SHOWCASE
===================================================== */

.subsidiaries-section {
    position: relative;
    padding: 85px 0 70px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(201,164,92,.055),
            transparent 55%
        ),
        #0b0c0c;
}


/* =====================================================
   HEADING
===================================================== */

.subsidiaries-heading {
    position: relative;
    z-index: 2;
}

.subsidiaries-heading .section-label {
    display: block;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .24em;
    text-transform: uppercase;

    text-shadow: var(--gold-glow);
}


/* =====================================================
   INTRO
===================================================== */

.subsidiaries-intro {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-top: 24px;
}


/* =====================================================
   OVERLAPPING PROFILES
===================================================== */

.profile-stack {
    position: relative;

    width: 155px;
    height: 70px;

    flex-shrink: 0;
}

.profile {
    position: absolute;

    top: 0;

    width: 70px;
    height: 70px;

    overflow: hidden;

    border-radius: 50%;

    border: 2px solid #c9a45c;

    background: #151616;

    box-shadow:
        0 0 7px rgba(201,164,92,.45),
        0 0 20px rgba(201,164,92,.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.profile img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* THREE OVERLAPPING POSITIONS */

.profile-one {
    left: 0;

    z-index: 3;
}

.profile-two {
    left: 42px;

    z-index: 2;
}

.profile-three {
    left: 84px;

    z-index: 1;
}


/* TAP / HOVER GLOW */

.profile:hover,
.profile:active {
    z-index: 10;

    border-color: var(--gold-light);

    box-shadow:
        0 0 8px rgba(239,210,138,.75),
        0 0 22px rgba(201,164,92,.5),
        0 0 42px rgba(201,164,92,.22);

    transform: translateY(-5px);
}


/* =====================================================
   INTRO TEXT
===================================================== */

.subsidiaries-copy {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}

.subsidiaries-copy strong {
    color: #f4f1e8;

    font-size: clamp(27px, 4vw, 42px);
    font-weight: 600;

    letter-spacing: -.04em;
}

.subsidiaries-copy span {
    margin-top: 4px;

    color: var(--gold-light);

    font-size: clamp(23px, 3.5vw, 36px);
    font-weight: 400;

    letter-spacing: -.035em;

    text-shadow:
        0 0 8px rgba(239,210,138,.35),
        0 0 22px rgba(201,164,92,.16);
}


/* =====================================================
   LOGO SLIDER
===================================================== */

.subsidiary-slider {
    width: 100%;

    margin-top: 55px;

    overflow: hidden;

    border-top: 1px solid rgba(201,164,92,.14);
    border-bottom: 1px solid rgba(201,164,92,.14);

    padding: 16px 0;

    background:
        linear-gradient(
            90deg,
            rgba(201,164,92,.025),
            rgba(255,255,255,.015),
            rgba(201,164,92,.025)
        );

    /* Soft fade at both edges */
    mask-image: linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
}


/* MOVING TRACK */

.subsidiary-track {
    width: max-content;

    display: flex;
    align-items: center;

    gap: 18px;

    animation: subsidiariesMove 22s linear infinite;
}


/* INDIVIDUAL LOGO CARD */

.subsidiary-card {
    width: 250px;
    height: 105px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 25px;

    border: 1px solid rgba(201,164,92,.30);

    border-radius: 8px 28px 8px 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(201,164,92,.015)
        );

    box-shadow:
        0 0 8px rgba(201,164,92,.10),
        inset 0 0 18px rgba(201,164,92,.025);

    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
}


/* LOGOS */

.subsidiary-card img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(0 0 5px rgba(201,164,92,.18));

    transition:
        transform .35s ease,
        filter .35s ease;
}


/* TAP / HOVER */

.subsidiary-card:hover,
.subsidiary-card:active {
    border-color: var(--gold-light);

    transform: translateY(-4px);

    box-shadow:
        0 0 8px rgba(239,210,138,.55),
        0 0 25px rgba(201,164,92,.30),
        0 0 45px rgba(201,164,92,.14);
}

.subsidiary-card:hover img,
.subsidiary-card:active img {
    transform: scale(1.04);

    filter:
        drop-shadow(0 0 8px rgba(239,210,138,.45));
}


/* =====================================================
   CONTINUOUS LEFT MOVEMENT
===================================================== */

@keyframes subsidiariesMove {

    from {
        transform: translateX(0);
    }

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

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .subsidiaries-section {
        padding: 65px 0 55px;
    }

    .subsidiaries-intro {
        gap: 18px;
    }

    .profile-stack {
        width: 120px;
        height: 58px;
    }

    .profile {
        width: 58px;
        height: 58px;
    }

    .profile-two {
        left: 32px;
    }

    .profile-three {
        left: 64px;
    }

    .subsidiaries-copy strong {
        font-size: 25px;
    }

    .subsidiaries-copy span {
        font-size: 21px;
    }

    .subsidiary-slider {
        margin-top: 42px;

        padding: 13px 0;
    }

    .subsidiary-track {
        gap: 12px;

        animation-duration: 18s;
    }

    .subsidiary-card {
        width: 205px;
        height: 82px;

        padding: 14px 20px;

        border-radius: 7px 22px 7px 22px;
    }

}

/* =====================================================
   VIDEO TEXT
===================================================== */

.group-showcase {
    padding: 90px 24px;
    background: #0b0c0c;
}

.cynosure-video-text {
    position: relative;

    width: min(1150px, 100%);
    height: 190px;

    margin: auto;
}

#cynosureTextVideo {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

#cynosureTextCanvas {
    width: 100%;
    height: 100%;
}


/* =====================================================
   GENERAL SECTIONS
===================================================== */

.about-section,
.services-section,
.why-section,
.process-section,
.projects-section,
.help-section,
.ownership-section,
.gallery-section,
.testimonials-section,
.consultation-section {
    padding: 105px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-heading h2,
.section-intro h2,
.help-intro h2,
.ownership-heading h2,
.consultation-box h2 {
    margin-top: 12px;

    font-size: clamp(31px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.section-heading p,
.section-intro p,
.help-intro p,
.ownership-heading p {
    margin-top: 18px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}


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

.about-section {
    background: #0e1010;
}

.about-section .container {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.section-intro {
    max-width: 470px;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-top: 25px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;

    transition: .3s ease;
}

.text-button span {
    font-size: 17px;
}

.text-button:hover {
    text-shadow: var(--gold-glow-strong);
    transform: translateX(5px);
}

.about-images {
    position: relative;
    min-height: 430px;
}

.about-image {
    position: absolute;
    overflow: hidden;

    border: 1px solid rgba(201,164,92,.32);

    box-shadow:
        0 20px 60px rgba(0,0,0,.35),
        var(--gold-glow);

    transition: .4s ease;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-main {
    width: 78%;
    height: 360px;

    right: 0;
    top: 0;

    border-radius: 5px 45px 5px 45px;
}

.about-image-secondary {
    width: 48%;
    height: 210px;

    left: 0;
    bottom: 0;

    border-radius: 45px 5px 45px 5px;

    z-index: 2;
}

.about-image:hover {
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-5px);
}


/* =====================================================
   STATS
===================================================== */

.stats-section {
    padding: 60px 0;

    background:
        linear-gradient(
            90deg,
            #111313,
            #0b0c0c,
            #111313
        );

    border-top: 1px solid rgba(201,164,92,.15);
    border-bottom: 1px solid rgba(201,164,92,.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 10px 25px;

    border-right: 1px solid rgba(201,164,92,.14);
}

.stat:last-child {
    border-right: 0;
}

.stat-number {
    display: block;

    color: var(--gold-light);

    font-size: 44px;
    line-height: 1;
    font-weight: 700;

    text-shadow: var(--gold-glow);
}

.stat span {
    display: block;

    margin-top: 10px;

    color: #99968f;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}


/* =====================================================
   TRUST
===================================================== */

.trust-section {
    padding: 35px 0;
    overflow: hidden;

    background: #090a0a;
}

.trust-section > p {
    margin-bottom: 20px;

    text-align: center;

    color: #77746e;

    font-size: 9px;
    letter-spacing: .28em;
}

.trust-track {
    width: max-content;

    display: flex;
    gap: 55px;

    animation: trustMove 22s linear infinite;
}

.trust-track span {
    color: rgba(201,164,92,.7);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2em;
}

@keyframes trustMove {
    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
   HORIZONTAL SLIDERS
===================================================== */

.horizontal-wrapper {
    width: 100%;

    overflow-x: hidden;
    overflow-y: visible;

    scrollbar-width: none;
}

.horizontal-wrapper::-webkit-scrollbar {
    display: none;
}

.services-track,
.process-track,
.projects-track,
.testimonials-track {
    width: max-content;

    display: flex;
    gap: 18px;

    padding: 10px max(24px, calc((100vw - 1180px) / 2));
}


/* =====================================================
   SERVICE / PROCESS CARDS
===================================================== */

.service-card,
.process-card {
    position: relative;

    width: 310px;
    height: 330px;

    overflow: hidden;
    flex-shrink: 0;

    border: 1px solid rgba(201,164,92,.3);
    border-radius: 8px 32px 8px 32px;

    background: var(--black-card);

    box-shadow:
        0 15px 45px rgba(0,0,0,.3),
        0 0 10px rgba(201,164,92,.08);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.service-card:hover,
.service-card:active,
.process-card:hover,
.process-card:active {
    transform: translateY(-7px);

    border-color: var(--gold-light);

    box-shadow: var(--gold-glow-strong);
}

.service-card img,
.process-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .7s ease;
}

.service-card:hover img,
.process-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.9),
            rgba(0,0,0,.08) 65%
        );
}

.service-content,
.process-content {
    position: absolute;
    inset: auto 22px 22px;

    z-index: 2;
}

.card-number {
    color: var(--gold-light);

    font-size: 10px;
    letter-spacing: .18em;

    text-shadow: var(--gold-glow);
}

.service-content h3,
.process-content h3 {
    margin-top: 7px;

    font-size: 20px;
    line-height: 1.1;
}

.service-content p,
.process-content p {
    margin-top: 8px;

    color: #bbb8b0;

    font-size: 11px;
    line-height: 1.6;
}


/* =====================================================
   WHY
===================================================== */

.why-section {
    background: #101111;
}

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

.why-card {
    min-height: 220px;

    padding: 28px;

    border: 1px solid rgba(201,164,92,.25);
    border-radius: 8px 30px 8px 30px;

    background: #141515;

    transition: .4s ease;
}

.why-card:hover,
.why-card:active {
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-5px);
}

.why-card > span {
    color: var(--gold-light);
    font-size: 11px;
    text-shadow: var(--gold-glow);
}

.why-card h3 {
    margin-top: 35px;
    font-size: 20px;
}

.why-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
}


/* =====================================================
   PROJECT CARDS
===================================================== */

.project-card {
    position: relative;

    width: 380px;
    height: 300px;

    flex-shrink: 0;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.3);
    border-radius: 7px 35px 7px 35px;

    box-shadow: var(--gold-glow);

    transition: .4s ease;
}

.project-card:hover,
.project-card:active {
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-6px);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .6s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: auto 22px 20px;

    z-index: 2;
}

.project-overlay::before {
    content: "";

    position: absolute;
    inset: -100px -30px -30px;

    z-index: -1;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.project-overlay span {
    color: var(--gold-light);

    font-size: 8px;
    letter-spacing: .2em;
}

.project-overlay h3 {
    margin-top: 6px;
    font-size: 22px;
}

.project-overlay p {
    color: #b7b3aa;
    font-size: 11px;
}


/* =====================================================
   CYNOSURE IN ACTION
===================================================== */

.action-section {
    position: relative;

    width: min(1160px, calc(100% - 48px));
    min-height: 490px;

    margin: 60px auto;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.4);
    border-radius: 8px 55px 8px 55px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.55),
        var(--gold-glow);
}

.action-image {
    position: absolute;
    inset: 0;
}

.action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.action-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.35),
            rgba(0,0,0,.3)
        );
}

.action-content {
    position: relative;
    z-index: 2;

    min-height: 490px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.action-line {
    width: 65px;
    height: 1px;

    margin: 17px 0;

    background: var(--gold);
    box-shadow: var(--gold-glow-strong);
}

.action-content h2 {
    max-width: 650px;

    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.045em;
}

.action-content p {
    max-width: 520px;

    margin-top: 20px;

    color: #c5c0b6;

    font-size: 13px;
}


/* =====================================================
   HELP
===================================================== */

.help-section {
    background: #0e1010;
}

.help-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
}

.help-options {
    display: flex;
    flex-direction: column;
}

.help-option {
    display: grid;
    grid-template-columns: 45px 1fr 30px;
    align-items: center;

    min-height: 78px;

    border-top: 1px solid rgba(201,164,92,.18);

    transition: .35s ease;
}

.help-option:last-child {
    border-bottom: 1px solid rgba(201,164,92,.18);
}

.help-option span {
    color: var(--gold);
    font-size: 10px;
}

.help-option strong {
    font-size: 14px;
    font-weight: 500;
}

.help-option b {
    color: var(--gold-light);
    font-size: 20px;
}

.help-option:hover,
.help-option:active {
    padding-left: 10px;
    color: var(--gold-light);
    text-shadow: 0 0 14px rgba(239,210,138,.25);
}


/* =====================================================
   OWNERSHIP
===================================================== */

.ownership-section {
    background: #111313;
}

.ownership-heading {
    max-width: 680px;
    margin-bottom: 45px;
}

.ownership-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ownership-card {
    min-height: 205px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(201,164,92,.25);
    border-radius: 8px 30px 8px 30px;

    background: #151717;

    transition: .4s ease;
}

.ownership-card:hover,
.ownership-card:active {
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-5px);
}

.ownership-card small {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: .2em;
}

.ownership-card h3 {
    margin-top: 10px;
    font-size: 19px;
}

.ownership-card p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}

.ownership-card > span {
    align-self: flex-end;
    color: var(--gold-light);
    font-size: 22px;
}

.ownership-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 30px;

    padding: 13px 20px;

    border: 1px solid rgba(201,164,92,.5);
    border-radius: 50px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;

    transition: .3s ease;
}

.ownership-button:hover {
    background: var(--gold);
    color: #090909;
    box-shadow: var(--gold-glow-strong);
}


/* =====================================================
   GALLERY
===================================================== */

.gallery-section {
    background: #0d0f0f;
}

.gallery-box {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
}

.gallery-image-wrap {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.3);
    border-radius: 8px 45px 8px 45px;

    box-shadow: var(--gold-glow);
}

.gallery-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: opacity .3s ease;
}

.gallery-counter {
    position: absolute;
    right: 20px;
    bottom: 18px;

    padding: 7px 12px;

    background: rgba(8,9,9,.72);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(201,164,92,.35);
    border-radius: 50px;

    color: var(--gold-light);

    font-size: 10px;
}

.gallery-arrow {
    position: absolute;
    z-index: 3;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(201,164,92,.6);
    border-radius: 50%;

    background: rgba(8,9,9,.75);

    color: var(--gold-light);

    font-size: 30px;

    cursor: pointer;

    transition: .3s ease;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-arrow:hover,
.gallery-arrow:active {
    background: var(--gold);
    color: #080909;
    box-shadow: var(--gold-glow-strong);
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials-section {
    background: #111313;
}

.testimonial-card {
    width: 350px;
    min-height: 245px;

    flex-shrink: 0;

    padding: 27px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(201,164,92,.25);
    border-radius: 8px 32px 8px 32px;

    background: #161818;

    transition: .4s ease;
}

.testimonial-card:hover,
.testimonial-card:active {
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-5px);
}

.stars {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 3px;

    text-shadow: var(--gold-glow);
}

.testimonial-card p {
    margin-top: 20px;

    color: #c8c4bb;

    font-size: 13px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 25px;
}

.testimonial-author img {
    width: 42px;
    height: 42px;

    object-fit: cover;

    border-radius: 50%;

    border: 1px solid var(--gold);

    box-shadow: var(--gold-glow);
}

.testimonial-author strong {
    display: block;
    font-size: 12px;
}

.testimonial-author span {
    color: #8e8b84;
    font-size: 10px;
}


/* =====================================================
   CONSULTATION
===================================================== */

.consultation-section {
    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.08),
            transparent 50%
        ),
        #080909;
}

.consultation-box {
    max-width: 850px;

    margin: auto;
    padding: 55px;

    border: 1px solid rgba(201,164,92,.38);
    border-radius: 10px 45px 10px 45px;

    background: #111313;

    box-shadow:
        0 25px 70px rgba(0,0,0,.4),
        var(--gold-glow);
}

.consultation-box > p {
    max-width: 550px;

    margin: 15px 0 35px;

    color: var(--muted);

    font-size: 13px;
}

.consultation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group:nth-child(5) {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 7px;

    color: var(--gold-light);

    font-size: 10px;
    letter-spacing: .08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    outline: none;

    border: 1px solid rgba(201,164,92,.2);
    border-radius: 5px;

    background: #0b0d0d;

    color: #f1eee6;

    font-size: 12px;

    transition: .3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #66645f;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(201,164,92,.14);
}

.submit-button {
    grid-column: 1 / -1;

    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    margin-top: 5px;

    border-radius: 50px;

    background: var(--gold);
    color: #080909;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;

    cursor: pointer;

    transition: .35s ease;
}

.submit-button:hover,
.submit-button:active {
    background: var(--gold-light);
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.form-success {
    grid-column: 1 / -1;

    display: none;

    padding: 13px;

    border: 1px solid rgba(201,164,92,.35);
    border-radius: 5px;

    color: var(--gold-light);

    background: rgba(201,164,92,.06);

    font-size: 11px;

    text-align: center;
}

.form-success.show {
    display: block;
}


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

.site-footer {
    padding: 60px 0 30px;

    background: #070808;

    border-top: 1px solid rgba(201,164,92,.16);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
}

.footer-brand p {
    max-width: 280px;

    margin-top: 18px;

    color: #77756f;

    font-size: 11px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: flex-start;
}

.footer-links a {
    color: #99968e;
    font-size: 11px;
    transition: .3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    text-shadow: var(--gold-glow);
}

.copyright {
    grid-column: 1 / -1;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.06);

    color: #55544f;

    font-size: 10px;
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 25px;

    z-index: 900;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(201,164,92,.6);
    border-radius: 50%;

    background: rgba(10,11,11,.88);

    color: var(--gold-light);

    font-size: 20px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .35s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:active {
    background: var(--gold);
    color: #080909;
    box-shadow: var(--gold-glow-strong);
}


/* =====================================================
   GOLD AMBIENT LINES
===================================================== */

.about-section,
.services-section,
.why-section,
.process-section,
.projects-section,
.help-section,
.ownership-section,
.gallery-section,
.testimonials-section {
    position: relative;
}

.about-section::before,
.services-section::before,
.why-section::before,
.process-section::before,
.projects-section::before,
.help-section::before,
.ownership-section::before,
.gallery-section::before,
.testimonials-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 120px;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

    box-shadow: 0 0 12px rgba(201,164,92,.25);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .container {
        width: min(100% - 36px, 700px);
    }

    .main-nav {
        position: fixed;

        top: 82px;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 20px 24px 30px;

        background: rgba(8,9,9,.97);
        backdrop-filter: blur(20px);

        border-bottom: 1px solid rgba(201,164,92,.2);

        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;

        transition: .4s ease;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 15px 0;

        border-bottom: 1px solid rgba(255,255,255,.05);

        font-size: 14px;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-contact {
        display: none;
    }

    .about-section .container,
    .help-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .why-grid,
    .ownership-cards {
        grid-template-columns: 1fr;
    }

    .why-card,
    .ownership-card {
        min-height: 185px;
    }

    .action-section {
        min-height: 420px;
    }

    .action-content {
        min-height: 420px;
    }

    .consultation-form {
        grid-template-columns: 1fr;
    }

    .form-group:nth-child(5),
    .submit-button,
    .form-success {
        grid-column: auto;
    }

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

    .footer-links {
        justify-content: flex-start;
    }

    .copyright {
        grid-column: auto;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }

    .nav-inner {
        height: 72px;
    }

    .main-nav {
        top: 72px;
    }

    .text-logo span {
        font-size: 16px;
    }

    .hero-content {
        width: calc(100% - 30px);
        padding-top: 65px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-button,
    .secondary-button {
        width: auto;
        min-height: 48px;
    }

    .group-showcase {
        padding: 65px 15px;
    }

    .cynosure-video-text {
        height: 110px;
    }

    .about-section,
    .services-section,
    .why-section,
    .process-section,
    .projects-section,
    .help-section,
    .ownership-section,
    .gallery-section,
    .testimonials-section,
    .consultation-section {
        padding: 75px 0;
    }

    .section-heading h2,
    .section-intro h2,
    .help-intro h2,
    .ownership-heading h2,
    .consultation-box h2 {
        font-size: 32px;
    }

    .section-heading p,
    .section-intro p,
    .help-intro p,
    .ownership-heading p {
        font-size: 12px;
    }

    .about-images {
        min-height: 330px;
    }

    .about-image-main {
        height: 275px;
    }

    .about-image-secondary {
        height: 160px;
    }

    .stats-section {
        padding: 45px 0;
    }

    .stat {
        padding: 5px 12px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat span {
        font-size: 9px;
    }

    .service-card,
    .process-card {
        width: 275px;
        height: 290px;
    }

    .project-card {
        width: 315px;
        height: 260px;
    }

    .testimonial-card {
        width: 300px;
        min-height: 225px;
    }

    .action-section {
        width: calc(100% - 30px);

        min-height: 380px;

        margin: 35px auto;

        border-radius: 8px 35px 8px 35px;
    }

    .action-content {
        min-height: 380px;
    }

    .action-content h2 {
        font-size: 38px;
    }

    .action-content p {
        font-size: 12px;
    }

    .gallery-image-wrap {
        height: 350px;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .consultation-box {
        padding: 30px 20px;

        border-radius: 8px 30px 8px 30px;
    }

    .back-to-top {
        right: 16px;
        bottom: 18px;
    }
}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =====================================================
   OUR BOARD
   PREMIUM LEADERSHIP SECTION
===================================================== */

.board-section {
    position: relative;

    padding: 90px 0 80px;

    overflow: hidden;

    background: #0b0c0c;
}


/* =====================================================
   BOARD HEADING
===================================================== */

.board-heading {
    max-width: 650px;

    margin-bottom: 45px;
}

.board-heading .section-label {
    display: block;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .24em;
    text-transform: uppercase;

    text-shadow: var(--gold-glow);
}

.board-heading h2 {
    margin-top: 12px;

    color: var(--cream);

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;

    letter-spacing: -.04em;

    text-shadow:
        0 0 18px rgba(201,164,92,.08);
}

.board-heading p {
    max-width: 520px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   BOARD SLIDER
===================================================== */

.board-slider {
    width: 100%;

    overflow: hidden;

    position: relative;
}


/* =====================================================
   SOFT EDGE FADE
===================================================== */

.board-slider::before,
.board-slider::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 90px;

    z-index: 10;

    pointer-events: none;
}

.board-slider::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            #0b0c0c,
            transparent
        );
}

.board-slider::after {
    right: 0;

    background:
        linear-gradient(
            270deg,
            #0b0c0c,
            transparent
        );
}


/* =====================================================
   MOVING TRACK
===================================================== */

.board-track {
    display: flex;

    width: max-content;

    align-items: stretch;

    animation:
        boardMove 28s linear infinite;

    will-change: transform;
}


/* =====================================================
   BOARD GROUP
   EACH GROUP MUST BE IDENTICAL
===================================================== */

.board-group {
    display: flex;

    align-items: stretch;

    gap: 18px;

    flex-shrink: 0;

    padding:
        10px
        max(24px, calc((100vw - 1180px) / 2));
}


/* =====================================================
   BOARD CARD
===================================================== */

.board-card {
    position: relative;

    width: 275px;
    height: 365px;

    flex: 0 0 275px;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.32);

    border-radius: 8px 42px 8px 42px;

    background: #151616;

    box-shadow:
        0 15px 45px rgba(0,0,0,.35),
        0 0 10px rgba(201,164,92,.10);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


/* =====================================================
   BOARD IMAGE
===================================================== */

.board-image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.board-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.35) 45%,
            rgba(0,0,0,.02) 75%
        );
}

.board-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s ease,
        filter .5s ease;
}


/* =====================================================
   BOARD INFORMATION
===================================================== */

.board-info {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 21px;

    z-index: 2;
}

.board-info h3 {
    color: #f4f1e8;

    font-size: 18px;
    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -.02em;
}

.board-info span {
    display: block;

    margin-top: 6px;

    color: var(--gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;

    text-shadow: var(--gold-glow);
}


/* =====================================================
   HOVER / TAP GLOW
===================================================== */

.board-card:hover,
.board-card:active {
    border-color: var(--gold-light);

    transform: translateY(-7px);

    box-shadow:
        0 0 8px rgba(239,210,138,.65),
        0 0 25px rgba(201,164,92,.42),
        0 0 50px rgba(201,164,92,.18),
        0 20px 55px rgba(0,0,0,.5);
}

.board-card:hover .board-image img,
.board-card:active .board-image img {
    transform: scale(1.045);

    filter:
        brightness(1.04)
        saturate(1.05);
}


/* =====================================================
   SEAMLESS CONTINUOUS MOVEMENT
===================================================== */

@keyframes boardMove {

    from {
        transform: translateX(0);
    }

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

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .board-section {
        padding: 70px 0 60px;
    }

    .board-heading {
        margin-bottom: 30px;
    }

    .board-heading h2 {
        font-size: 31px;
    }

    .board-heading p {
        font-size: 12px;
    }


    .board-track {
        animation-duration: 22s;
    }


    .board-group {
        gap: 12px;

        padding:
            8px
            15px;
    }


    .board-card {
        width: 205px;
        height: 290px;

        flex: 0 0 205px;

        border-radius: 7px 30px 7px 30px;
    }


    .board-info {
        left: 17px;
        right: 17px;
        bottom: 17px;
    }


    .board-info h3 {
        font-size: 15px;
    }


    .board-info span {
        font-size: 8px;
    }


    .board-slider::before,
    .board-slider::after {
        width: 35px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .board-track {
        animation: none;
    }

    .board-card,
    .board-image img {
        transition: none;
    }

}

.contact-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 50px;
    padding: 13px 23px;

    border: 1px solid rgba(201, 164, 92, .55);
    border-radius: 999px;

    background: linear-gradient(
        135deg,
        rgba(201, 164, 92, .10),
        rgba(201, 164, 92, .025)
    );

    color: var(--gold-light);

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .13em;
    text-transform: uppercase;

    text-shadow:
        0 0 8px rgba(239, 210, 138, .18);

    box-shadow:
        0 0 8px rgba(201, 164, 92, .15),
        0 0 22px rgba(201, 164, 92, .07);

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        color .3s ease;
}

.contact-action-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
    font-weight: 500;
    line-height: 1;

    transition: transform .3s ease;
}

.contact-action-button:hover,
.contact-action-button:active {
    transform: translateY(-3px);

    background: rgba(201, 164, 92, .14);

    border-color: var(--gold-light);

    color: #fff;

    text-shadow:
        0 0 10px rgba(239, 210, 138, .35);

    box-shadow: var(--gold-glow-strong);
}

.contact-action-button:hover span {
    transform: translate(2px, -2px);
}

/* =====================================================
   CONTACT US — PREMIUM REDESIGN
===================================================== */

.contact-section {
    position: relative;
    padding: 140px 0 160px;
    background: #0b0b09;
    overflow: hidden;
}


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

.contact-heading {
    max-width: 900px;
    margin-bottom: 70px;
}

.contact-heading .section-label {
    display: block;
    margin-bottom: 22px;
}

.contact-heading h2 {
    margin: 0;
    max-width: 850px;
}

.contact-heading h2 em {
    font-style: italic;
}



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

.contact-information {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 120px;
}


.contact-item {
    position: relative;

    display: grid;
    grid-template-columns: 55px 1fr 30px;
    align-items: center;

    min-height: 125px;
    padding: 25px 10px 25px 0;

    text-decoration: none;
    color: inherit;

    border-bottom: 1px solid rgba(255,255,255,0.12);

    transition:
        background 0.35s ease,
        padding 0.35s ease;
}


.contact-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.12);
    padding-right: 40px;
}


.contact-item:nth-child(even) {
    padding-left: 40px;
}


.contact-item:hover {
    background: rgba(255,255,255,0.035);
}


.contact-item-number {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #b9a36a;
}


.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.contact-item-content span {
    font-size: 10px;
    letter-spacing: 0.22em;
    color: #b9a36a;
}


.contact-item-content strong {
    font-size: 17px;
    font-weight: 500;
    color: #f4f1e8;
    word-break: break-word;
}


.contact-item b {
    font-size: 20px;
    font-weight: 400;
    color: #b9a36a;

    transition:
        transform 0.3s ease;
}


.contact-item:hover b {
    transform: translate(4px, -4px);
}



/* =====================================================
   ENQUIRY SECTION
===================================================== */

.contact-enquiry {
    position: relative;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;

    padding-top: 80px;

    border-top: 1px solid rgba(255,255,255,0.12);
}


.enquiry-heading {
    padding-top: 10px;
}


.enquiry-heading > span {
    display: block;

    margin-bottom: 22px;

    font-size: 10px;
    letter-spacing: 0.22em;
    color: #b9a36a;
}


.enquiry-heading h3 {
    max-width: 400px;

    margin: 0;

    font-size: clamp(34px, 4vw, 60px);
    line-height: 1.02;
    font-weight: 500;
    color: #f4f1e8;
}


.enquiry-heading h3 em {
    font-style: italic;
    font-weight: 400;
}



/* =====================================================
   FORM CARD
===================================================== */

.contact-enquiry .consultation-box {
    position: relative;

    padding: 45px;

    background: #11110f;

    border: 1px solid rgba(185,163,106,0.28);

    border-radius: 4px;

    box-shadow:
        0 20px 70px rgba(0,0,0,0.35);
}


.contact-enquiry .consultation-form {
    width: 100%;
}


.contact-enquiry .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


.contact-enquiry .form-group {
    margin-bottom: 28px;
}


.contact-enquiry label {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #b9a36a;
}


.contact-enquiry input,
.contact-enquiry select,
.contact-enquiry textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 17px 18px;

    background: #0b0b09;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 2px;

    color: #f4f1e8;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


.contact-enquiry input::placeholder,
.contact-enquiry textarea::placeholder {
    color: rgba(255,255,255,0.35);
}


.contact-enquiry input:focus,
.contact-enquiry select:focus,
.contact-enquiry textarea:focus {
    border-color: #b9a36a;
    background: #0e0e0c;
}


.contact-enquiry select {
    cursor: pointer;
}


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



/* =====================================================
   SUBMIT BUTTON
===================================================== */

.contact-enquiry .submit-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 22px;

    border: 1px solid #b9a36a;
    border-radius: 2px;

    background: #b9a36a;
    color: #0b0b09;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.contact-enquiry .submit-button:hover {
    background: transparent;
    color: #b9a36a;
}


.contact-enquiry .submit-button span {
    font-size: 18px;
}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .contact-section {
        padding: 90px 0 110px;
    }


    .contact-heading {
        margin-bottom: 50px;
    }


    .contact-information {
        grid-template-columns: 1fr;
        margin-bottom: 80px;
    }


    .contact-item,
    .contact-item:nth-child(odd),
    .contact-item:nth-child(even) {
        border-right: none;
        padding: 22px 0;
    }


    .contact-item {
        min-height: 95px;
    }


    .contact-item-content strong {
        font-size: 15px;
    }


    .contact-enquiry {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 60px;
    }


    .enquiry-heading h3 {
        max-width: 500px;
        font-size: 38px;
    }


    .contact-enquiry .consultation-box {
        padding: 25px 20px;
    }


    .contact-enquiry .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}


@media (max-width: 480px) {

    .contact-item {
        grid-template-columns: 40px 1fr 25px;
    }


    .contact-item-content strong {
        font-size: 14px;
    }


    .contact-item-number {
        font-size: 9px;
    }


    .contact-enquiry .consultation-box {
        padding: 22px 16px;
    }

}

/* =====================================================
PREMIUM CONTACT SECTION
===================================================== */

.contact-section {
position: relative;
padding: 120px 0;
background:
radial-gradient(
circle at 15% 30%,
rgba(180, 150, 80, 0.08),
transparent 35%
),
#0b0b09;
overflow: hidden;
}

/* MAIN TWO-COLUMN LAYOUT */

.contact-grid {
display: grid;
grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
gap: 70px;
align-items: stretch;
}

/* =====================================================
CONTACT INFORMATION — ITS OWN SECTION
===================================================== */

.contact-intro {
display: flex;
flex-direction: column;
justify-content: center;

padding: 55px 45px;

background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.045),
        rgba(255,255,255,0.015)
    );

border: 1px solid rgba(255,255,255,0.09);

border-radius: 32px;

box-shadow:
    0 25px 70px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);

}

.contact-intro .section-label {
margin-bottom: 22px;
}

.contact-intro h2 {
margin: 0 0 25px;
font-size: clamp(2.5rem, 5vw, 4.8rem);
line-height: 0.95;
}

.contact-intro h2 em {
display: block;
}

.contact-intro > p {
display: none;
}

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

.contact-actions {
display: flex;
flex-direction: column;
gap: 14px;
margin-top: 25px;
}

.contact-actions a {
display: flex;
align-items: center;
justify-content: space-between;

min-height: 58px;
padding: 0 22px;

border-radius: 16px;

text-decoration: none;

transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;

}

.map-button {
color: #111;
background: #d8c28a;
}

.contact-whatsapp {
color: #fff;
background: rgba(255,255,255,0.055);
border: 1px solid rgba(255,255,255,0.12);
}

.contact-actions a:hover {
transform: translateY(-3px);
}

.map-button:hover {
background: #ead49a;
}

.contact-whatsapp:hover {
background: rgba(255,255,255,0.1);
}

/* =====================================================
PHONE / WHATSAPP / EMAIL
===================================================== */

.contact-details {
margin-top: 32px;
padding-top: 25px;

border-top: 1px solid rgba(255,255,255,0.1);

display: flex;
flex-direction: column;
gap: 13px;

}

.contact-details p {
margin: 0;

display: flex;
flex-wrap: wrap;
gap: 8px;

font-size: 0.92rem;
line-height: 1.5;

}

.contact-details strong {
color: rgba(255,255,255,0.55);
font-weight: 500;
}

.contact-details a {
color: #fff;
text-decoration: none;
transition: color 0.2s ease;
}

.contact-details a:hover {
color: #d8c28a;
}


/* =====================================================
   CYNOSURE — COMPACT FLOATING ENQUIRY CARD
===================================================== */

.consultation-box {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    padding: 30px 32px;

    box-sizing: border-box;

    background: #11120f;

    border: 1px solid rgba(211, 174, 91, 0.65);

    border-radius: 30px;

    /* FLOATING GOLD GLOW */
    box-shadow:
        0 0 0 1px rgba(211, 174, 91, 0.08),
        0 0 18px rgba(211, 174, 91, 0.22),
        0 0 45px rgba(211, 174, 91, 0.10),
        0 18px 45px rgba(0, 0, 0, 0.35);

    position: relative;
}


/* subtle inner edge */

.consultation-box::before {
    content: "";

    position: absolute;

    inset: 1px;

    border-radius: 29px;

    pointer-events: none;

    border: 1px solid rgba(255, 255, 255, 0.025);
}


/* FORM */

.consultation-form {
    width: 100%;
    position: relative;
    z-index: 1;
}


/* TWO COLUMN ROW */

.consultation-form .form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* FIELD */

.consultation-form .form-group {
    width: 100%;

    margin-bottom: 18px;
}


/* LABEL */

.consultation-form label {
    display: block;

    margin-bottom: 7px;

    color: #d7bd7b;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.05em;
}


/* INPUTS */

.consultation-form input,
.consultation-form select,
.consultation-form textarea {

    width: 100%;

    box-sizing: border-box;

    background: #090a09;

    color: #f2eee5;

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 9px;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


/* INPUT + SELECT */

.consultation-form input,
.consultation-form select {

    height: 48px;

    padding: 0 15px;
}


/* TEXTAREA */

.consultation-form textarea {

    height: 105px;

    min-height: 105px;

    padding: 13px 15px;

    resize: none;
}


/* PLACEHOLDER */

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {

    color: rgba(255, 255, 255, 0.30);
}


/* FOCUS */

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {

    border-color: rgba(211, 174, 91, 0.75);

    box-shadow:
        0 0 0 2px rgba(211, 174, 91, 0.06),
        0 0 14px rgba(211, 174, 91, 0.12);
}


/* SEND ENQUIRY */

.consultation-form .submit-button {

    width: 100%;

    height: 55px;

    margin-top: 2px;

    border: none;

    border-radius: 999px;

    background: #d8b45f;

    color: #11110d;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.07em;

    cursor: pointer;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.30),
        0 0 18px rgba(211, 174, 91, 0.14);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


/* ARROW */

.consultation-form .submit-button span {
    font-size: 18px;
}


/* HOVER */

.consultation-form .submit-button:hover {

    background: #e1c274;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(211, 174, 91, 0.24);
}


/* SUCCESS MESSAGE */

.consultation-form .form-success {

    margin-top: 12px;

    text-align: center;

    color: #d8b45f;

    font-size: 13px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .consultation-box {

        max-width: 100%;

        padding: 25px 22px;

        border-radius: 27px;

        box-shadow:
            0 0 0 1px rgba(211, 174, 91, 0.08),
            0 0 17px rgba(211, 174, 91, 0.20),
            0 0 38px rgba(211, 174, 91, 0.09),
            0 15px 35px rgba(0, 0, 0, 0.32);
    }


    .consultation-box::before {
        border-radius: 26px;
    }


    .consultation-form .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .consultation-form .form-group {

        margin-bottom: 16px;
    }


    .consultation-form label {

        margin-bottom: 6px;

        font-size: 12px;
    }


    .consultation-form input,
    .consultation-form select {

        height: 45px;

        font-size: 14px;
    }


    .consultation-form textarea {

        height: 85px;

        min-height: 85px;
    }


    .consultation-form .submit-button {

        height: 52px;

        font-size: 13px;
    }
}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 380px) {

    .consultation-box {

        padding: 23px 18px;

        border-radius: 24px;
    }


    .consultation-form input,
    .consultation-form select {

        height: 43px;
    }


    .consultation-form textarea {

        height: 80px;

        min-height: 80px;
    }
}

/* =====================================================
   ABOUT PAGE — PREMIUM STYLES
===================================================== */

.about-page {
    background: #0b0c0c;
    min-height: 100vh;
}


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

.about-page-hero {
    position: relative;
    width: min(1180px, calc(100% - 48px));
    min-height: 520px;
    margin: 120px auto 0;
    padding: 80px;
    overflow: hidden;

    display: flex;
    align-items: center;

    border: 1px solid rgba(201,164,92,.38);
    border-radius: 10px 55px 10px 55px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(201,164,92,.12),
            transparent 40%
        ),
        #101111;

    box-shadow:
        0 25px 80px rgba(0,0,0,.55),
        var(--gold-glow);
}

.about-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,9,9,.96),
            rgba(8,9,9,.72),
            rgba(8,9,9,.25)
        );

    pointer-events: none;
}

.about-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.about-page-label {
    display: block;

    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;

    text-shadow: var(--gold-glow);
}

.about-page-hero h1 {
    margin-top: 16px;

    font-size: clamp(44px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -.05em;

    color: var(--cream);

    text-shadow:
        0 0 20px rgba(255,255,255,.07),
        0 0 35px rgba(212,175,55,.12);
}

.about-page-hero h1 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow:
        0 0 10px rgba(239,210,138,.5),
        0 0 30px rgba(201,164,92,.25);
}

.about-page-hero p {
    max-width: 590px;

    margin-top: 22px;

    color: #bbb8b0;
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   ABOUT INTRO
===================================================== */

.about-page-intro {
    padding: 110px 0;
    background: #0e1010;
}

.about-page-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.about-page-heading {
    max-width: 480px;
}

.about-page-heading .about-page-label {
    margin-bottom: 12px;
}

.about-page-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.about-page-heading h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.about-page-heading p {
    margin-top: 20px;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}


/* =====================================================
   ABOUT IMAGE
===================================================== */

.about-page-image {
    position: relative;
    min-height: 430px;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.32);
    border-radius: 8px 48px 8px 48px;

    background: #151616;

    box-shadow:
        0 25px 70px rgba(0,0,0,.45),
        var(--gold-glow);

    transition: .4s ease;
}

.about-page-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,.48)
        );

    pointer-events: none;
}

.about-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.about-page-image:hover {
    border-color: var(--gold-light);

    box-shadow:
        var(--gold-glow-strong),
        0 25px 70px rgba(0,0,0,.5);

    transform: translateY(-5px);
}

.about-page-image:hover img {
    transform: scale(1.05);
}


/* =====================================================
   ABOUT VALUES
===================================================== */

.about-values-section {
    padding: 105px 0;
    background: #101111;
}

.about-values-heading {
    max-width: 680px;
    margin-bottom: 45px;
}

.about-values-heading h2 {
    margin-top: 12px;

    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.about-values-heading h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.about-values-heading p {
    margin-top: 18px;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-value-card {
    position: relative;

    min-height: 245px;
    padding: 28px;

    border: 1px solid rgba(201,164,92,.25);
    border-radius: 8px 30px 8px 30px;

    background: #141515;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.about-value-card:hover,
.about-value-card:active {
    transform: translateY(-7px);

    border-color: var(--gold-light);

    box-shadow: var(--gold-glow-strong);
}

.about-value-number {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;

    text-shadow: var(--gold-glow);
}

.about-value-card h3 {
    margin-top: 35px;

    font-size: 21px;
}

.about-value-card p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   ABOUT MISSION
===================================================== */

.about-mission-section {
    padding: 105px 0;
    background: #0d0f0f;
}

.about-mission-box {
    position: relative;

    max-width: 1000px;
    margin: auto;

    padding: 70px;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.32);
    border-radius: 10px 50px 10px 50px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(201,164,92,.10),
            transparent 40%
        ),
        #111313;

    box-shadow:
        0 25px 75px rgba(0,0,0,.45),
        var(--gold-glow);
}

.about-mission-box::before {
    content: "“";

    position: absolute;

    top: 5px;
    right: 45px;

    color: rgba(201,164,92,.08);

    font-family: Georgia, serif;
    font-size: 180px;
    line-height: 1;
}

.about-mission-box h2 {
    position: relative;
    z-index: 2;

    max-width: 750px;

    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.about-mission-box h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow: var(--gold-glow);
}

.about-mission-box p {
    position: relative;
    z-index: 2;

    max-width: 650px;

    margin-top: 22px;

    color: #bdb9b0;

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   ABOUT CTA
===================================================== */

.about-page-cta {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.08),
            transparent 50%
        ),
        #080909;
}

.about-page-cta-box {
    max-width: 850px;
    margin: auto;

    padding: 55px;

    text-align: center;

    border: 1px solid rgba(201,164,92,.38);
    border-radius: 10px 45px 10px 45px;

    background: #111313;

    box-shadow:
        0 25px 70px rgba(0,0,0,.4),
        var(--gold-glow);
}

.about-page-cta-box h2 {
    margin-top: 12px;

    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.about-page-cta-box h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.about-page-cta-box p {
    max-width: 560px;

    margin: 18px auto 30px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}

.about-page-cta-box .primary-button {
    display: inline-flex;
}


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

@media (max-width: 768px) {

    .about-page-hero {
        width: calc(100% - 24px);

        min-height: 500px;

        margin-top: 88px;

        padding: 42px 28px;

        border-radius: 8px 35px 8px 35px;
    }

    .about-page-hero h1 {
        font-size: 43px;
    }

    .about-page-hero p {
        font-size: 12px;
        line-height: 1.7;
    }


    .about-page-intro,
    .about-values-section,
    .about-mission-section,
    .about-page-cta {
        padding: 75px 0;
    }


    .about-page-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-page-heading {
        max-width: 100%;
    }

    .about-page-heading h2 {
        font-size: 34px;
    }


    .about-page-image {
        min-height: 350px;

        border-radius: 7px 35px 7px 35px;
    }


    .about-values-heading h2 {
        font-size: 34px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-value-card {
        min-height: 210px;
    }


    .about-mission-box {
        padding: 45px 28px;

        border-radius: 8px 35px 8px 35px;
    }

    .about-mission-box h2 {
        font-size: 36px;
    }

    .about-mission-box p {
        font-size: 12px;
    }


    .about-page-cta-box {
        padding: 45px 25px;

        border-radius: 8px 35px 8px 35px;
    }

    .about-page-cta-box h2 {
        font-size: 34px;
    }

}


/* =====================================================
   ABOUT PAGE SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .about-page-hero {
        min-height: 470px;
        padding: 38px 23px;
    }

    .about-page-hero h1 {
        font-size: 39px;
    }

    .about-page-image {
        min-height: 290px;
    }

    .about-value-card {
        padding: 24px;
    }

    .about-mission-box {
        padding: 40px 23px;
    }

}

/* =====================================================
   SERVICES PAGE — PREMIUM INNER PAGE
===================================================== */

/* =====================================================
   PAGE HERO
===================================================== */

.inner-page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(201,164,92,.09),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #080909 0%,
            #0d0f0f 50%,
            #090a0a 100%
        );

    border-bottom: 1px solid rgba(201,164,92,.14);
}

.inner-page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);

    border: 1px solid rgba(201,164,92,.08);
    border-radius: 50%;

    box-shadow:
        0 0 80px rgba(201,164,92,.05),
        inset 0 0 60px rgba(201,164,92,.03);

    pointer-events: none;
}

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;

    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;

    text-shadow: var(--gold-glow);
}

.inner-page-hero h1 {
    max-width: 800px;
    margin-top: 18px;

    font-size: clamp(48px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;

    color: #f4f1e8;

    text-shadow:
        0 0 20px rgba(255,255,255,.06),
        0 0 45px rgba(201,164,92,.08);
}

.inner-page-hero h1 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow:
        0 0 10px rgba(239,210,138,.5),
        0 0 30px rgba(201,164,92,.25);
}

.inner-page-hero p {
    max-width: 650px;
    margin-top: 25px;

    color: #aaa69d;
    font-size: 14px;
    line-height: 1.9;
}


/* =====================================================
   SERVICES INTRO
===================================================== */

.services-page-intro {
    padding: 105px 0 65px;
    background: #0e1010;
}

.services-page-intro .section-heading {
    max-width: 780px;
    margin-bottom: 0;
}

.services-page-intro .section-heading h2 {
    max-width: 720px;
}

.services-page-intro .section-heading h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow:
        0 0 10px rgba(239,210,138,.3),
        0 0 25px rgba(201,164,92,.12);
}

.services-page-intro .section-heading p {
    max-width: 650px;
}


/* =====================================================
   SERVICES LIST
===================================================== */

.services-page-list {
    position: relative;
    padding: 30px 0 110px;

    background: #0e1010;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-page-card {
    position: relative;
    min-height: 365px;

    padding: 32px;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.25);
    border-radius: 8px 38px 8px 38px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(201,164,92,.015)
        ),
        #141515;

    box-shadow:
        0 20px 55px rgba(0,0,0,.28),
        0 0 12px rgba(201,164,92,.06);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease,
        background .4s ease;
}


/* Decorative glow */

.service-page-card::before {
    content: "";

    position: absolute;
    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background: rgba(201,164,92,.06);

    filter: blur(5px);

    transition: .5s ease;

    pointer-events: none;
}


/* Decorative number line */

.service-page-card::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: var(--gold-light);

    box-shadow: var(--gold-glow-strong);

    transition: height .45s ease;

    pointer-events: none;
}


/* Hover */

.service-page-card:hover,
.service-page-card:active {
    transform: translateY(-7px);

    border-color: var(--gold-light);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(201,164,92,.025)
        ),
        #151616;

    box-shadow:
        0 20px 60px rgba(0,0,0,.4),
        var(--gold-glow-strong);
}

.service-page-card:hover::before,
.service-page-card:active::before {
    transform: scale(1.5);
    background: rgba(201,164,92,.09);
}

.service-page-card:hover::after,
.service-page-card:active::after {
    height: 100%;
}


/* =====================================================
   SERVICE NUMBER
===================================================== */

.service-page-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: rgba(201,164,92,.55);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;

    text-shadow:
        0 0 8px rgba(201,164,92,.2);

    transition: .35s ease;
}

.service-page-card:hover .service-page-number {
    color: var(--gold-light);

    text-shadow: var(--gold-glow);
}


/* =====================================================
   SERVICE CONTENT
===================================================== */

.service-page-content {
    position: relative;
    z-index: 2;

    max-width: 500px;

    padding-top: 48px;
}

.service-page-label {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .22em;

    text-shadow: var(--gold-glow);
}

.service-page-content h3 {
    margin-top: 12px;

    color: #f4f1e8;

    font-size: clamp(24px, 3vw, 31px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.service-page-content p {
    max-width: 460px;

    margin-top: 17px;

    color: #aaa69d;

    font-size: 12px;
    line-height: 1.8;
}


/* =====================================================
   SERVICE LINK
===================================================== */

.service-page-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-top: 28px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .06em;

    transition:
        transform .3s ease,
        text-shadow .3s ease,
        color .3s ease;
}

.service-page-link span {
    font-size: 18px;
    line-height: 1;

    transition: transform .3s ease;
}

.service-page-link:hover {
    color: #f4f1e8;

    text-shadow: var(--gold-glow-strong);

    transform: translateX(4px);
}

.service-page-link:hover span {
    transform: translateX(5px);
}


/* =====================================================
   SERVICES CTA
===================================================== */

.services-page-cta {
    position: relative;

    padding: 30px 0 110px;

    background: #0b0c0c;
}

.services-cta-box {
    position: relative;

    max-width: 900px;

    margin: auto;

    padding: 65px 60px;

    overflow: hidden;

    text-align: center;

    border: 1px solid rgba(201,164,92,.35);
    border-radius: 10px 50px 10px 50px;

    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.075),
            transparent 65%
        ),
        #111313;

    box-shadow:
        0 25px 75px rgba(0,0,0,.45),
        var(--gold-glow);
}

.services-cta-box::before,
.services-cta-box::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(201,164,92,.08);
    border-radius: 50%;

    pointer-events: none;
}

.services-cta-box::before {
    width: 280px;
    height: 280px;

    top: -180px;
    left: -100px;
}

.services-cta-box::after {
    width: 220px;
    height: 220px;

    right: -100px;
    bottom: -150px;
}

.services-cta-box .section-label {
    position: relative;
    z-index: 2;
}

.services-cta-box h2 {
    position: relative;
    z-index: 2;

    margin-top: 14px;

    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -.045em;
}

.services-cta-box h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow:
        0 0 10px rgba(239,210,138,.45),
        0 0 30px rgba(201,164,92,.2);
}

.services-cta-box p {
    position: relative;
    z-index: 2;

    max-width: 560px;

    margin: 18px auto 30px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}

.services-cta-box .primary-button {
    position: relative;
    z-index: 2;
}


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

.site-footer {
    padding: 70px 0 30px;

    background: #080909;

    border-top: 1px solid rgba(201,164,92,.14);
}

.footer-inner {
    display: grid;

    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.footer-brand p {
    max-width: 330px;

    margin-top: 18px;

    color: #85827b;

    font-size: 11px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9c9890;

    font-size: 11px;

    transition:
        color .3s ease,
        text-shadow .3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);

    text-shadow: var(--gold-glow);
}

.copyright {
    grid-column: 1 / -1;

    padding-top: 25px;

    border-top: 1px solid rgba(201,164,92,.1);

    color: #62605b;

    font-size: 9px;
    letter-spacing: .05em;
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(201,164,92,.5);
    border-radius: 50%;

    background: rgba(8,9,9,.88);

    color: var(--gold-light);

    font-size: 19px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    backdrop-filter: blur(10px);

    box-shadow: var(--gold-glow);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:active {
    background: var(--gold);

    color: #080909;

    box-shadow: var(--gold-glow-strong);

    transform: translateY(-4px);
}


/* =====================================================
   SERVICES PAGE MOBILE
===================================================== */

@media (max-width: 768px) {

    .inner-page-hero {
        min-height: 470px;

        padding: 135px 0 80px;
    }

    .inner-page-hero::before {
        width: 280px;
        height: 280px;

        right: -160px;
    }

    .inner-page-hero h1 {
        margin-top: 14px;

        font-size: 46px;
    }

    .inner-page-hero p {
        margin-top: 20px;

        font-size: 12px;
        line-height: 1.8;
    }


    .services-page-intro {
        padding: 75px 0 45px;
    }

    .services-page-intro .section-heading h2 {
        font-size: 34px;
    }


    .services-page-list {
        padding: 20px 0 75px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .service-page-card {
        min-height: 340px;

        padding: 27px;

        border-radius: 7px 30px 7px 30px;
    }

    .service-page-content {
        padding-top: 45px;
    }

    .service-page-content h3 {
        font-size: 26px;
    }

    .service-page-content p {
        font-size: 11px;
    }


    .services-page-cta {
        padding: 10px 0 75px;
    }

    .services-cta-box {
        padding: 50px 25px;

        border-radius: 8px 35px 8px 35px;
    }

    .services-cta-box h2 {
        font-size: 36px;
    }

    .services-cta-box p {
        font-size: 12px;
    }


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

    .footer-links {
        justify-content: flex-start;

        gap: 18px;
    }

    .copyright {
        grid-column: 1;
    }


    .back-to-top {
        right: 17px;
        bottom: 17px;

        width: 42px;
        height: 42px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .inner-page-hero {
        min-height: 440px;

        padding: 125px 0 65px;
    }

    .inner-page-hero h1 {
        font-size: 42px;
    }

    .inner-page-hero p {
        max-width: 100%;
    }

    .service-page-card {
        min-height: 350px;
    }

    .service-page-number {
        right: 22px;
    }

    .services-cta-box h2 {
        font-size: 32px;
    }

    .services-cta-box .primary-button {
        width: 100%;
    }
}

/* =====================================================
   CYNOSURE CONSTRUCTION
   CONTACT PAGE — PREMIUM MATCHING STYLES
===================================================== */

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

.contact-page {
    padding: 150px 0 100px;
    background:
        radial-gradient(
            circle at 20% 25%,
            rgba(201,164,92,.055),
            transparent 40%
        ),
        #0b0c0c;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

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

.contact-page-intro {
    padding-top: 25px;
}

.contact-page-intro h1 {
    max-width: 570px;
    margin-top: 15px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.045em;
    color: #f4f1e8;
    text-shadow:
        0 0 20px rgba(255,255,255,.06),
        0 0 35px rgba(212,175,55,.08);
}

.contact-page-intro h1 em {
    display: block;
    color: var(--gold-light);
    font-style: italic;
    text-shadow:
        0 0 10px rgba(239,210,138,.45),
        0 0 28px rgba(201,164,92,.20);
}

.contact-page-intro > p {
    max-width: 520px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

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

.contact-page-details {
    margin-top: 45px;
    border-top: 1px solid rgba(201,164,92,.18);
}

.contact-page-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 70px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(201,164,92,.18);
}

.contact-page-detail > span {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
}

.contact-page-detail a,
.contact-page-detail p {
    margin: 0;
    color: #d8d4cb;
    font-size: 12px;
    text-align: right;
    transition: .3s ease;
}

.contact-page-detail a:hover {
    color: var(--gold-light);
    text-shadow: var(--gold-glow);
}

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

.contact-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.contact-whatsapp,
.map-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 19px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.contact-whatsapp {
    border: 1px solid rgba(201,164,92,.55);
    background: rgba(201,164,92,.08);
    color: var(--gold-light);
}

.contact-whatsapp strong,
.map-button strong {
    font-size: 17px;
    font-weight: 400;
}

.contact-whatsapp:hover {
    background: var(--gold);
    color: #080909;
    transform: translateY(-3px);
    box-shadow: var(--gold-glow-strong);
}

.map-button {
    border: 1px solid rgba(244,241,232,.25);
    background: rgba(255,255,255,.025);
    color: #d9d5cc;
}

.map-button:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

/* =====================================================
   CONTACT FORM CARD
===================================================== */

.contact-page-form {
    position: relative;
    padding: 45px;
    border: 1px solid rgba(201,164,92,.35);
    border-radius: 10px 45px 10px 45px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(201,164,92,.018)
        ),
        #111313;
    box-shadow:
        0 25px 70px rgba(0,0,0,.45),
        var(--gold-glow);
}

.contact-page-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(201,164,92,.08),
            transparent 70%
        );
}

/* =====================================================
   FORM HEADING
===================================================== */

.contact-form-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

.contact-form-heading h2 {
    max-width: 500px;
    margin-top: 12px;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.contact-form-heading h2 em {
    color: var(--gold-light);
    font-style: italic;
    text-shadow: var(--gold-glow);
}

.contact-form-heading p {
    max-width: 480px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

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

.contact-page-form .consultation-form {
    position: relative;
    z-index: 1;
}

.contact-page-form .form-group {
    position: relative;
}

.contact-page-form .form-group label {
    color: var(--gold-light);
}

.contact-page-form .form-group input,
.contact-page-form .form-group select,
.contact-page-form .form-group textarea {
    border-color: rgba(201,164,92,.22);
    background: #0b0d0d;
}

.contact-page-form .form-group input:hover,
.contact-page-form .form-group select:hover,
.contact-page-form .form-group textarea:hover {
    border-color: rgba(201,164,92,.42);
}

.contact-page-form .form-group input:focus,
.contact-page-form .form-group select:focus,
.contact-page-form .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow:
        0 0 8px rgba(201,164,92,.12),
        0 0 20px rgba(201,164,92,.08);
}

/* SELECT */

.contact-page-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
        linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
    background-position:
        calc(100% - 17px) 50%,
        calc(100% - 12px) 50%;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.contact-page-form select option {
    background: #111313;
    color: #f4f1e8;
}

/* TEXTAREA */

.contact-page-form .form-group textarea {
    min-height: 145px;
}

/* =====================================================
   SUCCESS MESSAGE
===================================================== */

.contact-page-form .form-success {
    grid-column: 1 / -1;
    display: none;
    padding: 13px 15px;
    border: 1px solid rgba(201,164,92,.35);
    border-radius: 5px;
    color: var(--gold-light);
    background: rgba(201,164,92,.055);
    font-size: 11px;
    line-height: 1.5;
    box-shadow: 0 0 18px rgba(201,164,92,.07);
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */

.contact-page-form .submit-button {
    position: relative;
    overflow: hidden;
}

.contact-page-form .submit-button span {
    font-size: 17px;
    transition: transform .3s ease;
}

.contact-page-form .submit-button:hover span {
    transform: translateX(5px);
}

.contact-page-form .submit-button:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

/* =====================================================
   CONTACT BOTTOM CTA
===================================================== */

.contact-bottom {
    padding: 0 0 105px;
    background: #0b0c0c;
}

.contact-bottom-box {
    position: relative;
    overflow: hidden;
    padding: 65px 50px;
    text-align: center;
    border: 1px solid rgba(201,164,92,.32);
    border-radius: 10px 50px 10px 50px;
    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.10),
            transparent 65%
        ),
        #111313;
    box-shadow:
        0 25px 70px rgba(0,0,0,.38),
        var(--gold-glow);
}

.contact-bottom-box::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201,164,92,.06);
    border-radius: 5px 35px 5px 35px;
    pointer-events: none;
}

.contact-bottom-box .section-label,
.contact-bottom-box h2,
.contact-bottom-box .primary-button {
    position: relative;
    z-index: 1;
}

.contact-bottom-box h2 {
    max-width: 700px;
    margin: 15px auto 30px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -.045em;
}

.contact-bottom-box h2 em {
    color: var(--gold-light);
    font-style: italic;
    text-shadow: var(--gold-glow);
}

.contact-bottom-box .primary-button {
    min-width: 135px;
}

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

.site-footer {
    padding: 65px 0 25px;
    background: #080909;
    border-top: 1px solid rgba(201,164,92,.14);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    gap: 50px;
}

.footer-brand p {
    max-width: 340px;
    margin-top: 18px;
    color: #77746e;
    font-size: 11px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    width: max-content;
    color: #99968f;
    font-size: 11px;
    transition: .3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
    text-shadow: var(--gold-glow);
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 22px;
    margin-top: 10px;
    border-top: 1px solid rgba(201,164,92,.10);
    color: #55534e;
    font-size: 9px;
    letter-spacing: .05em;
}

/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201,164,92,.45);
    border-radius: 50%;
    background: rgba(8,9,9,.85);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: #080909;
    box-shadow: var(--gold-glow-strong);
}

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

@media (max-width: 900px) {

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-page-intro {
        padding-top: 0;
    }

    .contact-page-intro h1 {
        max-width: 700px;
    }

    .contact-page-intro > p {
        max-width: 650px;
    }

    .contact-page-form {
        max-width: 750px;
    }

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

}

@media (max-width: 768px) {

    .contact-page {
        padding: 125px 0 75px;
    }

    .contact-page-grid {
        gap: 45px;
    }

    .contact-page-intro h1 {
        font-size: 43px;
    }

    .contact-page-intro > p {
        font-size: 12px;
        line-height: 1.75;
    }

    .contact-page-details {
        margin-top: 35px;
    }

    .contact-page-detail {
        min-height: 65px;
    }

    .contact-page-form {
        padding: 32px 25px;
        border-radius: 8px 32px 8px 32px;
    }

    .contact-form-heading {
        margin-bottom: 28px;
    }

    .contact-form-heading h2 {
        font-size: 31px;
    }

    .contact-bottom {
        padding-bottom: 75px;
    }

    .contact-bottom-box {
        padding: 50px 25px;
        border-radius: 8px 35px 8px 35px;
    }

    .contact-bottom-box h2 {
        font-size: 38px;
    }

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

    .copyright {
        grid-column: auto;
    }

}

@media (max-width: 600px) {

    .contact-page {
        padding-top: 115px;
    }

    .contact-page-intro h1 {
        font-size: 40px;
    }

    .contact-page-detail {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 17px 0;
    }

    .contact-page-detail a,
    .contact-page-detail p {
        text-align: left;
        font-size: 12px;
    }

    .contact-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-whatsapp,
    .map-button {
        width: 100%;
    }

    .contact-page-form {
        padding: 28px 20px;
    }

    .contact-page-form .consultation-form {
        grid-template-columns: 1fr;
    }

    .contact-page-form .form-group:nth-child(5) {
        grid-column: 1;
    }

    .contact-page-form .submit-button {
        grid-column: 1;
    }

    .contact-bottom-box {
        padding: 45px 20px;
    }

    .contact-bottom-box h2 {
        font-size: 34px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }

}

/* =====================================================
   CYNOSURE CONSTRUCTION
   GALLERY PAGE — PREMIUM MATCHING STYLES
===================================================== */

/* =====================================================
   INNER PAGE HERO
===================================================== */

.inner-page-hero {
    position: relative;
    padding: 170px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(201,164,92,.075),
            transparent 45%
        ),
        #0b0c0c;
}

.inner-page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 10%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(201,164,92,.035);
    filter: blur(50px);
    pointer-events: none;
}

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}

.inner-page-hero .section-label {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    text-shadow: var(--gold-glow);
}

.inner-page-hero h1 {
    max-width: 800px;
    margin-top: 15px;
    font-size: clamp(46px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -.05em;
    color: #f4f1e8;
    text-shadow:
        0 0 20px rgba(255,255,255,.06),
        0 0 35px rgba(201,164,92,.10);
}

.inner-page-hero h1 em {
    color: var(--gold-light);
    font-style: italic;
    text-shadow:
        0 0 10px rgba(239,210,138,.55),
        0 0 28px rgba(201,164,92,.25);
}

.inner-page-hero p {
    max-width: 620px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

/* =====================================================
   GALLERY PAGE SECTION
===================================================== */

.gallery-page-section {
    padding: 105px 0 115px;
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(201,164,92,.045),
            transparent 45%
        ),
        #0e1010;
}

.gallery-page-heading {
    max-width: 650px;
    margin-bottom: 48px;
}

.gallery-page-heading .section-label {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    text-shadow: var(--gold-glow);
}

.gallery-page-heading h2 {
    margin-top: 12px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -.045em;
}

.gallery-page-heading h2 em {
    color: var(--gold-light);
    font-style: italic;
    text-shadow: var(--gold-glow);
}

.gallery-page-heading p {
    max-width: 540px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

/* =====================================================
   GALLERY GRID
===================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 245px;
    gap: 17px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    border: 1px solid rgba(201,164,92,.28);
    border-radius: 7px 32px 7px 32px;
    background: #151616;
    box-shadow:
        0 15px 45px rgba(0,0,0,.32),
        0 0 12px rgba(201,164,92,.08);
    isolation: isolate;
    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

/* IMAGE */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .7s ease,
        filter .5s ease;
}

/* DARK CINEMATIC OVERLAY */

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.03),
            rgba(0,0,0,.30)
        );
    transition: background .4s ease;
}

/* HOVER */

.gallery-item:hover {
    z-index: 3;
    border-color: var(--gold-light);
    transform: translateY(-6px);
    box-shadow:
        0 0 8px rgba(239,210,138,.55),
        0 0 25px rgba(201,164,92,.28),
        0 0 45px rgba(201,164,92,.12);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.gallery-item:hover::after {
    background:
        linear-gradient(
            180deg,
            rgba(201,164,92,.03),
            rgba(0,0,0,.18)
        );
}

/* =====================================================
   LARGE IMAGE
===================================================== */

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 507px;
    border-radius: 8px 48px 8px 48px;
}

.gallery-item-large:hover {
    transform: translateY(-7px);
}

/* =====================================================
   WIDE IMAGE
===================================================== */

.gallery-item-wide {
    grid-column: span 2;
    border-radius: 8px 38px 8px 38px;
}

/* =====================================================
   SUBTLE GOLD FRAME
===================================================== */

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 9px;
    z-index: 2;
    border: 1px solid rgba(239,210,138,.08);
    border-radius: 4px 25px 4px 25px;
    pointer-events: none;
    transition:
        border-color .4s ease,
        box-shadow .4s ease;
}

.gallery-item:hover::before {
    border-color: rgba(239,210,138,.25);
    box-shadow:
        inset 0 0 20px rgba(201,164,92,.06);
}

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

.inner-page-cta {
    padding: 0 0 110px;
    background: #0e1010;
}

.inner-page-cta-box {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
    padding: 65px 45px;
    text-align: center;
    border: 1px solid rgba(201,164,92,.36);
    border-radius: 10px 50px 10px 50px;
    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.09),
            transparent 65%
        ),
        #111313;
    box-shadow:
        0 25px 75px rgba(0,0,0,.45),
        var(--gold-glow);
}

.inner-page-cta-box::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201,164,92,.07);
    border-radius: 5px 35px 5px 35px;
    pointer-events: none;
}

.inner-page-cta-box .section-label,
.inner-page-cta-box h2,
.inner-page-cta-box p,
.inner-page-cta-box .primary-button {
    position: relative;
    z-index: 1;
}

.inner-page-cta-box .section-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-shadow: var(--gold-glow);
}

.inner-page-cta-box h2 {
    max-width: 720px;
    margin: 15px auto 18px;
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -.045em;
}

.inner-page-cta-box h2 em {
    color: var(--gold-light);
    font-style: italic;
    text-shadow: var(--gold-glow);
}

.inner-page-cta-box p {
    max-width: 540px;
    margin: 0 auto 30px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

/* =====================================================
   FOOTER — MATCHING GALLERY PAGE
===================================================== */

.site-footer {
    padding: 65px 0 25px;
    background: #080909;
    border-top: 1px solid rgba(201,164,92,.14);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    gap: 50px;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 18px;
    color: #77746e;
    font-size: 11px;
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    width: max-content;
    color: #99968f;
    font-size: 11px;
    transition: .3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
    text-shadow: var(--gold-glow);
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 22px;
    margin-top: 10px;
    border-top: 1px solid rgba(201,164,92,.10);
    color: #55534e;
    font-size: 9px;
    letter-spacing: .05em;
}

/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201,164,92,.45);
    border-radius: 50%;
    background: rgba(8,9,9,.85);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: #080909;
    box-shadow: var(--gold-glow-strong);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 477px;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

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

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .inner-page-hero {
        padding: 125px 0 70px;
    }

    .inner-page-hero h1 {
        font-size: 43px;
    }

    .inner-page-hero p {
        font-size: 12px;
        line-height: 1.75;
    }

    .gallery-page-section {
        padding: 75px 0 80px;
    }

    .gallery-page-heading {
        margin-bottom: 35px;
    }

    .gallery-page-heading h2 {
        font-size: 36px;
    }

    .gallery-page-heading p {
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 245px;
        gap: 13px;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 245px;
        border-radius: 7px 28px 7px 28px;
    }

    .gallery-item-large {
        min-height: 320px;
    }

    .gallery-item::before {
        inset: 7px;
        border-radius: 4px 20px 4px 20px;
    }

    .inner-page-cta {
        padding-bottom: 75px;
    }

    .inner-page-cta-box {
        padding: 48px 22px;
        border-radius: 8px 35px 8px 35px;
    }

    .inner-page-cta-box h2 {
        font-size: 36px;
    }

    .inner-page-cta-box p {
        font-size: 12px;
    }

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

    .copyright {
        grid-column: auto;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }

}

/* =====================================================
   HOW WE CAN HELP — PREMIUM PAGE
   Add this to the bottom of style.css
===================================================== */

/* =====================================================
   HERO
===================================================== */

.help-page-hero {
    position: relative;
    min-height: 680px;
    margin: 0;
    padding: 170px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(201,164,92,.10),
            transparent 38%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(201,164,92,.045),
            transparent 35%
        ),
        #0b0c0c;

    border-bottom: 1px solid rgba(201,164,92,.14);
}

.help-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,9,9,.95),
            rgba(8,9,9,.55),
            rgba(8,9,9,.88)
        );

    pointer-events: none;
}

.help-page-hero::after {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: 90px;

    border: 1px solid rgba(201,164,92,.12);
    border-radius: 50%;

    box-shadow:
        0 0 45px rgba(201,164,92,.05),
        inset 0 0 45px rgba(201,164,92,.035);
}

.help-page-hero .container {
    position: relative;
    z-index: 2;
}

.help-page-hero-content {
    max-width: 780px;
}

.help-page-label {
    display: inline-block;

    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;

    text-shadow: var(--gold-glow);
}

.help-page-hero h1 {
    max-width: 780px;

    margin-top: 18px;

    font-size: clamp(48px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;

    color: var(--cream);

    text-shadow:
        0 0 20px rgba(255,255,255,.06),
        0 0 40px rgba(201,164,92,.08);
}

.help-page-hero h1 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow:
        0 0 10px rgba(239,210,138,.5),
        0 0 30px rgba(201,164,92,.25);
}

.help-page-hero-content > p {
    max-width: 650px;

    margin-top: 25px;

    color: #bdb9b0;
    font-size: 14px;
    line-height: 1.9;
}

.help-page-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 32px;
}


/* =====================================================
   INTRO
===================================================== */

.help-page-intro {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(201,164,92,.045),
            transparent 35%
        ),
        #0e1010;

    border-bottom: 1px solid rgba(201,164,92,.10);
}

.help-page-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.help-page-intro-grid h2 {
    max-width: 570px;

    margin-top: 15px;

    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.help-page-intro-grid h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow: var(--gold-glow);
}

.help-page-intro-grid > div:last-child {
    max-width: 540px;
}

.help-page-intro-grid p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.help-page-intro-grid p + p {
    margin-top: 18px;
}


/* =====================================================
   HELP OPTIONS
===================================================== */

.help-options-page {
    padding: 110px 0;

    background: #0b0c0c;
}

.help-options-page .section-heading {
    max-width: 650px;
}

.help-options-page .section-heading h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow: var(--gold-glow);
}

.help-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    margin-top: 55px;
}


/* =====================================================
   HELP CARD
===================================================== */

.help-page-card {
    position: relative;

    min-height: 345px;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.25);
    border-radius: 8px 35px 8px 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(201,164,92,.015)
        ),
        #141515;

    box-shadow:
        0 18px 50px rgba(0,0,0,.28),
        0 0 12px rgba(201,164,92,.06);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease,
        background .4s ease;
}

.help-page-card::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    border: 1px solid rgba(201,164,92,.12);

    transition: .4s ease;
}

.help-page-card:hover,
.help-page-card:active {
    transform: translateY(-7px);

    border-color: var(--gold-light);

    background:
        linear-gradient(
            145deg,
            rgba(201,164,92,.055),
            rgba(255,255,255,.018)
        ),
        #151616;

    box-shadow: var(--gold-glow-strong);
}

.help-page-card:hover::before,
.help-page-card:active::before {
    transform: scale(1.35);

    border-color: rgba(239,210,138,.25);
}


/* =====================================================
   CARD NUMBER
===================================================== */

.help-card-number {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;

    text-shadow: var(--gold-glow);
}


/* =====================================================
   CARD ICON
===================================================== */

.help-card-icon {
    position: absolute;

    top: 24px;
    right: 25px;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(201,164,92,.28);
    border-radius: 50%;

    color: var(--gold-light);
    font-size: 20px;

    background: rgba(201,164,92,.025);

    box-shadow:
        0 0 10px rgba(201,164,92,.08);

    transition: .4s ease;
}

.help-page-card:hover .help-card-icon,
.help-page-card:active .help-card-icon {
    background: var(--gold);
    color: #080909;

    border-color: var(--gold-light);

    box-shadow: var(--gold-glow-strong);

    transform: rotate(8deg);
}


/* =====================================================
   CARD CONTENT
===================================================== */

.help-page-card h3 {
    margin-top: 30px;

    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.help-page-card p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.75;
}


/* =====================================================
   CARD LINK
===================================================== */

.help-page-card > a {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 25px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;

    transition: .3s ease;
}

.help-page-card > a span {
    font-size: 17px;

    transition: .3s ease;
}

.help-page-card > a:hover {
    color: #f4f1e8;

    text-shadow: var(--gold-glow);
}

.help-page-card > a:hover span {
    transform: translateX(6px);
}


/* =====================================================
   PROCESS
===================================================== */

.help-process {
    padding: 110px 0;

    background:
        linear-gradient(
            90deg,
            #111313,
            #0b0c0c,
            #111313
        );

    border-top: 1px solid rgba(201,164,92,.13);
    border-bottom: 1px solid rgba(201,164,92,.13);
}

.help-process-heading {
    max-width: 600px;
    margin-bottom: 55px;
}

.help-process-heading h2 {
    margin-top: 14px;

    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.help-process-heading h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow: var(--gold-glow);
}


/* =====================================================
   PROCESS GRID
===================================================== */

.help-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.help-process-step {
    min-height: 190px;

    padding: 10px 28px;

    border-left: 1px solid rgba(201,164,92,.16);
}

.help-process-step:last-child {
    border-right: 1px solid rgba(201,164,92,.16);
}

.help-process-step > span {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;

    text-shadow: var(--gold-glow);
}

.help-process-step h3 {
    margin-top: 30px;

    font-size: 19px;
}

.help-process-step p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}


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

.help-page-cta {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.09),
            transparent 52%
        ),
        #080909;
}

.help-cta-box {
    position: relative;

    max-width: 850px;

    margin: auto;

    padding: 65px 55px;

    text-align: center;

    border: 1px solid rgba(201,164,92,.35);
    border-radius: 10px 50px 10px 50px;

    background:
        linear-gradient(
            145deg,
            rgba(201,164,92,.045),
            rgba(255,255,255,.015)
        ),
        #111313;

    box-shadow:
        0 25px 80px rgba(0,0,0,.45),
        var(--gold-glow);
}

.help-cta-box::before {
    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid rgba(201,164,92,.06);
    border-radius: 7px 42px 7px 42px;

    pointer-events: none;
}

.help-cta-box h2 {
    position: relative;

    margin-top: 15px;

    font-size: clamp(34px, 5vw, 57px);
    line-height: 1;
    letter-spacing: -.045em;
}

.help-cta-box h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow: var(--gold-glow);
}

.help-cta-box p {
    position: relative;

    max-width: 560px;

    margin: 20px auto 30px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}

.help-cta-box .primary-button {
    position: relative;
}


/* =====================================================
   ACTIVE NAVIGATION
===================================================== */

.main-nav a.active {
    color: var(--gold-light);

    text-shadow:
        0 0 12px rgba(239,210,138,.35);
}

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


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .help-page-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .help-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 0;
    }

    .help-process-step:nth-child(2) {
        border-right: 1px solid rgba(201,164,92,.16);
    }

    .help-process-step:nth-child(3) {
        border-top: 1px solid rgba(201,164,92,.12);
        padding-top: 30px;
    }

    .help-process-step:nth-child(4) {
        border-top: 1px solid rgba(201,164,92,.12);
        padding-top: 30px;
    }
}


@media (max-width: 768px) {

    .help-page-hero {
        min-height: 610px;
        padding: 145px 0 80px;
    }

    .help-page-hero h1 {
        font-size: 46px;
    }

    .help-page-hero-content > p {
        font-size: 12px;
        line-height: 1.75;
    }

    .help-page-actions {
        flex-wrap: wrap;
    }

    .help-page-intro,
    .help-options-page,
    .help-process,
    .help-page-cta {
        padding: 80px 0;
    }

    .help-page-grid {
        gap: 12px;
    }

    .help-page-card {
        min-height: 325px;
        padding: 24px;
    }

    .help-cta-box {
        padding: 48px 25px;

        border-radius: 8px 35px 8px 35px;
    }

    .help-cta-box::before {
        border-radius: 6px 28px 6px 28px;
    }
}


@media (max-width: 600px) {

    .help-page-hero {
        min-height: 580px;
        padding: 125px 0 65px;
    }

    .help-page-hero h1 {
        font-size: 41px;
        line-height: 1.01;
    }

    .help-page-hero-content > p {
        font-size: 11px;
    }

    .help-page-actions {
        gap: 10px;
    }

    .help-page-actions .primary-button,
    .help-page-actions .secondary-button {
        min-height: 45px;
        padding: 0 18px;
        font-size: 10px;
    }

    .help-page-intro-grid h2 {
        font-size: 34px;
    }

    .help-page-grid {
        grid-template-columns: 1fr;
    }

    .help-page-card {
        min-height: 300px;
        border-radius: 7px 28px 7px 28px;
    }

    .help-process-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .help-process-step,
    .help-process-step:nth-child(2),
    .help-process-step:nth-child(3),
    .help-process-step:nth-child(4) {
        min-height: auto;

        padding: 28px 0;

        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(201,164,92,.16);
    }

    .help-process-step:last-child {
        border-bottom: 1px solid rgba(201,164,92,.16);
    }

    .help-process-step h3 {
        margin-top: 18px;
    }

    .help-cta-box h2 {
        font-size: 35px;
    }

    .help-cta-box p {
        font-size: 12px;
    }
}

/* =====================================================
   OWNERSHIP PAGE — CYNOSURE BLACK & GOLD
   Add this to the bottom of style.css
===================================================== */


/* =====================================================
   PAGE HERO
===================================================== */

.ownership-page-hero {
    position: relative;
    min-height: 620px;
    padding: 170px 0 110px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(201,164,92,.11),
            transparent 38%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(201,164,92,.045),
            transparent 32%
        ),
        #090a0a;

    border-bottom: 1px solid rgba(201,164,92,.15);
}

.ownership-page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,8,8,.96),
            rgba(7,8,8,.68),
            rgba(7,8,8,.88)
        );

    pointer-events: none;
}

.ownership-page-hero::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -230px;
    top: 80px;

    border: 1px solid rgba(201,164,92,.12);
    border-radius: 50%;

    box-shadow:
        0 0 50px rgba(201,164,92,.05),
        inset 0 0 50px rgba(201,164,92,.035);
}

.ownership-page-hero .container {
    position: relative;
    z-index: 2;
}

.ownership-page-hero h1 {
    max-width: 850px;

    margin-top: 18px;

    font-size: clamp(48px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;

    color: var(--cream);

    text-shadow:
        0 0 20px rgba(255,255,255,.05),
        0 0 45px rgba(201,164,92,.08);
}

.ownership-page-hero h1 em {
    display: block;

    color: var(--gold-light);
    font-style: italic;

    text-shadow:
        0 0 10px rgba(239,210,138,.5),
        0 0 30px rgba(201,164,92,.25);
}

.ownership-page-hero p {
    max-width: 650px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.9;
}


/* =====================================================
   OWNERSHIP INTRO
===================================================== */

.ownership-page-intro {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(201,164,92,.045),
            transparent 35%
        ),
        #0e1010;

    border-bottom: 1px solid rgba(201,164,92,.10);
}

.ownership-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.ownership-intro-heading h2 {
    max-width: 600px;

    margin-top: 15px;

    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.02;

    letter-spacing: -.045em;
}

.ownership-intro-heading h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow: var(--gold-glow);
}

.ownership-intro-copy {
    max-width: 550px;
}

.ownership-intro-copy p {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.9;
}

.ownership-intro-copy p + p {
    margin-top: 20px;
}


/* =====================================================
   OWNERSHIP OPTIONS
===================================================== */

.ownership-options-section {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201,164,92,.035),
            transparent 40%
        ),
        #0b0c0c;
}

.page-section-heading {
    max-width: 700px;
}

.page-section-heading h2 {
    margin-top: 15px;

    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.02;

    letter-spacing: -.045em;
}

.page-section-heading h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow: var(--gold-glow);
}


/* =====================================================
   OWNERSHIP GRID
===================================================== */

.ownership-page-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 55px;
}


/* =====================================================
   OWNERSHIP CARD
===================================================== */

.ownership-page-card {
    position: relative;

    min-height: 360px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.23);
    border-radius: 8px 38px 8px 38px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(201,164,92,.015)
        ),
        #141515;

    box-shadow:
        0 20px 55px rgba(0,0,0,.30),
        0 0 14px rgba(201,164,92,.045);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease,
        background .4s ease;
}

.ownership-page-card::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    right: -110px;
    top: -110px;

    border: 1px solid rgba(201,164,92,.11);

    border-radius: 50%;

    transition: .5s ease;
}

.ownership-page-card::after {
    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    right: 30px;
    bottom: 25px;

    border-right: 1px solid rgba(201,164,92,.08);
    border-bottom: 1px solid rgba(201,164,92,.08);

    opacity: .5;
}

.ownership-page-card:hover,
.ownership-page-card:active {
    transform: translateY(-8px);

    border-color: var(--gold-light);

    background:
        linear-gradient(
            145deg,
            rgba(201,164,92,.06),
            rgba(255,255,255,.018)
        ),
        #151616;

    box-shadow:
        0 25px 65px rgba(0,0,0,.42),
        var(--gold-glow-strong);
}

.ownership-page-card:hover::before,
.ownership-page-card:active::before {
    transform: scale(1.35);

    border-color: rgba(239,210,138,.23);
}


/* =====================================================
   CARD NUMBER
===================================================== */

.ownership-card-number {
    position: relative;
    z-index: 2;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .2em;

    text-shadow: var(--gold-glow);
}


/* =====================================================
   CARD HEADING
===================================================== */

.ownership-page-card h3 {
    position: relative;
    z-index: 2;

    margin-top: 70px;

    max-width: 290px;

    font-size: 25px;
    line-height: 1.1;

    letter-spacing: -.03em;
}

.ownership-page-card p {
    position: relative;
    z-index: 2;

    margin-top: 15px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.8;
}


/* =====================================================
   CARD LINK
===================================================== */

.ownership-page-card a {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: auto;
    padding-top: 28px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;

    transition: .3s ease;
}

.ownership-page-card a span {
    font-size: 18px;

    transition: .3s ease;
}

.ownership-page-card a:hover {
    color: #f4f1e8;

    text-shadow: var(--gold-glow);
}

.ownership-page-card a:hover span {
    transform: translateX(7px);
}


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

.ownership-page-cta {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.09),
            transparent 52%
        ),
        #080909;
}

.ownership-cta-box {
    position: relative;

    max-width: 850px;

    margin: auto;

    padding: 70px 50px;

    text-align: center;

    border: 1px solid rgba(201,164,92,.34);
    border-radius: 10px 55px 10px 55px;

    background:
        linear-gradient(
            145deg,
            rgba(201,164,92,.045),
            rgba(255,255,255,.015)
        ),
        #111313;

    box-shadow:
        0 25px 80px rgba(0,0,0,.45),
        var(--gold-glow);
}

.ownership-cta-box::before {
    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid rgba(201,164,92,.065);

    border-radius: 7px 45px 7px 45px;

    pointer-events: none;
}

.ownership-cta-box h2 {
    position: relative;

    margin-top: 15px;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;

    letter-spacing: -.045em;
}

.ownership-cta-box h2 em {
    color: var(--gold-light);
    font-style: italic;

    text-shadow: var(--gold-glow);
}

.ownership-cta-box p {
    position: relative;

    max-width: 560px;

    margin: 20px auto 32px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}

.ownership-cta-box .primary-button {
    position: relative;
}


/* =====================================================
   ACTIVE NAV
===================================================== */

.main-nav a.active {
    color: var(--gold-light);

    text-shadow:
        0 0 12px rgba(239,210,138,.35);
}

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


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .ownership-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .ownership-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .ownership-page-hero {
        min-height: 560px;

        padding: 140px 0 80px;
    }

    .ownership-page-hero h1 {
        font-size: 47px;
    }

    .ownership-page-hero p {
        font-size: 12px;
        line-height: 1.8;
    }

    .ownership-page-intro,
    .ownership-options-section,
    .ownership-page-cta {
        padding: 80px 0;
    }

    .ownership-page-grid {
        gap: 13px;
    }

    .ownership-page-card {
        min-height: 335px;

        padding: 27px;

        border-radius: 7px 30px 7px 30px;
    }

    .ownership-page-card h3 {
        margin-top: 55px;

        font-size: 22px;
    }

    .ownership-cta-box {
        padding: 55px 25px;

        border-radius: 8px 40px 8px 40px;
    }

    .ownership-cta-box::before {
        border-radius: 6px 31px 6px 31px;
    }
}


@media (max-width: 600px) {

    .ownership-page-hero {
        min-height: 540px;

        padding: 120px 0 65px;
    }

    .ownership-page-hero h1 {
        font-size: 40px;
    }

    .ownership-page-hero h1 em {
        margin-top: 5px;
    }

    .ownership-page-hero p {
        font-size: 11px;
    }

    .ownership-intro-heading h2,
    .page-section-heading h2 {
        font-size: 34px;
    }

    .ownership-page-grid {
        grid-template-columns: 1fr;
    }

    .ownership-page-card {
        min-height: 305px;
    }

    .ownership-page-card h3 {
        margin-top: 50px;
    }

    .ownership-cta-box {
        padding: 48px 22px;
    }

    .ownership-cta-box h2 {
        font-size: 35px;
    }

    .ownership-cta-box p {
        font-size: 12px;
    }
}

/* =========================================================
   CYNOSURE — HOW WE WORK / PROCESS PAGE
   Gold + Black Theme
========================================================= */

.process-page-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 150px 0 110px;
    background:
        radial-gradient(circle at 75% 35%, rgba(201,164,92,.10), transparent 32%),
        linear-gradient(135deg, #050505 0%, #0b0b0b 55%, #11100d 100%);
    border-bottom: 1px solid rgba(201,164,92,.16);
    overflow: hidden;
}

.process-page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -140px;
    top: -160px;
    border: 1px solid rgba(201,164,92,.12);
    border-radius: 50%;
    pointer-events: none;
}

.process-page-hero::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -240px;
    top: -260px;
    border: 1px solid rgba(201,164,92,.07);
    border-radius: 50%;
    pointer-events: none;
}

.process-page-hero .container {
    position: relative;
    z-index: 2;
}

.process-page-hero .section-label {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--gold-light, #d8b66d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
}

.process-page-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .98;
    font-weight: 600;
    letter-spacing: -.045em;
}

.process-page-hero h1 em {
    display: block;
    color: var(--gold-light, #d8b66d);
    font-style: normal;
}

.process-page-hero p {
    max-width: 650px;
    margin: 32px 0 0;
    color: rgba(255,255,255,.66);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   PROCESS INTRO
========================================================= */

.process-page-intro {
    padding: 120px 0;
    background: #090909;
    border-bottom: 1px solid rgba(201,164,92,.12);
}

.process-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 80px;
    align-items: end;
}

.process-intro-grid .section-label {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gold-light, #d8b66d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
}

.process-intro-grid h2 {
    max-width: 700px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4.5vw, 60px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -.035em;
}

.process-intro-grid p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   PROCESS LIST
========================================================= */

.process-page-section {
    padding: 120px 0;
    background: #050505;
}

.process-page-list {
    border-top: 1px solid rgba(201,164,92,.18);
}

.process-page-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) 80px;
    gap: 45px;
    align-items: center;
    padding: 52px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition:
        background .35s ease,
        padding .35s ease;
}

.process-page-item:hover {
    padding-left: 30px;
    padding-right: 30px;
    background:
        linear-gradient(
            90deg,
            rgba(201,164,92,.075),
            rgba(201,164,92,.02),
            transparent
        );
}

.process-page-number {
    color: var(--gold-light, #d8b66d);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
}

.process-page-content > span {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(216,182,109,.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
}

.process-page-content h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.025em;
}

.process-page-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.57);
    font-size: 15px;
    line-height: 1.8;
}

.process-page-arrow {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,164,92,.28);
    border-radius: 50%;
    color: var(--gold-light, #d8b66d);
    font-size: 20px;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.process-page-item:hover .process-page-arrow {
    background: var(--gold, #c9a45c);
    border-color: var(--gold, #c9a45c);
    color: #050505;
    transform: translateX(5px);
}


/* =========================================================
   PROCESS CTA
========================================================= */

.process-page-cta {
    padding: 110px 0;
    background: #090909;
}

.process-cta-box {
    position: relative;
    padding: 90px 60px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.10),
            transparent 60%
        ),
        #0d0d0d;
    border: 1px solid rgba(201,164,92,.22);
    overflow: hidden;
}

.process-cta-box::before,
.process-cta-box::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(201,164,92,.10);
    border-radius: 50%;
    pointer-events: none;
}

.process-cta-box::before {
    left: -80px;
    top: -80px;
}

.process-cta-box::after {
    right: -80px;
    bottom: -80px;
}

.process-cta-box .section-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gold-light, #d8b66d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
}

.process-cta-box h2 {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -.04em;
}

.process-cta-box h2 em {
    color: var(--gold-light, #d8b66d);
    font-style: normal;
}

.process-cta-box p {
    position: relative;
    z-index: 2;
    max-width: 580px;
    margin: 25px auto 35px;
    color: rgba(255,255,255,.60);
    font-size: 16px;
    line-height: 1.8;
}

.process-cta-box .primary-button {
    position: relative;
    z-index: 2;
}


/* =========================================================
   PRIMARY BUTTON — PROCESS PAGE
========================================================= */

.process-page-cta .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    background: var(--gold, #c9a45c);
    border: 1px solid var(--gold, #c9a45c);
    color: #050505;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.process-page-cta .primary-button:hover {
    background: var(--gold-light, #d8b66d);
    color: #050505;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201,164,92,.18);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .process-page-hero {
        min-height: auto;
        padding: 130px 0 90px;
    }

    .process-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .process-page-intro {
        padding: 90px 0;
    }

    .process-page-section {
        padding: 90px 0;
    }

    .process-page-item {
        grid-template-columns: 70px minmax(0, 1fr) 55px;
        gap: 25px;
        padding: 42px 10px;
    }

    .process-page-item:hover {
        padding-left: 15px;
        padding-right: 15px;
    }

    .process-page-arrow {
        width: 45px;
        height: 45px;
    }

    .process-cta-box {
        padding: 70px 35px;
    }
}


@media (max-width: 650px) {

    .process-page-hero {
        padding: 110px 0 75px;
    }

    .process-page-hero h1 {
        font-size: clamp(44px, 13vw, 65px);
    }

    .process-page-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .process-page-intro {
        padding: 75px 0;
    }

    .process-intro-grid h2 {
        font-size: 35px;
    }

    .process-page-section {
        padding: 70px 0;
    }

    .process-page-item {
        grid-template-columns: 1fr 45px;
        gap: 18px;
        padding: 35px 0;
    }

    .process-page-number {
        grid-column: 1 / -1;
        font-size: 13px;
        margin-bottom: -5px;
    }

    .process-page-content {
        grid-column: 1;
    }

    .process-page-content h2 {
        font-size: 28px;
    }

    .process-page-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .process-page-arrow {
        grid-column: 2;
        grid-row: 2;
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .process-page-cta {
        padding: 70px 0;
    }

    .process-cta-box {
        padding: 60px 22px;
    }

    .process-cta-box h2 {
        font-size: 38px;
    }

    .process-cta-box p {
        font-size: 14px;
    }

    .process-page-cta .primary-button {
        width: 100%;
    }
}

/* =========================================================
   CYNOSURE — TESTIMONIALS PAGE
   Gold + Black Theme
========================================================= */

.testimonials-page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 150px 0 110px;
    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(201,164,92,.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #0a0a0a 55%,
            #11100d 100%
        );
    border-bottom: 1px solid rgba(201,164,92,.16);
    overflow: hidden;
}

.testimonials-page-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -150px;
    top: -160px;
    border: 1px solid rgba(201,164,92,.12);
    border-radius: 50%;
}

.testimonials-page-hero::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -260px;
    top: -270px;
    border: 1px solid rgba(201,164,92,.06);
    border-radius: 50%;
}

.testimonials-page-hero .container {
    position: relative;
    z-index: 2;
}

.testimonials-page-hero .section-label {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--gold-light, #d8b66d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
}

.testimonials-page-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 7vw, 88px);
    line-height: .98;
    font-weight: 500;
    letter-spacing: -.045em;
}

.testimonials-page-hero h1 em {
    display: block;
    color: var(--gold-light, #d8b66d);
    font-style: normal;
}

.testimonials-page-hero p {
    max-width: 650px;
    margin: 32px 0 0;
    color: rgba(255,255,255,.64);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   TESTIMONIALS SECTION
========================================================= */

.testimonials-page-section {
    padding: 120px 0;
    background: #050505;
}

.testimonials-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-page-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );
    border: 1px solid rgba(255,255,255,.08);
    transition:
        border-color .35s ease,
        transform .35s ease,
        background .35s ease;
    overflow: hidden;
}

.testimonial-page-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -100px;
    top: -100px;
    border: 1px solid rgba(201,164,92,.10);
    border-radius: 50%;
    transition: transform .5s ease;
}

.testimonial-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,164,92,.30);
    background:
        linear-gradient(
            145deg,
            rgba(201,164,92,.075),
            rgba(255,255,255,.015)
        );
}

.testimonial-page-card:hover::before {
    transform: scale(1.25);
}


/* =========================================================
   FEATURED TESTIMONIAL
========================================================= */

.testimonial-page-card.featured {
    border-color: rgba(201,164,92,.35);
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201,164,92,.12),
            transparent 40%
        ),
        #0b0b0b;
}

.testimonial-page-card.featured::after {
    content: "FEATURED";
    position: absolute;
    top: 22px;
    right: 25px;
    color: rgba(216,182,109,.65);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}


/* =========================================================
   STARS
========================================================= */

.testimonial-stars {
    color: var(--gold-light, #d8b66d);
    font-size: 14px;
    letter-spacing: 5px;
    line-height: 1;
}


/* =========================================================
   QUOTE
========================================================= */

.testimonial-page-card blockquote {
    position: relative;
    margin: 35px 0 40px;
    color: rgba(255,255,255,.88);
    font-size: clamp(20px, 2.2vw, 27px);
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: -.015em;
}

.testimonial-page-card blockquote::before {
    content: "“";
    position: absolute;
    left: -5px;
    top: -38px;
    color: rgba(201,164,92,.18);
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 1;
}


/* =========================================================
   TESTIMONIAL PERSON
========================================================= */

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    border: 1px solid rgba(201,164,92,.38);
    border-radius: 50%;
    color: var(--gold-light, #d8b66d);
    background: rgba(201,164,92,.05);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.testimonial-person strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.testimonial-person small {
    display: block;
    color: rgba(255,255,255,.43);
    font-size: 11px;
    letter-spacing: .04em;
}


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

.testimonials-page-cta {
    padding: 110px 0;
    background: #090909;
}

.testimonials-cta-box {
    position: relative;
    padding: 90px 50px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.11),
            transparent 60%
        ),
        #0d0d0d;
    border: 1px solid rgba(201,164,92,.22);
    overflow: hidden;
}

.testimonials-cta-box::before,
.testimonials-cta-box::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(201,164,92,.09);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-cta-box::before {
    left: -90px;
    top: -90px;
}

.testimonials-cta-box::after {
    right: -90px;
    bottom: -90px;
}

.testimonials-cta-box .section-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gold-light, #d8b66d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
}

.testimonials-cta-box h2 {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -.04em;
}

.testimonials-cta-box h2 em {
    color: var(--gold-light, #d8b66d);
    font-style: normal;
}

.testimonials-cta-box p {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 25px auto 35px;
    color: rgba(255,255,255,.60);
    font-size: 16px;
    line-height: 1.8;
}

.testimonials-cta-box .primary-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    background: var(--gold, #c9a45c);
    border: 1px solid var(--gold, #c9a45c);
    color: #050505;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.testimonials-cta-box .primary-button:hover {
    background: var(--gold-light, #d8b66d);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201,164,92,.18);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .testimonials-page-hero {
        min-height: auto;
        padding: 130px 0 90px;
    }

    .testimonials-page-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-page-section {
        padding: 90px 0;
    }

    .testimonial-page-card {
        min-height: 330px;
    }

    .testimonials-cta-box {
        padding: 70px 35px;
    }
}


@media (max-width: 600px) {

    .testimonials-page-hero {
        padding: 110px 0 75px;
    }

    .testimonials-page-hero h1 {
        font-size: clamp(44px, 13vw, 65px);
    }

    .testimonials-page-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .testimonials-page-section {
        padding: 70px 0;
    }

    .testimonial-page-card {
        min-height: 320px;
        padding: 30px 25px;
    }

    .testimonial-page-card blockquote {
        margin: 30px 0 35px;
        font-size: 20px;
    }

    .testimonials-page-cta {
        padding: 70px 0;
    }

    .testimonials-cta-box {
        padding: 60px 22px;
    }

    .testimonials-cta-box h2 {
        font-size: 38px;
    }

    .testimonials-cta-box p {
        font-size: 14px;
    }

    .testimonials-cta-box .primary-button {
        width: 100%;
    }
}

/* =====================================================
   CYNOSURE CONSTRUCTION
   TEAM PAGE
   BLACK + LUXURY GOLD
===================================================== */


/* =====================================================
   TEAM HERO
===================================================== */

.team-page-hero {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;

    padding: 150px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(201, 164, 92, .12),
            transparent 35%
        ),
        radial-gradient(
            circle at 15% 75%,
            rgba(201, 164, 92, .06),
            transparent 40%
        ),
        #050505;
}

.team-hero-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    right: -220px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(201, 164, 92, .08);

    filter: blur(90px);

    pointer-events: none;
}

.team-page-hero .container {
    position: relative;
    z-index: 2;
}

.team-page-label {
    display: inline-block;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .28em;

    text-shadow: var(--gold-glow);
}

.team-page-hero h1 {
    max-width: 850px;

    margin-top: 18px;

    color: #f5f2eb;

    font-size: clamp(52px, 8vw, 92px);

    line-height: .94;

    letter-spacing: -.055em;
}

.team-page-hero h1 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow:
        0 0 12px rgba(201, 164, 92, .45),
        0 0 35px rgba(201, 164, 92, .18);
}

.team-page-hero p {
    max-width: 600px;

    margin-top: 27px;

    color: #a9a49a;

    font-size: 14px;

    line-height: 1.85;
}


/* =====================================================
   INTRO
===================================================== */

.team-page-intro {
    padding: 115px 0;

    background:
        linear-gradient(
            180deg,
            #080808,
            #0c0c0b
        );

    border-top: 1px solid rgba(201, 164, 92, .08);
}

.team-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .85fr);

    gap: 90px;

    align-items: start;
}

.team-intro-grid h2 {
    max-width: 650px;

    margin-top: 14px;

    color: #f2eee6;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -.045em;
}

.team-intro-grid h2 em {
    display: block;

    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.team-intro-grid p {
    margin-bottom: 20px;

    color: #aaa59b;

    font-size: 13px;

    line-height: 1.9;
}


/* =====================================================
   TEAM SECTION
===================================================== */

.team-page-section {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201, 164, 92, .07),
            transparent 42%
        ),
        #060606;
}

.team-page-heading {
    max-width: 680px;

    margin-bottom: 55px;
}

.team-page-heading .section-label {
    color: var(--gold);

    text-shadow: var(--gold-glow);
}

.team-page-heading h2 {
    margin-top: 14px;

    color: #f4f0e8;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -.045em;
}

.team-page-heading h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.team-page-heading p {
    max-width: 570px;

    margin-top: 20px;

    color: #969188;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   TEAM GRID
===================================================== */

.team-page-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


/* =====================================================
   TEAM CARD
===================================================== */

.team-page-card {
    overflow: hidden;

    border: 1px solid rgba(201, 164, 92, .16);

    border-radius: 8px 34px 8px 34px;

    background: #0b0b0a;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .38);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.team-page-card:hover {
    transform: translateY(-7px);

    border-color: rgba(201, 164, 92, .55);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, .5),
        0 0 30px rgba(201, 164, 92, .08);
}


/* =====================================================
   TEAM IMAGE
===================================================== */

.team-card-image {
    position: relative;

    height: 420px;

    overflow: hidden;

    background: #11110f;
}

.team-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s ease,
        filter .8s ease;
}

.team-page-card:hover .team-card-image img {
    transform: scale(1.05);

    filter: saturate(.85) contrast(1.05);
}

.team-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .02),
            rgba(0, 0, 0, .08) 45%,
            rgba(0, 0, 0, .78)
        );
}

.team-card-number {
    position: absolute;

    top: 22px;
    right: 24px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .16em;

    text-shadow: var(--gold-glow);
}


/* =====================================================
   TEAM CONTENT
===================================================== */

.team-card-content {
    padding: 28px 30px 32px;
}

.team-card-content > span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .22em;

    text-shadow: var(--gold-glow);
}

.team-card-content h3 {
    margin-top: 9px;

    color: #f1ede5;

    font-size: 27px;

    line-height: 1.1;

    letter-spacing: -.025em;
}

.team-card-content p {
    margin-top: 12px;

    color: #99948b;

    font-size: 12px;

    line-height: 1.75;
}


/* =====================================================
   VALUES
===================================================== */

.team-values-section {
    padding: 90px 0;

    background: #090908;

    border-top: 1px solid rgba(201, 164, 92, .1);
    border-bottom: 1px solid rgba(201, 164, 92, .1);
}

.team-values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.team-value {
    padding: 30px;

    border-left: 1px solid rgba(201, 164, 92, .35);
}

.team-value span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .2em;
}

.team-value h3 {
    margin-top: 14px;

    color: #eee9df;

    font-size: 25px;
}

.team-value p {
    max-width: 280px;

    margin-top: 10px;

    color: #8f8b83;

    font-size: 12px;

    line-height: 1.75;
}


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

.team-page-cta {
    padding: 115px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(201, 164, 92, .11),
            transparent 45%
        ),
        #050505;
}

.team-cta-box {
    max-width: 850px;

    margin: auto;

    padding: 65px 55px;

    text-align: center;

    border: 1px solid rgba(201, 164, 92, .24);

    border-radius: 10px 46px 10px 46px;

    background:
        linear-gradient(
            145deg,
            rgba(30, 27, 21, .82),
            rgba(10, 10, 9, .94)
        );

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .5),
        0 0 35px rgba(201, 164, 92, .06);
}

.team-cta-box .section-label {
    color: var(--gold);

    text-shadow: var(--gold-glow);
}

.team-cta-box h2 {
    margin-top: 15px;

    color: #f3efe7;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -.045em;
}

.team-cta-box h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.team-cta-box p {
    max-width: 530px;

    margin: 20px auto 30px;

    color: #a09b92;

    font-size: 13px;

    line-height: 1.8;
}

.team-cta-box .primary-button {
    display: inline-flex;

    gap: 12px;

    background: var(--gold);

    color: #080705;
}

.team-cta-box .primary-button:hover {
    background: var(--gold-light);

    box-shadow: var(--gold-glow-strong);
}


/* =====================================================
   ACTIVE NAV
===================================================== */

.main-nav a.active {
    color: var(--gold-light);

    text-shadow:
        0 0 12px rgba(201, 164, 92, .35);
}

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


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .team-page-hero {
        min-height: 500px;

        padding: 130px 0 80px;
    }

    .team-page-hero h1 {
        font-size: 52px;
    }

    .team-page-intro {
        padding: 85px 0;
    }

    .team-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .team-page-section {
        padding: 85px 0;
    }

    .team-page-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .team-card-image {
        height: 430px;
    }

    .team-values-section {
        padding: 70px 0;
    }

    .team-values-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .team-value {
        padding: 25px;
    }

    .team-cta-box {
        padding: 45px 25px;

        border-radius: 10px 35px 10px 35px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .team-page-hero {
        min-height: 460px;

        padding: 120px 0 70px;
    }

    .team-page-hero h1 {
        font-size: 45px;
    }

    .team-page-hero p {
        font-size: 12px;
    }

    .team-page-heading h2 {
        font-size: 40px;
    }

    .team-card-image {
        height: 360px;
    }

    .team-card-content {
        padding: 24px 22px 28px;
    }

    .team-card-content h3 {
        font-size: 24px;
    }

    .team-cta-box h2 {
        font-size: 38px;
    }

}

/* =====================================================
   CYNOSURE CONSTRUCTION
   PROJECT 2 — SINGLE PROJECT PAGE
   BLACK + LUXURY GOLD
===================================================== */


/* =====================================================
   PROJECT HERO
===================================================== */

.project2-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #050505;
}

.project2-hero-image {
    position: absolute;
    inset: 0;
}

.project2-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.02);

    transition: transform 1.2s ease;
}

.project2-hero:hover .project2-hero-image img {
    transform: scale(1.05);
}

.project2-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .35) 40%,
            rgba(0, 0, 0, .94) 100%
        );
}

.project2-hero-container {
    position: relative;
    z-index: 2;

    padding-bottom: 85px;
}

.project2-hero-content {
    max-width: 800px;
}

.project2-label {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .27em;

    text-shadow: var(--gold-glow);
}

.project2-hero-content h1 {
    margin-top: 17px;

    color: #f5f1e8;

    font-size: clamp(54px, 8vw, 94px);

    line-height: .92;

    letter-spacing: -.055em;
}

.project2-hero-content h1 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow:
        0 0 15px rgba(201, 164, 92, .45),
        0 0 40px rgba(201, 164, 92, .15);
}

.project2-hero-content p {
    max-width: 590px;

    margin-top: 25px;

    color: #b4afa5;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   PROJECT INFORMATION
===================================================== */

.project2-info {
    padding: 120px 0;

    background: #080807;

    border-top: 1px solid rgba(201, 164, 92, .08);
}

.project2-info-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(280px, .65fr);

    gap: 100px;

    align-items: start;
}

.project2-info-main h2 {
    max-width: 650px;

    margin-top: 15px;

    color: #f1ede5;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -.045em;
}

.project2-info-main h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.project2-info-main p {
    max-width: 620px;

    margin-top: 23px;

    color: #9e998f;

    font-size: 13px;

    line-height: 1.9;
}


/* =====================================================
   PROJECT DETAILS
===================================================== */

.project2-details {
    border-top: 1px solid rgba(201, 164, 92, .25);
}

.project2-detail {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 25px;

    padding: 21px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.project2-detail span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .18em;
}

.project2-detail strong {
    max-width: 190px;

    color: #ddd8cf;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.5;

    text-align: right;
}


/* =====================================================
   FEATURE IMAGE
===================================================== */

.project2-feature {
    padding: 20px 0 120px;

    background: #080807;
}

.project2-feature-image {
    height: 620px;

    overflow: hidden;

    border: 1px solid rgba(201, 164, 92, .18);

    border-radius: 8px 45px 8px 45px;

    background: #10100e;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .5);
}

.project2-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .9s ease;
}

.project2-feature-image:hover img {
    transform: scale(1.04);
}


/* =====================================================
   APPROACH
===================================================== */

.project2-approach {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201, 164, 92, .08),
            transparent 45%
        ),
        #060605;
}

.project2-approach-heading {
    max-width: 650px;

    margin-bottom: 55px;
}

.project2-approach-heading h2 {
    margin-top: 15px;

    color: #f2eee5;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -.045em;
}

.project2-approach-heading h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.project2-approach-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.project2-approach-card {
    min-height: 260px;

    padding: 32px;

    border: 1px solid rgba(201, 164, 92, .15);

    border-radius: 7px 30px 7px 30px;

    background: #0b0b0a;

    transition:
        transform .35s ease,
        border-color .35s ease;
}

.project2-approach-card:hover {
    transform: translateY(-6px);

    border-color: rgba(201, 164, 92, .48);
}

.project2-approach-card > span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .2em;
}

.project2-approach-card h3 {
    margin-top: 35px;

    color: #eee9df;

    font-size: 26px;
}

.project2-approach-card p {
    margin-top: 12px;

    color: #969188;

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   PROJECT GALLERY
===================================================== */

.project2-gallery {
    padding: 0 0 120px;

    background: #060605;
}

.project2-gallery-grid {
    display: grid;

    grid-template-columns:
        1.25fr
        .75fr;

    gap: 20px;
}

.project2-gallery-image {
    height: 450px;

    overflow: hidden;

    border: 1px solid rgba(201, 164, 92, .14);

    border-radius: 7px 32px 7px 32px;

    background: #10100e;
}

.project2-gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.project2-gallery-image:hover img {
    transform: scale(1.05);
}


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

.project2-cta {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(201, 164, 92, .11),
            transparent 45%
        ),
        #050505;
}

.project2-cta-box {
    max-width: 850px;

    margin: auto;

    padding: 70px 55px;

    text-align: center;

    border: 1px solid rgba(201, 164, 92, .25);

    border-radius: 10px 50px 10px 50px;

    background:
        linear-gradient(
            145deg,
            rgba(29, 27, 21, .82),
            rgba(9, 9, 8, .94)
        );

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .5),
        0 0 35px rgba(201, 164, 92, .06);
}

.project2-cta-box h2 {
    margin-top: 15px;

    color: #f3efe6;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -.045em;
}

.project2-cta-box h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.project2-cta-box p {
    max-width: 540px;

    margin: 20px auto 30px;

    color: #9e998f;

    font-size: 13px;

    line-height: 1.8;
}

.project2-cta-box .primary-button {
    display: inline-flex;

    gap: 12px;

    background: var(--gold);

    color: #080705;
}

.project2-cta-box .primary-button:hover {
    background: var(--gold-light);

    box-shadow: var(--gold-glow-strong);
}


/* =====================================================
   ACTIVE NAV
===================================================== */

.main-nav a.active {
    color: var(--gold-light);

    text-shadow:
        0 0 12px rgba(201, 164, 92, .35);
}

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


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .project2-hero {
        min-height: 570px;
    }

    .project2-hero-container {
        padding-bottom: 65px;
    }

    .project2-hero-content h1 {
        font-size: 54px;
    }

    .project2-info {
        padding: 85px 0;
    }

    .project2-info-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .project2-feature {
        padding-bottom: 85px;
    }

    .project2-feature-image {
        height: 480px;

        border-radius: 7px 35px 7px 35px;
    }

    .project2-approach {
        padding: 85px 0;
    }

    .project2-approach-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .project2-gallery {
        padding-bottom: 85px;
    }

    .project2-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project2-gallery-image {
        height: 400px;
    }

    .project2-cta {
        padding: 85px 0;
    }

    .project2-cta-box {
        padding: 50px 25px;

        border-radius: 10px 35px 10px 35px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .project2-hero {
        min-height: 500px;
    }

    .project2-hero-content h1 {
        font-size: 45px;
    }

    .project2-hero-content p {
        font-size: 12px;
    }

    .project2-info-main h2,
    .project2-approach-heading h2 {
        font-size: 40px;
    }

    .project2-detail {
        flex-direction: column;

        gap: 7px;
    }

    .project2-detail strong {
        text-align: left;
    }

    .project2-feature-image {
        height: 350px;
    }

    .project2-gallery-image {
        height: 330px;
    }

    .project2-cta-box h2 {
        font-size: 38px;
    }

}

/* =====================================================
   CYNOSURE CONSTRUCTION
   WORK PAGE — BLACK + GOLD
===================================================== */

.work-page-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505;
}

.work-hero-image {
    position: absolute;
    inset: 0;
}

.work-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.75);
}

.work-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.97) 0%,
            rgba(5,5,5,.82) 38%,
            rgba(5,5,5,.35) 75%,
            rgba(5,5,5,.72) 100%
        );
}

.work-page-hero .container {
    position: relative;
    z-index: 2;
}

.work-hero-content {
    max-width: 720px;
}

.work-hero-content .section-label,
.work-section-heading .section-label,
.work-approach-content .section-label,
.work-cta-box .section-label {
    color: var(--gold-light);
    text-shadow: var(--gold-glow);
}

.work-hero-content h1 {
    margin-top: 18px;
    color: #f5f1e8;
    font-size: clamp(55px, 8vw, 100px);
    line-height: .92;
    letter-spacing: -.055em;
}

.work-hero-content h1 em {
    color: var(--gold-light);
    font-style: italic;
    text-shadow: var(--gold-glow-strong);
}

.work-hero-content p {
    max-width: 590px;
    margin-top: 25px;
    color: #bcb8ad;
    font-size: 14px;
    line-height: 1.9;
}

.work-hero-content .primary-button {
    margin-top: 32px;
}


/* =====================================================
   INTRO
===================================================== */

.work-page-intro {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(201,164,92,.08),
            transparent 35%
        ),
        #080808;
}

.work-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.work-intro-grid h2 {
    max-width: 600px;
    margin-top: 15px;
    color: #f2eee5;
    font-size: clamp(40px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.045em;
}

.work-intro-grid h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.work-intro-grid p {
    max-width: 560px;
    margin-bottom: 20px;
    color: #a9a59c;
    font-size: 13px;
    line-height: 1.9;
}


/* =====================================================
   SHOWCASE
===================================================== */

.work-showcase {
    padding: 120px 0;
    background: #050505;
}

.work-section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.work-section-heading h2 {
    margin-top: 14px;
    color: #f2eee5;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -.045em;
}

.work-section-heading h2 em {
    color: var(--gold-light);
    font-style: italic;
    text-shadow: var(--gold-glow);
}

.work-section-heading p {
    max-width: 580px;
    margin-top: 20px;
    color: #99958c;
    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   IMAGE GRID
===================================================== */

.work-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.work-image-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(201,164,92,.18);
    border-radius: 6px 35px 6px 35px;
    background: #0b0b0b;
    isolation: isolate;
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.work-image-card:hover {
    transform: translateY(-7px);
    border-color: rgba(201,164,92,.65);
    box-shadow:
        0 25px 70px rgba(0,0,0,.6),
        var(--gold-glow);
}

.work-image-large {
    min-height: 560px;
}

.work-image-wide {
    grid-column: 1 / -1;
    min-height: 500px;
}

.work-image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .8s ease,
        filter .8s ease;
}

.work-image-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.work-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.92),
            rgba(0,0,0,.48) 42%,
            transparent 75%
        );
}

.work-image-overlay span {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
}

.work-image-overlay h3 {
    margin-top: 9px;
    color: #f4f0e7;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
}


/* =====================================================
   APPROACH
===================================================== */

.work-approach {
    padding: 110px 0;
    background: #090909;
}

.work-approach-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(201,164,92,.22);
    border-radius: 8px 45px 8px 45px;
    background: #0d0d0d;
}

.work-approach-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px;
}

.work-approach-content h2 {
    margin-top: 15px;
    color: #f2eee5;
    font-size: clamp(42px, 5vw, 65px);
    line-height: .98;
    letter-spacing: -.045em;
}

.work-approach-content h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.work-approach-content p {
    max-width: 500px;
    margin-top: 22px;
    color: #aaa69d;
    font-size: 13px;
    line-height: 1.9;
}

.work-approach-content .secondary-button {
    align-self: flex-start;
    margin-top: 30px;
}

.work-approach-image {
    min-height: 520px;
    overflow: hidden;
}

.work-approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


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

.work-page-cta {
    padding: 115px 0;
    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.11),
            transparent 48%
        ),
        #050505;
}

.work-cta-box {
    max-width: 850px;
    margin: auto;
    padding: 70px 55px;
    text-align: center;
    border: 1px solid rgba(201,164,92,.25);
    border-radius: 10px 50px 10px 50px;
    background:
        linear-gradient(
            145deg,
            rgba(30,25,17,.85),
            rgba(8,8,8,.96)
        );
    box-shadow:
        0 25px 80px rgba(0,0,0,.55),
        0 0 40px rgba(201,164,92,.06);
}

.work-cta-box h2 {
    margin-top: 15px;
    color: #f2eee5;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -.045em;
}

.work-cta-box h2 em {
    color: var(--gold-light);
    font-style: italic;
    text-shadow: var(--gold-glow);
}

.work-cta-box p {
    max-width: 540px;
    margin: 20px auto 30px;
    color: #a6a198;
    font-size: 13px;
    line-height: 1.8;
}

.work-cta-box .primary-button {
    display: inline-flex;
}


/* =====================================================
   ACTIVE NAV
===================================================== */

.main-nav a.active {
    color: var(--gold-light);
    text-shadow: var(--gold-glow);
}

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


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .work-page-hero {
        min-height: 560px;
    }

    .work-hero-content h1 {
        font-size: 55px;
    }

    .work-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .work-page-intro,
    .work-showcase,
    .work-approach,
    .work-page-cta {
        padding: 85px 0;
    }

    .work-image-grid {
        grid-template-columns: 1fr;
    }

    .work-image-wide {
        grid-column: auto;
    }

    .work-image-card,
    .work-image-large,
    .work-image-wide {
        min-height: 400px;
    }

    .work-approach-box {
        grid-template-columns: 1fr;
    }

    .work-approach-content {
        padding: 45px 28px;
    }

    .work-approach-image {
        min-height: 400px;
    }

    .work-cta-box {
        padding: 50px 25px;
        border-radius: 10px 35px 10px 35px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .work-page-hero {
        min-height: 500px;
    }

    .work-hero-content h1 {
        font-size: 45px;
    }

    .work-hero-content p {
        font-size: 12px;
    }

    .work-image-card,
    .work-image-large,
    .work-image-wide {
        min-height: 340px;
    }

    .work-image-overlay {
        padding: 22px;
    }

    .work-image-overlay h3 {
        font-size: 25px;
    }

    .work-approach-content h2 {
        font-size: 42px;
    }

    .work-cta-box h2 {
        font-size: 40px;
    }
}

/* =====================================================
   CYNOSURE CONSTRUCTION
   WORK-2 PAGE
   BLACK + GOLD PREMIUM THEME
===================================================== */


/* =====================================================
   HERO
===================================================== */

.work2-hero {
    position: relative;
    min-height: 720px;

    display: flex;
    align-items: flex-end;

    padding: 150px 0 90px;

    overflow: hidden;

    background: #050505;
}

.work2-hero-image {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.work2-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.75) contrast(1.08);

    transform: scale(1.02);
}

.work2-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.28),
            rgba(0,0,0,.48) 40%,
            rgba(3,3,3,.96) 100%
        );
}

.work2-hero-inner {
    position: relative;
    z-index: 2;

    max-width: 1100px;
}

.work2-label {
    display: inline-block;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .28em;

    text-shadow: var(--gold-glow);
}

.work2-hero h1 {
    max-width: 850px;

    margin-top: 18px;

    color: #f5f1e8;

    font-size: clamp(55px, 9vw, 105px);

    line-height: .9;

    letter-spacing: -.06em;
}

.work2-hero h1 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow:
        0 0 15px rgba(201,164,92,.55),
        0 0 45px rgba(201,164,92,.18);
}

.work2-hero-inner > p {
    max-width: 570px;

    margin-top: 28px;

    color: #c1bdb4;

    font-size: 14px;

    line-height: 1.85;
}

.work2-scroll {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    margin-top: 38px;

    color: var(--gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;

    text-decoration: none;

    transition: gap .3s ease;
}

.work2-scroll strong {
    font-size: 18px;
    font-weight: 400;
}

.work2-scroll:hover {
    gap: 22px;
}


/* =====================================================
   INTRO
===================================================== */

.work2-intro {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201,164,92,.08),
            transparent 35%
        ),
        #080808;
}

.work2-intro-grid {
    display: grid;

    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);

    gap: 90px;

    align-items: start;
}

.work2-intro-title h2 {
    max-width: 520px;

    margin-top: 16px;

    color: #f2eee5;

    font-size: clamp(40px, 5vw, 65px);

    line-height: .98;

    letter-spacing: -.05em;
}

.work2-intro-title h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.work2-intro-copy {
    max-width: 620px;

    padding-top: 10px;
}

.work2-intro-copy p {
    margin-bottom: 24px;

    color: #aaa69e;

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.work2-featured {
    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #0a0a0a,
            #050505
        );
}

.work2-section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.work2-section-heading h2 {
    margin-top: 14px;

    color: #f2eee5;

    font-size: clamp(40px, 5vw, 65px);

    line-height: .98;

    letter-spacing: -.05em;
}

.work2-section-heading h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.work2-section-heading p {
    max-width: 570px;

    margin-top: 20px;

    color: #99958d;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   FEATURE GRID
===================================================== */

.work2-feature-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(0, .75fr);

    gap: 20px;
}

.work2-feature-card {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    border: 1px solid rgba(201,164,92,.18);

    border-radius: 4px 32px 4px 32px;

    background: #0c0c0c;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.work2-feature-main {
    grid-row: span 2;

    min-height: 680px;
}

.work2-feature-card:hover {
    transform: translateY(-6px);

    border-color: rgba(201,164,92,.6);

    box-shadow:
        0 25px 70px rgba(0,0,0,.5),
        0 0 30px rgba(201,164,92,.07);
}

.work2-feature-image {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.work2-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.8);

    transition:
        transform .8s ease,
        filter .8s ease;
}

.work2-feature-card:hover .work2-feature-image img {
    transform: scale(1.06);

    filter: saturate(1);
}

.work2-feature-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.95),
            rgba(0,0,0,.42) 45%,
            rgba(0,0,0,.08) 80%
        );

    pointer-events: none;
}

.work2-feature-content {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    z-index: 2;
}

.work2-feature-content span {
    color: var(--gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .22em;

    text-shadow: var(--gold-glow);
}

.work2-feature-content h3 {
    margin-top: 10px;

    color: #f4f0e7;

    font-size: clamp(25px, 3vw, 38px);

    line-height: 1.02;

    letter-spacing: -.03em;
}

.work2-feature-content p {
    max-width: 500px;

    margin-top: 12px;

    color: #c0bbb1;

    font-size: 11px;

    line-height: 1.7;
}


/* =====================================================
   PHILOSOPHY
===================================================== */

.work2-philosophy {
    padding: 120px 0;

    background: #080808;
}

.work2-philosophy-box {
    position: relative;

    display: grid;

    grid-template-columns: 120px minmax(0, 1fr);

    gap: 50px;

    max-width: 1050px;

    margin: auto;

    padding: 70px;

    border: 1px solid rgba(201,164,92,.22);

    border-radius: 5px 45px 5px 45px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(201,164,92,.1),
            transparent 35%
        ),
        #0d0d0d;

    box-shadow:
        0 25px 80px rgba(0,0,0,.4);
}

.work2-philosophy-number {
    color: rgba(201,164,92,.28);

    font-size: 70px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -.06em;
}

.work2-philosophy-content h2 {
    max-width: 700px;

    margin-top: 14px;

    color: #f3efe6;

    font-size: clamp(40px, 5vw, 65px);

    line-height: .98;

    letter-spacing: -.05em;
}

.work2-philosophy-content h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.work2-philosophy-content p {
    max-width: 650px;

    margin-top: 25px;

    color: #aaa69e;

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   PRINCIPLES
===================================================== */

.work2-principles {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(201,164,92,.07),
            transparent 40%
        ),
        #050505;
}

.work2-principles-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1px;

    margin-top: 50px;

    border: 1px solid rgba(201,164,92,.16);

    background: rgba(201,164,92,.16);
}

.work2-principle {
    min-height: 290px;

    padding: 32px 28px;

    background: #0a0a0a;

    transition:
        background .35s ease,
        transform .35s ease;
}

.work2-principle:hover {
    background: #11100d;

    transform: translateY(-4px);
}

.work2-principle > span {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .2em;
}

.work2-principle h3 {
    margin-top: 55px;

    color: #f1ede4;

    font-size: 25px;

    letter-spacing: -.025em;
}

.work2-principle p {
    margin-top: 13px;

    color: #99958d;

    font-size: 12px;

    line-height: 1.75;
}


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

.work2-cta {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(201,164,92,.13),
            transparent 45%
        ),
        #060606;
}

.work2-cta-box {
    max-width: 900px;

    margin: auto;

    padding: 75px 55px;

    text-align: center;

    border: 1px solid rgba(201,164,92,.3);

    border-radius: 6px 50px 6px 50px;

    background:
        linear-gradient(
            145deg,
            rgba(29,25,18,.9),
            rgba(10,10,10,.95)
        );

    box-shadow:
        0 30px 90px rgba(0,0,0,.5),
        0 0 40px rgba(201,164,92,.06);
}

.work2-cta-box h2 {
    margin-top: 15px;

    color: #f2eee5;

    font-size: clamp(40px, 5vw, 65px);

    line-height: .98;

    letter-spacing: -.05em;
}

.work2-cta-box h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.work2-cta-box p {
    max-width: 550px;

    margin: 20px auto 32px;

    color: #aaa69e;

    font-size: 13px;

    line-height: 1.8;
}

.work2-cta-box .primary-button {
    display: inline-flex;

    background: var(--gold);

    color: #080808;

    box-shadow: var(--gold-glow);
}

.work2-cta-box .primary-button:hover {
    background: var(--gold-light);

    box-shadow: var(--gold-glow-strong);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .work2-hero {
        min-height: 650px;

        padding: 140px 0 75px;
    }

    .work2-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .work2-feature-grid {
        grid-template-columns: 1fr;
    }

    .work2-feature-main {
        grid-row: auto;

        min-height: 500px;
    }

    .work2-feature-card {
        min-height: 430px;
    }

    .work2-principles-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .work2-philosophy-box {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 45px 35px;
    }

    .work2-philosophy-number {
        font-size: 50px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .work2-hero {
        min-height: 570px;

        padding: 120px 0 60px;
    }

    .work2-hero h1 {
        font-size: 50px;
    }

    .work2-hero-inner > p {
        font-size: 12px;
    }

    .work2-intro,
    .work2-featured,
    .work2-philosophy,
    .work2-principles,
    .work2-cta {
        padding: 85px 0;
    }

    .work2-section-heading h2,
    .work2-intro-title h2,
    .work2-philosophy-content h2,
    .work2-cta-box h2 {
        font-size: 40px;
    }

    .work2-feature-main {
        min-height: 470px;
    }

    .work2-feature-card {
        min-height: 380px;
    }

    .work2-feature-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .work2-principles-grid {
        grid-template-columns: 1fr;
    }

    .work2-principle {
        min-height: 230px;
    }

    .work2-principle h3 {
        margin-top: 35px;
    }

    .work2-cta-box {
        padding: 50px 25px;

        border-radius: 5px 35px 5px 35px;
    }

}

/* =====================================================
   CYNOSURE CONSTRUCTION
   DISCUSS PAGE
   BLACK + GOLD PREMIUM DESIGN
===================================================== */


/* =====================================================
   HERO
===================================================== */

.discuss-page-hero {
    position: relative;
    min-height: 560px;

    display: flex;
    align-items: center;

    padding: 150px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(201, 164, 92, .13),
            transparent 35%
        ),
        radial-gradient(
            circle at 10% 75%,
            rgba(201, 164, 92, .07),
            transparent 38%
        ),
        #050505;
}

.discuss-page-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(201, 164, 92, .08);

    filter: blur(90px);

    pointer-events: none;
}

.discuss-hero-content {
    position: relative;
    z-index: 2;

    max-width: 820px;
}

.discuss-page-hero .section-label {
    color: var(--gold-light);

    text-shadow: var(--gold-glow);
}

.discuss-page-hero h1 {
    max-width: 780px;

    margin-top: 18px;

    color: #f5f2ea;

    font-size: clamp(52px, 8vw, 92px);

    line-height: .94;

    letter-spacing: -.055em;
}

.discuss-page-hero h1 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow:
        0 0 15px rgba(201, 164, 92, .4),
        0 0 40px rgba(201, 164, 92, .15);
}

.discuss-page-hero p {
    max-width: 610px;

    margin-top: 26px;

    color: #a9a39a;

    font-size: 14px;

    line-height: 1.85;
}


/* =====================================================
   MAIN DISCUSSION SECTION
===================================================== */

.discuss-page-section {
    padding: 115px 0;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(201, 164, 92, .055),
            transparent 35%
        ),
        #080808;
}

.discuss-page-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);

    gap: 90px;

    align-items: start;
}


/* =====================================================
   INTRO
===================================================== */

.discuss-page-intro {
    position: sticky;

    top: 120px;
}

.discuss-page-intro .section-label {
    color: var(--gold-light);

    text-shadow: var(--gold-glow);
}

.discuss-page-intro h2 {
    margin-top: 15px;

    color: #f2efe8;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -.045em;
}

.discuss-page-intro h2 em {
    display: block;

    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.discuss-page-intro > p {
    max-width: 500px;

    margin-top: 22px;

    color: #9f9a91;

    font-size: 13px;

    line-height: 1.85;
}

.discuss-contact-points {
    margin-top: 45px;

    border-top: 1px solid rgba(201, 164, 92, .18);
}

.discuss-contact-points > div {
    padding: 18px 0;

    border-bottom: 1px solid rgba(201, 164, 92, .12);
}

.discuss-contact-points span {
    display: block;

    margin-bottom: 6px;

    color: var(--gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
}

.discuss-contact-points a,
.discuss-contact-points p {
    color: #d8d3c9;

    font-size: 13px;

    line-height: 1.5;

    transition: color .3s ease;
}

.discuss-contact-points a:hover {
    color: var(--gold-light);
}


/* =====================================================
   FORM WRAPPER
===================================================== */

.discuss-form-wrapper {
    padding: 45px;

    border: 1px solid rgba(201, 164, 92, .2);

    border-radius: 8px 38px 8px 38px;

    background:
        linear-gradient(
            145deg,
            rgba(27, 25, 21, .95),
            rgba(10, 10, 10, .98)
        );

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .45),
        0 0 35px rgba(201, 164, 92, .035);
}

.discuss-form-heading {
    margin-bottom: 35px;
}

.discuss-form-heading .section-label {
    color: var(--gold-light);

    text-shadow: var(--gold-glow);
}

.discuss-form-heading h2 {
    margin-top: 12px;

    color: #f2efe8;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1;

    letter-spacing: -.04em;
}

.discuss-form-heading h2 em {
    color: var(--gold-light);

    font-style: italic;
}

.discuss-form {
    display: grid;

    gap: 20px;
}

.discuss-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =====================================================
   FORM FIELDS
===================================================== */

.discuss-form .form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.discuss-form label {
    color: #b9b1a4;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .18em;
}

.discuss-form input,
.discuss-form select,
.discuss-form textarea {
    width: 100%;

    border: 1px solid rgba(201, 164, 92, .16);

    border-radius: 4px;

    outline: none;

    background: #0d0d0d;

    color: #eee9df;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.discuss-form input,
.discuss-form select {
    height: 52px;

    padding: 0 15px;
}

.discuss-form textarea {
    min-height: 150px;

    padding: 15px;

    resize: vertical;
}

.discuss-form input::placeholder,
.discuss-form textarea::placeholder {
    color: #69645d;
}

.discuss-form select {
    appearance: none;

    cursor: pointer;
}

.discuss-form input:focus,
.discuss-form select:focus,
.discuss-form textarea:focus {
    border-color: rgba(201, 164, 92, .7);

    background: #11100e;

    box-shadow:
        0 0 0 3px rgba(201, 164, 92, .06),
        var(--gold-glow);
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.discuss-form .submit-button {
    min-height: 54px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 5px;

    padding: 0 28px;

    border: 1px solid var(--gold);

    border-radius: 4px;

    background: var(--gold);

    color: #080808;

    font-family: inherit;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .08em;

    cursor: pointer;

    transition:
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.discuss-form .submit-button:hover {
    background: var(--gold-light);

    box-shadow: var(--gold-glow-strong);

    transform: translateY(-2px);
}

.discuss-form .submit-button span {
    font-size: 18px;
}


/* =====================================================
   SUCCESS MESSAGE
===================================================== */

.discuss-form .form-success {
    display: none;

    padding: 14px 16px;

    border: 1px solid rgba(201, 164, 92, .3);

    border-radius: 4px;

    background: rgba(201, 164, 92, .05);

    color: var(--gold-light);

    font-size: 12px;

    line-height: 1.5;
}


/* =====================================================
   PROCESS
===================================================== */

.discuss-process {
    padding: 110px 0;

    background: #050505;
}

.discuss-process-heading {
    max-width: 650px;

    margin-bottom: 55px;
}

.discuss-process-heading .section-label {
    color: var(--gold-light);

    text-shadow: var(--gold-glow);
}

.discuss-process-heading h2 {
    margin-top: 13px;

    color: #f1eee7;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1;

    letter-spacing: -.045em;
}

.discuss-process-heading h2 em {
    color: var(--gold-light);

    font-style: italic;
}

.discuss-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(201, 164, 92, .18);
}

.discuss-process-card {
    min-height: 260px;

    padding: 30px 25px;

    border-right: 1px solid rgba(201, 164, 92, .14);
}

.discuss-process-card:last-child {
    border-right: none;
}

.discuss-process-card > span {
    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .15em;

    text-shadow: var(--gold-glow);
}

.discuss-process-card h3 {
    margin-top: 45px;

    color: #e9e5dd;

    font-size: 22px;

    letter-spacing: -.025em;
}

.discuss-process-card p {
    margin-top: 12px;

    color: #8f8a82;

    font-size: 12px;

    line-height: 1.75;
}


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

.discuss-page-cta {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(201, 164, 92, .1),
            transparent 48%
        ),
        #070707;
}

.discuss-cta-box {
    max-width: 850px;

    margin: auto;

    padding: 65px 50px;

    text-align: center;

    border: 1px solid rgba(201, 164, 92, .25);

    border-radius: 10px 45px 10px 45px;

    background:
        linear-gradient(
            145deg,
            rgba(29, 27, 23, .9),
            rgba(9, 9, 9, .95)
        );

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .45),
        0 0 40px rgba(201, 164, 92, .06);
}

.discuss-cta-box .section-label {
    color: var(--gold-light);

    text-shadow: var(--gold-glow);
}

.discuss-cta-box h2 {
    margin-top: 15px;

    color: #f2efe8;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -.045em;
}

.discuss-cta-box h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.discuss-cta-box p {
    max-width: 520px;

    margin: 20px auto 30px;

    color: #a09a91;

    font-size: 13px;

    line-height: 1.8;
}

.discuss-cta-box .primary-button {
    display: inline-flex;

    background: var(--gold);

    color: #080808;
}

.discuss-cta-box .primary-button:hover {
    background: var(--gold-light);

    box-shadow: var(--gold-glow-strong);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .discuss-page-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .discuss-page-intro {
        position: static;
    }

    .discuss-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .discuss-process-card:nth-child(2) {
        border-right: none;
    }

    .discuss-process-card:nth-child(3),
    .discuss-process-card:nth-child(4) {
        border-top: 1px solid rgba(201, 164, 92, .14);
    }
}


@media (max-width: 650px) {

    .discuss-page-hero {
        min-height: 480px;

        padding: 125px 0 75px;
    }

    .discuss-page-hero h1 {
        font-size: 50px;
    }

    .discuss-page-section {
        padding: 80px 0;
    }

    .discuss-form-wrapper {
        padding: 30px 22px;

        border-radius: 7px 28px 7px 28px;
    }

    .discuss-form-row {
        grid-template-columns: 1fr;
    }

    .discuss-process {
        padding: 80px 0;
    }

    .discuss-process-grid {
        grid-template-columns: 1fr;
    }

    .discuss-process-card {
        min-height: auto;

        padding: 25px 0;

        border-right: none !important;

        border-bottom: 1px solid rgba(201, 164, 92, .14);
    }

    .discuss-process-card:last-child {
        border-bottom: none;
    }

    .discuss-process-card h3 {
        margin-top: 25px;
    }

    .discuss-cta-box {
        padding: 45px 24px;

        border-radius: 8px 32px 8px 32px;
    }

    .discuss-cta-box h2 {
        font-size: 38px;
    }
}


@media (max-width: 480px) {

    .discuss-page-hero h1 {
        font-size: 43px;
    }

    .discuss-page-hero p {
        font-size: 12px;
    }

    .discuss-page-intro h2 {
        font-size: 38px;
    }

    .discuss-form-heading h2 {
        font-size: 34px;
    }
}

/* =====================================================
   Partners
===================================================== */

.subsidiaries-section {
    position: relative;
    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201, 164, 92, .08),
            transparent 45%
        ),
        #05090f;
}


/* =====================================================
   HEADING
===================================================== */

.subsidiaries-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.subsidiaries-heading .section-label {
    color: var(--gold);
    text-shadow: var(--gold-glow);
}

.subsidiaries-heading h2 {
    margin-top: 14px;

    color: #f5f1e8;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -.045em;
}

.subsidiaries-heading h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.subsidiaries-heading p {
    max-width: 590px;

    margin-top: 20px;

    color: #9da7b3;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   SLIDER
===================================================== */

.subsidiaries-slider {
    width: 100%;

    overflow: hidden;
}


/* =====================================================
   MOVING TRACK
===================================================== */

.subsidiaries-track {
    display: flex;

    width: max-content;

    animation:
        subsidiaries-scroll
        22s
        linear
        infinite;

    will-change: transform;
}


/* =====================================================
   EACH LOGO GROUP
===================================================== */

.subsidiaries-group {
    display: flex;

    gap: 22px;

    flex-shrink: 0;

    padding-right: 22px;
}


/* =====================================================
   LOGO CARD
===================================================== */

.subsidiary-card {
    width: 240px;
    height: 125px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 25px;

    border: 1px solid rgba(201, 164, 92, .24);

    border-radius: 8px 28px 8px 28px;

    background:
        linear-gradient(
            145deg,
            rgba(24, 28, 34, .95),
            rgba(8, 12, 17, .98)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .35),
        0 0 20px rgba(201, 164, 92, .04);

    transition:
        border-color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.subsidiary-card:hover {
    transform: translateY(-4px);

    border-color: rgba(201, 164, 92, .65);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, .45),
        var(--gold-glow);
}


/* =====================================================
   LOGO
===================================================== */

.subsidiary-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    max-width: 100%;
    max-height: 100%;
}


/* =====================================================
   SEAMLESS AUTO LOOP
===================================================== */

@keyframes subsidiaries-scroll {

    from {
        transform: translateX(0);
    }

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

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .subsidiaries-section {
        padding: 85px 0;
    }

    .subsidiaries-heading {
        margin-bottom: 40px;
    }

    .subsidiary-card {
        width: 205px;
        height: 110px;

        padding: 16px 22px;
    }

    .subsidiaries-group {
        gap: 16px;
        padding-right: 16px;
    }

    .subsidiaries-track {
        animation-duration: 19s;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .subsidiary-card {
        width: 180px;
        height: 100px;

        padding: 14px 18px;
    }

    .subsidiaries-group {
        gap: 14px;
        padding-right: 14px;
    }

    .subsidiaries-track {
        animation-duration: 17s;
    }

}

/* =====================================================
   BOARD MEMBER PORTFOLIO
   ODEBUNMI BABAWALE MUTIU
===================================================== */

.board-portfolio-hero {
    position: relative;

    padding: 150px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(201,164,92,.08),
            transparent 40%
        ),
        #0b0c0c;
}


/* =====================================================
   PORTFOLIO GRID
===================================================== */

.board-portfolio-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, .85fr)
        minmax(400px, 1.15fr);

    align-items: center;

    gap: 75px;

    max-width: 1180px;

    margin: 0 auto;
}


/* =====================================================
   IMAGE
===================================================== */

.board-portfolio-image {
    position: relative;

    width: 100%;

    max-width: 480px;

    margin: 0 auto;
}

.board-portfolio-image-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius:
        12px
        45px
        12px
        45px;

    border: 1px solid
        rgba(201,164,92,.55);

    background: #111313;

    box-shadow:
        0 0 0 1px rgba(201,164,92,.08),
        0 0 20px rgba(201,164,92,.18),
        0 0 55px rgba(201,164,92,.10),
        0 25px 60px rgba(0,0,0,.55);
}

.board-portfolio-image-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,0,0,.28)
        );
}

.board-portfolio-image-frame img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .7s ease,
        filter .7s ease;
}

.board-portfolio-image-frame:hover img {
    transform: scale(1.035);

    filter:
        brightness(1.04)
        saturate(1.04);
}


/* =====================================================
   CONTENT
===================================================== */

.board-portfolio-content {
    max-width: 650px;
}

.board-portfolio-content .section-label {
    display: block;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .24em;

    text-transform: uppercase;

    text-shadow: var(--gold-glow);
}


/* ROLE */

.board-portfolio-role {
    display: inline-block;

    margin-top: 22px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .20em;

    text-transform: uppercase;
}


/* NAME */

.board-portfolio-content h1 {
    margin-top: 12px;

    color: #f4f1e8;

    font-size:
        clamp(
            45px,
            6vw,
            78px
        );

    line-height: .98;

    letter-spacing: -.055em;

    text-shadow:
        0 0 22px rgba(255,255,255,.06),
        0 0 35px rgba(201,164,92,.10);
}

.board-portfolio-content h1 em {
    display: block;

    color: var(--gold-light);

    font-style: italic;

    text-shadow:
        0 0 10px rgba(239,210,138,.45),
        0 0 28px rgba(201,164,92,.20);
}


/* LEAD */

.board-portfolio-lead {
    max-width: 570px;

    margin-top: 25px;

    color: #d4d0c7;

    font-size: 17px;

    line-height: 1.7;

    font-weight: 500;
}


/* DIVIDER */

.board-portfolio-line {
    width: 80px;
    height: 1px;

    margin: 30px 0;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );

    box-shadow:
        0 0 10px
        rgba(201,164,92,.35);
}


/* BODY TEXT */

.board-portfolio-content > p:not(.board-portfolio-lead) {
    max-width: 600px;

    margin-top: 17px;

    color: #9da09d;

    font-size: 14px;

    line-height: 1.9;
}


/* BACK BUTTON */

.board-portfolio-content .secondary-button {
    margin-top: 32px;

    text-decoration: none;
}

.board-portfolio-content .secondary-button span {
    margin-right: 8px;
}


/* =====================================================
   RESPONSIBILITIES
===================================================== */

.board-responsibilities-section {
    position: relative;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(201,164,92,.045),
            transparent 40%
        ),
        #080909;

    border-top:
        1px solid
        rgba(201,164,92,.10);
}

.board-responsibilities-section
.section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.board-responsibilities-section
.section-heading .section-label {
    color: var(--gold);

    text-shadow: var(--gold-glow);
}

.board-responsibilities-section
.section-heading h2 {
    margin-top: 13px;

    color: #f4f1e8;

    font-size:
        clamp(
            38px,
            5vw,
            60px
        );

    line-height: 1;

    letter-spacing: -.045em;
}

.board-responsibilities-section
.section-heading h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.board-responsibilities-section
.section-heading p {
    max-width: 600px;

    margin-top: 20px;

    color: #929894;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   RESPONSIBILITY CARDS
===================================================== */

.board-responsibilities-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.board-responsibility-card {
    position: relative;

    min-height: 270px;

    padding: 28px 25px;

    border:
        1px solid
        rgba(201,164,92,.18);

    border-radius:
        8px
        30px
        8px
        30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(201,164,92,.012)
        );

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25),
        inset 0 0 20px
        rgba(201,164,92,.018);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.board-responsibility-card:hover,
.board-responsibility-card:active {
    transform: translateY(-6px);

    border-color:
        rgba(239,210,138,.60);

    box-shadow:
        0 0 10px
        rgba(239,210,138,.18),
        0 0 28px
        rgba(201,164,92,.12),
        0 20px 45px
        rgba(0,0,0,.40);
}

.board-responsibility-card > span {
    display: block;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .18em;

    text-shadow: var(--gold-glow);
}

.board-responsibility-card h3 {
    margin-top: 45px;

    color: #f4f1e8;

    font-size: 20px;

    letter-spacing: -.025em;
}

.board-responsibility-card p {
    margin-top: 14px;

    color: #8f9691;

    font-size: 13px;

    line-height: 1.75;
}


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

.board-portfolio-cta {
    padding: 90px 0 110px;

    background: #0b0c0c;
}

.board-portfolio-cta-box {
    position: relative;

    max-width: 950px;

    margin: 0 auto;

    padding: 70px 45px;

    text-align: center;

    overflow: hidden;

    border:
        1px solid
        rgba(201,164,92,.25);

    border-radius:
        12px
        45px
        12px
        45px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201,164,92,.09),
            transparent 60%
        ),
        #101111;

    box-shadow:
        0 0 25px
        rgba(201,164,92,.08),
        0 25px 60px
        rgba(0,0,0,.35);
}

.board-portfolio-cta-box
.section-label {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .24em;

    text-shadow: var(--gold-glow);
}

.board-portfolio-cta-box h2 {
    margin-top: 15px;

    color: #f4f1e8;

    font-size:
        clamp(
            38px,
            5vw,
            60px
        );

    line-height: 1;

    letter-spacing: -.045em;
}

.board-portfolio-cta-box h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.board-portfolio-cta-box > p {
    max-width: 520px;

    margin: 18px auto 0;

    color: #969c98;

    font-size: 14px;

    line-height: 1.8;
}


/* CTA BUTTONS */

.board-portfolio-cta-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;
}

.board-portfolio-cta-actions a {
    text-decoration: none;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .board-portfolio-grid {
        grid-template-columns:
            1fr;

        gap: 55px;

        max-width: 650px;
    }

    .board-portfolio-image {
        max-width: 430px;
    }

    .board-portfolio-content {
        max-width: 100%;

        text-align: center;
    }

    .board-portfolio-content h1 em {
        display: inline;
    }

    .board-portfolio-lead,
    .board-portfolio-content > p:not(.board-portfolio-lead) {
        margin-left: auto;
        margin-right: auto;
    }

    .board-portfolio-line {
        margin-left: auto;
        margin-right: auto;
    }

    .board-responsibilities-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .board-portfolio-hero {
        padding: 115px 0 70px;
    }

    .board-portfolio-grid {
        gap: 38px;
    }

    .board-portfolio-image {
        max-width: 330px;
    }

    .board-portfolio-image-frame {
        border-radius:
            9px
            32px
            9px
            32px;
    }

    .board-portfolio-content .section-label {
        font-size: 9px;
    }

    .board-portfolio-role {
        margin-top: 18px;

        font-size: 9px;

        letter-spacing: .18em;
    }

    .board-portfolio-content h1 {
        margin-top: 10px;

        font-size: 43px;

        line-height: 1;
    }

    .board-portfolio-content h1 em {
        display: block;
    }

    .board-portfolio-lead {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }

    .board-portfolio-line {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .board-portfolio-content > p:not(.board-portfolio-lead) {
        font-size: 12px;

        line-height: 1.8;
    }

    .board-portfolio-content .secondary-button {
        min-height: 46px;

        padding: 0 20px;

        font-size: 11px;
    }


    /* RESPONSIBILITIES */

    .board-responsibilities-section {
        padding: 75px 0;
    }

    .board-responsibilities-section
    .section-heading {
        margin-bottom: 38px;
    }

    .board-responsibilities-section
    .section-heading h2 {
        font-size: 38px;

        line-height: 1.02;
    }

    .board-responsibilities-section
    .section-heading p {
        font-size: 12px;

        line-height: 1.75;
    }

    .board-responsibilities-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .board-responsibility-card {
        min-height: auto;

        padding: 25px 22px;

        border-radius:
            7px
            25px
            7px
            25px;
    }

    .board-responsibility-card h3 {
        margin-top: 30px;

        font-size: 18px;
    }

    .board-responsibility-card p {
        font-size: 12px;
    }


    /* CTA */

    .board-portfolio-cta {
        padding: 65px 0 80px;
    }

    .board-portfolio-cta-box {
        padding: 50px 23px;

        border-radius:
            9px
            30px
            9px
            30px;
    }

    .board-portfolio-cta-box h2 {
        font-size: 38px;
    }

    .board-portfolio-cta-box > p {
        font-size: 12px;
    }

    .board-portfolio-cta-actions {
        flex-direction: column;

        width: 100%;
    }

    .board-portfolio-cta-actions a {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .board-portfolio-content h1 {
        font-size: 38px;
    }

    .board-portfolio-image {
        max-width: 290px;
    }

    .board-portfolio-cta-box h2 {
        font-size: 34px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .board-portfolio-image-frame img,
    .board-responsibility-card,
    .board-portfolio-content .secondary-button {
        transition: none;
    }

}

/* =====================================================
   PROJECTS
===================================================== */

.projects-section {
    position: relative;
    padding: 100px 0 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201, 164, 92, .08),
            transparent 48%
        ),
        #05090f;
}


/* =====================================================
   HEADING
===================================================== */

.projects-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.projects-heading .section-label {
    color: var(--gold);

    text-shadow: var(--gold-glow);
}

.projects-heading h2 {
    margin-top: 14px;

    color: #f5f1e8;

    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;

    letter-spacing: -.045em;
}

.projects-heading h2 em {
    color: var(--gold-light);

    font-style: italic;

    text-shadow: var(--gold-glow);
}

.projects-heading p {
    max-width: 590px;

    margin-top: 20px;

    color: #9da7b3;

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   MANUAL PROJECT SCROLLER
===================================================== */

.projects-slider {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 10px 0 25px;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}

.projects-slider::-webkit-scrollbar {
    display: none;
}


/* =====================================================
   PROJECT TRACK
===================================================== */

.projects-track {
    display: flex;
    flex-wrap: nowrap;

    gap: 22px;

    width: max-content;

    padding-left: max(
        24px,
        calc((100vw - 1200px) / 2)
    );

    padding-right: 24px;
}


/* =====================================================
   PROJECT CARD
===================================================== */

.project-card {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 330px;
    min-width: 330px;

    flex: 0 0 330px;

    overflow: hidden;

    scroll-snap-align: start;

    text-decoration: none;

    border: 1px solid rgba(201, 164, 92, .20);

    border-radius: 10px 30px 10px 30px;

    background:
        linear-gradient(
            145deg,
            rgba(24, 28, 34, .96),
            rgba(7, 11, 16, .99)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .35),
        0 0 20px rgba(201, 164, 92, .04);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.project-card:hover {
    transform: translateY(-7px);

    border-color: rgba(201, 164, 92, .62);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .48),
        0 0 28px rgba(201, 164, 92, .12);
}


/* =====================================================
   PROJECT IMAGE
===================================================== */

.project-card-image {
    position: relative;

    width: 100%;
    height: 245px;

    overflow: hidden;

    background: #11161c;
}

.project-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform .6s ease,
        filter .6s ease;
}

.project-card:hover
.project-card-image img {
    transform: scale(1.05);
}


/* =====================================================
   IMAGE DARK OVERLAY
===================================================== */

.project-card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .55)
        );

    pointer-events: none;
}


/* =====================================================
   PROJECT NUMBER
===================================================== */

.project-number {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(239, 210, 138, .45);

    border-radius: 50%;

    background: rgba(5, 9, 15, .68);

    backdrop-filter: blur(8px);

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
}


/* =====================================================
   PROJECT INFORMATION
===================================================== */

.project-card-content {
    display: flex;
    flex-direction: column;

    min-height: 205px;

    padding: 25px 24px 23px;
}

.project-category {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .18em;
}

.project-card-content h3 {
    margin-top: 10px;

    color: #f5f1e8;

    font-size: 25px;
    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -.035em;
}

.project-card-content p {
    margin-top: 7px;

    color: #8f9aa7;

    font-size: 12px;
}


/* =====================================================
   VIEW PROJECT
===================================================== */

.project-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: auto;
    padding-top: 19px;

    border-top: 1px solid rgba(201, 164, 92, .14);

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-view-button span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border: 1px solid rgba(201, 164, 92, .30);

    border-radius: 50%;

    font-size: 15px;

    transition:
        background .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.project-card:hover
.project-view-button span {
    background: var(--gold);

    border-color: var(--gold);

    color: #080909;

    transform: translate(2px, -2px);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .projects-section {
        padding: 80px 0 65px;
    }

    .projects-heading {
        margin-bottom: 40px;
    }

    .projects-heading h2 {
        font-size: 39px;
    }

    .projects-heading p {
        font-size: 12px;
        line-height: 1.7;
    }

    .projects-track {
        gap: 16px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .project-card {
        width: 275px;
        min-width: 275px;

        flex-basis: 275px;

        border-radius: 8px 24px 8px 24px;
    }

    .project-card-image {
        height: 205px;
    }

    .project-card-content {
        min-height: 185px;

        padding: 21px 20px 20px;
    }

    .project-card-content h3 {
        font-size: 22px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .projects-section {
        padding: 70px 0 55px;
    }

    .projects-heading h2 {
        font-size: 34px;
    }

    .projects-track {
        gap: 13px;

        padding-left: 14px;
        padding-right: 14px;
    }

    .project-card {
        width: 245px;
        min-width: 245px;

        flex-basis: 245px;
    }

    .project-card-image {
        height: 185px;
    }

    .project-card-content {
        min-height: 175px;

        padding: 19px 18px;
    }

    .project-card-content h3 {
        font-size: 20px;
    }

}

/* =====================================================
   PROJECT DETAIL PAGE
===================================================== */

.project-page {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201, 164, 92, .08),
            transparent 48%
        ),
        #05090f;

    color: #f5f1e8;
}


.project-detail-section {
    padding: 80px 0 100px;
}


/* =====================================================
   BACK TO PROJECTS
===================================================== */

.project-back {
    display: inline-flex;
    align-items: center;

    margin-bottom: 45px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;
}

.project-back:hover {
    color: #f5f1e8;

    transform: translateX(-4px);
}


/* =====================================================
   PROJECT HEADING
===================================================== */

.project-detail-heading {
    max-width: 760px;

    margin-bottom: 50px;
}

.project-detail-heading .section-label {
    display: block;

    color: var(--gold);

    text-shadow: var(--gold-glow);
}

.project-detail-heading h1 {
    margin-top: 14px;

    color: #f5f1e8;

    font-size: clamp(42px, 6vw, 72px);

    line-height: .98;

    letter-spacing: -.05em;
}

.project-detail-heading p {
    max-width: 620px;

    margin-top: 22px;

    color: #9da7b3;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   PHOTO VIEWER
===================================================== */

.project-photo-viewer {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 20px 0;
}


/* =====================================================
   PHOTO CONTAINER
===================================================== */

.project-photo-container {
    position: relative;

    width: min(850px, 82vw);
    height: min(570px, 62vw);

    min-height: 350px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 164, 92, .28);

    border-radius: 12px 35px 12px 35px;

    background:
        linear-gradient(
            145deg,
            rgba(24, 28, 34, .96),
            rgba(7, 11, 16, .99)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .45),
        0 0 35px rgba(201, 164, 92, .06);
}


/* =====================================================
   PROJECT PHOTO
===================================================== */

.project-photo-container img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #080b0f;

    transition:
        opacity .25s ease;
}


/* =====================================================
   PHOTO COUNTER
===================================================== */

.project-photo-counter {
    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 9px 14px;

    border: 1px solid rgba(201, 164, 92, .30);

    border-radius: 30px;

    background: rgba(5, 9, 15, .78);

    backdrop-filter: blur(10px);

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
}


/* =====================================================
   PREVIOUS / NEXT BUTTONS
===================================================== */

.project-photo-arrow {
    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 164, 92, .35);

    border-radius: 50%;

    background:
        rgba(12, 16, 21, .90);

    color: var(--gold-light);

    font-family: inherit;

    font-size: 32px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.project-photo-arrow:hover {
    transform: scale(1.08);

    background: var(--gold);

    border-color: var(--gold);

    color: #080909;

    box-shadow:
        0 0 20px rgba(201, 164, 92, .30);
}

.project-photo-arrow:active {
    transform: scale(.96);
}


/* =====================================================
   PROJECT INFORMATION
===================================================== */

.project-detail-info {
    max-width: 720px;

    margin: 65px auto 0;

    padding-top: 35px;

    border-top: 1px solid rgba(201, 164, 92, .15);
}

.project-detail-info .section-label {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .2em;
}

.project-detail-info h2 {
    margin-top: 12px;

    color: #f5f1e8;

    font-size: clamp(27px, 4vw, 40px);

    line-height: 1.05;

    letter-spacing: -.04em;
}

.project-detail-info p {
    margin-top: 18px;

    color: #9da7b3;

    font-size: 13px;

    line-height: 1.85;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .project-detail-section {
        padding: 60px 0 75px;
    }

    .project-back {
        margin-bottom: 35px;
    }

    .project-detail-heading {
        margin-bottom: 35px;
    }

    .project-detail-heading h1 {
        font-size: 42px;
    }

    .project-detail-heading p {
        font-size: 12px;
    }

    .project-photo-viewer {
        gap: 8px;
    }

    .project-photo-container {
        width: calc(100vw - 105px);
        height: 65vw;

        min-height: 260px;

        border-radius: 9px 25px 9px 25px;
    }

    .project-photo-arrow {
        width: 43px;
        height: 43px;

        font-size: 27px;
    }

    .project-photo-counter {
        right: 12px;
        bottom: 12px;

        padding: 7px 11px;
    }

    .project-detail-info {
        margin-top: 50px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .project-detail-section {
        padding-top: 45px;
    }

    .project-detail-heading h1 {
        font-size: 35px;
    }

    .project-photo-container {
        width: calc(100vw - 88px);
        height: 64vw;

        min-height: 220px;
    }

    .project-photo-arrow {
        width: 36px;
        height: 36px;

        font-size: 24px;
    }

}

   /* =====================================================
   SOCIAL MEDIA BUTTONS
===================================================== */

.social-links {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 28px;
}


/* =====================================================
   SOCIAL BUTTON
===================================================== */

.social-button {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(245, 241, 232, .22);

    border-radius: 50%;

    background: transparent;

    color: #f5f1e8;

    text-decoration: none;

    font-size: 29px;

    transition:
        color .3s ease,
        border-color .3s ease,
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


/* =====================================================
   ICON
===================================================== */

.social-button i {
    display: block;

    line-height: 1;
}


/* =====================================================
   HOVER
===================================================== */

.social-button:hover {
    color: var(--gold-light);

    border-color: rgba(201, 164, 92, .65);

    background: rgba(201, 164, 92, .06);

    transform: translateY(-4px);

    box-shadow:
        0 0 22px rgba(201, 164, 92, .12);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .social-links {
        gap: 13px;
    }

    .social-button {
        width: 58px;
        height: 58px;

        font-size: 23px;
    }

}

       /* =====================================================
   VIEW PORTFOLIO — GOLD PILL BUTTON
===================================================== */

.board-portfolio-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    min-height: 58px;

    margin-top: 14px;
    padding: 15px 28px;

    box-sizing: border-box;

    border: none;
    border-radius: 999px;

    background: #d6b15f;

    color: #080909;

    font-size: 15px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


/* ARROW */

.board-portfolio-button span {
    display: inline-flex;

    font-size: 17px;
    line-height: 1;

    transition:
        transform .3s ease;
}


/* HOVER */

.board-portfolio-button:hover {
    background: #e2c477;

    color: #080909;

    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(201, 164, 92, .22);
}


.board-portfolio-button:hover span {
    transform: translate(3px, -3px);
}


/* CLICK */

.board-portfolio-button:active {
    transform: translateY(0);

    box-shadow:
        0 5px 15px rgba(201, 164, 92, .15);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .board-portfolio-button {
        min-height: 52px;

        padding: 14px 22px;

        font-size: 13px;
    }

    .board-portfolio-button span {
        font-size: 15px;
    }

}

   /* =====================================================
   FLOATING WHATSAPP BUTTON
===================================================== */

.floating-whatsapp {
    position: fixed;

    left: 22px;
    bottom: 25px;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    border-radius: 50%;

    background: #25D366;

    color: #ffffff;

    text-decoration: none;

    font-size: 28px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .35);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* HOVER */

.floating-whatsapp:hover {

    transform: scale(1.08);

    box-shadow:
        0 10px 30px rgba(37, 211, 102, .35);
}


/* CLICK */

.floating-whatsapp:active {
    transform: scale(.96);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .floating-whatsapp {

        left: 16px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        font-size: 25px;
    }

}
