:root {
    --bg: #0e1414;
    --ink: #0c2a2b;
    --ink-2: #164545;
    --accent: #ffff7e7;
    --shadow: 11px 9px 33px #201b1b;
    --radius: 16px;
    --radius-lg: 28px;
    --plat: #e3e3e3;

    /* warm gold */
    --accent-2: #ffd88b;

    /* light gold */
    --fg: #f7f5ef;
    --muted: #b9c4c4;
    --card: #111819;
    --glass: rgba(255,255,255,.08);
    --max: 1200px;
}

/* * {
    box-sizing: border-box;
    margin-top: 23px;
} */
html,
body {
    margin: 0;
}

body {
    font-family: Commissioner,Arial,sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--primary);
}

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

align-content: {
}

/* UTIL */
.container {
    max-width: var(--max);
    padding: 0 22px;
    margin-inline: auto;
    box-shadow: var(--sha);
}

.btn {
    padding: 12px 22px;
    border-radius: 999px;
    border: 2px solid var(--Soft_warm);
    font-weight: 400;
    cursor: pointer;
    transition: .25s;
    color: var(--Soft_warm);
}

.btn.ghost {
    background: transparent;
    color: var(--fg);
    border-color: var(--accent);
}

.btn.ghost:hover {
    background: var(--glass);
}

.btn.pill.sm {
    padding: 8px 14px;
}

.btn.primary:hover {
    filter: brightness(.95);
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: primary;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background-color: var(--primary);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--fg);
    font-weight: 800;
    letter-spacing: .3px;
     text-decoration: none;
}

.brand img {
    height: 70px;
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    text-transform: capitalize;
}

.nav-link {
    color: var(--fg);
    opacity: .9;
}

.nav-link:hover {
    opacity: 1;
}

/* --- MOBILE BURGER NAV (OFF-CANVAS) --- */
/* Slide-in menu + overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(120%);
    box-shadow: -2px 0 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    transition: right 0.35s ease;
    z-index: 998;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--fg);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0.9;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.mobile-menu a:hover {
    opacity: 1;
    color: var(--accent);
    text-shadow: 0 0 6px rgba(255, 201, 96, 0.4);
}

.mobile-menu .btn {
    background: var(--accent);
    color: var(--Soft_warm);
    border: 1px solid var(--accent);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 201, 96, 0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu .btn:hover {
    background: var(--accent-2);
    box-shadow: 0 0 28px rgba(255, 216, 139, 0.35);
}

/* Overlay behind menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 997;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    margin-right: 10px;
}

.burger span {
    display: block;
    height: 3px;
    background: var(--fg);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animate burger into X */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Show burger on mobile */
@media (max-width: 900px) {
    .burger {
        display: flex;
    }

    .nav-actions,
    .nav-buttons {
        display: none;
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-weight: 800;
    font-size: clamp(2.6rem, 2rem + 3vw, 5rem);
    line-height: 1.05;
    letter-spacing: .5px;
}

.hero-title span {
    background: linear-gradient(90deg, var(--Soft_warm), var(--Soft_warm));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    max-width: 64ch;
    margin: 14px auto 50px;
    color: var(--muted);
}

.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.kpis {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.kpi {
    background: var(--glass);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 12px 16px;
    text-align: center;
    min-width: 150px;
}

.kpi .num {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--accent);
}

/* Aura */
@keyframes aura{
    0% {
        transform: scale(1) translate(0,0);
    }

    100% {
        transform: scale(1.15) translate(2%, -1%);
    }
}

/* Parallax layers: 1=waterfront, 2=highrise, 3=green lifestyle */
.parallax {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .35;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
}

/* .layer-back {
    background-image: url('https://images.unsplash.com/photo-1505731129339-95f027854f88?auto=format&fit=crop&w=2000&q=80');
}

/* marina / waterfront */
.layer-mid {
    background-image: url('https://images.unsplash.com/photo-1449157291145-7efd050a4d0e?auto=format&fit=crop&w=2000&q=80');
    mix-blend-mode: screen;
    opacity: .28;
}

*/

/* highrise city */
.layer-front {
    background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?auto=format&fit=crop&w=2000&q=80');
    opacity: .25;
}

/* green / lake */
/* Floating shapes */
.float {
    position: absolute;
    z-index: 2;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255,201,96,.22), rgba(255,255,255,.02));
    border: 1px solid rgba(255,201,96,.25);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.f1 {
    width: 120px;
    height: 120px;
    left: 8%;
    top: 16%;
    animation: float 8s ease-in-out infinite;
}

.f2 {
    width: 90px;
    height: 90px;
    right: 12%;
    top: 22%;
    animation: float 10s ease-in-out infinite reverse;
}

.f3 {
    width: 140px;
    height: 140px;
    left: 16%;
    bottom: 10%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float{
    0% {
        transform: translateY(0);
    }

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

    100% {
        transform: translateY(0);
    }
}

/* Section headings + gold divider */
font-size {
}

.section-head h2 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--accent);
    text-transform: uppercase;
}

.section-head h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--Soft_warm);
    margin-top: 8px;
    border-radius: 2px;
}

/* FOUNDER */
.founder {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;

    /* margin: 80px auto; */
}

.founder-img {
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.1);
}

.founder h2 {
    font-size: 2rem;
    margin: 0;
}

.founder .role {
    color: var(--accent);
    font-weight: 700;
    margin: .2rem 0 .6rem;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags span {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.15);
    background: var(--glass);
    font-weight: 700;
}

/* WORK */
/* .work h2,
.team h2,
.contact h2 {
    font-size: 2rem;
    margin: 0 0 14px;
} */
.grid {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 25px;
    margin-top: 20px;
}

.tile {
    grid-column: span 6;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--primary);
    border: 1px solid #e8edf4;
    margin: 0px;
    padding-top: 0px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 11px 9px 33px #201b1b;
}

.tile .tile-bg {
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-position: center top;
    opacity: .28;
    transform: scale(1);
    transition: transform .6s ease;
    background-attachment: scroll;
    background-size: cover;
}

.tile:hover .tile-bg {
    transform: scale(1.06);
}

.tile h3 {
    position: relative;
    margin: 18px;
    color: var(--accent);
}

.tile p {
    position: relative;
    margin: 0 18px 18px;
    color: var(--muted);
}

/* TEAM CAROUSEL */
.team .carousel {
    position: relative;
    overflow: hidden;
}

.team .track {
    display: flex;
    gap: 16px;
    transition: transform .6s ease;
    will-change: transform;
}

.team .card {
    min-width: calc((100% - 32px)/3);
    background: var(--primary);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
}

.team .card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--fg);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.car-btn:hover {
    background: rgba(255,255,255,.12);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* ***********************************************8proposition */
.cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.card {
    grid-column: span 4;
    background: var(--primary);
    border: 1px solid #e8edf4;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 11px 9px 33px #201b1b;
    transition: transform .18s ease;
    color: white;
}

/* ***********************************************How we work */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    background: var(--primary);
    border: 1px solid #e8edf4;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 11px 9px 33px #201b1b;
}

.step h3 {
    color: var(--accent);
    margin-bottom: 20px;
}

.step .num {
    color: var(--accent);
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sand);
    border: 1px solid #ecdcc0;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ******************************************** CONTACT */
/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

form {
    /* background: var(--white); */
    border: 1px solid #e8edf4;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

label {
    display: block;
    font-weight: 600;
    margin: 10px 0 6px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d9e2ef;
    border-radius: 10px;
    outline: none;
    font: inherit;
    background: #fbfdff;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.small {
    font-size: .9rem;
    color: var(--slate);
}

.status {
    margin-top: 10px;
    font-size: .95rem;
}

/* Footer */
footer {
    padding: 28px 0 60px;
    color: var(--slate);
    font-size: .95rem;
}

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

    .cards .card {
        grid-column: span 6;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 640px){
    .cards .card {
        grid-column: span 12;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-card {
    background: var(--primary);
    border: 1px solid #e8edf4;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 28px;
}

.contact form {
    /* background: var(--Soft_warm); */
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 18px;
}

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

input,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: var(--Soft_warm);
    color: var(--primary);
    font: inherit;
}

textarea {
    min-height: 140px;
}

.consent {
    display: flex;
    gap: 8px;
    margin: 10px 0;
    color: var(--muted);
}

.status {
    margin-top: 8px;
}

.download-btn {
    padding: 12px 22px;
    margin-top: 0 auto;
    border-radius: 999px;
    border: 2px solid var(--Soft_warm);
    font-weight: 400;
    cursor: pointer;
    transition: .25s;
    color: var(--Soft_warm);
    min-width: 50%;
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    text-decoration: none;
}

.download-btn:hover {
    background-color: var(--Soft_warm);
    color: var(--primary);
}

/* FOOTER */
.footer {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 28px 0 60px;
    margin-top: 60px;
}

.foot-brand {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
}

.foot-brand img {
    height: 22px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width:999px){
    .team .card {
        min-width: calc((100% - 16px)/2);
    }

    .tile {
        grid-column: span 12;
    }

    .founder {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width:599px){
    .team .card {
        min-width: 100%;
    }

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

#work {
    margin-top: 55px;
}

.section-head h3 {
    margin-bottom: 25px;
    text-transform: capitalize;
}

section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.founder-copy {
    line-height: 30px;
}

p {
    line-height: 30px;
}

article.card h3 {
    color: var(--accent);
    margin-bottom: 20px;
}

#contact {
    box-shadow: var(--shad);
}

.corp-info {
    display: flex;
    flex-direction: column;
}
