:root {
    --home-ink: #14362b;
    --home-forest: #0b2e24;
    --home-gold: #c9a55a;
    --home-sand: #efe4d2;
    --home-stone: #f7f1e8;
    --home-copy: #f1eadf;
    --home-muted: rgba(241, 234, 223, 0.74);
    --home-line: rgba(255, 255, 255, 0.12);
    --home-shadow: 0 24px 80px rgba(5, 20, 15, 0.2);
}

.site-nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.desktop-enquire-float,
.mobile-enquire-cta__button {
    width: fit-content;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    min-width: 84px;
    min-height: 84px;
    padding: 0.72rem 0.8rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11, 46, 36, 0.96), rgba(18, 79, 59, 0.96));
    color: #fff;
    box-shadow: 0 16px 36px rgba(6, 26, 20, 0.22);
    font-family: 'lulu-medium', sans-serif;
    letter-spacing: 0.03em;
    text-transform: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.desktop-enquire-float {
    left: 16px;
    bottom: 16px;
    display: none !important;
}

.desktop-enquire-float:hover,
.mobile-enquire-cta__button:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 44px rgba(6, 26, 20, 0.26);
}

.desktop-enquire-float:active,
.mobile-enquire-cta__button:active {
    opacity: 0.88;
}

.desktop-enquire-float__icon,
.mobile-enquire-cta__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--home-gold);
}

.desktop-enquire-float__icon svg,
.mobile-enquire-cta__icon svg {
    width: 22px;
    height: 22px;
}

.sticky-cta__label {
    display: block;
    font-size: 0.74rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav-mobile,
.site-nav-desktop {
    width: 100%;
}

.site-nav-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.site-nav-mobile-actions,
.site-nav-cta-group,
.footer-social,
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.55rem 0.7rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--home-gold);
    font-family: 'lulu-medium', sans-serif;
    font-size: 0.92rem;
    line-height: 1;
}

.mobile-menu-trigger__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.mobile-menu-trigger__text {
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mobile-menu-trigger:focus-visible {
    outline: 2px solid rgba(201, 165, 90, 0.7);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(201, 165, 90, 0.14);
}

.site-nav-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.site-nav-icon svg {
    width: 18px;
    height: 18px;
}

.site-nav-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin: 0;
    padding: 0;
}

.site-nav-item {
    position: relative;
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.94rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-nav-dropdown .site-nav-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.site-nav-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 230px;
    padding: 0.8rem 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 50px rgba(3, 22, 17, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
}

.site-nav-menu a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--home-ink);
    font-size: 0.92rem;
}

.site-nav-menu a:hover {
    background: #f7f1e8;
}

.site-nav-dropdown:hover .site-nav-menu,
.site-nav-dropdown:focus-within .site-nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    background: transparent;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav-cta-primary {
    border-color: var(--home-gold);
    background: var(--home-gold);
    color: #13231c;
}

.site-nav-cta-muted {
    background: rgba(255, 255, 255, 0.06);
}

.slide-menu-group summary {
    list-style: none;
}

.slide-menu {
    width: min(320px, 86vw);
    left: calc(-1 * min(320px, 86vw));
    z-index: 10020;
}

.slide-menu-header {
    min-height: 64px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.slide-menu-logo {
    display: flex;
    align-items: center;
    min-height: 40px;
    margin: 0;
    line-height: 1;
    color: #c89f4b;
}

.close-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.close-btn img {
    width: 18px;
    height: 18px;
    display: block;
}

.menu-overlay {
    z-index: 10010;
}

.slide-menu-group summary::-webkit-details-marker {
    display: none;
}

.slide-submenu {
    display: grid;
    gap: 0.15rem;
    padding: 0 0 0.6rem 1.4rem;
}

.slide-submenu-item {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    padding: 0.35rem 0;
}

.slide-menu-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 1rem;
}

.slide-menu-action {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 0.85rem 0.55rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    gap: 0.38rem;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.82rem;
    text-align: center;
}

.slide-menu-action-primary {
    background: var(--home-gold);
    border-color: var(--home-gold);
    color: #13231c;
}

.slide-menu-action__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slide-menu-action__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.slide-menu-action__label {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.2;
}

.main-footer {
    padding: 5rem 0 7rem;
    background: #08251d;
    color: rgba(255, 255, 255, 0.76);
}

.main-footer a {
    color: inherit;
}

.footer-top,
.footer-middle,
.footer-social-band,
.footer-bottom {
    display: grid;
    gap: 2rem;
}

.footer-top {
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.35fr);
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    max-width: 34rem;
    margin: 1.2rem 0 1.4rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-social-band {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-band .footer-social {
    display: grid;
    gap: 1rem;
    justify-items: center;
    text-align: center;
}

.footer-social-band .footer-social a,
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-column h5,
.footer-contact h5,
.footer-lead-card h5,
.footer-social h5 {
    margin-bottom: 1rem;
    color: #edc773;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column ul {
    margin: 0;
    padding: 0;
}

.footer-column li+li {
    margin-top: 0.7rem;
}

.footer-middle {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: start;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact {
    display: grid;
    gap: 1.5rem;
}

.footer-office {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-office:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.footer-office h4 {
    margin-bottom: 0.6rem;
    color: var(--home-gold);
    font-size: 1.15rem;
}

.footer-office p,
.footer-lead-card p {
    margin-bottom: 0.7rem;
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
    width: min(100%, 42rem);
}

.footer-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 112px;
    padding: 0.95rem 0.65rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-align: center;
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 165, 90, 0.44);
    background: rgba(255, 255, 255, 0.07);
}

.footer-social-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #dfdfdf;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-icon svg {
    width: 21px;
    height: 21px;
}

.footer-social-label {
    font-size: 0.84rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.footer-lead-card {
    padding: 1.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mini-form .form-control {
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.footer-mini-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-mini-form textarea.form-control {
    min-height: 96px;
    resize: vertical;
}

.footer-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: var(--home-gold);
    color: #13231c;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.54);
}

.popup-form .modal-dialog {
    max-width: 640px;
    padding: 0 14px;
    transform: scale(0.96) translateY(12px);
    transition: transform 0.24s ease;
}

.popup-form.show .modal-dialog {
    transform: scale(1) translateY(0);
}

.popup-form .modal-content {
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #11362b 0%, #0b2e24 100%);
    box-shadow: 0 30px 80px rgba(2, 12, 9, 0.45);
    max-height: min(90vh, 760px);
    overflow: hidden;
}

.popup-form .modal-header {
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.4rem 0.65rem;
    border-bottom: 0;
}

.popup-form-heading {
    display: grid;
    gap: 0.45rem;
}

.popup-form .modal-title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 1.05;
}

.popup-form-copy {
    margin: 0;
    color: rgba(241, 234, 223, 0.76);
    font-size: 0.98rem;
    line-height: 1.55;
}

.popup-form .modal-body {
    padding: 0.4rem 1.4rem 1.55rem;
    overflow-y: auto;
}

.popup-form .form-label {
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.popup-form-optional {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    letter-spacing: 0;
    text-transform: none;
}

.popup-form .form-control,
.popup-form .form-select {
    min-height: 58px;
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.popup-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.popup-form textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.popup-form .form-control:focus,
.popup-form .form-select:focus {
    border-color: rgba(201, 165, 90, 0.62);
    box-shadow: 0 0 0 0.18rem rgba(201, 165, 90, 0.16);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.popup-form .form-check {
    margin-top: 0.15rem;
}

.popup-form .form-check-label {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.5;
}

.popup-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.15rem;
}

.enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: var(--home-gold);
    color: #13231c;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.enquire-btn:hover {
    background: #d2b066;
    color: #13231c;
}

.mob-enq {
    display: none;
}

.home-shell {
    background: var(--home-stone);
    color: var(--home-ink);
}

.home-shell .container {
    position: relative;
    z-index: 2;
}

.home-shell section {
    position: relative;
}

.home-hero {
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 3rem;
    background:
        linear-gradient(90deg, rgba(8, 24, 19, 0.88) 0%, rgba(8, 24, 19, 0.72) 35%, rgba(8, 24, 19, 0.16) 70%),
        linear-gradient(0deg, rgba(8, 24, 19, 0.4), rgba(8, 24, 19, 0.4)),
        url("../images/banner/MD%20Gantry.jpg") center center / cover no-repeat;
    color: #fff;
    overflow: clip;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: end;
}

.home-eyebrow,
.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: var(--home-muted);
}

.home-eyebrow::before,
.home-kicker::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
}

.home-hero-brand {
    margin: 1.15rem 0 1rem;
    color: var(--home-gold);
    font-size: clamp(1rem, 1.2vw + 0.8rem, 1.35rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.home-hero-copy h1 {
    max-width: none;
    margin-bottom: 1.15rem;
    font-size: clamp(2.2rem, 4.2vw, 4.8rem);
    line-height: 0.94;
}

.home-hero-line {
    display: block;
    white-space: nowrap;
}

.home-hero-copy h1 .highlight-gold {
    color: var(--home-gold);
}

.home-hero-copy p {
    max-width: 40rem;
    margin-bottom: 2rem;
    color: var(--home-copy);
    font-size: clamp(1rem, 1vw + 0.4rem, 1.22rem);
    line-height: 1.58;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.home-btn,
.home-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    border: 1px solid var(--home-gold);
}

.home-btn {
    background: var(--home-gold);
    color: #13231c;
}

.home-btn:hover {
    transform: translateY(-2px);
    color: #13231c;
    background: #d7b46a;
}

.home-btn-ghost {
    background: var(--home-gold);
    color: #13231c;
}

.home-btn-ghost:hover {
    transform: translateY(-2px);
    color: #13231c;
    background: #d7b46a;
}

.home-section {
    padding: 6rem 0;
}

.home-section-dark {
    background: var(--home-forest);
    color: #fff;
}

.home-lead-in {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
}

.home-lead-in h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.home-lead-in p {
    margin-bottom: 0;
    color: rgba(20, 54, 43, 0.72);
}

.home-section-dark .home-lead-in p {
    color: rgba(255, 255, 255, 0.72);
}

.home-feature-grid,
.home-story-grid,
.home-closing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2rem;
    align-items: stretch;
}

.home-photo {
    min-height: 560px;
    background-position: center;
    background-size: cover;
    box-shadow: var(--home-shadow);
}

.home-photo-feature {
    background-image: linear-gradient(180deg, rgba(8, 24, 19, 0.14), rgba(8, 24, 19, 0.46)), url("../images/whyus/slider01.png");
}

.home-photo-story {
    background-image: linear-gradient(180deg, rgba(8, 24, 19, 0.18), rgba(8, 24, 19, 0.48)), url("../images/about-us/about.png");
    background-position: center top;
}

.home-feature-copy,
.home-story-copy {
    padding: clamp(1.25rem, 2vw, 2rem) 0;
}

.home-feature-copy h3,
.home-story-copy h3,
.home-quote-block h3,
.home-enquiry-copy h3 {
    font-size: clamp(1.7rem, 2.6vw, 3rem);
    margin: 0.8rem 0 1rem;
}

.home-project-meta,
.home-process-list,
.home-portfolio-grid {
    display: grid;
    gap: 1rem;
}

.home-project-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 2rem 0;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(20, 54, 43, 0.12);
    border-bottom: 1px solid rgba(20, 54, 43, 0.12);
}

.home-project-meta strong,
.home-stat strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 1.4rem;
    line-height: 1;
}

.home-project-meta span,
.home-stat span {
    color: rgba(20, 54, 43, 0.68);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-process-list article {
    padding: 1.15rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-process-list article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-process-list h4 {
    margin-bottom: 0.35rem;
    color: var(--home-gold);
}

.home-stats-band {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.home-stat strong {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.home-stat-wide strong {
    font-size: clamp(1.65rem, 2.55vw, 2.75rem);
    white-space: nowrap;
}

.home-stat span {
    color: rgba(255, 255, 255, 0.66);
}

.home-portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-portfolio-item {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--home-shadow);
}

.home-portfolio-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 24, 19, 0.08) 20%, rgba(8, 24, 19, 0.82) 100%);
    z-index: 1;
}

.home-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.home-portfolio-copy {
    position: absolute;
    inset: auto 0 0;
    padding: 1.4rem;
    z-index: 2;
}

.home-portfolio-copy p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.home-quote-block {
    width: min(calc(100% - 200px), 1180px);
    margin: 0 auto;
}

.home-quote {
    margin: 1.4rem 0 0.75rem;
    max-width: 24ch;
    font-family: 'lulu', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 3.65rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--home-gold);
    text-wrap: balance;
}

.home-founder {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.home-section-nri {
    background: linear-gradient(180deg, #f8f3ea 0%, #efe5d1 100%);
}

.home-section-nri .home-lead-in p {
    max-width: 24rem;
}

.home-nri-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 2rem;
    align-items: stretch;
}

.home-nri-copy {
    display: grid;
    gap: 1.75rem;
}

.home-nri-points {
    display: grid;
    gap: 1rem;
}

.home-nri-points article {
    padding: 1.35rem 1.45rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(20, 54, 43, 0.08);
    box-shadow: 0 18px 44px rgba(20, 54, 43, 0.08);
}

.home-nri-points h4 {
    margin-bottom: 0.45rem;
    color: var(--home-forest);
    font-size: 1.08rem;
}

.home-nri-points p,
.home-nri-list span {
    margin-bottom: 0;
    color: rgba(20, 54, 43, 0.76);
}

.home-nri-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.home-nri-panel {
    display: grid;
    align-content: start;
    gap: 1.35rem;
    padding: clamp(1.5rem, 2vw, 2rem);
    background: var(--home-forest);
    box-shadow: var(--home-shadow);
}

.home-nri-panel .home-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.home-nri-list {
    display: grid;
    gap: 1rem;
}

.home-nri-list article {
    display: grid;
    gap: 0.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-nri-list article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.home-nri-list strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.home-nri-list span {
    color: rgba(255, 255, 255, 0.74);
}

.home-enquiry-copy {
    padding-right: 2rem;
}

.home-enquiry-points {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.home-enquiry-points li {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(20, 54, 43, 0.12);
}

.home-enquiry-card {
    padding: clamp(1.4rem, 2vw, 2rem);
    background: #fff;
    box-shadow: var(--home-shadow);
}

.home-enquiry-card h4 {
    margin-bottom: 1rem;
}

.home-enquiry-card .form-control {
    min-height: 52px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(20, 54, 43, 0.14);
    border-radius: 0;
    background: #fbf8f3;
}

.home-enquiry-card textarea.form-control {
    min-height: 128px;
}

.home-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--home-forest);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.home-delay-1 {
    transition-delay: 0.08s;
}

.home-delay-2 {
    transition-delay: 0.16s;
}

.home-delay-3 {
    transition-delay: 0.24s;
}

@media (max-width: 1152px) {
    .site-nav-shell {
        min-height: 80px;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .site-nav-desktop {
        gap: 1rem;
    }

    .site-nav-links {
        gap: 1rem;
    }

    .site-nav-link {
        font-size: 0.82rem;
        letter-spacing: 0.03em;
    }

    .site-nav-menu a {
        font-size: 0.86rem;
    }

    .site-nav-cta-group {
        gap: 0.55rem;
    }

    .site-nav-cta,
    .slide-menu-action {
        min-height: 42px;
        padding: 0.7rem 0.9rem;
        font-size: 0.76rem;
        letter-spacing: 0.05em;
    }

    .main-footer {
        padding: 4rem 0 6rem;
    }

    .home-shell .container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .home-hero {
        padding: 7.25rem 0 2.5rem;
    }

    .home-hero-copy h1 {
        font-size: clamp(1.95rem, 3.65vw, 4.1rem);
    }

    .home-hero-copy p {
        font-size: clamp(0.98rem, 0.72vw + 0.42rem, 1.08rem);
    }

    .home-btn,
    .home-btn-ghost {
        min-height: 48px;
        padding: 0.78rem 1.25rem;
        font-size: 0.84rem;
    }

    .home-section {
        padding: 5rem 0;
    }

    .home-lead-in {
        gap: 1.5rem;
        margin-bottom: 2.25rem;
    }

    .home-feature-grid,
    .home-story-grid,
    .home-closing-grid,
    .home-nri-grid {
        gap: 1.5rem;
    }

    .home-photo {
        min-height: 500px;
    }

    .home-feature-copy h3,
    .home-story-copy h3,
    .home-quote-block h3,
    .home-enquiry-copy h3 {
        font-size: clamp(1.45rem, 2vw, 2.5rem);
    }

    .home-project-meta {
        margin: 1.5rem 0;
        padding: 1.1rem 0;
    }

    .home-project-meta strong,
    .home-stat strong {
        font-size: 1.2rem;
    }

    .home-project-meta span,
    .home-stat span {
        font-size: 0.8rem;
    }

    .home-portfolio-item {
        min-height: 340px;
    }

    .home-portfolio-copy {
        padding: 1.1rem;
    }

    .home-portfolio-copy p {
        font-size: 0.88rem;
    }

    .home-quote {
        max-width: 25ch;
        font-size: clamp(1.7rem, 2.7vw, 3rem);
    }

    .home-enquiry-card {
        padding: 1.3rem;
    }

    .home-enquiry-card .form-control,
    .home-submit {
        min-height: 48px;
    }

    .home-enquiry-card textarea.form-control {
        min-height: 112px;
    }
}

@media (max-width: 991px) {
    .site-nav-desktop {
        display: none;
    }

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

    .footer-top,
    .footer-middle,
    .footer-social-band,
    .footer-bottom,
    .home-hero-grid,
    .home-feature-grid,
    .home-story-grid,
    .home-closing-grid,
    .home-nri-grid,
    .home-lead-in {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-social-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }

    .home-hero {
        padding-top: 7rem;
    }

    .home-hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2rem, 4.6vw, 4rem);
    }

    .home-enquiry-copy {
        width: 100%;
        padding-right: 0;
    }

    .home-quote-block {
        width: 100%;
    }

    .home-quote {
        max-width: 100%;
        font-size: clamp(1.65rem, 6vw, 2.6rem);
        text-wrap: pretty;
    }

    .home-project-meta,
    .home-stats-grid,
    .home-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .home-nri-panel {
        padding: 1.4rem;
    }

    .home-photo,
    .home-portfolio-item {
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .site-nav-shell {
        min-height: 76px;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .site-nav-mobile .navbar-brand img {
        width: 74px;
    }

    .site-nav-mobile {
        gap: 0.6rem;
    }

    .mobile-menu-trigger {
        min-height: 42px;
        padding: 0.5rem 0.62rem;
        gap: 0.4rem;
    }

    .mobile-menu-trigger__icon {
        width: 19px;
        height: 19px;
    }

    .mobile-menu-trigger__text {
        font-size: 0.88rem;
    }

    .site-nav-mobile-actions {
        gap: 0.55rem;
    }

    .site-nav-icon {
        width: 40px;
        height: 40px;
    }

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

    .home-hero {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .home-hero-copy h1 {
        font-size: clamp(1.5rem, 6.7vw, 2.6rem);
        line-height: 1;
    }

    .home-hero-copy p {
        max-width: 21rem;
    }

    .home-hero-actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.55rem;
        align-items: center;
        justify-content: flex-start;
    }

    .home-btn,
    .home-btn-ghost {
        width: auto;
        min-width: 0;
        min-height: 44px;
        padding-left: 0.95rem;
        padding-right: 0.95rem;
        text-align: center;
        font-size: 0.7rem;
        letter-spacing: 0.025em;
        white-space: nowrap;
    }

    .home-section {
        padding: 4.5rem 0;
    }

    .home-nri-copy {
        gap: 1.25rem;
    }

    .home-nri-points article,
    .home-nri-panel {
        padding: 1.2rem;
    }

    .home-nri-actions {
        gap: 0.7rem;
    }

    .home-nri-actions .home-btn,
    .home-nri-actions .home-btn-ghost {
        flex: 1 1 0;
    }

    .mobile-enquire-cta {
        position: fixed;
        left: 16px;
        right: auto;
        bottom: 16px;
        z-index: 9999;
        display: block;
    }

    .mobile-enquire-cta__button {
        min-width: 74px;
        min-height: 74px;
        padding: 0.58rem 0.66rem;
        gap: 0.26rem;
    }

    .mobile-enquire-cta__icon {
        width: 38px;
        height: 38px;
    }

    .mobile-enquire-cta__icon svg {
        width: 20px;
        height: 20px;
    }

    .sticky-cta__label {
        font-size: 0.7rem;
    }

    .popup-form .modal-content {
        max-height: 90vh;
    }

    .popup-form .modal-header {
        padding: 1rem 1rem 0.45rem;
        gap: 0.75rem;
    }

    .popup-form .modal-body {
        padding: 0.2rem 1rem 1rem;
    }

    .popup-form .modal-title {
        font-size: 1.34rem;
    }

    .popup-form-copy {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .popup-form .row.g-3 {
        --bs-gutter-y: 0.7rem;
        --bs-gutter-x: 0;
    }

    .popup-form .form-label {
        margin-bottom: 0.38rem;
        font-size: 0.82rem;
    }

    .popup-form .form-control,
    .popup-form .form-select {
        min-height: 46px;
        padding: 0.72rem 0.9rem;
        font-size: 0.92rem;
    }

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

    .popup-form .form-check {
        margin-top: 0;
    }

    .popup-form .form-check-label {
        font-size: 0.82rem;
        line-height: 1.42;
    }

    .popup-form-actions {
        margin-top: 0.8rem;
    }

    .enquire-btn {
        min-height: 48px;
        font-size: 0.84rem;
    }

    .main-footer {
        padding: 4.25rem 0 7rem;
    }

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

    .footer-top,
    .footer-middle,
    .footer-social-band,
    .footer-bottom {
        gap: 1.6rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand>a {
        display: inline-flex;
        justify-content: center;
    }

    .footer-brand img {
        width: min(170px, 78%);
    }

    .footer-brand p {
        max-width: 90%;
        margin: 1rem auto 0;
        font-size: 0.86rem;
        line-height: 1.58;
        text-align: center;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.1rem 0.9rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h5 {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
    }

    .footer-column ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem 0.9rem;
    }

    .footer-column li+li {
        margin-top: 0;
    }

    .footer-column a {
        display: block;
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .footer-contact {
        gap: 1.25rem;
        text-align: center;
    }

    .footer-contact h5,
    .footer-social h5,
    .footer-lead-card h5 {
        text-align: center;
    }

    .footer-office {
        padding-bottom: 1rem;
    }

    .footer-office h4 {
        font-size: 1.03rem;
    }

    .footer-office p,
    .footer-lead-card p {
        font-size: 0.86rem;
        line-height: 1.58;
    }

    .footer-lead-card {
        padding: 1.3rem;
        border-radius: 24px;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.7rem 1rem;
    }

    .footer-social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .footer-social-link {
        min-height: 98px;
        padding: 0.85rem 0.55rem 0.75rem;
    }

    .footer-social-icon {
        width: 46px;
        height: 46px;
    }

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

    .footer-bottom p,
    .footer-legal-links a {
        font-size: 0.84rem;
    }

    .popup-form .modal-dialog {
        margin: 0.9rem auto;
        padding: 0 10px;
    }

    .popup-form .modal-header {
        padding: 1.2rem 1.1rem 0.55rem;
    }

    .popup-form .modal-body {
        padding: 0.35rem 1.1rem 1.2rem;
    }

    .popup-form .modal-title {
        font-size: 1.45rem;
    }

    .popup-form-copy {
        font-size: 0.92rem;
    }

    .popup-form .form-control,
    .popup-form .form-select,
    .enquire-btn {
        min-height: 52px;
    }

    .mob-enq {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1100;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .mob-enq-button {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 0.7rem;
        border: 0;
        border-radius: 999px;
        background: #0b2e24;
        color: #fff;
        box-shadow: 0 12px 30px rgba(4, 18, 14, 0.24);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 0.78rem;
    }
}

@media (max-width: 390px) {
    .home-shell .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-hero {
        padding-bottom: 1.7rem;
    }

    .home-hero-copy h1 {
        font-size: clamp(1.42rem, 6.5vw, 2.2rem);
    }

    .home-hero-copy p {
        max-width: 19.5rem;
        font-size: 0.92rem;
    }

    .home-hero-actions {
        gap: 0.45rem;
    }

    .home-btn,
    .home-btn-ghost {
        min-height: 42px;
        padding-left: 0.78rem;
        padding-right: 0.78rem;
        font-size: 0.64rem;
        letter-spacing: 0.02em;
    }
}
