:root {
    --primary-blue: #082C57;
    --dark-navy: #061F3D;
    --white: #FFFFFF;
    --silver-gray: #F3F6FA;
    --charcoal: #1F2935;
    --gold: #A9956B;
    --sun-accent: #E8E1D2;
    --coral-accent: #D8E3F0;
    --ink-muted: #687586;
    --soft-blue: #F7F9FC;
    --line: rgba(8, 44, 87, 0.13);
    --shadow: 0 22px 70px rgba(8, 44, 87, 0.14);
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Playfair Display", Georgia, serif;
}

* {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    background: var(--white);
    color: var(--charcoal);
    font-family: var(--font-body);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--gold);
}

.container-xl {
    max-width: 1220px;
}

.section-pad {
    padding: 110px 0;
}

.section-pad-sm {
    padding: 82px 0;
}

.eyebrow {
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.eyebrow::before {
    background: #6c757d;
    content: "";
    display: inline-block;
    height: 1px;
    width: 42px;
}

.section-title {
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, 3.8rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 24px;
}

.section-copy {
    color: var(--ink-muted);
    font-size: 1.03rem;
    max-width: 700px;
}

.btn {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 800;
    gap: 9px;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    text-transform: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    border: 1px solid #FFFFFF;
    color: var(--dark-navy);
}

.btn-gold:hover,
.btn-gold:focus {
    background: var(--primary-blue);
    border-color: #FFFFFF;
    box-shadow: 0 14px 34px rgba(31, 62, 114, 0.24);
    color: var(--white);
    font-weight: 700;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark-navy);
}

.btn-outline-navy {
    border: 1px solid var(--dark-navy);
    color: var(--dark-navy);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
    background: var(--dark-navy);
    color: var(--white);
}

.site-header {
    padding: 0;
    transition: background-color 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
    z-index: 1040;
}

.site-header.is-scrolled,
.site-header.menu-open {
    background: rgba(8, 44, 87, 0.96);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.navbar {
    padding: 0;
}

.navbar-brand,
.footer-brand {
    align-items: center;
    display: inline-flex;
    gap: 12px;
}

.navbar-brand {
    flex: 0 0 350px;
    gap: 0;
    min-height: 100px;
}

.brand-mark {
    align-items: center;
    background: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--dark-navy);
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    height: 46px;
    justify-content: center;
    position: relative;
    width: 46px;
}

.brand-mark::after {
    background: linear-gradient(90deg, var(--primary-blue), var(--gold));
    bottom: -5px;
    content: "";
    height: 3px;
    left: -2px;
    position: absolute;
    right: -2px;
}

.brand-logo {
    display: block;
    max-height: 48px;
    max-width: 170px;
    object-fit: contain;
}

.brand-copy {
    color: var(--white);
    display: grid;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.brand-copy small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-top: 6px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 17px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    background: var(--gold);
    bottom: 6px;
    content: "";
    height: 2px;
    left: 18px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    width: calc(100% - 36px);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--white);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    min-height: 44px;
    padding: 11px 18px;
}

.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    min-height: 100vh;
}

.hero-slide {
    align-items: center;
    background-position: center;
    background-size: cover;
    color: var(--white);
    display: flex;
    min-height: 100vh;
    padding: 150px 0 95px;
    position: relative;
}

.hero-slide::before {
    background: linear-gradient(90deg, rgba(5, 19, 39, 0.82) 0%, rgba(8, 44, 87, 0.55) 45%, rgba(8, 44, 87, 0.12) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

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

.hero-kicker {
    align-items: center;
    color: var(--gold);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    gap: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-kicker::before {
    background: var(--gold);
    content: "";
    height: 1px;
    width: 52px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7.2vw, 6.6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
}

.hero-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.carousel-control-next,
.carousel-control-prev {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    height: 54px;
    opacity: 1;
    top: auto;
    bottom: 35px;
    width: 54px;
}

.carousel-control-prev {
    left: auto;
    right: 90px;
}

.carousel-control-next {
    right: 24px;
}

.property-search-section {
    background: var(--white);
    margin-top: -48px;
    position: relative;
    z-index: 5;
}

.property-search-panel {
    align-items: end;
    background: var(--white);
    border: 1px solid rgba(11, 45, 66, 0.08);
    border-radius: 14px;
    box-shadow: 0 24px 72px rgba(11, 45, 66, 0.14);
    display: grid;
    gap: 18px;
    grid-template-columns: 1.2fr repeat(3, 1fr) auto;
    padding: 22px;
}

.search-title span {
    color: var(--gold);
    display: block;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.search-title strong {
    color: var(--dark-navy);
    display: block;
    font-size: 1.22rem;
    line-height: 1.25;
    margin-top: 5px;
}

.search-field label {
    color: var(--dark-navy);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.property-search-panel .form-select {
    background-color: var(--silver-gray);
    border-color: transparent;
    border-radius: 999px;
    color: var(--dark-navy);
    min-height: 48px;
}

.intro-grid {
    align-items: center;
}

.image-stack {
    min-height: 560px;
    position: relative;
}

.image-stack img {
    border-radius: 6px;
    box-shadow: var(--shadow);
    height: 470px;
    object-fit: cover;
    width: 78%;
}

.image-stack .image-secondary {
    border: 10px solid var(--white);
    bottom: 0;
    height: 265px;
    position: absolute;
    right: 0;
    width: 46%;
}

.intro-badge {
    background: var(--dark-navy);
    border-radius: 6px;
    bottom: 38px;
    color: var(--white);
    left: 36px;
    padding: 22px 26px;
    position: absolute;
}

.intro-badge strong {
    color: var(--gold);
    display: block;
    font-size: 2.35rem;
    line-height: 1;
}

.service-tile {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 18px;
    grid-template-columns: 64px 1fr;
    padding: 26px 0;
}

.service-tile i {
    align-items: center;
    background: var(--soft-blue);
    border-radius: 4px;
    color: var(--primary-blue);
    display: inline-flex;
    font-size: 1.45rem;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.service-tile h3,
.value-card h3,
.goal-card h3,
.roadmap-item h3,
.team-card h3 {
    color: var(--dark-navy);
    font-size: 1.12rem;
    font-weight: 800;
}

.project-section {
    background: var(--white);
    display: none !important;
}

.project-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -16px 0 32px;
}

.project-tabs span {
    background: var(--silver-gray);
    border: 1px solid rgba(11, 45, 66, 0.08);
    border-radius: 999px;
    color: var(--dark-navy);
    cursor: default;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 9px 16px;
}

.project-tabs span.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.project-card {
    background: var(--white);
    border: 1px solid rgba(11, 45, 66, 0.1);
    border-radius: 14px;
    height: 100%;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.project-card:hover {
    border-color: rgba(169, 149, 107, 0.36);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.project-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.project-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

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

.project-status {
    background: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: 0 12px 24px rgba(8, 44, 87, 0.12);
    color: var(--dark-navy);
    font-size: 0.76rem;
    font-weight: 800;
    left: 18px;
    padding: 8px 12px;
    position: absolute;
    top: 18px;
}

.project-body {
    padding: 25px;
}

.project-number {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1;
}

.project-body h2,
.project-body h3 {
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.project-meta {
    color: var(--ink-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    gap: 14px;
    margin: 18px 0;
}

.why-band {
    background: var(--dark-navy);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.why-band .section-title {
    color: var(--white);
}

.why-band .section-copy {
    color: rgba(255, 255, 255, 0.72);
}

.why-list {
    display: grid;
    gap: 0;
}

.why-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: grid;
    gap: 22px;
    grid-template-columns: 60px 1fr;
    margin-bottom: 14px;
    padding: 24px;
}

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

.why-number {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 2.1rem;
}

.why-item h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
}

.why-item p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.stats-band {
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-navy));
    color: var(--white);
    padding: 64px 0;
    display: none !important;
}

.stat-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    height: 100%;
    padding: 26px;
}

.stat-value {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
    margin-top: 10px;
}

.testimonial-card,
.value-card,
.goal-card,
.roadmap-item,
.award-card,
.contact-info-card,
.blog-card {
    border: 1px solid rgba(11, 45, 66, 0.1);
    border-radius: 14px;
    background: var(--white);
}

.testimonial-card {
    box-shadow: 0 18px 60px rgba(8, 44, 87, 0.09);
    padding: 36px;
}

.testimonial-card i {
    color: var(--gold);
    font-size: 2rem;
}

.testimonial-card blockquote {
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.45;
    margin: 18px 0 26px;
}

.quote-person {
    align-items: center;
    display: flex;
    gap: 14px;
}

.quote-person img {
    border-radius: 50%;
    height: 52px;
    object-fit: cover;
    width: 52px;
}

.blog-card {
    height: 100%;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.blog-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.blog-body {
    padding: 25px;
}

.blog-meta {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-body h3 {
    color: var(--dark-navy);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 12px 0;
}

.form-panel,
.visit-panel {
    background: var(--white);
    border: 1px solid rgba(8, 44, 87, 0.1);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(8, 44, 87, 0.1);
    padding: clamp(30px, 4vw, 48px);
}

.form-panel .section-title,
.visit-panel .section-title {
    margin-bottom: 28px;
}

.form-label {
    color: var(--dark-navy);
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.inquiry-section {
    background:
        linear-gradient(135deg, rgba(143, 179, 217, 0.16), rgba(169, 149, 107, 0.07)),
        var(--soft-blue);
}

.contact-layout-row > [class*="col-"] {
    display: flex;
}

.contact-layout-row .form-panel,
.contact-layout-row .visit-panel {
    height: 100%;
    width: 100%;
}

.visit-panel {
    display: flex;
    flex-direction: column;
}

.visit-panel .section-copy {
    margin-bottom: 0;
}

.inquiry-section .section-title.fs-1 {
    font-size: clamp(2rem, 3vw, 2.85rem) !important;
}

.inquiry-section .section-copy {
    max-width: 560px;
}

.map-frame {
    border: 0;
    border-radius: 18px;
    filter: saturate(0.95);
    min-height: 420px;
    width: 100%;
    box-shadow: 0 24px 56px rgba(8, 44, 87, 0.12);
}

.form-control,
.form-select {
    border: 1px solid rgba(8, 44, 87, 0.16);
    border-radius: 10px;
    min-height: 52px;
    padding: 13px 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(169, 149, 107, 0.16);
}

textarea.form-control {
    min-height: 134px;
}

.visit-panel .map-frame {
    flex: 1 1 320px;
    min-height: 320px;
}

.inquiry-section .social-links a {
    border-color: rgba(8, 44, 87, 0.16);
    color: var(--dark-navy);
}

.invalid-feedback {
    display: block;
}


.page-hero {
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    color: var(--white);
    display: flex;
    min-height: 58vh;
    padding: 150px 0 88px;
    position: relative;
}

.page-hero::before {
    background: linear-gradient(90deg, rgba(5, 19, 39, 0.82), rgba(8, 44, 87, 0.3));
    content: "";
    inset: 0;
    position: absolute;
}

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

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 0.98;
    margin: 0;
}

.breadcrumb-line {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    margin-top: 18px;
}

.timeline {
    border-left: 1px solid var(--line);
    margin-left: 18px;
    padding-left: 34px;
}

.timeline-item {
    margin-bottom: 34px;
    position: relative;
}

.timeline-item::before {
    background: var(--gold);
    border: 5px solid var(--white);
    box-shadow: 0 0 0 1px rgba(169, 149, 107, 0.32);
    content: "";
    height: 18px;
    left: -44px;
    position: absolute;
    top: 4px;
    width: 18px;
}

.timeline-year {
    color: #6c757d;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.timeline-item h3 {
    color: var(--dark-navy);
    font-size: 1.22rem;
    font-weight: 800;
    margin-top: 6px;
}

.team-card {
    background: var(--white);
    border: 1px solid rgba(11, 45, 66, 0.08);
    border-radius: 14px;
    box-shadow: 0 14px 45px rgba(11, 45, 66, 0.08);
    overflow: hidden;
}

.team-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.team-card div {
    padding: 22px;
}

.value-card,
.goal-card,
.roadmap-item,
.award-card,
.contact-info-card {
    height: 100%;
    padding: 28px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.value-card:hover,
.goal-card:hover,
.roadmap-item:hover,
.award-card:hover,
.contact-info-card:hover {
    box-shadow: 0 18px 52px rgba(8, 44, 87, 0.1);
    transform: translateY(-6px);
}

.value-card i,
.goal-card i,
.roadmap-item i,
.award-card i,
.contact-info-card i {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 18px;
}

.roadmap-item {
    display: grid;
    gap: 16px;
    grid-template-columns: 72px 1fr;
}

.roadmap-year {
    align-items: center;
    background: var(--dark-navy);
    color: var(--white);
    display: inline-flex;
    font-weight: 900;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.contact-info-card a {
    color: var(--dark-navy);
    font-weight: 800;
}

.site-footer {
    background: #061f3d;
    color: var(--white);
    padding-top: 88px;
}

.footer-text,
.footer-contact,
.footer-list,
.site-footer p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-title {
    color: var(--white);
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.footer-list,
.footer-contact {
    display: grid;
    gap: 13px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    align-items: flex-start;
    display: flex;
    gap: 12px;
}

.footer-contact i,
.footer-list a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-links a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    width: 42px;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-navy);
}

.contact-page .social-links a {
    border-color: rgba(8, 44, 87, 0.16);
    color: var(--dark-navy);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    padding: 26px 0;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.68);
    margin-left: 22px;
}

.footer-credit a {
    color: var(--gold);
    font-weight: 800;
    margin-left: 4px;
}

.footer-credit a:hover {
    color: var(--white);
}

.whatsapp-float {
    align-items: center;
    background: #25D366;
    border-radius: 50%;
    bottom: 24px;
    box-shadow: 0 15px 34px rgba(15, 114, 60, 0.32);
    color: var(--white);
    display: inline-flex;
    font-size: 1.7rem;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 24px;
    transition: transform 0.25s ease;
    width: 58px;
    z-index: 1050;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: translateY(-4px) scale(1.03);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 991.98px) {
    .site-header {
        background: rgba(8, 44, 87, 0.96);
        padding: 8px 0;
    }

    .navbar-collapse {
        padding: 20px 0 12px;
    }

    .navbar-dark .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.22);
    }

    .navbar-dark .navbar-toggler-icon {
        filter: none;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.82);
        padding-left: 0;
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: var(--white);
    }

    .navbar-dark .navbar-nav .nav-link::after {
        left: 0;
        width: 54px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }

    .hero-slide {
        min-height: 760px;
        padding-top: 130px;
    }

    .property-search-section {
        margin-top: 0;
    }

    .property-search-panel {
        grid-template-columns: 1fr 1fr;
    }

    .section-pad {
        padding: 82px 0;
    }

    .inquiry-section {
        padding: 82px 20px;
    }

    .image-stack {
        min-height: auto;
    }

    .image-stack img,
    .image-stack .image-secondary {
        height: auto;
        position: static;
        width: 100%;
    }

    .image-stack .image-secondary {
        margin-top: 18px;
    }

    .intro-badge {
        bottom: 18px;
        left: 18px;
    }

    .visit-panel .map-frame {
        min-height: 380px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .property-search-panel {
        grid-template-columns: 1fr;
    }

    .service-tile,
    .why-item,
    .roadmap-item {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding: 26px 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom a {
        margin: 0 18px 0 0;
    }

    .inquiry-section {
        padding-left: 0;
        padding-right: 0;
    }

    .form-panel,
    .visit-panel {
        border-radius: 14px;
        padding: 26px 20px;
    }

    .visit-panel .map-frame {
        min-height: 320px;
    }

    .inquiry-section .btn {
        width: 100%;
    }
}

/* Premium corporate refresh */
:root {
    --lux-blue: #082C57;
    --lux-blue-deep: #061F3D;
    --lux-blue-ink: #0B3A70;
    --lux-charcoal: #17202A;
    --lux-ink: #1F2935;
    --lux-muted: #687586;
    --lux-gold: #A9956B;
    --lux-gold-dark: #7E6A45;
    --lux-cream: #F3F6FA;
    --lux-surface: #F7F9FC;
    --lux-line: rgba(8, 44, 87, 0.13);
    --lux-shadow: 0 28px 80px rgba(8, 44, 87, 0.13);
}

body {
    background: #FBFCFE;
    color: var(--lux-ink);
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

a:hover {
    color: var(--lux-blue);
}

.fw-bold {
    color: var(--lux-blue);
}

.fw-bold:hover {
    color: var(--lux-gold);
}

img {
    height: auto;
}

.container-xl {
    max-width: 1280px;
}

.section-pad {
    padding: 128px 0;
}

.section-pad-sm {
    padding: 96px 0;
}

.bg-light {
    background: var(--lux-surface) !important;
}

.eyebrow,
.hero-kicker,
.blog-meta,
.timeline-year {
    color: var(--lux-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow {
    gap: 14px;
    margin-bottom: 18px;
}

.eyebrow::before,
.hero-kicker::before {
    background: var(--lux-gold);
    opacity: 0.86;
    width: 46px;
}

.section-title,
.hero-title,
.page-title,
.project-body h2,
.project-body h3,
.testimonial-card blockquote,
.team-card h3,
.service-tile h3,
.value-card h3,
.goal-card h3,
.roadmap-item h3,
.award-card h3,
.why-item h3,
.blog-body h3 {
    color: var(--lux-blue);
    /* font-family intentionally removed — inherits var(--font-heading) = Playfair Display */
    letter-spacing: 0;
}

.section-title {
    font-size: 3.65rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 26px;
}

.section-copy,
.text-muted,
.timeline-item p,
.blog-body p,
.project-body p,
.service-tile p {
    color: var(--lux-muted) !important;
}

.section-copy {
    font-size: 1.04rem;
    line-height: 1.82;
    max-width: 720px;
}

.btn {
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    min-height: 50px;
    padding: 14px 24px;
    text-transform: uppercase;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--lux-blue);
    border-color: var(--lux-blue);
    box-shadow: 0 14px 34px rgba(8, 44, 87, 0.18);
    color: #FFFFFF;
}

.btn-gold:hover,
.btn-gold:focus {
    background: var(--lux-blue-deep);
    border-color: var(--lux-blue-deep);
    box-shadow: 0 18px 44px rgba(8, 44, 87, 0.24);
    color: #FFFFFF;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.72);
    color: #FFFFFF;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    color: var(--lux-blue);
}

.btn-outline-navy {
    border-color: var(--lux-blue);
    color: var(--lux-blue);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
    background: var(--lux-blue);
    border-color: var(--lux-blue);
    color: #FFFFFF;
}

.site-header {
    background: rgba(8, 44, 87, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    min-height: 100px;
    padding: 0;
    transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    will-change: background-color, box-shadow;
}

.site-header.is-scrolled,
.site-header.menu-open {
    background: rgba(8, 44, 87, 0.96);
    border-bottom-color: rgba(169, 149, 107, 0.2);
    box-shadow: 0 16px 46px rgba(6, 31, 61, 0.28);
    padding: 0;
}

.brand-logo {
    max-height: 100px;
    max-width: 280px;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.navbar-brand .brand-logo {
    max-height: 100px;
    max-width: 350px;
}

.footer-brand .brand-logo {
    max-height: 125px;
    max-width: 360px;
}

.brand-copy {
    color: #FFFFFF;
    font-size: 0.96rem;
    font-weight: 800;
}

.brand-copy small {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2em;
}

.site-header.is-scrolled .brand-copy,
.site-header.menu-open .brand-copy {
    color: var(--lux-blue);
}

.site-header.is-scrolled .brand-copy small,
.site-header.menu-open .brand-copy small {
    color: var(--lux-muted);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--gold, #A9956B);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    padding: 14px 18px;
    text-transform: uppercase;
}

.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link,
.site-header.menu-open .navbar-dark .navbar-nav .nav-link {
    color: var(--gold, #A9956B);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link:hover,
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link.active,
.site-header.menu-open .navbar-dark .navbar-nav .nav-link:hover,
.site-header.menu-open .navbar-dark .navbar-nav .nav-link.active {
    color: var(--lux-gold);
}

.navbar-dark .navbar-nav .nav-link::after {
    background: var(--lux-gold);
    bottom: 5px;
    height: 1px;
}

.nav-cta {
    min-height: 44px;
    padding: 12px 18px;
}

@media (min-width: 992px) {
    .site-header:not(.is-scrolled):not(.menu-open) .nav-cta {
        background: #FFFFFF;
        border-color: #FFFFFF;
        box-shadow: 0 14px 34px rgba(8, 44, 87, 0.14);
        color: var(--lux-blue);
    }

    .site-header:not(.is-scrolled):not(.menu-open) .nav-cta:hover,
    .site-header:not(.is-scrolled):not(.menu-open) .nav-cta:focus {
        background: rgba(255, 255, 255, 0.92);
        border-color: #FFFFFF;
        color: var(--lux-blue);
    }
}

.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    min-height: 94vh;
}

.hero-slide {
    min-height: 94vh;
    padding: 178px 0 112px;
}

.hero-slide::before {
    background: linear-gradient(90deg, rgba(6, 31, 61, 0.9) 0%, rgba(8, 44, 87, 0.62) 48%, rgba(8, 44, 87, 0.14) 100%);
}

.hero-content {
    max-width: 920px;
}

.hero-title {
    color: #FFFFFF;
    font-size: 5.9rem;
    font-weight: 800;
    line-height: 0.98;
    margin-bottom: 28px;
}

.hero-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.18rem;
    line-height: 1.82;
    max-width: 650px;
}

.hero-actions {
    gap: 16px;
    margin-top: 38px;
}

.label-mobile {
    display: none;
}

.property-search-section {
    background: #FFFFFF;
}

.property-search-panel {
    border-color: var(--lux-line);
    box-shadow: var(--lux-shadow);
}

.search-title span {
    color: var(--lux-gold);
}

.search-title strong,
.search-field label {
    color: var(--lux-blue);
}

.property-search-panel .form-select {
    background-color: var(--lux-surface);
    border-color: var(--lux-line);
    color: var(--lux-blue);
}

.carousel-control-next,
.carousel-control-prev {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    height: 50px;
    transition: background-color 0.25s ease, transform 0.25s ease;
    width: 50px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    background: var(--lux-gold);
    transform: translateY(-2px);
}

.image-stack img {
    border-radius: 0;
    box-shadow: var(--lux-shadow);
}

.image-stack .image-secondary {
    border-color: #FBFCFE;
}

.intro-badge {
    background: var(--lux-blue);
    border-radius: 0;
    box-shadow: 0 22px 48px rgba(23, 23, 23, 0.22);
}

.intro-badge strong {
    color: var(--lux-gold);
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.service-tile {
    border-bottom-color: var(--lux-line);
    gap: 22px;
    padding: 30px 0;
}

.service-tile i,
.value-card i,
.goal-card i,
.roadmap-item i,
.award-card i,
.contact-info-card i {
    background: var(--lux-cream);
    border-radius: 8px;
    color: var(--lux-gold);
}

.service-tile i {
    height: 58px;
    width: 58px;
}

.project-section {
    background: #FFFFFF;
    display: block !important;
}

.project-tabs span {
    background: var(--lux-surface);
    border-color: var(--lux-line);
    border-radius: 8px;
    color: var(--lux-muted);
}

.project-tabs span.active {
    background: var(--lux-blue);
    border-color: var(--lux-blue);
    color: #FFFFFF;
}

.project-card,
.testimonial-card,
.blog-card,
.team-card,
.value-card,
.goal-card,
.roadmap-item,
.award-card,
.contact-info-card,
.form-panel,
.visit-panel {
    background: #FFFFFF;
    border: 1px solid var(--lux-line);
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.project-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.team-card:hover,
.value-card:hover,
.goal-card:hover,
.roadmap-item:hover,
.award-card:hover,
.contact-info-card:hover {
    border-color: rgba(8, 44, 87, 0.28);
    box-shadow: var(--lux-shadow);
    transform: translateY(-8px);
}

.inquiry-section {
    background: var(--lux-surface);
}

.project-status {
    border-left-color: var(--lux-gold);
    color: var(--lux-blue);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-number,
.why-number,
.stat-value {
    color: var(--lux-gold);
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.project-body,
.blog-body,
.team-card div {
    padding: 30px;
}

.project-body h2,
.project-body h3,
.blog-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.38;
}

.blog-detail-page .blog-hero {
    min-height: 68vh;
}

.blog-detail-page .page-title {
    max-width: 960px;
}

.blog-detail-card,
.blog-side-panel {
    background: #FFFFFF;
    border: 1px solid var(--lux-line);
    box-shadow: 0 24px 70px rgba(8, 44, 87, 0.09);
}

.blog-detail-card {
    overflow: hidden;
}

.blog-detail-image {
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    width: 100%;
}

.blog-article-content {
    padding: clamp(28px, 4.4vw, 58px);
}

.blog-lead {
    color: var(--lux-blue);
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    font-weight: 600;
    line-height: 1.65;
    margin-bottom: 30px;
}

.blog-article-content p {
    color: var(--lux-charcoal);
    font-size: 1.02rem;
    line-height: 1.86;
    margin-bottom: 22px;
}

.blog-side-panel {
    padding: 30px;
}

.blog-side-panel h2 {
    color: var(--lux-blue);
    font-weight: 700;
    margin-bottom: 18px;
}

.article-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-share-links a {
    align-items: center;
    background: var(--lux-blue);
    border: 1px solid var(--lux-blue);
    color: #FFFFFF;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    width: 44px;
}

.article-share-links a:hover,
.article-share-links a:focus {
    background: var(--lux-blue-deep);
    border-color: var(--lux-blue-deep);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.related-blog-list {
    display: grid;
    gap: 16px;
}

.related-blog-list a {
    border-bottom: 1px solid var(--lux-line);
    color: var(--lux-blue);
    display: grid;
    gap: 6px;
    padding-bottom: 16px;
}

.related-blog-list a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.related-blog-list span {
    color: var(--lux-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.related-blog-list strong {
    font-size: 1rem;
    line-height: 1.45;
}

.why-band,
.stats-band {
    background: var(--lux-blue-deep);
}

.why-band::before {
    background: linear-gradient(90deg, rgba(169, 149, 107, 0.14), transparent);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.why-band .container-xl {
    position: relative;
}

.why-band .section-title,
.why-item h3 {
    color: #FFFFFF;
}

.why-band .section-copy,
.why-item p {
    color: rgba(255, 255, 255, 0.68) !important;
}

.why-item {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 0;
}

.stats-band {
    display: block !important;
    padding: 76px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 0;
}

.stat-value {
    font-size: 3.8rem;
    font-weight: 700;
}

.testimonial-card {
    padding: 44px;
}

.testimonial-card blockquote {
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.6;
}

.form-panel,
.visit-panel {
    padding: 46px;
}

.form-label {
    color: var(--lux-blue);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-control,
.form-select {
    background-color: #FBFCFE;
    border-color: var(--lux-line);
    border-radius: 8px;
    color: var(--lux-charcoal);
    min-height: 54px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--lux-blue);
    box-shadow: 0 0 0 0.18rem rgba(8, 44, 87, 0.14);
}

.map-frame {
    border-radius: 0;
    box-shadow: var(--lux-shadow);
}

.page-hero {
    min-height: 62vh;
    padding: 170px 0 96px;
}

.page-hero::before {
    background: linear-gradient(90deg, rgba(6, 31, 61, 0.88), rgba(8, 44, 87, 0.34));
}

.page-title {
    color: #FFFFFF;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.timeline {
    border-left-color: var(--lux-line);
}

.timeline-item::before {
    background: var(--lux-gold);
    border-color: var(--lux-surface);
}

.site-footer {
    background: var(--lux-blue-deep);
    padding-top: 96px;
}

.footer-title {
    color: #FFFFFF;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

.footer-text,
.footer-contact,
.footer-list,
.site-footer p {
    color: rgba(255, 255, 255, 0.66);
}

.footer-list a,
.footer-contact a {
    transition: color 0.22s ease, padding-left 0.22s ease;
}

.footer-list a:hover,
.footer-contact a:hover {
    color: var(--lux-gold);
    padding-left: 3px;
}

.footer-contact i,
.footer-list a:hover {
    color: var(--lux-gold);
}

.social-links a {
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.contact-page .social-links a,
.inquiry-section .social-links a {
    border-color: rgba(8, 44, 87, 0.18);
    color: var(--lux-blue);
}

.social-links a:hover {
    background: var(--lux-gold);
    border-color: var(--lux-gold);
    color: #FFFFFF;
}

footer.site-footer .footer-social-links {
    justify-content: flex-end;
    margin-top: 24px;
}

footer.site-footer .footer-social-links a,
footer.site-footer .footer-social-links a:hover,
footer.site-footer .footer-social-links a:focus {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: none;
    color: #FFFFFF !important;
    transform: none;
}

footer.site-footer .footer-social-links a i,
footer.site-footer .footer-social-links a:hover i,
footer.site-footer .footer-social-links a:focus i {
    color: #FFFFFF !important;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.footer-credit a {
    color: var(--lux-gold);
}

.whatsapp-float {
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.26);
}

.reveal {
    transform: translateY(34px);
    transition: opacity 0.82s ease, transform 0.82s ease;
}

@media (max-width: 991.98px) {
    .site-header,
    .site-header.is-scrolled,
    .site-header.menu-open {
        background: rgba(255, 255, 255, 0.97);
        min-height: 76px;
        padding: 0;
    }

    .navbar-dark .navbar-toggler {
        border-color: var(--lux-line);
    }

    .navbar-dark .navbar-toggler-icon {
        filter: invert(1);
    }

    .navbar-brand .brand-logo {
        max-height: 71px;
        max-width: 250px;
    }

    .navbar-brand {
        flex-basis: 250px;
        min-height: 71px;
    }

    .footer-brand .brand-logo {
        max-height: 125px;
        max-width: 360px;
    }

.brand-copy,
.brand-copy small,
.navbar-dark .navbar-nav .nav-link {
        color: var(--lux-blue);
    }

    .navbar-collapse {
        border-top: 1px solid var(--lux-line);
        margin-top: 14px;
        padding: 18px 0 8px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 11px 0;
    }

    .nav-cta {
        display: none !important;
    }

    .hero-slider,
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-slide {
        min-height: 760px;
    }

    .hero-slide {
        padding: 150px 0 90px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-pad {
        padding: 92px 0;
    }

    .section-pad-sm {
        padding: 76px 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .page-title {
        font-size: 3.6rem;
    }

    .project-body,
    .blog-body,
    .team-card div,
    .form-panel,
    .visit-panel {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .container-xl {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-brand .brand-logo {
        max-height: 67px;
        max-width: 240px;
    }

    .navbar-brand {
        flex-basis: 240px;
        min-height: 67px;
    }

    .footer-brand .brand-logo {
        max-height: 125px;
        max-width: 320px;
    }

    .hero-slider,
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-slide {
        min-height: 700px;
    }

    .hero-slide {
        padding: 132px 0 70px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.06;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-primary-cta {
        display: none !important;
    }

    .hero-secondary-cta .label-desktop {
        display: none;
    }

    .hero-secondary-cta .label-mobile {
        display: inline;
    }

    .section-pad {
        padding: 74px 0;
    }

    .section-pad-sm {
        padding: 64px 0;
    }

    .section-title,
    .inquiry-section .section-title.fs-1 {
        font-size: 2.28rem !important;
        line-height: 1.16;
    }

    .page-hero {
        min-height: 520px;
        padding: 135px 0 70px;
    }

    .page-title {
        font-size: 2.8rem;
    }

    .btn {
        width: 100%;
    }

    .form-panel,
    .visit-panel {
        padding: 26px 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-card blockquote {
        font-size: 1.18rem;
    }

    .stat-value {
        font-size: 2.7rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

/* Premium enquiry/contact module */
.contact-layout-row {
    --bs-gutter-x: clamp(28px, 4.8vw, 64px);
    --bs-gutter-y: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.98));
    border: 1px solid rgba(8, 44, 87, 0.14);
    border-radius: 28px;
    box-shadow: 0 34px 90px rgba(8, 44, 87, 0.12);
    padding: clamp(24px, 4.4vw, 58px);
    position: relative;
}

.contact-layout-row::before {
    background: linear-gradient(90deg, var(--lux-blue), rgba(169, 149, 107, 0.72));
    border-radius: 999px;
    content: "";
    height: 3px;
    left: clamp(24px, 4.4vw, 58px);
    position: absolute;
    right: clamp(24px, 4.4vw, 58px);
    top: 0;
}

.contact-layout-row > .col-lg-5 {
    order: 1;
}

.contact-layout-row > .col-lg-7 {
    order: 2;
}

.contact-layout-row .form-panel,
.contact-layout-row .visit-panel {
    background: #FFFFFF;
    border: 1px solid rgba(8, 44, 87, 0.11);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(8, 44, 87, 0.08);
    overflow: hidden;
    padding: clamp(28px, 3.4vw, 46px);
}

.contact-layout-row .visit-panel {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%);
}

.contact-layout-row .eyebrow {
    color: var(--lux-gold);
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    margin-bottom: 14px;
}

.contact-layout-row .section-title.fs-1 {
    color: var(--lux-blue);
    font-size: clamp(1.9rem, 2.6vw, 2.65rem) !important;
    line-height: 1.14;
    margin-bottom: 24px;
}

.contact-layout-row .section-copy {
    color: var(--lux-muted) !important;
    font-size: 0.98rem;
    line-height: 1.78;
}

.contact-layout-row .row.g-3 {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

.contact-layout-row .form-label {
    color: rgba(8, 44, 87, 0.86);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.contact-layout-row .form-control,
.contact-layout-row .form-select {
    background: #F7F9FC;
    border: 1px solid rgba(8, 44, 87, 0.12);
    border-radius: 14px;
    color: var(--lux-ink);
    font-size: 0.98rem;
    font-weight: 500;
    min-height: 58px;
    padding: 15px 17px;
    transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.contact-layout-row .form-control::placeholder {
    color: #9AA6B5;
    opacity: 1;
}

.contact-layout-row .form-control:hover,
.contact-layout-row .form-select:hover {
    background: #FFFFFF;
    border-color: rgba(8, 44, 87, 0.22);
}

.contact-layout-row .form-control:focus,
.contact-layout-row .form-select:focus {
    background: #FFFFFF;
    border-color: var(--lux-blue);
    box-shadow: 0 0 0 4px rgba(8, 44, 87, 0.11);
    transform: translateY(-1px);
}

.contact-layout-row textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-layout-row .btn {
    border-radius: 14px;
    min-height: 56px;
}

.contact-layout-row .btn-gold {
    background: var(--lux-blue);
    border-color: var(--lux-blue);
    box-shadow: 0 18px 40px rgba(8, 44, 87, 0.18);
}

.contact-layout-row .btn-gold:hover,
.contact-layout-row .btn-gold:focus {
    background: var(--lux-blue-deep);
    border-color: var(--lux-blue-deep);
    box-shadow: 0 22px 52px rgba(8, 44, 87, 0.24);
}

.contact-layout-row .btn-outline-navy {
    background: #FFFFFF;
    border-color: rgba(8, 44, 87, 0.22);
    color: var(--lux-blue);
}

.contact-layout-row .btn-outline-navy:hover,
.contact-layout-row .btn-outline-navy:focus {
    background: var(--lux-blue);
    border-color: var(--lux-blue);
    color: #FFFFFF;
}

.contact-layout-row .map-frame {
    border-radius: 20px;
    box-shadow: 0 22px 58px rgba(8, 44, 87, 0.14);
    filter: saturate(0.92) contrast(0.98);
    min-height: 420px;
    transform-origin: center;
    transition: filter 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-layout-row .map-frame:hover {
    box-shadow: 0 28px 68px rgba(8, 44, 87, 0.18);
    filter: saturate(1) contrast(1);
    transform: scale(1.012);
}

.contact-layout-row .social-links a {
    background: #FFFFFF;
    border-color: rgba(8, 44, 87, 0.14);
    color: var(--lux-blue);
}

.contact-layout-row .social-links a:hover {
    background: var(--lux-blue);
    border-color: var(--lux-blue);
    color: #FFFFFF;
}

.home-page .inquiry-section {
    padding-top: 92px;
    padding-bottom: 92px;
}

.home-page .inquiry-section .contact-layout-row {
    --bs-gutter-x: clamp(22px, 3.4vw, 46px);
    --bs-gutter-y: 22px;
    padding: clamp(20px, 3vw, 38px);
}

.home-page .inquiry-section .contact-layout-row::before {
    left: clamp(20px, 3vw, 38px);
    right: clamp(20px, 3vw, 38px);
}

.home-page .inquiry-section .form-panel,
.home-page .inquiry-section .visit-panel {
    border-radius: 20px;
    padding: clamp(22px, 2.6vw, 34px);
}

.home-page .inquiry-section .contact-layout-row .eyebrow {
    margin-bottom: 10px;
}

.home-page .inquiry-section .contact-layout-row .section-title.fs-1 {
    font-size: clamp(1.6rem, 2vw, 2.15rem) !important;
    margin-bottom: 16px;
}

.home-page .inquiry-section .contact-layout-row .section-copy {
    font-size: 0.94rem;
    line-height: 1.62;
}

.home-page .inquiry-section .contact-layout-row .row.g-3 {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 13px;
}

.home-page .inquiry-section .contact-layout-row .form-label {
    margin-bottom: 5px;
}

.home-page .inquiry-section .contact-layout-row .form-control,
.home-page .inquiry-section .contact-layout-row .form-select {
    border-radius: 12px;
    min-height: 50px;
    padding: 12px 15px;
}

.home-page .inquiry-section .contact-layout-row textarea.form-control {
    min-height: 108px;
}

.home-page .inquiry-section .contact-layout-row .btn {
    min-height: 50px;
    padding: 12px 20px;
}

.home-page .inquiry-section .contact-layout-row .map-frame {
    border-radius: 18px;
    min-height: 340px;
}

.contact-page .contact-layout-row {
    --bs-gutter-x: clamp(22px, 3.4vw, 46px);
    --bs-gutter-y: 22px;
    padding: clamp(20px, 3vw, 38px);
}

.contact-page .contact-layout-row::before {
    left: clamp(20px, 3vw, 38px);
    right: clamp(20px, 3vw, 38px);
}

.contact-page .contact-layout-row .form-panel,
.contact-page .contact-layout-row .visit-panel {
    border-radius: 20px;
    padding: clamp(22px, 2.6vw, 34px);
}

.contact-page .contact-layout-row .eyebrow {
    margin-bottom: 10px;
}

.contact-page .contact-layout-row .section-title.fs-1 {
    font-size: clamp(1.6rem, 2vw, 2.15rem) !important;
    margin-bottom: 16px;
}

.contact-page .contact-layout-row .section-copy {
    font-size: 0.94rem;
    line-height: 1.62;
}

.contact-page .contact-layout-row .row.g-3 {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 13px;
}

.contact-page .contact-layout-row .form-label {
    margin-bottom: 5px;
}

.contact-page .contact-layout-row .form-control,
.contact-page .contact-layout-row .form-select {
    border-radius: 12px;
    min-height: 50px;
    padding: 12px 15px;
}

.contact-page .contact-layout-row textarea.form-control {
    min-height: 108px;
}

.contact-page .contact-layout-row .btn {
    min-height: 50px;
    padding: 12px 20px;
}

.contact-page .contact-layout-row .map-frame {
    border-radius: 18px;
    min-height: 340px;
}

@media (max-width: 991.98px) {
    .contact-layout-row {
        border-radius: 24px;
        padding: 24px;
    }

    .contact-layout-row .form-panel,
    .contact-layout-row .visit-panel {
        border-radius: 20px;
    }

    .contact-layout-row .map-frame {
        min-height: 360px;
    }

    .home-page .inquiry-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .home-page .inquiry-section .contact-layout-row .map-frame {
        min-height: 320px;
    }

    .contact-page .contact-layout-row .map-frame {
        min-height: 320px;
    }

}

@media (max-width: 767.98px) {
    .contact-layout-row {
        border-radius: 20px;
        margin-left: 0;
        margin-right: 0;
        padding: 18px;
    }

    .contact-layout-row::before {
        left: 18px;
        right: 18px;
    }

    .contact-layout-row .form-panel,
    .contact-layout-row .visit-panel {
        border-radius: 18px;
        padding: 24px 18px;
    }

    .contact-layout-row .section-title.fs-1 {
        font-size: 2rem !important;
    }

    .contact-layout-row .map-frame {
        border-radius: 16px;
        min-height: 300px;
    }

    .contact-layout-row .btn {
        width: 100%;
    }

    .home-page .inquiry-section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .home-page .inquiry-section .contact-layout-row {
        padding: 16px;
    }

    .home-page .inquiry-section .form-panel,
    .home-page .inquiry-section .visit-panel {
        padding: 22px 16px;
    }

    .home-page .inquiry-section .contact-layout-row .map-frame {
        min-height: 270px;
    }

    .contact-page .contact-layout-row {
        padding: 16px;
    }

    .contact-page .contact-layout-row .form-panel,
    .contact-page .contact-layout-row .visit-panel {
        padding: 22px 16px;
    }

    .contact-page .contact-layout-row .map-frame {
        min-height: 270px;
    }

}

.newsletter-form .input-group {
    align-items: stretch;
    gap: 10px;
}

.newsletter-form .input-group > .form-control,
.newsletter-form .input-group > .btn {
    margin-left: 0 !important;
}

.newsletter-form .input-group > .form-control {
    border-radius: 8px !important;
    min-width: 0;
}

.newsletter-form .input-group > .btn {
    border-radius: 999px !important;
    flex: 0 0 52px;
    min-width: 52px;
    padding-left: 0;
    padding-right: 0;
}

.scroll-progress {
    --scroll-progress: 0%;
    align-items: center;
    background: conic-gradient(var(--lux-gold, var(--gold)) var(--scroll-progress), rgba(255, 255, 255, 0.24) 0);
    border: 0;
    border-radius: 50%;
    bottom: 96px;
    box-shadow: 0 14px 34px rgba(6, 31, 61, 0.24);
    color: #FFFFFF;
    display: inline-flex;
    height: 45px;
    justify-content: center;
    padding: 2px;
    position: fixed;
    right: 24px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    width: 45px;
    z-index: 1050;
}

.scroll-progress::before {
    background: rgba(6, 31, 61, 0.96);
    border-radius: 50%;
    content: "";
    inset: 4px;
    position: absolute;
}

.scroll-progress:hover,
.scroll-progress:focus {
    color: #FFFFFF;
    transform: translateY(-3px);
}

.scroll-progress:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 3px;
}

.scroll-progress__content {
    align-items: center;
    display: grid;
    justify-items: center;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.scroll-progress__content i {
    font-size: 0.95rem;
    line-height: 1;
}

.scroll-progress__content [data-scroll-progress-value] {
    font-size: 0.54rem;
    font-weight: 900;
    letter-spacing: 0;
    margin-top: -1px;
}

@media (max-width: 991.98px) {
    .navbar-brand {
        flex: 0 1 auto;
        flex-basis: auto;
        margin-right: auto;
        max-width: calc(100% - 72px);
        width: auto;
    }

    .navbar-brand .brand-logo {
        max-width: min(240px, calc(100vw - 120px));
        width: auto;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        flex-basis: auto;
        max-width: calc(100% - 68px);
    }

    .navbar-brand .brand-logo {
        max-width: min(220px, calc(100vw - 112px));
    }

    .scroll-progress {
        bottom: 86px;
        height: 45px;
        right: 18px;
        width: 45px;
    }

    .scroll-progress::before {
        inset: 3px;
    }

    .scroll-progress__content i {
        font-size: 0.95rem;
    }

    .scroll-progress__content [data-scroll-progress-value] {
        font-size: 0.54rem;
    }

    .whatsapp-float {
        bottom: 18px;
        height: 54px;
        right: 18px;
        width: 54px;
    }
}

.internal-link-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.text-link {
    color: var(--lux-blue, var(--primary-blue));
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(8, 44, 87, 0.24);
    text-underline-offset: 5px;
}

.project-card-actions {
    align-items: center;
    border-top: 1px solid var(--lux-line, var(--line));
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 18px;
}

.project-card-actions a {
    color: var(--lux-blue, var(--primary-blue));
}

.trust-section .stat-item {
    min-height: 170px;
}

.home-page .trust-section {
    display: none !important;
}

.testimonial-controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 18px;
}

.testimonial-controls button {
    align-items: center;
    background: var(--lux-blue, var(--primary-blue));
    border: 0;
    color: #FFFFFF;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    transition: transform 0.22s ease, background-color 0.22s ease;
    width: 44px;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus {
    background: var(--lux-blue-deep, var(--dark-navy));
    transform: translateY(-2px);
}

.video-review {
    aspect-ratio: 16 / 9;
    background: var(--lux-blue-deep, var(--dark-navy));
    margin-bottom: 22px;
    overflow: hidden;
}

.video-review iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

.seo-content-section {
    background: #FFFFFF;
}

.seo-article-grid {
    display: grid;
    gap: 28px;
}

.seo-article,
.landing-article,
.internal-link-panel,
.project-detail-card,
.detail-block,
.sticky-lead-panel {
    background: #FFFFFF;
    border: 1px solid var(--lux-line, var(--line));
    box-shadow: 0 24px 70px rgba(8, 44, 87, 0.07);
}

.seo-article,
.landing-article {
    padding: clamp(28px, 4vw, 54px);
}

.seo-article h2,
.landing-article h2,
.project-detail-content h2,
.detail-block h2,
.sticky-lead-panel h2,
.internal-link-panel h2 {
    color: var(--lux-blue, var(--primary-blue));
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 22px;
}

.seo-article p,
.landing-article p,
.project-detail-content p {
    color: var(--lux-charcoal, var(--charcoal));
    font-size: 1.02rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.internal-link-panel {
    margin-top: 30px;
    padding: clamp(26px, 3vw, 40px);
}

.internal-link-cloud,
.blog-filter-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.internal-link-cloud a,
.blog-filter-strip span,
.blog-tags {
    background: var(--lux-surface, var(--soft-blue));
    border: 1px solid var(--lux-line, var(--line));
    color: var(--lux-blue, var(--primary-blue));
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    padding: 9px 13px;
}

.blog-filter-strip {
    margin-bottom: 30px;
}

.blog-tags {
    margin: 0 0 18px;
}

.faq-section {
    background: var(--lux-surface, var(--soft-blue));
}

.faq-accordion .accordion-item {
    background: #FFFFFF;
    border: 1px solid var(--lux-line, var(--line));
    margin-bottom: 12px;
}

.faq-accordion .accordion-button {
    background: #FFFFFF;
    color: var(--lux-blue, var(--primary-blue));
    font-weight: 800;
    line-height: 1.35;
    padding: 20px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--lux-blue, var(--primary-blue));
    color: #FFFFFF;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    border-color: var(--lux-blue, var(--primary-blue));
    box-shadow: 0 0 0 0.18rem rgba(8, 44, 87, 0.12);
}

.faq-accordion .accordion-body {
    color: var(--lux-charcoal, var(--charcoal));
    line-height: 1.8;
    padding: 20px 22px;
}

.blog-body h2 {
    color: var(--lux-blue, var(--primary-blue));
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 12px 0;
}

.article-byline {
    border-bottom: 1px solid var(--lux-line, var(--line));
    color: var(--lux-muted, var(--ink-muted));
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
}

.project-detail-card {
    overflow: hidden;
}

.project-detail-image {
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    width: 100%;
}

.project-detail-content {
    padding: clamp(28px, 4.2vw, 56px);
}

.detail-block {
    margin-top: 30px;
    padding: clamp(28px, 4vw, 44px);
}

.feature-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-pill {
    align-items: flex-start;
    background: var(--lux-surface, var(--soft-blue));
    border: 1px solid var(--lux-line, var(--line));
    color: var(--lux-charcoal, var(--charcoal));
    display: flex;
    gap: 12px;
    min-height: 82px;
    padding: 16px;
}

.feature-pill i {
    color: var(--lux-gold, var(--gold));
    font-size: 1.2rem;
    line-height: 1.4;
}

.sticky-lead-panel {
    padding: clamp(24px, 3vw, 34px);
    position: sticky;
    top: 108px;
}

.sticky-lead-panel .btn + .btn {
    margin-top: 10px;
}

.landing-article + .landing-article {
    margin-top: 26px;
}

.landing-side-links {
    border-top: 1px solid var(--lux-line, var(--line));
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding-top: 22px;
}

.landing-side-links h3 {
    color: var(--lux-blue, var(--primary-blue));
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}

.landing-side-links a {
    color: var(--lux-blue, var(--primary-blue));
    font-weight: 700;
}

.site-visit-float,
.call-float {
    align-items: center;
    border: 0;
    box-shadow: 0 18px 42px rgba(6, 31, 61, 0.24);
    color: #FFFFFF;
    display: inline-flex;
    justify-content: center;
    position: fixed;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    z-index: 1050;
}

.site-visit-float {
    background: var(--lux-blue, var(--primary-blue));
    bottom: 24px;
    gap: 9px;
    left: 24px;
    min-height: 54px;
    opacity: 0;
    padding: 0 20px;
    pointer-events: none;
    transform: translateY(14px);
    visibility: hidden;
}

.site-visit-float span {
    font-size: 0.9rem;
    font-weight: 900;
}

.site-visit-float.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.site-visit-float:hover,
.site-visit-float:focus,
.call-float:hover,
.call-float:focus {
    color: #FFFFFF;
    transform: translateY(-3px);
}

.call-float {
    background: var(--lux-gold, var(--gold));
    bottom: 88px;
    display: none;
    height: 54px;
    left: 18px;
    width: 54px;
}

.lead-modal .modal-content {
    border: 0;
    border-radius: 0;
    box-shadow: 0 30px 90px rgba(6, 31, 61, 0.28);
}

.lead-modal .modal-header,
.lead-modal .modal-body {
    padding: clamp(22px, 3vw, 34px);
}

.lead-modal .modal-header {
    align-items: flex-start;
    border-bottom: 1px solid var(--lux-line, var(--line));
}

.lead-modal .modal-title {
    color: var(--lux-blue, var(--primary-blue));
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.16;
}

@media (max-width: 991.98px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .sticky-lead-panel {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .internal-link-row,
    .project-card-actions,
    .article-byline {
        align-items: stretch;
        flex-direction: column;
    }

    .seo-article,
    .landing-article,
    .internal-link-panel,
    .detail-block,
    .sticky-lead-panel {
        padding: 22px;
    }

    .site-visit-float {
        bottom: 84px;
        left: 18px;
        max-width: calc(100vw - 104px);
        min-height: 50px;
        padding: 0 14px;
    }

    .site-visit-float span {
        font-size: 0.78rem;
        line-height: 1.2;
    }

    .call-float {
        bottom: 18px;
        display: inline-flex;
    }
}
/* ============================================================
   Landmark Estates — CSS Additions
   Append this block to the END of assets/css/style.css
   Also append to assets/css/style.min.css (or rebuild min)
   ============================================================ */

/* -------------------------------------------------------
   1. PROJECTS NAV DROPDOWN
   ------------------------------------------------------- */

/* Wrapper item — needs position:relative so dropdown is anchored */
.nav-dropdown-item {
    position: relative;
}

/* The chevron icon inside the Projects link */
.nav-chevron {
    font-size: 0.72em;
    margin-left: 2px;
    transition: transform 0.22s ease;
    vertical-align: middle;
}

/* Dropdown panel — hidden by default */
.nav-projects-dropdown {
    background: var(--dark-navy);
    border-top: 2px solid var(--gold);
    box-shadow: 0 22px 60px rgba(6, 31, 61, 0.32);
    display: none;
    left: 0;
    min-width: 260px;
    opacity: 0;
    position: absolute;
    top: 100%;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 1100;
}

/* Desktop: show on hover */
@media (min-width: 992px) {
    .nav-dropdown-item:hover .nav-projects-dropdown,
    .nav-dropdown-item:focus-within .nav-projects-dropdown {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-dropdown-item:hover .nav-chevron,
    .nav-dropdown-item:focus-within .nav-chevron {
        transform: rotate(180deg);
    }

    /* Re-apply display:block with animation via JS-free CSS trick */
    .nav-projects-dropdown {
        display: block;
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-dropdown-item:hover .nav-projects-dropdown,
    .nav-dropdown-item:focus-within .nav-projects-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* Inner padding */
.nav-dropdown-inner {
    padding: 20px 0 12px;
}

/* "Our Projects" label */
.nav-dropdown-label {
    color: rgba(169, 149, 107, 0.7);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin: 0 0 8px;
    padding: 0 20px;
    text-transform: uppercase;
}

/* Project list inside dropdown */
.nav-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-dropdown-list li a {
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    font-size: 0.88rem;
    font-weight: 700;
    gap: 10px;
    padding: 9px 20px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.nav-dropdown-list li a i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.nav-dropdown-list li a:hover {
    background: rgba(169, 149, 107, 0.1);
    color: var(--gold);
}

/* "View All Projects" link at bottom */
.nav-dropdown-all {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold) !important;
    display: flex;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 8px;
    letter-spacing: 0.04em;
    margin-top: 10px;
    padding: 12px 20px 6px;
    text-transform: uppercase;
    transition: gap 0.18s ease;
}

.nav-dropdown-all:hover {
    gap: 13px;
}

/* Mobile: show as accordion-style flat list (no hover, no dropdown) */
@media (max-width: 991.98px) {
    .nav-projects-dropdown {
        background: rgba(255, 255, 255, 0.05);
        border-top: none;
        box-shadow: none;
        display: none;
        opacity: 1;
        position: static;
        transform: none;
    }

    .nav-projects-dropdown.is-open {
        display: block;
    }

    .nav-dropdown-inner {
        padding: 6px 0 8px;
    }

    .nav-dropdown-label {
        padding: 0 0 4px;
    }

    .nav-dropdown-list li a {
        color: rgba(255, 255, 255, 0.75);
        padding: 8px 0 8px 16px;
    }

    .nav-dropdown-all {
        border-top: none;
        margin-top: 4px;
        padding: 6px 0 6px 16px;
    }

    /* Rotate chevron when mobile open */
    .nav-dropdown-item.mobile-open .nav-chevron {
        transform: rotate(180deg);
    }
}

/* Active state for Projects item */
.nav-dropdown-item.active > .nav-link-projects {
    color: var(--white);
}

.nav-dropdown-item.active > .nav-link-projects::after {
    transform: scaleX(1);
}

/* -------------------------------------------------------
   2. DISCLAIMER OVERLAY
   ------------------------------------------------------- */

.disclaimer-overlay {
    align-items: center;
    background: rgba(6, 31, 61, 0.97);
    bottom: 0;
    display: none;
    justify-content: center;
    left: 0;
    overflow-y: auto;
    padding: 24px 16px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

.disclaimer-overlay.is-visible {
    display: flex;
}

.disclaimer-overlay.is-dismissing {
    animation: disclaimerFadeOut 0.42s ease forwards;
}

@keyframes disclaimerFadeOut {
    to { opacity: 0; transform: scale(0.97); }
}

.disclaimer-card {
    animation: disclaimerFadeIn 0.38s ease forwards;
    background: #fff;
    box-shadow: 0 40px 100px rgba(6, 31, 61, 0.5);
    max-width: 540px;
    padding: clamp(28px, 5vw, 52px);
    width: 100%;
}

@keyframes disclaimerFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.disclaimer-logo-wrap {
    margin-bottom: 24px;
    text-align: center;
}

.disclaimer-logo-wrap img {
    max-height: 46px;
    object-fit: contain;
}

.disclaimer-welcome {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
    text-align: center;
    text-transform: uppercase;
}

.disclaimer-title {
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-body {
    border-bottom: 1px solid rgba(8, 44, 87, 0.1);
    border-top: 1px solid rgba(8, 44, 87, 0.1);
    color: #4a5568;
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 24px;
    max-height: 230px;
    overflow-y: auto;
    padding: 18px 0;
}

.disclaimer-body p {
    margin-bottom: 12px;
}

.disclaimer-body p:last-child {
    margin-bottom: 0;
}

.disclaimer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.disclaimer-btn-accept {
    font-size: 0.95rem;
    justify-content: center;
    min-height: 50px;
    width: 100%;
}

.disclaimer-btn-decline {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 0;
    text-align: center;
    text-decoration: underline;
    transition: color 0.18s ease;
    width: 100%;
}

.disclaimer-btn-decline:hover {
    color: var(--dark-navy);
}

.disclaimer-declined-msg {
    align-items: flex-start;
    background: #fff8e6;
    border: 1px solid #f6cc5a;
    border-radius: 4px;
    color: #7a5c00;
    display: flex;
    font-size: 0.87rem;
    font-weight: 600;
    gap: 10px;
    line-height: 1.5;
    padding: 12px 14px;
}

.disclaimer-declined-msg i {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 1px;
}

/* -------------------------------------------------------
   3. ENHANCED PROJECT DETAIL PAGE — NEW SECTIONS
   ------------------------------------------------------- */

/* Highlights section — same .detail-block but with gold accent pills */
.project-highlights .feature-pill i {
    color: var(--gold);
}

/* Specifications table */
.spec-table {
    border-collapse: collapse;
    width: 100%;
}

.spec-table tr {
    border-bottom: 1px solid var(--line);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table th,
.spec-table td {
    padding: 13px 16px;
    text-align: left;
    vertical-align: top;
}

.spec-table th {
    color: var(--dark-navy);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: 42%;
}

.spec-table td {
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 600;
}

.spec-table tr:nth-child(even) {
    background: var(--soft-blue);
}

/* Master plan image */
.master-plan-img {
    border: 1px solid var(--line);
    cursor: zoom-in;
    display: block;
    height: auto;
    transition: opacity 0.22s ease;
    width: 100%;
}

.master-plan-img:hover {
    opacity: 0.9;
}

/* Gallery grid */
.project-gallery-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-gallery-item {
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
    overflow: hidden;
    position: relative;
}

.project-gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.36s ease;
    width: 100%;
}

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

@media (max-width: 767.98px) {
    .project-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 479.98px) {
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Video embed */
.project-video-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.project-video-wrap iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* Brochure CTA banner */
.brochure-cta-band {
    align-items: center;
    background: var(--dark-navy);
    border: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    margin-top: 30px;
    padding: clamp(22px, 3.5vw, 34px) clamp(22px, 4vw, 40px);
}

.brochure-cta-band-text h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.55rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 4px;
}

.brochure-cta-band-text p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 575.98px) {
    .brochure-cta-band {
        flex-direction: column;
        text-align: center;
    }

    .brochure-cta-band .btn {
        width: 100%;
    }
}

/* Related projects section */
.related-projects-section {
    background: var(--soft-blue);
    padding: 60px 0;
}

.related-projects-section .section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* Lightbox overlay for gallery / master plan */
.le-lightbox {
    align-items: center;
    background: rgba(6, 31, 61, 0.96);
    bottom: 0;
    cursor: zoom-out;
    display: none;
    justify-content: center;
    left: 0;
    padding: 24px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9990;
}

.le-lightbox.is-open {
    display: flex;
}

.le-lightbox img {
    max-height: 90vh;
    max-width: 100%;
    object-fit: contain;
}

.le-lightbox-close {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    padding: 6px 12px;
    position: fixed;
    right: 20px;
    top: 20px;
}

/* ============================================================
   FIX: Nav single-line — reduce brand footprint & link padding
   ============================================================ */

/* Brand: remove fixed 350px width, let logo size control it */
.navbar-brand {
    flex: 0 0 auto !important;
    min-height: 72px !important;
}

/* Nav logo: 100px height as specified */
.navbar-brand .brand-logo {
    max-height: 100px !important;
    max-width: 200px !important;
    height: auto !important;
}

/* Nav links: tighter horizontal padding, no letter-spacing blowout, no wrapping */
@media (min-width: 992px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 11px !important;
        white-space: nowrap;
    }

    .nav-cta {
        padding: 9px 14px !important;
        white-space: nowrap;
        font-size: 0.78rem !important;
    }

    /* Ensure the navbar items don't wrap */
    .navbar-nav {
        flex-wrap: nowrap !important;
    }

    /* Underline hover position fix for tighter padding */
    .navbar-dark .navbar-nav .nav-link::after {
        left: 12px !important;
        width: calc(100% - 24px) !important;
    }

    /* Header height matches new compact nav */
    .navbar-brand {
        min-height: 72px !important;
    }
}

/* ============================================================
   HOMEPAGE — Featured Projects Section (wireframe adopted)
   Replaces .project-section — uses .hp-projects-section
   ============================================================ */

/* Force-show the section (old .project-section had display:none!important) */
.hp-projects-section {
    background: #fff;
    padding: 100px 0;
}

/* ── Section header ── */
.hp-projects-header {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 48px;
}

.hp-projects-header-left { max-width: 640px; }

.eyebrow-line {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.eyebrow-dash {
    background: var(--gold);
    display: block;
    height: 1px;
    width: 46px;
}

.hp-projects-title {
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin: 0;
}

.hp-projects-all-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Grid: count-based layout ──
   count-1  → single card, full width, landscape (left image / right body)
   count-2  → two equal columns
   count-3+ → three columns (auto-fills, wraps at 2 on tablet)
   Capped at 3 columns max regardless of count
*/
.hp-projects-grid {
    display: grid;
    gap: 28px;
}

/* 1 project: full width, two-column landscape layout */
.hp-projects-grid.hp-projects-count-1 {
    grid-template-columns: 1fr;
}

.hp-projects-grid.hp-projects-count-1 .hp-project-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    max-width: 100%;
}

.hp-projects-grid.hp-projects-count-1 .hp-project-img-wrap {
    aspect-ratio: unset;
    height: 100%;
    min-height: 320px;
}

.hp-projects-grid.hp-projects-count-1 .hp-project-body {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 2 projects: two equal columns */
.hp-projects-grid.hp-projects-count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 3+ projects: three columns */
.hp-projects-grid.hp-projects-count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Card ── */
.hp-project-card {
    background: #fff;
    border: 1px solid rgba(8, 44, 87, 0.13);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hp-project-card:hover {
    border-color: rgba(8, 44, 87, 0.28);
    box-shadow: 0 28px 80px rgba(8, 44, 87, 0.13);
    transform: translateY(-6px);
}

/* ── Card image ── */
.hp-project-img-wrap {
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    position: relative;
}

.hp-project-img-wrap img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

.hp-project-card:hover .hp-project-img-wrap img {
    transform: scale(1.04);
}

/* Status badge — wireframe style */
.hp-project-badge {
    background: #fff;
    border-left: 4px solid var(--gold);
    box-shadow: 0 12px 24px rgba(8, 44, 87, 0.12);
    color: var(--dark-navy);
    font-size: 0.72rem;
    font-weight: 800;
    left: 18px;
    letter-spacing: 0.08em;
    padding: 7px 11px;
    position: absolute;
    text-transform: uppercase;
    top: 18px;
}

/* ── Card body ── */
.hp-project-body {
    padding: 28px 30px;
}

.hp-project-location {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.hp-project-location i { margin-right: 5px; }

.hp-project-name {
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px;
}

.hp-project-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s;
}

.hp-project-name a:hover { color: var(--gold); }

.hp-project-desc {
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 18px;
}

.hp-project-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.hp-project-specs span {
    color: var(--ink-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.hp-project-specs i {
    color: var(--gold);
    margin-right: 4px;
}

/* ── Actions row ── */
.hp-project-actions {
    align-items: center;
    border-top: 1px solid rgba(8, 44, 87, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
}

/* Wireframe-style underline link */
.hp-project-link {
    color: var(--dark-navy);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding-bottom: 4px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.hp-project-link-line {
    background: var(--gold);
    bottom: 0;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: width 0.22s ease;
    width: 100%;
}

.hp-project-link:hover { color: var(--dark-navy); }

.hp-project-link:hover .hp-project-link-line { width: 100%; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
    /* 1-project landscape → stack on tablet */
    .hp-projects-grid.hp-projects-count-1 .hp-project-card {
        grid-template-columns: 1fr;
    }

    .hp-projects-grid.hp-projects-count-1 .hp-project-img-wrap {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .hp-projects-grid.hp-projects-count-1 .hp-project-body {
        padding: 28px 30px;
    }

    /* 3-col → 2-col on tablet */
    .hp-projects-grid.hp-projects-count-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .hp-projects-section { padding: 72px 0; }

    /* All grids → single column on mobile */
    .hp-projects-grid.hp-projects-count-2,
    .hp-projects-grid.hp-projects-count-3 {
        grid-template-columns: 1fr;
    }

    .hp-projects-header { flex-direction: column; align-items: flex-start; }

    .hp-projects-all-btn { width: 100%; text-align: center; justify-content: center; }
}
/* ============================================================
   WIREFRAME HOMEPAGE — wf-home design system
   All classes prefixed wf- to avoid any collision with
   existing site CSS. Appended to end of style.css
   ============================================================ */

/* ── Shared tokens (inherit from site :root) ── */
.wf-home {
    --wf-navy:      #082C57;
    --wf-navy-deep: #061F3D;
    --wf-gold:      #A9956B;
    --wf-white:     #ffffff;
    --wf-bg:        #FBFCFE;
    --wf-bg-alt:    #F7F9FC;
    --wf-text:      #1F2935;
    --wf-muted:     #687586;
    --wf-border:    rgba(8,44,87,0.13);
    --wf-pad:       118px;
    --wf-pad-sm:    80px;
}

/* ── Eyebrow row (gold dash + uppercase label) ── */
.wf-eyebrow-row {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}
.wf-eyebrow-centered { justify-content: center; }
.wf-eyebrow-dash {
    background: var(--wf-gold);
    display: block;
    flex-shrink: 0;
    height: 1px;
    width: 46px;
}
.wf-eyebrow-text {
    color: var(--wf-gold);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 3.2px;
    text-transform: uppercase;
}
.wf-eyebrow-gold { color: var(--wf-gold); }

/* ── Section titles ── */
.wf-section-title {
    color: var(--wf-navy);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin: 0 0 22px;
}
.wf-title-white  { color: var(--wf-white); }
.wf-title-center { text-align: center; }

.wf-section-copy {
    color: var(--wf-muted);
    font-size: 16.5px;
    line-height: 1.82;
    margin: 0 0 28px;
}

/* ── Shared buttons ── */
.wf-btn-primary {
    background: var(--wf-navy);
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 14px 34px rgba(8,44,87,0.3);
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 15px 28px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s;
}
.wf-btn-primary:hover { background: var(--wf-navy-deep); color: #fff; }

.wf-btn-outline {
    border: 1px solid rgba(255,255,255,0.72);
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 15px 28px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}
.wf-btn-outline:hover { background: #fff; color: var(--wf-navy); }

.wf-btn-navy {
    background: var(--wf-navy);
    box-shadow: 0 14px 34px rgba(8,44,87,0.18);
    color: #fff;
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 36px;
    padding: 14px 26px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s;
}
.wf-btn-navy:hover { background: var(--wf-navy-deep); color: #fff; }

.wf-btn-outline-navy {
    border: 1px solid var(--wf-navy);
    color: var(--wf-navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 22px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.wf-btn-outline-navy:hover { background: var(--wf-navy); color: #fff; }

.wf-btn-sm { font-size: 11px !important; padding: 9px 14px !important; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.wf-hero {
    color: #fff;
    overflow: visible;
    position: relative;
}
.wf-hero-bg {
    background-size: cover;
    background-position: center;
    inset: 0;
    position: absolute;
}
.wf-hero-overlay {
    background: linear-gradient(90deg, rgba(6,31,61,0.94) 0%, rgba(8,44,87,0.66) 48%, rgba(8,44,87,0.18) 100%);
    inset: 0;
    position: absolute;
}
.wf-hero-inner {
    padding: 130px 0 160px;
    position: relative;
}
.wf-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.0;
    margin: 0 0 26px;
    max-width: 900px;
}
.wf-hero-text {
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 38px;
    max-width: 600px;
}
.wf-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Floating stat strip */
.wf-hero-stats-wrap {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    transform: translateY(50%);
    z-index: 10;
}
.wf-hero-stats {
    background: var(--wf-navy-deep);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 28px 80px rgba(8,44,87,0.4);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.wf-stat-item {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 28px 30px;
}
.wf-stat-item:last-child { border-right: none; }
.wf-stat-value {
    color: var(--wf-gold);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.wf-stat-label {
    color: rgba(255,255,255,0.76);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
    margin-top: 9px;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.wf-about {
    background: var(--wf-bg);
    /* Extra top padding to clear the floating stat strip */
    padding: calc(var(--wf-pad) + 80px) 0 var(--wf-pad);
}
.wf-about-grid {
    align-items: center;
    display: grid;
    gap: 76px;
    grid-template-columns: 1.05fr 1fr;
}
.wf-about-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}
.wf-about-point {
    align-items: flex-start;
    display: flex;
    gap: 20px;
}
.wf-about-num {
    align-items: center;
    background: #F3F6FA;
    color: var(--wf-gold);
    display: flex;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 800;
    height: 48px;
    justify-content: center;
    width: 48px;
}
.wf-about-point-title {
    color: var(--wf-navy);
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 5px;
}
.wf-about-point-text {
    color: var(--wf-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* Right image */
.wf-about-img-wrap {
    position: relative;
}
.wf-about-img {
    box-shadow: 0 28px 80px rgba(8,44,87,0.18);
    display: block;
    height: 440px;
    object-fit: cover;
    width: 100%;
}
.wf-about-badge {
    background: var(--wf-navy);
    bottom: -34px;
    box-shadow: 0 22px 48px rgba(23,23,23,0.22);
    color: #fff;
    left: -34px;
    padding: 28px 32px;
    position: absolute;
}
.wf-about-badge strong {
    color: var(--wf-gold);
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}
.wf-about-badge span {
    color: rgba(255,255,255,0.78);
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 6px;
    max-width: 140px;
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */
.wf-why {
    background: var(--wf-navy-deep);
    color: #fff;
    overflow: hidden;
    padding: var(--wf-pad) 0;
    position: relative;
}
.wf-why-gradient {
    background: linear-gradient(90deg, rgba(169,149,107,0.14), transparent);
    inset: 0;
    pointer-events: none;
    position: absolute;
}
.wf-why-inner { position: relative; }
.wf-why-header {
    margin-bottom: 56px;
    max-width: 720px;
}
.wf-why-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
}
.wf-why-card {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 34px 30px;
    transition: transform 0.28s;
}
.wf-why-card:hover { transform: translateY(-8px); }
.wf-why-num {
    color: var(--wf-gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.wf-why-title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 12px;
}
.wf-why-text {
    color: rgba(255,255,255,0.68);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════════════════════════ */
.wf-projects {
    background: var(--wf-white);
    padding: var(--wf-pad) 0;
}
.wf-projects-header {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 48px;
}
.wf-projects-header-left { max-width: 640px; }

/* Grid variants */
.wf-proj-grid {
    display: grid;
    gap: 28px;
}
/* 1 project: full-width landscape */
.wf-proj-single { grid-template-columns: 1fr; }
.wf-proj-single .wf-proj-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
}
.wf-proj-single .wf-proj-img-wrap { aspect-ratio: unset; min-height: 320px; }
.wf-proj-single .wf-proj-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 48px;
}
/* 2 projects: two cols */
.wf-proj-two { grid-template-columns: repeat(2, 1fr); }
/* 3+ projects: three cols */
.wf-proj-multi { grid-template-columns: repeat(3, 1fr); }

/* Card */
.wf-proj-card {
    background: #fff;
    border: 1px solid var(--wf-border);
    overflow: hidden;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.wf-proj-card:hover {
    border-color: rgba(8,44,87,0.28);
    box-shadow: 0 28px 80px rgba(8,44,87,0.13);
    transform: translateY(-6px);
}
.wf-proj-img-wrap {
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    position: relative;
}
.wf-proj-img-wrap img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    width: 100%;
}
.wf-proj-card:hover .wf-proj-img-wrap img { transform: scale(1.04); }

.wf-proj-badge {
    background: #fff;
    border-left: 4px solid var(--wf-gold);
    box-shadow: 0 12px 24px rgba(8,44,87,0.12);
    color: var(--wf-navy);
    font-size: 11px;
    font-weight: 800;
    left: 18px;
    letter-spacing: 1px;
    padding: 7px 12px;
    position: absolute;
    text-transform: uppercase;
    top: 18px;
}
.wf-proj-body { padding: 30px; }
.wf-proj-location {
    color: var(--wf-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.wf-proj-location i { margin-right: 4px; }
.wf-proj-name {
    color: var(--wf-navy);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}
.wf-proj-name a { color: inherit; text-decoration: none; }
.wf-proj-name a:hover { color: var(--wf-gold); }
.wf-proj-desc {
    color: var(--wf-muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0 0 18px;
}
.wf-proj-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.wf-proj-specs span {
    color: var(--wf-muted);
    font-size: 13px;
    font-weight: 600;
}
.wf-proj-specs i { color: var(--wf-gold); margin-right: 3px; }

.wf-proj-actions {
    align-items: center;
    border-top: 1px solid rgba(8,44,87,0.08);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding-top: 20px;
}
.wf-proj-cta-link {
    color: var(--wf-navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding-bottom: 4px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}
.wf-underline-bar {
    background: var(--wf-gold);
    bottom: 0;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.wf-testimonials {
    background: var(--wf-bg-alt);
    padding: var(--wf-pad) 0;
}
.wf-testimonials-header {
    margin: 0 auto 56px;
    max-width: 680px;
    text-align: center;
}
.wf-test-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, 1fr);
}
.wf-test-card {
    background: #fff;
    border: 1px solid var(--wf-border);
    box-shadow: 0 18px 60px rgba(8,44,87,0.06);
    display: flex;
    flex-direction: column;
    padding: 40px 34px;
}
.wf-test-quote-icon {
    color: var(--wf-gold);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 14px;
}
.wf-test-quote {
    border: none;
    color: var(--wf-navy);
    flex: 1;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 26px;
    padding: 0;
}
.wf-test-video {
    aspect-ratio: 16/9;
    flex: 1;
    margin-bottom: 26px;
    overflow: hidden;
    position: relative;
}
.wf-test-video iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.wf-test-person {
    align-items: center;
    border-top: 1px solid rgba(8,44,87,0.1);
    display: flex;
    gap: 14px;
    padding-top: 22px;
}
.wf-test-person img {
    border-radius: 50%;
    flex-shrink: 0;
    height: 52px;
    object-fit: cover;
    width: 52px;
}
.wf-test-name {
    color: var(--wf-navy);
    display: block;
    font-size: 15px;
    font-weight: 800;
}
.wf-test-role {
    color: var(--wf-muted);
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════ */
.wf-blog {
    background: var(--wf-bg-alt);
    border-top: 1px solid rgba(8,44,87,0.07);
    padding: var(--wf-pad) 0;
}
.wf-blog-header {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 48px;
}
.wf-blog-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, 1fr);
}
.wf-blog-card {
    background: #fff;
    border: 1px solid var(--wf-border);
    overflow: hidden;
    transition: transform 0.28s, box-shadow 0.28s;
}
.wf-blog-card:hover {
    box-shadow: 0 20px 60px rgba(8,44,87,0.1);
    transform: translateY(-6px);
}
.wf-blog-img-wrap {
    aspect-ratio: 16/9;
    display: block;
    overflow: hidden;
}
.wf-blog-img-wrap img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    width: 100%;
}
.wf-blog-card:hover .wf-blog-img-wrap img { transform: scale(1.04); }
.wf-blog-body { padding: 26px 28px; }
.wf-blog-meta {
    color: var(--wf-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.wf-blog-title {
    color: var(--wf-navy);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px;
}
.wf-blog-title a { color: inherit; text-decoration: none; }
.wf-blog-title a:hover { color: var(--wf-gold); }
.wf-blog-excerpt {
    color: var(--wf-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 18px;
}
.wf-blog-read {
    color: var(--wf-navy);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
}
.wf-blog-read:hover { color: var(--wf-gold); }
.wf-blog-read i { margin-left: 4px; }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.wf-faq {
    background: var(--wf-bg-alt);
    border-top: 1px solid rgba(8,44,87,0.08);
    padding: var(--wf-pad) 0;
}
.wf-faq-inner { max-width: 920px; margin: 0 auto; }
.wf-faq-header {
    margin-bottom: 52px;
    text-align: center;
}
.wf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wf-faq-item {
    border: 1px solid var(--wf-border);
    overflow: hidden;
    transition: background 0.2s;
}
.wf-faq-item.wf-faq-active { background: var(--wf-navy); }
.wf-faq-btn {
    align-items: center;
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    gap: 20px;
    justify-content: space-between;
    padding: 22px 24px;
    text-align: left;
    width: 100%;
    color: var(--wf-navy);
}
.wf-faq-item.wf-faq-active .wf-faq-btn { color: #fff; }
.wf-faq-icon {
    align-items: center;
    background: #F3F6FA;
    border-radius: 50%;
    color: var(--wf-navy);
    display: flex;
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 600;
    height: 32px;
    justify-content: center;
    transition: transform 0.25s;
    width: 32px;
}
.wf-faq-item.wf-faq-active .wf-faq-icon {
    background: rgba(255,255,255,0.16);
    color: #fff;
    transform: rotate(45deg);
}
.wf-faq-body {
    display: none;
    padding: 0 24px 24px;
}
.wf-faq-body.wf-faq-open { display: block; }
.wf-faq-body p {
    color: #17202A;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}
.wf-faq-item.wf-faq-active .wf-faq-body p { color: rgba(255,255,255,0.86); }

/* ═══════════════════════════════════════════════════════════
   SITE VISIT CTA (dark section)
   ═══════════════════════════════════════════════════════════ */
.wf-visit {
    background: var(--wf-navy-deep);
    color: #fff;
    position: relative;
}
.wf-visit-bg {
    background-image: url('https://images.unsplash.com/photo-1448630360428-65456885c650?auto=format&fit=crop&w=2000&q=80');
    background-position: center;
    background-size: cover;
    inset: 0;
    opacity: 0.16;
    position: absolute;
}
.wf-visit-overlay {
    background: linear-gradient(180deg, rgba(6,31,61,0.94), rgba(6,31,61,0.98));
    inset: 0;
    position: absolute;
}
.wf-visit-grid {
    align-items: start;
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
    padding: 104px 0;
    position: relative;
}
.wf-visit-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.14;
    margin: 0 0 20px;
}
.wf-visit-desc {
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 34px;
    max-width: 440px;
}
.wf-visit-contacts { display: flex; flex-direction: column; gap: 18px; }
.wf-visit-contact-item { align-items: center; display: flex; gap: 14px; }
.wf-visit-contact-icon {
    align-items: center;
    background: rgba(169,149,107,0.14);
    color: var(--wf-gold);
    display: flex;
    flex-shrink: 0;
    font-size: 18px;
    height: 44px;
    justify-content: center;
    width: 44px;
}
.wf-visit-contact-label {
    color: rgba(255,255,255,0.6);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.wf-visit-contact-value {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-top: 3px;
    text-decoration: none;
}
a.wf-visit-contact-value:hover { color: var(--wf-gold); }

/* Form card */
.wf-visit-form-card {
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    padding: 40px;
}
.wf-visit-form-title {
    color: var(--wf-navy);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
}
.wf-form-stack { display: flex; flex-direction: column; gap: 14px; }
.wf-form-row { display: flex; gap: 14px; }
.wf-form-input {
    background: #FBFCFE;
    border: 1px solid rgba(8,44,87,0.16);
    color: var(--wf-text);
    font-family: inherit;
    font-size: 14.5px;
    min-width: 0;
    outline: none;
    padding: 15px 16px;
    transition: border-color 0.18s;
    width: 100%;
}
.wf-form-input:focus { border-color: var(--wf-gold); }
.wf-form-select { color: var(--wf-muted); }
.wf-form-submit {
    background: var(--wf-navy);
    border: 0;
    box-shadow: 0 14px 34px rgba(8,44,87,0.18);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
    padding: 16px;
    text-transform: uppercase;
    transition: background 0.2s;
    width: 100%;
}
.wf-form-submit:hover { background: var(--wf-navy-deep); }
.wf-form-note {
    color: #9AA6B5;
    font-size: 12px;
    line-height: 1.5;
    margin: 4px 0 0;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1199.98px) {
    .wf-about-grid { gap: 48px; }
    .wf-why-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991.98px) {
    :root { --wf-pad: 80px; }

    .wf-hero-stats { grid-template-columns: repeat(2, 1fr); }

    .wf-about-grid { grid-template-columns: 1fr; }
    .wf-about-img-wrap { margin-top: 50px; }
    .wf-about-badge { left: 0; bottom: -24px; }

    .wf-proj-single .wf-proj-card  { grid-template-columns: 1fr; }
    .wf-proj-single .wf-proj-img-wrap { aspect-ratio: 16/9; min-height: unset; }
    .wf-proj-single .wf-proj-body  { padding: 28px 30px; }
    .wf-proj-two   { grid-template-columns: 1fr; }
    .wf-proj-multi { grid-template-columns: repeat(2, 1fr); }

    .wf-test-grid { grid-template-columns: repeat(2, 1fr); }
    .wf-blog-grid { grid-template-columns: repeat(2, 1fr); }

    .wf-visit-grid { grid-template-columns: 1fr; gap: 40px; padding: 72px 0; }
    .wf-visit-desc { max-width: 100%; }

    .wf-projects-header { flex-direction: column; align-items: flex-start; }
    .wf-blog-header      { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767.98px) {
    :root { --wf-pad: 60px; }

    .wf-hero-inner { padding: 90px 0 130px; }
    .wf-hero-stats { grid-template-columns: repeat(2, 1fr); }

    .wf-why-grid  { grid-template-columns: 1fr; }
    .wf-proj-multi { grid-template-columns: 1fr; }
    .wf-test-grid  { grid-template-columns: 1fr; }
    .wf-blog-grid  { grid-template-columns: 1fr; }

    .wf-form-row { flex-direction: column; }

    .wf-about { padding-top: calc(var(--wf-pad) + 60px); }
}

@media (max-width: 575.98px) {
    .wf-hero-title { font-size: 2.2rem; }
    .wf-hero-actions { flex-direction: column; align-items: flex-start; }
    .wf-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .wf-stat-item { padding: 20px; }
    .wf-btn-primary, .wf-btn-outline { width: 100%; text-align: center; }
    .wf-visit-form-card { padding: 28px 20px; }
}

/* ============================================================
   TYPOGRAPHY STANDARDISATION FIX
   Applied after full audit across all pages + all viewports.
   All rules use !important only where a prior cascade forced it.
   ============================================================ */

/* ── 1. FONT FAMILY ─────────────────────────────────────────
   Root variables (set by theme_css_variables() PHP):
     --font-heading = Playfair Display
     --font-body    = Inter (declared in :root)
   BUT body is actually inheriting Montserrat from Bootstrap
   override. We lock body to Inter explicitly.
   All headings (h1–h4, .page-title, .section-title) → Playfair.
   All body text, labels, buttons → Inter.
   ──────────────────────────────────────────────────────────── */

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px;
    line-height: 1.72;
    color: var(--charcoal, #1F2935);
}

h1, h2, h3, h4,
.page-title,
.section-title,
.wf-hero-title,
.wf-section-title,
.wf-visit-title,
.wf-about-badge strong,
.wf-test-quote,
.project-detail-content h2,
.detail-block h2,
.sticky-lead-panel h2,
.blog-detail-title,
.faq-section h2,
.wf-why-title,
.wf-proj-name,
.wf-blog-title,
.wf-visit-form-title,
.wf-faq-header .wf-section-title,
.testimonial-card blockquote,
.admin-brand-text strong {
    font-family: 'Playfair Display', Georgia, serif !important;
}

/* Body-level elements → Inter */
p, li, span, label, input, textarea, select, button,
.nav-link, .eyebrow, .wf-eyebrow-text,
.wf-hero-text, .wf-section-copy, .wf-stat-label,
.wf-about-point-title, .wf-about-point-text,
.wf-why-text, .wf-proj-desc, .wf-proj-location,
.wf-proj-specs, .wf-proj-cta-link, .wf-proj-actions,
.wf-test-name, .wf-test-role,
.wf-blog-meta, .wf-blog-excerpt, .wf-blog-read,
.wf-faq-btn, .wf-faq-body p,
.wf-visit-desc, .wf-visit-contact-label, .wf-visit-contact-value,
.wf-form-input, .wf-form-submit, .wf-form-note,
.wf-btn-primary, .wf-btn-outline, .wf-btn-navy, .wf-btn-outline-navy,
.breadcrumb-line, .section-copy, .feature-pill span,
.form-label, .form-control, .btn, .badge,
.blog-meta, .blog-body p, .project-detail-content p,
.footer-title, .footer-list li, .footer-list a,
.accordion-button, .accordion-body,
.disclaimer-title, .disclaimer-body, .disclaimer-btn-accept {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* ── 2. FONT SIZES — standardised scale ─────────────────────
   Desktop:
     page-title (hero h1) : clamp(2.8rem, 6vw, 5rem) — large hero impact
     section-title         : clamp(2rem, 3.5vw, 3rem) — consistent across pages
     detail h2 (inner)     : clamp(1.6rem, 2.5vw, 2.2rem)
     body copy             : 1rem (16px)
     small / meta          : 0.875rem (14px)
     eyebrow               : 0.72rem (11.5px)
   ──────────────────────────────────────────────────────────── */

/* Inner page H1 hero title */
.page-title {
    font-size: clamp(2.4rem, 5.5vw, 4.8rem) !important;
    font-weight: 800 !important;
    line-height: 1.0 !important;
    letter-spacing: -1px !important;
    font-family: 'Playfair Display', Georgia, serif !important;
}

/* All .section-title across every page — one consistent rule */
.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.3px !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    color: var(--dark-navy, #082C57) !important;
}

/* wf- section title (homepage) — slightly larger for impact */
.wf-section-title {
    font-size: clamp(2rem, 3.8vw, 3.1rem) !important;
    font-family: 'Playfair Display', Georgia, serif !important;
}

/* Detail/inner section H2 (project detail, about, etc.) */
.detail-block h2,
.project-detail-content h2,
.sticky-lead-panel h2,
.faq-section h2,
.wf-visit-form-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    line-height: 1.2 !important;
}

/* Body copy — unified */
.section-copy,
.wf-section-copy,
.detail-block p,
.project-detail-content p,
.project-detail-content li,
.wf-about-point-text,
.wf-proj-desc,
.wf-why-text,
.wf-visit-desc,
.wf-test-quote,
.wf-blog-excerpt,
.accordion-body,
.accordion-body p {
    font-size: 1rem !important; /* 16px */
    line-height: 1.75 !important;
    color: var(--ink-muted, #687586) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* Small meta / labels */
.eyebrow,
.wf-eyebrow-text,
.breadcrumb-line,
.blog-meta,
.wf-blog-meta,
.wf-proj-location,
.wf-visit-contact-label,
.form-label,
.feature-pill span {
    font-size: 0.72rem !important; /* ~11.5px */
    letter-spacing: 0.12em !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* Nav links */
.navbar-nav .nav-link {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.07em !important;
}

/* Buttons — unified */
.btn, .wf-btn-primary, .wf-btn-outline, .wf-btn-navy,
.wf-btn-outline-navy, .wf-form-submit, .nav-cta {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    font-size: 0.8rem !important;
}

/* Form inputs */
.form-control, .form-select, .wf-form-input {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.9rem !important;
    color: var(--charcoal, #1F2935) !important;
}

/* ── 3. COLOUR — lock correct values ─────────────────────────
   Dark navy headings: #082C57
   Body / muted:       #687586
   Gold accents:       #A9956B
   White on dark bg:   #fff / rgba(255,255,255,0.82)
   Form text:          #1F2935
   ──────────────────────────────────────────────────────────── */

.section-title,
.wf-section-title,
h2:not(.wf-title-white):not(.wf-visit-title):not(.wf-why-title):not(.footer-title):not(.wf-faq-btn):not([class*="wf-faq-item"]):not(.why-band h2) {
    color: var(--dark-navy, #082C57) !important;
}
/* .why-band h2 explicitly white — higher specificity than the rule above via repeated class+type */
.why-band h2.section-title,
section.why-band h2 {
    color: #ffffff !important;
}

.section-copy,
.wf-section-copy,
.wf-proj-desc,
.wf-blog-excerpt,
.wf-why-text,
.wf-visit-desc,
.wf-about-point-text {
    color: var(--ink-muted, #687586) !important;
}

/* Override the --lux-blue colour that was being set incorrectly */
.section-title,
.page-title {
    color: var(--dark-navy, #082C57) !important;
}

/* Hero titles stay white */
.wf-hero-title,
.page-hero .page-title,
.project-detail-hero .page-title {
    color: #fff !important;
}

/* ── 4. LINE HEIGHT — consistent rhythm ──────────────────────*/
.page-title    { line-height: 1.0 !important; }
.section-title { line-height: 1.12 !important; }
.wf-section-title { line-height: 1.1 !important; }
p              { line-height: 1.75; }
.nav-link      { line-height: 1.4 !important; }

/* ── 5. ALIGNMENT — fix container edge issues ────────────────
   Horizontal scroll caused by:
   - .nav-dropdown-item overflow (now overflow:hidden at parent)
   - .footer-contact ul wider than col
   - .wf-hero-inner missing side padding on narrow viewports
   ──────────────────────────────────────────────────────────── */

/* Prevent nav dropdown from causing body overflow */
.navbar { overflow: visible; }
.nav-dropdown-item { overflow: visible; }
.site-header { overflow: hidden; }

/* Container — always full-width with proper padding */
.container-xl {
    padding-left: max(16px, env(safe-area-inset-left)) !important;
    padding-right: max(16px, env(safe-area-inset-right)) !important;
}

/* Hero inner — side padding so text doesn't touch edge on small screens */
.wf-hero-inner {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
}

/* Footer contact — prevent overflow */
.footer-contact { overflow: hidden; }
.footer-contact li { word-break: break-word; }
.footer-list a { word-break: break-word; }

/* ── 6. RESPONSIVE TYPOGRAPHY ────────────────────────────────
   Tablet (≤991px) and Mobile (≤767px) overrides
   ──────────────────────────────────────────────────────────── */

@media (max-width: 991.98px) {
    .page-title {
        font-size: clamp(2.2rem, 6vw, 3.6rem) !important;
    }
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
    }
    .wf-section-title {
        font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
    }
    .wf-hero-title {
        font-size: clamp(2.4rem, 6vw, 4rem) !important;
    }
    .wf-visit-title {
        font-size: clamp(1.6rem, 4vw, 2.4rem) !important;
    }
}

@media (max-width: 767.98px) {
    body { font-size: 15px !important; }

    .page-title {
        font-size: clamp(1.9rem, 8vw, 2.8rem) !important;
        letter-spacing: -0.5px !important;
    }
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
    }
    .wf-section-title {
        font-size: clamp(1.6rem, 5vw, 2.1rem) !important;
    }
    .wf-hero-title {
        font-size: clamp(2rem, 7vw, 3rem) !important;
        letter-spacing: -0.5px !important;
    }
    .section-copy,
    .wf-section-copy {
        font-size: 0.95rem !important;
    }
    .detail-block h2,
    .project-detail-content h2,
    .sticky-lead-panel h2 {
        font-size: 1.4rem !important;
    }
    /* Text align — left-align centred headers on mobile for readability */
    .wf-testimonials-header,
    .wf-faq-header {
        text-align: left !important;
    }
    .wf-eyebrow-centered {
        justify-content: flex-start !important;
    }
    /* Prevent content touching screen edge */
    .wf-proj-body { padding: 22px 20px !important; }
    .wf-test-card { padding: 28px 22px !important; }
    .wf-blog-body { padding: 20px 22px !important; }
    .wf-faq-btn   { padding: 18px 16px !important; font-size: 0.9rem !important; }
}

@media (max-width: 479.98px) {
    .page-title {
        font-size: clamp(1.7rem, 9vw, 2.4rem) !important;
    }
    .section-title,
    .wf-section-title {
        font-size: 1.5rem !important;
    }
    .wf-hero-title {
        font-size: 1.9rem !important;
    }
    .navbar .brand-logo {
        max-width: 110px !important;
        max-height: 36px !important;
    }
}

/* ============================================================
   LOGO SIZES — definitive final rules (always win cascade)
   Header nav logo  : 100px height
   Footer logo      : 125px height
   ============================================================ */

/* Header logo — 100px */
.navbar-brand .brand-logo,
.site-header .brand-logo {
    height: 100px !important;
    max-height: 100px !important;
    max-width: 220px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Footer logo — 125px */
.footer-brand .brand-logo,
footer .brand-logo {
    height: 125px !important;
    max-height: 125px !important;
    max-width: 260px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Tablet */
@media (max-width: 991.98px) {
    .navbar-brand .brand-logo,
    .site-header .brand-logo {
        height: 80px !important;
        max-height: 80px !important;
    }
    .footer-brand .brand-logo,
    footer .brand-logo {
        height: 110px !important;
        max-height: 110px !important;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .navbar-brand .brand-logo,
    .site-header .brand-logo {
        height: 64px !important;
        max-height: 64px !important;
        max-width: 160px !important;
    }
    .footer-brand .brand-logo,
    footer .brand-logo {
        height: 100px !important;
        max-height: 100px !important;
        max-width: 200px !important;
    }
}

/* ============================================================
   COMPREHENSIVE LIVE AUDIT FIX — all 5 issues
   ============================================================ */

/* ── FIX 1: Nav dropdown — make visible on hover ── */
/* The dropdown has correct hover CSS but pointer-events:none
   blocks the mouseenter event from triggering opacity change.
   Override with a reliable display-block + JS-free hover. */
@media (min-width: 992px) {
    .nav-projects-dropdown {
        display: block !important;
        opacity: 0;
        pointer-events: none;
        position: absolute;
        transform: translateY(10px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }
    .nav-dropdown-item:hover .nav-projects-dropdown,
    .nav-dropdown-item:focus-within .nav-projects-dropdown {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
    /* Chevron rotates on hover */
    .nav-dropdown-item:hover .nav-chevron,
    .nav-dropdown-item:focus-within .nav-chevron {
        transform: rotate(180deg);
    }
}

/* Mobile: hidden until .is-open toggled by JS */
@media (max-width: 991.98px) {
    .nav-projects-dropdown {
        display: none !important;
        opacity: 1;
        position: static;
        transform: none;
    }
    .nav-projects-dropdown.is-open {
        display: block !important;
    }
}

/* ── FIX 2: Nav link colors ── */
/* Default = white. Active/hover = gold. */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.nav-dropdown-item.active > .nav-link-projects {
    color: var(--gold, #A9956B) !important;
}
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
}
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link:hover,
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link.active {
    color: var(--gold, #A9956B) !important;
}
/* BOOK SITE VISIT button stays navy-on-white */
.nav-cta.btn-gold {
    color: var(--dark-navy, #082C57) !important;
}
.nav-cta.btn-gold:hover {
    color: #fff !important;
}

/* ── FIX 3: Footer titles — force white on dark background ── */
/* computed shows rgb(8,44,87) because the lux-blue heading rule cascades */
.site-footer .footer-title,
footer .footer-title {
    color: #FFFFFF !important;
    opacity: 1;
}
.site-footer .footer-text,
.site-footer .footer-list,
.site-footer .footer-contact,
.site-footer p,
footer .footer-list a,
footer .footer-contact a {
    color: rgba(255, 255, 255, 0.68) !important;
}
.site-footer .footer-list a:hover,
.site-footer .footer-contact a:hover {
    color: var(--gold, #A9956B) !important;
}

/* ── FIX 4: Projects listing page — single project as full-width list ── */
/* Currently: col-md-6 col-xl-4 = 2-col grid with 1 card sitting in left half
   Fix: when only 1 project, make it full-width landscape list row */
.projects-page .project-section .row.g-4 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Each card: full-width landscape layout (image left, content right) */
.projects-page .project-card {
    border: 1px solid rgba(8, 44, 87, 0.12);
    box-shadow: 0 4px 24px rgba(8, 44, 87, 0.07);
    display: grid !important;
    grid-template-columns: 420px 1fr;
    min-height: 280px;
    transition: box-shadow 0.28s, transform 0.28s;
    width: 100% !important;
}

.projects-page .project-card:hover {
    box-shadow: 0 16px 60px rgba(8, 44, 87, 0.14);
    transform: translateY(-4px);
}

/* Image fills left column */
.projects-page .project-card .project-image {
    display: block !important;
    height: 100% !important;
    overflow: hidden;
    position: relative;
}

.projects-page .project-card .project-image img {
    height: 100% !important;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.4s;
    width: 100% !important;
}

.projects-page .project-card:hover .project-image img {
    transform: scale(1.04);
}

/* Content fills right column */
.projects-page .project-card .project-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px !important;
}

.projects-page .project-card .project-body h2 {
    font-size: 1.6rem !important;
    margin-bottom: 10px;
}

.projects-page .project-card .project-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.projects-page .project-card .project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 24px;
}

.projects-page .project-card .project-meta span {
    color: var(--ink-muted, #687586);
    font-size: 0.82rem;
    font-weight: 600;
}

.projects-page .project-card .project-meta i {
    color: var(--gold, #A9956B);
    margin-right: 4px;
}

.projects-page .project-card .project-card-actions {
    align-items: center;
    border-top: 1px solid rgba(8, 44, 87, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.projects-page .project-card .project-number {
    color: var(--gold, #A9956B);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
}

/* Wrap the Bootstrap col so the card takes full width */
.projects-page .project-section .row.g-4 > div[class*="col"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

/* Tablet: still landscape but smaller image col */
@media (max-width: 991.98px) {
    .projects-page .project-card {
        grid-template-columns: 320px 1fr;
    }
    .projects-page .project-card .project-body {
        padding: 28px 30px !important;
    }
}

/* Mobile: stack to portrait */
@media (max-width: 767.98px) {
    .projects-page .project-card {
        display: block !important;
        grid-template-columns: none;
    }
    .projects-page .project-card .project-image {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }
    .projects-page .project-card .project-image img {
        min-height: unset !important;
        height: 100% !important;
    }
    .projects-page .project-card .project-body {
        padding: 24px 20px !important;
    }
}

/* ============================================================
   FIX PATCH — 6 live issues
   ============================================================ */

/* ── 1. HEADER scrolled = navy (not white) ── */
.site-header.is-scrolled,
.site-header.menu-open {
    background: rgba(8, 44, 87, 0.97) !important;
    box-shadow: 0 16px 46px rgba(6, 31, 61, 0.28) !important;
}

/* ── 1. NAV LINKS default = gold, active/hover = white (original) ── */
.navbar-dark .navbar-nav .nav-link {
    color: var(--gold, #A9956B) !important;
}
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link,
.site-header.menu-open .navbar-dark .navbar-nav .nav-link {
    color: var(--gold, #A9956B) !important;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff !important;
}

/* ── 2. PROJECTS DROPDOWN — reliable CSS hover ── */
@media (min-width: 992px) {
    /* Hidden by default using visibility+opacity (avoids display:none animation issue) */
    .nav-projects-dropdown {
        display: block !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        transform: translateY(10px) !important;
        transition: opacity 0.2s ease, transform 0.2s ease !important;
        visibility: hidden !important;
    }
    /* Shown on hover — use both :hover and :focus-within */
    .nav-dropdown-item:hover > .nav-projects-dropdown,
    .nav-dropdown-item:focus-within > .nav-projects-dropdown {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }
}
@media (max-width: 991.98px) {
    .nav-projects-dropdown {
        display: none !important;
        visibility: visible !important;
    }
    .nav-projects-dropdown.is-open {
        display: block !important;
    }
}

/* ── 4. FOOTER TITLE = gold ── */
.footer-title,
.site-footer .footer-title,
footer .footer-title {
    color: var(--gold, #A9956B) !important;
}

/* ── 3+5. PROJECTS LIST PAGE — match homepage card style ── */
/* Remove the list override added previously — show as wf-proj-card grid */
.projects-page .project-section .row.g-4,
.projects-page .project-section .row.g-4 > div[class*="col"],
.projects-page .project-card,
.projects-page .project-card .project-image,
.projects-page .project-card .project-image img,
.projects-page .project-card .project-body {
    all: revert !important;
}

/* Now re-apply the home page card style (wf-proj-card look) to projects page */
.projects-page .project-section .row.g-4 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.projects-page .project-section .row.g-4 > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
    margin-bottom: 28px !important;
}

/* Card: landscape layout matching home page wf-proj-single */
.projects-page .project-card {
    background: #fff !important;
    border: 1px solid rgba(8, 44, 87, 0.13) !important;
    display: grid !important;
    grid-template-columns: 420px 1fr !important;
    min-height: 300px !important;
    overflow: hidden !important;
    transition: transform 0.28s ease, box-shadow 0.28s ease !important;
    width: 100% !important;
}

.projects-page .project-card:hover {
    box-shadow: 0 28px 80px rgba(8, 44, 87, 0.13) !important;
    transform: translateY(-5px) !important;
}

/* Image — left column */
.projects-page .project-card .project-image {
    display: block !important;
    height: 100% !important;
    min-height: 300px !important;
    overflow: hidden !important;
    position: relative !important;
}

.projects-page .project-card .project-image img {
    display: block !important;
    height: 100% !important;
    min-height: 300px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
    width: 100% !important;
}

.projects-page .project-card:hover .project-image img {
    transform: scale(1.04) !important;
}

/* Status badge — top-left of image (matching wf-proj-badge) */
.projects-page .project-card .project-status {
    background: #fff !important;
    border-left: 4px solid var(--gold, #A9956B) !important;
    box-shadow: 0 12px 24px rgba(8,44,87,0.12) !important;
    color: var(--dark-navy, #082C57) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    left: 18px !important;
    letter-spacing: 1px !important;
    padding: 7px 12px !important;
    position: absolute !important;
    text-transform: uppercase !important;
    top: 18px !important;
}

/* Body — right column */
.projects-page .project-card .project-body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 36px 44px !important;
}

/* Number */
.projects-page .project-card .project-number {
    color: var(--gold, #A9956B) !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-bottom: 14px !important;
}

/* Title */
.projects-page .project-card .project-body h2 {
    color: var(--dark-navy, #082C57) !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.7rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
}

/* Description */
.projects-page .project-card .project-body p {
    color: var(--ink-muted, #687586) !important;
    font-size: 0.95rem !important;
    line-height: 1.72 !important;
    margin-bottom: 18px !important;
}

/* Meta chips */
.projects-page .project-card .project-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px 20px !important;
    margin-bottom: 22px !important;
}

.projects-page .project-card .project-meta span {
    color: var(--ink-muted, #687586) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
}

.projects-page .project-card .project-meta i {
    color: var(--gold, #A9956B) !important;
    margin-right: 4px !important;
}

/* Actions */
.projects-page .project-card .project-card-actions {
    align-items: center !important;
    border-top: 1px solid rgba(8,44,87,0.09) !important;
    display: flex !important;
    gap: 20px !important;
    padding-top: 20px !important;
}

.projects-page .project-card .project-card-actions a {
    color: var(--dark-navy, #082C57) !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
}

.projects-page .project-card .project-card-actions a:hover {
    color: var(--gold, #A9956B) !important;
}

/* Tablet */
@media (max-width: 991.98px) {
    .projects-page .project-card {
        grid-template-columns: 300px 1fr !important;
    }
    .projects-page .project-card .project-image,
    .projects-page .project-card .project-image img {
        min-height: 260px !important;
    }
    .projects-page .project-card .project-body {
        padding: 28px 28px !important;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .projects-page .project-card {
        display: block !important;
        grid-template-columns: none !important;
    }
    .projects-page .project-card .project-image {
        height: auto !important;
        min-height: unset !important;
        aspect-ratio: 16/9 !important;
    }
    .projects-page .project-card .project-image img {
        min-height: unset !important;
        height: 100% !important;
    }
    .projects-page .project-card .project-body {
        padding: 24px 20px !important;
    }
}

/* ============================================================
   FINAL PRECISE OVERRIDES — resolve all remaining cascade conflicts
   ============================================================ */

/* ── NAV LINKS: gold default, white on active/hover ── */
.navbar-dark .navbar-nav .nav-link {
    color: var(--gold, #A9956B) !important;
}
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link,
.site-header.menu-open .navbar-dark .navbar-nav .nav-link {
    color: var(--gold, #A9956B) !important;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff !important;
}
/* Scrolled header: keep navy background */
.site-header.is-scrolled,
.site-header.menu-open {
    background-color: rgba(8, 44, 87, 0.97) !important;
}

/* ── FOOTER-TITLE: gold — must beat h2:not() !important rule ── */
/* The .footer-title elements are h2 tags, so h2:not(...) was catching them */
/* Inline-force proved gold works when specificity wins — add element+class combo */
h2.footer-title,
.footer-title,
.site-footer h2.footer-title,
.site-footer .footer-title,
footer h2.footer-title,
footer .footer-title {
    color: var(--gold, #A9956B) !important;
}

/* ── DROPDOWN: visibility-based show on hover (most reliable) ── */
@media (min-width: 992px) {
    .nav-projects-dropdown {
        display: block !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        transform: translateY(10px) !important;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s !important;
        visibility: hidden !important;
    }
    .nav-dropdown-item:hover > .nav-projects-dropdown,
    .nav-dropdown-item:focus-within > .nav-projects-dropdown {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0px) !important;
        transition-delay: 0s !important;
        visibility: visible !important;
    }
}

/* ============================================================
   DEFINITIVE FINAL OVERRIDES — last rule in file always wins
   These are the exact rules confirmed working by live JS audit
   ============================================================ */

/* Footer titles: GOLD — beats h2:not() dark-navy rule */
h2.footer-title,
.footer-title,
.site-footer .footer-title,
footer .footer-title,
.site-footer h2.footer-title,
footer h2.footer-title {
    color: #A9956B !important;
}

/* Nav links: GOLD default, WHITE on active page, WHITE on hover */
.navbar-dark .navbar-nav .nav-link {
    color: #A9956B !important;
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff !important;
}
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link,
.site-header.menu-open .navbar-dark .navbar-nav .nav-link {
    color: #A9956B !important;
}
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link.active,
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link:hover,
.site-header.menu-open .navbar-dark .navbar-nav .nav-link.active,
.site-header.menu-open .navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

/* Header scrolled: NAVY */
.site-header.is-scrolled,
.site-header.menu-open {
    background-color: rgba(8, 44, 87, 0.97) !important;
}

/* Dropdown: show on hover via visibility */
@media (min-width: 992px) {
    .nav-projects-dropdown {
        display: block !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        transform: translateY(10px) !important;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s !important;
        visibility: hidden !important;
    }
    .nav-dropdown-item:hover > .nav-projects-dropdown,
    .nav-dropdown-item:focus-within > .nav-projects-dropdown {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0px) !important;
        transition-delay: 0s !important;
        visibility: visible !important;
    }
    .nav-dropdown-item:hover .nav-chevron {
        transform: rotate(180deg) !important;
    }
}

/* ============================================================
   ALL-ISSUES FIX — 5 issues resolved
   ============================================================ */

/* ── ISSUE 1+2: Section heading colours based on background ──
   White backgrounds (light sections) → heading = navy
   Dark/navy backgrounds → heading = white
   We use CSS :where() with parent background detection via classes */

/* Light background sections — navy headings (already default) */
.wf-about .wf-section-title,
.wf-projects .wf-section-title,
.wf-testimonials .wf-section-title,
.wf-blog .wf-section-title,
.section-title {
    color: var(--dark-navy, #082C57) !important;
}

/* Dark navy background sections → white headings */
.wf-why .wf-section-title,
.wf-why .wf-why-title,
.why-band .section-title,
.why-band h2,
.wf-visit .wf-visit-title,
.page-hero .page-title,
.project-detail-hero .page-title,
.dark-bg .section-title,
[style*="background: #082"] .section-title,
[style*="background:#082"] .section-title,
[style*="background: rgb(8"] .section-title,
[style*="background: rgb(6"] .section-title {
    color: #ffffff !important;
}

/* Wireframe dark sections already handled by .wf-title-white class */
.wf-title-white { color: #ffffff !important; }

/* ── ISSUE 3: Logo on scroll → keep transparent/white logo ──
   data-logo-scrolled swaps to dark blue logo on navy header = invisible
   JS swaps src; we override via CSS filter to make dark logo appear white */
.site-header.is-scrolled .brand-logo,
.site-header.menu-open .brand-logo {
    filter: brightness(0) invert(1) !important;
}
/* Remove filter when not scrolled */
.site-header:not(.is-scrolled):not(.menu-open) .brand-logo {
    filter: none !important;
}

/* ── ISSUE 3: BOOK SITE VISIT button — keep visible on scroll ──
   On scrolled header (navy bg) the white-bordered button should stay white */
.site-header.is-scrolled .nav-cta,
.site-header.menu-open .nav-cta {
    background: transparent !important;
    border-color: rgba(255,255,255,0.8) !important;
    color: #ffffff !important;
}
.site-header.is-scrolled .nav-cta:hover,
.site-header.menu-open .nav-cta:hover {
    background: rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
}

/* ── ISSUE 4: Dropdown — remove overflow:hidden on header ──
   .site-header has overflow:hidden which clips dropdown below it
   Must be visible for dropdown to show outside header bounds */
.site-header {
    overflow: visible !important;
}
/* But navbar itself should clip horizontally to prevent layout shift */
.navbar {
    overflow: visible !important;
}
/* The dropdown must be above everything */
.nav-projects-dropdown {
    z-index: 9999 !important;
}
/* Ensure dropdown shows correctly after overflow fix */
@media (min-width: 992px) {
    .nav-dropdown-item {
        position: relative !important;
        overflow: visible !important;
    }
    .nav-projects-dropdown {
        display: block !important;
        left: 0 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        top: 100% !important;
        transform: translateY(6px) !important;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s !important;
        visibility: hidden !important;
        z-index: 9999 !important;
    }
    .nav-dropdown-item:hover > .nav-projects-dropdown,
    .nav-dropdown-item:focus-within > .nav-projects-dropdown {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        transition-delay: 0s !important;
        visibility: visible !important;
    }
}

/* ── ISSUE 5: Project detail reveal at 100% zoom ──
   .reveal uses IntersectionObserver threshold:0.14
   At 100% zoom + large content blocks, col-lg-8 doesn't cross threshold
   Make .reveal on project page immediately visible */
.project-detail-page .col-lg-8.reveal,
.project-detail-page .col-lg-4.reveal,
.inner-page .col-lg-8.reveal,
.inner-page .col-lg-4.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}
/* Also force all reveal children on inner pages */
.inner-page .reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ── FINAL: Footer titles gold — definitive ── */
h2.footer-title, .footer-title,
.site-footer h2.footer-title,
.site-footer .footer-title,
footer h2.footer-title,
footer .footer-title {
    color: #A9956B !important;
}

/* ── FINAL: Nav gold default, white active/hover ── */
.navbar-dark .navbar-nav .nav-link { color: #A9956B !important; }
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover { color: #ffffff !important; }
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link { color: #A9956B !important; }
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link.active,
.site-header.is-scrolled .navbar-dark .navbar-nav .nav-link:hover { color: #ffffff !important; }

/* ── FINAL: Scrolled header navy ── */
.site-header.is-scrolled,
.site-header.menu-open {
    background-color: rgba(8, 44, 87, 0.97) !important;
}

/* ============================================================
   WHY-BAND H2 FIX — definitive, maximum specificity
   Root cause: bare h2:not(...) rule matched .why-band h2.section-title
   because :not() cannot exclude ancestor selectors.
   This rule uses element+class+ancestor chain for highest specificity
   and is positioned last in the cascade.
   ============================================================ */
body section.why-band h2.section-title,
body .why-band h2.section-title,
html body .why-band .section-title {
    color: #ffffff !important;
}
