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

html {
    scroll-behavior: smooth;
}

:root {
    /* Sky Blue Light Theme */
    --sky: #3DA5D9;
    --sky-deep: #1E6FA8;
    --sky-darker: #145080;
    --sky-light: #7EC4E8;
    --sky-pale: #E6F3FB;
    --sky-mist: #F4FAFD;

    --white: #FFFFFF;
    --off-white: #FBFCFD;
    --cloud: #F4F7FA;
    --mist: #ECF1F6;

    --ink: #0B1727;
    --ink-soft: #1A2B40;
    --slate: #3D4C5E;
    --slate-mid: #5A6A7E;
    --slate-light: #8597AA;

    --border: rgba(30, 111, 168, 0.14);
    --border-strong: rgba(30, 111, 168, 0.30);
    --shadow: 0 14px 48px rgba(20, 80, 128, 0.10);
    --shadow-soft: 0 4px 18px rgba(20, 80, 128, 0.06);
    --shadow-strong: 0 22px 60px rgba(20, 80, 128, 0.18);

    /* Aliases for component compatibility */
    --primary: var(--sky-deep);
    --accent: var(--sky);
}

body {
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.55;
}

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

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

button {
    font-family: inherit;
}

/* ══ PRELOADER ══ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .5s ease-out, visibility .5s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 52px;
    height: 52px;
    border: 3px solid var(--sky-pale);
    border-top-color: var(--sky-deep);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ══ NAV ══ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px clamp(20px, 5vw, 60px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}

nav.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgba(20, 80, 128, .06);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .02em;
    box-shadow: 0 6px 16px rgba(30, 111, 168, .25);
}

.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-brand .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-brand .logo-text .name {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--ink);
    text-transform: uppercase;
}

.nav-brand .logo-text .tag {
    font-family: 'EB Garamond', serif;
    font-size: 11px;
    font-style: italic;
    color: var(--sky-deep);
    letter-spacing: .04em;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--slate);
    font-weight: 600;
    transition: color .2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--sky-deep);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sky-deep);
}

.nav-cta {
    background: var(--sky-deep) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 999px;
    font-family: 'Cinzel', serif;
    transition: all .3s !important;
    box-shadow: 0 6px 18px rgba(30, 111, 168, .25);
}

.nav-cta:hover {
    background: var(--sky-darker) !important;
    transform: translateY(-1px);
}

/* Dropdown */
.nav-item-has-dropdown {
    position: relative;
}

.nav-item-has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item-has-dropdown > a::after {
    content: '▾';
    font-size: 8px;
    margin-top: 1px;
    transition: transform .2s;
}

.nav-item-has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    box-shadow: var(--shadow-strong);
    z-index: 100;
    list-style: none;
    margin-top: 8px;
}

.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    rotate: 45deg;
}

.nav-dropdown li {
    margin: 0;
    padding: 0;
}

.nav-dropdown a {
    display: block !important;
    padding: 10px 22px !important;
    font-size: 11px !important;
    letter-spacing: .15em !important;
    text-transform: uppercase !important;
    color: var(--slate) !important;
    font-weight: 600 !important;
    transition: all .15s !important;
    white-space: nowrap;
    border: 0 !important;
}

.nav-dropdown a:hover {
    background: var(--sky-pale) !important;
    color: var(--sky-deep) !important;
}

@media (max-width: 992px) {
    .nav-item-has-dropdown > a::after {
        display: none;
    }
    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 16px;
        margin: 0;
        background: transparent;
        display: none;
        min-width: auto;
    }
    .nav-dropdown::before { display: none; }
    .nav-item-has-dropdown.open-mobile .nav-dropdown {
        display: block;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--ink);
    transition: all .3s;
    display: block;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══ BUTTONS ══ */
.btn {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: all .3s;
    cursor: pointer;
    border: 1.5px solid transparent;
    text-align: center;
    border-radius: 4px;
}

.btn-primary {
    background: var(--sky-deep);
    color: var(--white);
    border-color: var(--sky-deep);
    box-shadow: 0 8px 22px rgba(30, 111, 168, .22);
}

.btn-primary:hover {
    background: var(--sky-darker);
    border-color: var(--sky-darker);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(30, 111, 168, .28);
}

.btn-outline {
    background: transparent;
    color: var(--sky-deep);
    border-color: var(--sky-deep);
}

.btn-outline:hover {
    background: var(--sky-deep);
    color: var(--white);
}

.btn-ghost-light {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    border-color: rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
    background: var(--white);
    color: var(--sky-deep);
    border-color: var(--white);
}

.btn-wa {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-wa:hover {
    background: #1eb958;
    border-color: #1eb958;
}

/* ══ SECTION COMMON ══ */
section {
    position: relative;
}

.section {
    padding: 100px clamp(24px, 5vw, 60px);
}

.section-tight {
    padding: 70px clamp(24px, 5vw, 60px);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head.left {
    text-align: left;
    margin-left: 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--sky-deep);
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    height: 1px;
    width: 28px;
    background: var(--sky-deep);
    opacity: .6;
}

.section-head.left .section-label::before { display: none; }

.section-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.section-title em {
    color: var(--sky-deep);
    font-style: italic;
    font-weight: 500;
}

.section-sub {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--slate-mid);
    line-height: 1.7;
    margin-top: 18px;
}

/* ══ HERO ══ */
.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: 56% 44%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-mist) 0%, var(--white) 60%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 25%, rgba(61, 165, 217, .14) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(30, 111, 168, .10) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero-left {
    padding: 130px clamp(24px, 5vw, 70px) 80px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--sky-deep);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--sky-deep);
}

.hero-title {
    font-family: 'EB Garamond', serif;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 26px;
}

.hero-title .main {
    display: block;
    font-size: clamp(44px, 7vw, 90px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.hero-title .sub {
    display: block;
    font-style: italic;
    font-size: clamp(36px, 6vw, 78px);
    color: var(--sky-deep);
    font-weight: 400;
    margin-top: 4px;
}

.hero-tagline {
    font-family: 'EB Garamond', serif;
    font-size: clamp(17px, 1.6vw, 20px);
    color: var(--slate-mid);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero-stat .num {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--sky-deep);
    line-height: 1;
}

.hero-stat .lbl {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .25em;
    color: var(--slate-mid);
    text-transform: uppercase;
    margin-top: 8px;
}

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 110px 30px 80px;
}

.hero-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 38px 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-strong);
    position: relative;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--sky-deep));
    border-radius: 12px 12px 0 0;
}

.hform-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: .25em;
    color: var(--ink);
    text-transform: uppercase;
    margin-bottom: 6px;
    text-align: center;
}

.hform-sub {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--slate-mid);
    margin-bottom: 24px;
    text-align: center;
}

/* ══ FORM FIELDS ══ */
.form-group {
    margin-bottom: 16px;
}

/* ══ SANTIAGO-STYLE FORM (floating label, stagger, OTP) ══ */
.fg {
    position: relative;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(16px);
    animation: formFieldIn .45s ease forwards;
}
.fg:nth-child(1) { animation-delay: 0.05s; }
.fg:nth-child(2) { animation-delay: 0.12s; }
.fg:nth-child(3) { animation-delay: 0.19s; }
.fg:nth-child(4) { animation-delay: 0.26s; }
.fg:nth-child(5) { animation-delay: 0.33s; }
@keyframes formFieldIn {
    to { opacity: 1; transform: none; }
}

.fg input,
.fg select {
    width: 100%;
    padding: 16px 14px 6px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}
.fg select { padding: 16px 14px 6px; cursor: pointer; }
.fg input:focus,
.fg select:focus {
    border-color: var(--sky-deep);
    box-shadow: 0 0 0 3px rgba(30, 111, 168, .1);
}
.fg label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--slate-light);
    pointer-events: none;
    transition: all .2s ease;
    background: var(--white);
    padding: 0 4px;
    line-height: 1;
}
.fg input:focus + label,
.fg input:not(:placeholder-shown) + label,
.fg select:focus + label,
.fg select:not([value=""]) + label {
    top: 8px;
    transform: none;
    font-size: 10px;
    color: var(--sky-deep);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.fg select + label { top: 8px; transform: none; font-size: 10px; color: var(--slate-light); text-transform: uppercase; letter-spacing: .08em; }
.fg select:focus + label { color: var(--sky-deep); }

.otp-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 8px;
}
.otp-row input {
    width: 44px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-family: 'Hanken Grotesk', sans-serif;
    outline: none;
    transition: border-color .25s;
}
.otp-row input:focus {
    border-color: var(--sky-deep);
    box-shadow: 0 0 0 3px rgba(30, 111, 168, .1);
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--sky-deep);
    color: var(--white);
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    margin-top: 8px;
    border-radius: 8px;
}
.btn-submit:hover {
    background: var(--sky-darker);
    transform: translateY(-1px);
}
.btn-outline-form {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--sky-deep);
    border: 1px solid var(--border-strong);
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    margin-top: 6px;
    border-radius: 8px;
}
.btn-outline-form:hover {
    border-color: var(--sky-deep);
    background: rgba(30, 111, 168, .04);
}

.form-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 28px 28px;
    box-shadow: 0 14px 48px rgba(20, 80, 128, .10);
    position: relative;
    overflow: hidden;
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--sky-deep));
}
.form-card .ftitle {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: .25em;
    color: var(--ink);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4px;
}
.form-card .fsub {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--slate-mid);
    text-align: center;
    margin-bottom: 22px;
}

/* Old form styles (kept for compatibility during transition) */
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--slate-mid);
    margin-bottom: 6px;
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    background: var(--off-white);
    color: var(--ink);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    outline: none;
    border-radius: 6px;
    transition: all .25s;
}
.form-group textarea {
    resize: vertical;
    min-height: 110px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sky-deep);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 111, 168, .12);
}
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--sky-deep);
    color: var(--white);
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    margin-top: 8px;
    border-radius: 6px;
}
.form-submit:hover {
    background: var(--sky-darker);
    transform: translateY(-1px);
}

/* ══ ABOUT (Two-col) ══ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--white);
    overflow: hidden;
}

.about-img {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

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

.about-img .badge {
    position: absolute;
    bottom: 26px;
    left: 26px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-img .badge .num {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--sky-deep);
    line-height: 1;
}

.about-img .badge .txt {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .25em;
    color: var(--slate-mid);
    text-transform: uppercase;
    line-height: 1.5;
    max-width: 110px;
}

.about-content {
    padding: 90px clamp(24px, 5vw, 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.about-text {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    color: var(--slate-mid);
    line-height: 1.85;
    margin-top: 22px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 32px;
}

.about-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-point .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sky-pale);
    color: var(--sky-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.about-point .ptxt {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.5;
}

/* ══ PROJECTS GRID ══ */
.projects-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--sky-mist);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--sky-light);
}

.project-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.165, .84, .44, 1);
}

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

.project-status {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--sky-deep);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.project-status.ongoing { background: var(--sky-deep); color: var(--white); }
.project-status.completed { background: #2BAE66; color: var(--white); }
.project-status.upcoming { background: #F5A524; color: var(--white); }

.project-body {
    padding: 26px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-loc {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .25em;
    color: var(--sky-deep);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.project-name {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}

.project-desc {
    font-size: 14px;
    color: var(--slate-mid);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 18px;
}

.project-meta .item {
    display: flex;
    flex-direction: column;
}

.project-meta .item .lbl {
    font-family: 'Cinzel', serif;
    font-size: 8px;
    letter-spacing: .25em;
    color: var(--slate-light);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.project-meta .item .val {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.project-link {
    align-self: flex-start;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--sky-deep);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .25s;
}

.project-link:hover {
    gap: 14px;
}

/* ══ FILTERS (Projects page) ══ */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--border-strong);
    color: var(--slate);
    padding: 10px 22px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 600;
    transition: all .25s;
}

.filter-btn:hover {
    border-color: var(--sky-deep);
    color: var(--sky-deep);
}

.filter-btn.active {
    background: var(--sky-deep);
    border-color: var(--sky-deep);
    color: var(--white);
}

/* ══ WHY US ══ */
.why-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, var(--sky-pale), transparent);
    transition: height .4s;
    z-index: 0;
}

.why-card:hover {
    border-color: var(--sky-light);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.why-card:hover::before {
    height: 100%;
}

.why-card > * {
    position: relative;
    z-index: 1;
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(30, 111, 168, .25);
}

.why-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    color: var(--slate-mid);
    line-height: 1.7;
}

/* ══ STATS ══ */
.stats-section {
    padding: 70px clamp(24px, 5vw, 60px);
    background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-darker) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .08) 0%, transparent 40%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.stat-item .num {
    font-family: 'EB Garamond', serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.stat-item .num em {
    font-style: normal;
    color: var(--sky-light);
}

.stat-item .lbl {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    margin-top: 12px;
}

/* ══ TESTIMONIALS ══ */
.testi-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--sky-mist);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    transition: all .35s;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testi-card::before {
    content: '“';
    position: absolute;
    top: -16px;
    left: 26px;
    font-family: 'EB Garamond', serif;
    font-size: 80px;
    color: var(--sky-light);
    line-height: 1;
    opacity: .7;
}

.testi-text {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 22px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 14px;
}

.testi-author .name {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
}

.testi-author .role {
    font-size: 12px;
    color: var(--slate-mid);
    margin-top: 2px;
}

.testi-stars {
    color: #F5A524;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* ══ CTA STRIP ══ */
.cta-strip {
    padding: 70px clamp(24px, 5vw, 60px);
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta-strip .cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-strip h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 600;
}

.cta-strip h2 em {
    color: var(--sky-deep);
    font-style: italic;
}

.cta-strip p {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    color: var(--slate-mid);
    margin-bottom: 30px;
    font-style: italic;
}

.cta-strip .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ══ FOOTER ══ */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .82);
    padding: 70px clamp(24px, 5vw, 60px) 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-col .ftr-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-col .ftr-brand .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
}

.footer-col .ftr-brand .name {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: .14em;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 11px;
}

.footer-col ul a {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    transition: color .2s;
}

.footer-col ul a:hover {
    color: var(--sky-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

.footer-contact-item .ico {
    color: var(--sky-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .8);
    transition: all .25s;
}

.social-row a:hover {
    background: var(--sky-deep);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
}

.footer-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin-top: 18px;
    text-align: justify;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* ══ POPUP ══ */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(11, 23, 39, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-box {
    background: var(--white);
    border-radius: 14px;
    max-width: 460px;
    width: 100%;
    padding: 40px 36px 36px;
    position: relative;
    animation: popIn .35s cubic-bezier(.34, 1.56, .64, 1) both;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--sky-deep));
    border-radius: 14px 14px 0 0;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(.92) translateY(20px); }
    to { opacity: 1; transform: none; }
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 26px;
    cursor: pointer;
    color: var(--slate-light);
    background: none;
    border: none;
    line-height: 1;
    transition: color .2s;
}

.popup-close:hover {
    color: var(--ink);
}

.popup-title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: .25em;
    color: var(--ink);
    text-transform: uppercase;
    margin-bottom: 4px;
    text-align: center;
}

.popup-sub {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--slate-mid);
    margin-bottom: 24px;
    text-align: center;
}

/* ══ FLOATING CALL ══ */
.call-float {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: var(--sky-deep);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(30, 111, 168, .4);
    z-index: 998;
    transition: all .3s;
    text-decoration: none;
}
.call-float:hover {
    transform: scale(1.08);
    background: var(--sky-darker);
}
.call-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* ══ FLOATING WHATSAPP ══ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(37, 211, 102, .4);
    z-index: 998;
    transition: all .3s;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #1eb958;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* ══ REVEAL ══ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all .7s ease;
}

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

/* ════════════════════════════════════════════════ */
/*                INNER PAGE HERO                  */
/* ════════════════════════════════════════════════ */
.page-hero {
    padding: 160px clamp(24px, 5vw, 60px) 80px;
    background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-darker) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .08) 0%, transparent 45%),
        radial-gradient(circle at 75% 70%, rgba(126, 196, 232, .14) 0%, transparent 45%);
    pointer-events: none;
}

.page-hero .crumbs {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .3em;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
}

.page-hero .crumbs a {
    color: var(--sky-light);
    transition: color .2s;
}

.page-hero .crumbs a:hover {
    color: var(--white);
}

.page-hero h1 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 18px;
    position: relative;
    letter-spacing: -0.01em;
}

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

.page-hero .lede {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, .85);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

/* ════════════════════════════════════════════════ */
/*                ABOUT PAGE                       */
/* ════════════════════════════════════════════════ */
.story-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-strong);
}

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

.story-content h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--ink);
    margin: 12px 0 20px;
    line-height: 1.15;
    font-weight: 600;
}

.story-content h2 em {
    color: var(--sky-deep);
    font-style: italic;
}

.story-content p {
    font-size: 15px;
    color: var(--slate-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.story-content p:first-of-type {
    font-family: 'EB Garamond', serif;
    font-size: 19px;
    font-style: italic;
    color: var(--slate);
}

/* Vision/Mission cards */
.vm-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--sky-mist);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-card {
    background: var(--white);
    padding: 50px 42px;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all .35s;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--sky-light);
}

.vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 26px;
    box-shadow: 0 10px 22px rgba(30, 111, 168, .25);
}

.vm-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 30px;
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 600;
}

.vm-card p {
    font-size: 15px;
    color: var(--slate-mid);
    line-height: 1.85;
}

/* Timeline / Milestones */
.timeline-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background: var(--border-strong);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 44px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 21px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--sky-deep);
    box-shadow: 0 0 0 6px var(--sky-pale);
}

.timeline-year {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: .25em;
    color: var(--sky-deep);
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-item h4 {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-item p {
    font-size: 14px;
    color: var(--slate-mid);
    line-height: 1.7;
}

/* Team */
.team-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--sky-mist);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .35s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.team-photo {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--cloud);
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

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

.team-info {
    padding: 22px 20px 26px;
}

.team-name {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--sky-deep);
    font-weight: 600;
}

/* ════════════════════════════════════════════════ */
/*                GALLERY PAGE                     */
/* ════════════════════════════════════════════════ */
.gallery-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.gallery-grid {
    columns: 3;
    column-gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 0;
    padding: 0;
    background: var(--cloud);
    width: 100%;
    display: block;
    box-shadow: var(--shadow-soft);
    transition: all .35s;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .8s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11, 23, 39, .8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
    opacity: 0;
    transition: opacity .35s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .cap {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 4px;
}

.gallery-item .ttl {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 600;
}

/* ════════════════════════════════════════════════ */
/*                BREADCRUMB                       */
/* ════════════════════════════════════════════════ */
.breadcrumb {
    max-width: 1280px;
    margin: 100px auto 0;
    padding: 16px clamp(24px, 5vw, 60px) 0;
}
.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 13px;
    letter-spacing: .3px;
}
.breadcrumb ol li + li::before {
    content: "›";
    color: var(--slate-mid);
    margin-right: 8px;
}
.breadcrumb a {
    color: var(--sky-deep);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb [aria-current="page"] {
    color: var(--slate-mid);
}

/* ════════════════════════════════════════════════ */
/*                FAQ SECTION                      */
/* ════════════════════════════════════════════════ */
.faq-section {
    padding: 70px clamp(24px, 5vw, 60px);
    background: var(--cloud);
}
.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-section h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--ink);
    text-align: center;
    margin-bottom: 36px;
    font-weight: 600;
}
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow .3s ease;
}
.faq-item[open] {
    box-shadow: var(--shadow);
}
.faq-item summary {
    padding: 18px 24px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink-soft);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    font-size: 20px;
    color: var(--sky-deep);
    font-weight: 400;
    transition: transform .3s ease;
}
.faq-item[open] summary::after {
    content: "−";
}
.faq-item p {
    padding: 0 24px 18px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate);
}

/* ════════════════════════════════════════════════ */
/*                BLOG PAGE                        */
/* ════════════════════════════════════════════════ */
.blog-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--sky-light);
}

.blog-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--sky-deep);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
}

.blog-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--slate-mid);
    margin-bottom: 12px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-card p {
    font-size: 14px;
    color: var(--slate-mid);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.blog-link {
    align-self: flex-start;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--sky-deep);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .25s;
}

.blog-link:hover {
    gap: 14px;
}

/* ════════════════════════════════════════════════ */
/*                CONTACT PAGE                     */
/* ════════════════════════════════════════════════ */
.contact-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(28px, 3.2vw, 40px);
    color: var(--ink);
    margin: 12px 0 16px;
    line-height: 1.15;
    font-weight: 600;
}

.contact-info h2 em {
    color: var(--sky-deep);
    font-style: italic;
}

.contact-info > p {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    color: var(--slate-mid);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-info h3 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(28px, 3.2vw, 40px);
    color: var(--ink);
    margin: 0 0 16px;
    line-height: 1.15;
    font-weight: 600;
}
.contact-info h3 em {
    color: var(--sky-deep);
    font-style: italic;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}
.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.detail-icon {
    font-size: 22px;
    line-height: 1.4;
    flex-shrink: 0;
}
.detail-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 2px;
    font-weight: 600;
}
.detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    display: block;
}
.detail-text:hover { color: var(--sky-deep); }
.contact-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.contact-btns .btn { flex: 1; text-align: center; padding: 14px 20px; font-size: 15px; }

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.c-card {
    padding: 22px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--sky-mist);
    transition: all .3s;
}

.c-card:hover {
    background: var(--white);
    border-color: var(--sky-light);
    box-shadow: var(--shadow-soft);
}

.c-card .ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--white);
    color: var(--sky-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-soft);
}

.c-card .lbl {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--slate-mid);
    margin-bottom: 6px;
}

.c-card .val {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
    word-break: break-word;
}

.c-card .val a {
    color: inherit;
    transition: color .2s;
}

.c-card .val a:hover {
    color: var(--sky-deep);
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--sky-deep));
}

.contact-form-wrap h3 {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-form-wrap .sub {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--slate-mid);
    margin-bottom: 24px;
}

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

.map-section {
    padding: 0;
    background: var(--white);
}

.map-wrap {
    width: 100%;
    height: 460px;
    background: var(--cloud);
    overflow: hidden;
    position: relative;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}

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

.form-success .check-circ {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sky-pale);
    color: var(--sky-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    font-weight: 700;
}

.form-success h3 {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--slate-mid);
    font-size: 14px;
}

/* ════════════════════════════════════════════════ */
/*           PROJECT LANDING PAGE                  */
/* ════════════════════════════════════════════════ */

/* Cinematic Project Hero */
.proj-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: var(--white);
}

.proj-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.proj-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    background-size: cover;
    background-position: center;
}

.proj-hero-slide.active {
    opacity: 1;
}

.proj-hero-slides::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 23, 39, .35) 0%, rgba(11, 23, 39, .55) 50%, rgba(11, 23, 39, .85) 100%),
        linear-gradient(90deg, rgba(20, 80, 128, .28) 0%, transparent 60%);
    z-index: 1;
}

.proj-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 140px clamp(24px, 5vw, 70px) 80px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: end;
}

.proj-hero-content .crumbs {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .3em;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.proj-hero-content .crumbs a {
    color: var(--sky-light);
}

.proj-hero-content .crumbs a:hover { color: var(--white); }

.proj-hero-content .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 8px 16px;
    border-radius: 999px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
}

.proj-hero-content .pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2BAE66;
    box-shadow: 0 0 8px #2BAE66;
}

.proj-hero-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(44px, 7vw, 96px);
    font-weight: 500;
    line-height: .95;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.proj-hero-title em {
    font-style: italic;
    color: var(--sky-light);
    display: block;
    font-size: 0.55em;
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 0;
}

.proj-hero-tagline {
    font-family: 'EB Garamond', serif;
    font-size: clamp(17px, 1.6vw, 21px);
    font-style: italic;
    color: rgba(255, 255, 255, .9);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 30px;
}

.proj-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 36px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    margin-bottom: 30px;
}

.proj-hero-meta .m-item .lbl {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 6px;
}

.proj-hero-meta .m-item .val {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.proj-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Hero side-form (project) */
.proj-hero-form {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 32px 28px 28px;
    color: var(--ink);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
    position: relative;
    border: 1px solid rgba(255, 255, 255, .35);
}

.proj-hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--sky-deep));
    border-radius: 14px 14px 0 0;
}

.proj-hero-form .ftitle {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: .25em;
    color: var(--ink);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4px;
}

.proj-hero-form .fsub {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--slate-mid);
    text-align: center;
    margin-bottom: 22px;
}

/* Slide indicators */
.proj-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.proj-hero-dots .dot {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .3s;
    border: 0;
    padding: 0;
}

.proj-hero-dots .dot.active {
    background: var(--sky-light);
    width: 50px;
}

/* Sticky Quick Bar */
.proj-quickbar {
    position: sticky;
    top: 70px;
    z-index: 40;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px clamp(20px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 4px 16px rgba(20, 80, 128, .05);
}

.proj-quickbar-tabs {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.proj-quickbar-tabs a {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--slate-mid);
    font-weight: 600;
    transition: color .2s;
}

.proj-quickbar-tabs a:hover { color: var(--sky-deep); }

.proj-quickbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proj-quickbar-cta .price {
    font-family: 'EB Garamond', serif;
    color: var(--ink);
}

.proj-quickbar-cta .price .lbl {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--slate-light);
    display: block;
}

.proj-quickbar-cta .price .val {
    font-size: 20px;
    font-weight: 600;
    color: var(--sky-deep);
}

/* Project intro / overview */
.proj-overview {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.proj-overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.proj-overview-content h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(30px, 4vw, 48px);
    color: var(--ink);
    margin: 14px 0 22px;
    line-height: 1.12;
    font-weight: 600;
}

.proj-overview-content h2 em {
    color: var(--sky-deep);
    font-style: italic;
}

.proj-overview-content p {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    color: var(--slate-mid);
    line-height: 1.85;
    margin-bottom: 16px;
    font-style: italic;
}

.proj-overview-content p + p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-style: normal;
    font-size: 15px;
    color: var(--slate);
}

.proj-highlights {
    list-style: none;
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}

.proj-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--slate);
    line-height: 1.5;
}

.proj-highlights li::before {
    content: '✦';
    color: var(--sky-deep);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.proj-overview-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-strong);
}

.proj-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proj-overview-img .float-card {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.proj-overview-img .float-card .it .lbl {
    font-family: 'Cinzel', serif;
    font-size: 8px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--slate-light);
}

.proj-overview-img .float-card .it .val {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 4px;
}

/* Amenities Grid */
.proj-amenities {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--sky-mist);
    position: relative;
    overflow: hidden;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    background: var(--white);
    padding: 30px 22px;
    border-radius: 14px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all .35s cubic-bezier(.165, .84, .44, 1);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sky-pale), transparent);
    opacity: 0;
    transition: opacity .35s;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--sky-light);
}

.amenity-card:hover::before { opacity: 1; }

.amenity-card > * { position: relative; z-index: 1; }

.amenity-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    box-shadow: 0 8px 18px rgba(30, 111, 168, .25);
}

.amenity-card .name {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

/* Specs Tabs */
.proj-specs {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.specs-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.specs-tab {
    background: var(--white);
    border: 1px solid var(--border-strong);
    color: var(--slate);
    padding: 12px 22px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 600;
    transition: all .25s;
}

.specs-tab:hover { border-color: var(--sky-deep); color: var(--sky-deep); }
.specs-tab.active { background: var(--sky-deep); border-color: var(--sky-deep); color: var(--white); }

.specs-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--sky-mist);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
}

.specs-panel { display: none; }
.specs-panel.active { display: block; animation: fadeIn .4s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.specs-panel h3 {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 600;
    border-bottom: 2px solid var(--sky-light);
    padding-bottom: 10px;
}

.specs-panel ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.specs-panel ul li {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
    padding-left: 22px;
    position: relative;
}

.specs-panel ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--sky-deep);
    background: var(--white);
}

/* Floor Plans */
.proj-floorplans {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--sky-mist);
}

.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.fp-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .35s;
}

.fp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--sky-light);
}

.fp-img {
    aspect-ratio: 4/3;
    background: var(--cloud);
    overflow: hidden;
    position: relative;
}

.fp-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
    padding: 16px;
    transition: transform .6s;
}

.fp-card:hover .fp-img img { transform: scale(1.04); }

.fp-img .lock {
    position: absolute;
    inset: 0;
    background: rgba(11, 23, 39, .6);
    backdrop-filter: blur(6px);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s;
    cursor: pointer;
    text-align: center;
    padding: 20px;
}

.fp-card:hover .fp-img .lock { opacity: 1; }

.fp-img .lock .ic { font-size: 32px; margin-bottom: 8px; }
.fp-img .lock .tx {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.fp-body {
    padding: 22px 24px 26px;
    text-align: center;
}

.fp-body .label {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--sky-deep);
    margin-bottom: 6px;
}

.fp-body h4 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 8px;
}

.fp-body p {
    font-size: 13px;
    color: var(--slate-mid);
    margin-bottom: 16px;
}

/* Pricing/Configuration */
.proj-pricing {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--sky-deep), var(--sky-darker));
    color: var(--white);
}

.pricing-table th {
    padding: 18px 20px;
    text-align: left;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-table td {
    padding: 18px 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--ink);
}

.pricing-table tbody tr {
    transition: background .2s;
}

.pricing-table tbody tr:hover { background: var(--sky-mist); }

.pricing-table td.config {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--sky-deep);
}

.pricing-table td.price {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
}

.pricing-table .req-btn {
    background: var(--sky-deep);
    color: var(--white);
    border: 0;
    padding: 9px 18px;
    border-radius: 999px;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: all .25s;
}

.pricing-table .req-btn:hover {
    background: var(--sky-darker);
    transform: translateY(-1px);
}

.price-note {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: var(--slate-mid);
    font-size: 13px;
    margin-top: 22px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Project Gallery */
.proj-gallery-section {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--sky-mist);
}

.proj-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
}

.pg-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--cloud);
    box-shadow: var(--shadow-soft);
    transition: all .35s;
}

.pg-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s;
    display: block;
}

.pg-item:hover img { transform: scale(1.06); }

.pg-item.large { grid-column: span 8; aspect-ratio: 16 / 10; }
.pg-item.med { grid-column: span 4; aspect-ratio: 1; }
.pg-item.med-2 { grid-column: span 4; aspect-ratio: 4 / 5; }
.pg-item.wide { grid-column: span 6; aspect-ratio: 16 / 10; }
.pg-item.full { grid-column: span 12; aspect-ratio: 21 / 9; }

.uniform-gallery {
    grid-template-columns: repeat(4, 1fr) !important;
}
.uniform-gallery .pg-item {
    grid-column: span 1 !important;
    aspect-ratio: 1 / 1 !important;
}

/* Mobile gallery slideshow */
.gallery-slideshow-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}
.gallery-slideshow-controls button {
    background: var(--sky-deep);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: background .3s;
    line-height: 1;
}
.gallery-slideshow-controls button:hover {
    background: var(--sky-darker);
}
.gallery-slideshow-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}
.gallery-slideshow-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-light);
    border: none;
    cursor: pointer;
    transition: background .3s;
}
.gallery-slideshow-dots .dot.active {
    background: var(--sky-deep);
}

/* Mobile call button in header */
.nav-call-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--sky-deep);
    text-decoration: none;
    white-space: nowrap;
    padding: 7px 14px;
    border: 1.5px solid var(--sky-deep);
    border-radius: 6px;
    margin-right: 6px;
    order: 1;
    transition: background .3s, color .3s;
    line-height: 1;
}
.nav-call-mobile:hover {
    background: var(--sky-deep);
    color: #fff;
}

/* Landmarks/Location */
.proj-location {
    padding: 100px clamp(24px, 5vw, 60px);
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.location-map {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1.05;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.landmarks-cats {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-height: 650px;
    overflow-y: auto;
    padding-right: 8px;
}

.landmarks-cats::-webkit-scrollbar { width: 5px; }
.landmarks-cats::-webkit-scrollbar-track { background: var(--cloud); }
.landmarks-cats::-webkit-scrollbar-thumb { background: var(--sky-light); border-radius: 4px; }

.lm-cat {
    background: var(--off-white);
    border-radius: 12px;
    padding: 22px 24px;
    border: 1px solid var(--border);
    transition: all .3s;
}

.lm-cat:hover {
    border-color: var(--sky-light);
    background: var(--white);
}

.lm-cat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lm-cat-head .ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.lm-cat-head h4 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    color: var(--ink);
    font-weight: 600;
}

.lm-list {
    list-style: none;
}

.lm-list li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
    color: var(--slate);
}

.lm-list li:last-child { border-bottom: 0; }

.lm-list li .dist {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--sky-deep);
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 12px;
}

/* RERA Strip */
.rera-strip {
    padding: 50px clamp(24px, 5vw, 60px);
    background: linear-gradient(135deg, var(--sky-deep), var(--sky-darker));
    color: var(--white);
    text-align: center;
}

.rera-strip .num {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 6px;
}

.rera-strip .code {
    font-family: 'EB Garamond', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: .03em;
}

.rera-strip p {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

/* ════════════════════════════════════════════════ */
/*                RESPONSIVE                       */
/* ════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

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

    .hero-left {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .hero-right {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .about-section,
    .story-grid,
    .contact-grid,
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        gap: 40px;
    }

    .about-content {
        padding: 60px clamp(24px, 5vw, 60px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .gallery-grid {
        columns: 2;
    }

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

    /* Project landing responsive */
    .proj-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proj-overview-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pg-item.large,
    .pg-item.med,
    .pg-item.med-2,
    .pg-item.wide,
    .pg-item.full {
        grid-column: span 12;
        aspect-ratio: 16 / 10;
    }

    .specs-content { padding: 28px 22px; }

    .proj-quickbar { top: 64px; }

    .proj-quickbar-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 4px;
    }
    .proj-quickbar-tabs::-webkit-scrollbar { display: none; }
    .proj-quickbar-tabs a { white-space: nowrap; flex-shrink: 0; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 60px 30px;
        transition: right .4s;
        box-shadow: -10px 0 30px rgba(11, 23, 39, .12);
        gap: 28px;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hamburger {
        display: flex;
    }

    .nav-call-mobile {
        display: flex;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gallery-grid {
        columns: 1;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .num {
        font-size: 28px;
    }

    .contact-form-wrap,
    .vm-card {
        padding: 30px 24px;
    }

    .timeline::before {
        left: 14px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-item::before {
        left: 5px;
        width: 18px;
        height: 18px;
    }

    .gallery-slideshow-active {
        grid-template-columns: 1fr !important;
    }
    .gallery-slideshow-active .pg-item {
        aspect-ratio: 4 / 3 !important;
    }

    .gallery-slideshow-controls {
        display: flex;
    }
    .gallery-slideshow-dots {
        display: flex;
    }

    .call-float {
        width: 52px;
        height: 52px;
        bottom: 82px;
        right: 20px;
    }
    .call-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .specs-panel ul {
        grid-template-columns: 1fr;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .proj-highlights {
        grid-template-columns: 1fr;
    }

    .pricing-table .req-btn {
        padding: 7px 12px;
        font-size: 8px;
    }

    .faq-item summary {
        padding: 14px 16px;
        font-size: 14px;
    }
    .faq-item p {
        padding: 0 16px 14px;
        font-size: 14px;
    }
}
