/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
    --ink: #0c1a12;
    --forest: #1b3f2b;
    --grove: #2e6b4f;
    --leaf: #4caf7d;
    --mist: #d4ead9;
    --cream: #f6f2ea;
    --parch: #ede8dd;
    --gold: #b8933a;
    --gilt: #d4aa52;
    --dusk: #c9a55a;
    --white: #ffffff;
    --fog: rgba(12, 26, 18, .55);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
    --r: .3s cubic-bezier(.4, 0, .2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth;
    font-size: 16px
}
body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none
}
/* ─── CURSOR ─── */
#cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
    mix-blend-mode: multiply
}
#cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all .12s ease;
    opacity: .5
}
body:hover #cursor {
    opacity: 1
}
/* ─── LOADER ─── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity .8s, visibility .8s
}
#loader.hide {
    opacity: 0;
    visibility: hidden
}
.loader-logo {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--gilt);
    letter-spacing: 4px;
    animation: loaderPulse 1.5s ease-in-out infinite
}
.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden
}
.loader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--gilt);
    animation: loaderSlide 1.5s ease-in-out infinite
}
@keyframes loaderSlide {
    0% {
        width: 0;
        left: 0
    }
    50% {
        width: 100%
    }
    100% {
        width: 0;
        left: 100%
    }
}
@keyframes loaderPulse {
    0%,
    100% {
        opacity: .5
    }
    50% {
        opacity: 1
    }
}
/* ══════════NAVIGATION══════════════════════════════ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 20px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--r)
}
#nav.scrolled {
    background: rgba(11, 23, 16, .95);
    backdrop-filter: blur(20px);
    padding: 14px 64px;
    border-bottom: 1px solid rgba(184, 147, 58, .15)
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none
}
.nav-brand-mark {
    width: 36px;
    height: 36px;
    position: relative
}
.nav-brand-mark svg {
    width: 100%;
    height: 100%
}
.nav-brand-text .n1 {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--gilt);
    letter-spacing: 3px;
    font-weight: 500
}
.nav-brand-text .n2 {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: 1px
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px
}
.nav-links a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color var(--r);
    position: relative;
    padding-bottom: 4px
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gilt);
    transition: width var(--r)
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gilt)
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-btn {
    background: var(--gold);
    color: var(--ink);
    padding: 11px 26px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: none;
    text-decoration: none;
    transition: all var(--r);
    font-family: var(--sans)
}

.nav-btn:hover {
    background: var(--gilt);
    transform: translateY(-1px)
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 4px
}

.nav-hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--gilt);
    transition: all var(--r);
    display: block
}

/* ═══════════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════════ */
.page {
    display: none;
    min-height: 100vh
}

.page.active {
    display: block
}

/* ═══════════════════════════════════════════
   PAGE: HOME
═══════════════════════════════════════════ */

/* ─── HERO ─── */
#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1800&q=80') center/cover no-repeat;
    transform: scale(1.08);
    animation: hzoom 25s ease-in-out infinite alternate;
    filter: brightness(.55)
}

@keyframes hzoom {
    to {
        transform: scale(1.15) translateX(1%)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(11, 23, 16, .92) 0%, rgba(11, 23, 16, .6) 50%, rgba(46, 107, 79, .25) 100%)
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 64px;
    max-width: 820px
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .8s .4s forwards
}

.hero-line {
    width: 48px;
    height: 1px;
    background: var(--gilt)
}

.hero-eyebrow span {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gilt)
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(56px, 7.5vw, 112px);
    font-weight: 400;
    color: var(--white);
    line-height: .95;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeUp .9s .6s forwards
}
.hero-h1 .i {
    font-style: italic;
    color: var(--gilt)
}
.hero-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    max-width: 420px;
    line-height: 1.9;
    margin-top: 28px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp .9s .8s forwards
}
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 44px;
    opacity: 0;
    animation: fadeUp .9s 1s forwards
}
.btn-primary {
    background: var(--gold);
    color: var(--ink);
    padding: 15px 38px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: none;
    text-decoration: none;
    transition: all var(--r);
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.btn-primary:hover {
    background: var(--gilt);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 147, 58, .35)
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 15px 38px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .3);
    cursor: none;
    text-decoration: none;
    transition: all var(--r);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans)
}

.btn-outline:hover {
    border-color: var(--gilt);
    color: var(--gilt)
}

.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(11, 23, 16, .8);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(184, 147, 58, .15);
    display: flex;
    opacity: 0;
    animation: fadeUp .9s 1.2s forwards
}

.hstat {
    flex: 1;
    padding: 26px 40px;
    border-right: 1px solid rgba(184, 147, 58, .1);
    display: flex;
    flex-direction: column;
    gap: 6px
}

.hstat:last-child {
    border-right: none
}

.hstat .v {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--gilt);
    font-weight: 400
}

.hstat .l {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4)
}

.hero-scroll-cue {
    position: absolute;
    right: 64px;
    bottom: 120px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp .9s 1.4s forwards
}

.hero-scroll-cue span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    writing-mode: vertical-rl
}

.scroll-wire {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, var(--gilt), transparent);
    animation: wire 2s ease-in-out infinite
}

@keyframes wire {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1
    }

    100% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 0
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ─── PROJECT INTRO ─── */
.s {
    padding: 120px 64px;
    position: relative
}

.s-inner {
    max-width: 1280px;
    margin: 0 auto
}

.tag {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px
}

.h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--forest)
}

.h2 em {
    font-style: italic;
    color: var(--grove)
}

/* Project intro grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 80px
}

.intro-imgs {
    position: relative;
    height: 640px
}

.im-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 78%;
    height: 500px;
    background: url('../images/sumeru-green-website-900x1350.png') center/cover;
    box-shadow: 0 40px 80px rgba(11, 23, 16, .18)
}

.im-accent {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52%;
    height: 300px;
    background: url('../images/sumeru green website 600x357.png') center/cover;
    border: 5px solid var(--cream);
    box-shadow: 0 20px 50px rgba(11, 23, 16, .12)
}

.im-badge {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 3;
    background: var(--gold);
    padding: 22px 28px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(184, 147, 58, .3)
}

.im-badge .bv {
    font-family: var(--serif);
    font-size: 38px;
    color: var(--ink);
    font-weight: 500
}

.im-badge .bl {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(11, 23, 16, .65);
    margin-top: 4px
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.intro-text p {
    font-size: 16px;
    line-height: 1.95;
    color: #3a5a47;
    font-weight: 300
}

.highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px
}

.hl {
    padding: 20px;
    background: var(--white);
    border-left: 2px solid var(--gilt);
    transition: all var(--r)
}

.hl:hover {
    background: var(--forest);
    border-left-color: var(--gilt)
}

.hl:hover .ht {
    color: var(--gilt)
}

.hl:hover .hs {
    color: rgba(255, 255, 255, .55)
}

.ht {
    font-size: 13px;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: .3px;
    transition: color var(--r)
}

.hs {
    font-size: 12px;
    color: #6a8070;
    margin-top: 4px;
    transition: color var(--r)
}

/* ─── FEATURES ─── */
.features-s {
    background: var(--forest)
}

.features-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px
}

.features-top .h2 {
    color: var(--white)
}

.features-top .h2 em {
    color: var(--gilt)
}

.features-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    max-width: 340px;
    line-height: 1.8;
    font-weight: 300;
    text-align: right
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px
}

.fc {
    background: rgba(255, 255, 255, .04);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    overflow: hidden;
    transition: all var(--r);
    cursor: default
}

.fc::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gilt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.fc:hover {
    background: rgba(184, 147, 58, .1);
    transform: translateY(-6px)
}

.fc:hover::before {
    transform: scaleX(1)
}

.fc-icon {
    width: 54px;
    height: 54px;
    background: rgba(184, 147, 58, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: background var(--r)
}

.fc:hover .fc-icon {
    background: rgba(184, 147, 58, .25)
}

.fc h3 {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase
}

.fc p {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.75;
    font-weight: 300
}

/* ─── PLOT SIZES (no full cost sheet) ─── */
.plots-s {
    background: var(--parch)
}

.plot-range-hero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 70px;
    margin-bottom: 80px
}

.prh {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.prh.sm {
    background: var(--white)
}

.prh.md {
    background: var(--forest)
}

.prh.lg {
    background: var(--ink)
}

.prh-tag {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.prh.sm .prh-tag {
    color: var(--gold)
}

.prh.md .prh-tag {
    color: var(--gilt)
}

.prh.lg .prh-tag {
    color: var(--dusk)
}

.prh-size {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px
}

.prh.sm .prh-size {
    color: var(--forest)
}

.prh.md .prh-size {
    color: var(--white)
}

.prh.lg .prh-size {
    color: var(--gilt)
}

.prh-unit {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase
}

.prh.sm .prh-unit {
    color: #8aab96
}

.prh.md .prh-unit {
    color: rgba(255, 255, 255, .5)
}

.prh.lg .prh-unit {
    color: rgba(255, 255, 255, .4)
}

.prh-price {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    margin-top: 20px
}

.prh.sm .prh-price {
    color: var(--gold)
}

.prh.md .prh-price {
    color: var(--gilt)
}

.prh.lg .prh-price {
    color: var(--dusk)
}

.prh-psub {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px
}

.prh.sm .prh-psub {
    color: #a0b8a8
}

.prh.md .prh-psub {
    color: rgba(255, 255, 255, .4)
}

.prh.lg .prh-psub {
    color: rgba(255, 255, 255, .3)
}

.prh-cta {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 28px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--r);
    font-family: var(--sans);
    cursor: none
}

.prh.sm .prh-cta {
    background: var(--forest);
    color: var(--gilt)
}

.prh.md .prh-cta {
    background: var(--gilt);
    color: var(--ink)
}

.prh.lg .prh-cta {
    background: var(--dusk);
    color: var(--ink)
}

.prh-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.plot-note {
    text-align: center;
    font-size: 13px;
    color: #6a8070;
    font-weight: 300;
    margin-top: 30px;
    font-style: italic
}

/* ─── LOCATION HOME ─── */
.location-s {
    background: var(--white)
}

.loc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 70px
}

.loc-map-wrap {
    position: relative;
    height: 560px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(11, 23, 16, .12)
}

.loc-map-inner {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1569336415962-a4bd9f69c07f?w=900') center/cover;
    filter: saturate(.7) brightness(.9);
    transition: filter .5s
}

.loc-map-wrap:hover .loc-map-inner {
    filter: saturate(1) brightness(1)
}

.loc-map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 63, 43, .5) 0%, transparent 60%)
}

.loc-pin-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.loc-pin-dot {
    width: 18px;
    height: 18px;
    background: var(--gilt);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 8px rgba(212, 170, 82, .25), 0 0 0 16px rgba(212, 170, 82, .1);
    animation: pinpulse 2.5s infinite
}

@keyframes pinpulse {
    50% {
        box-shadow: 0 0 0 12px rgba(212, 170, 82, .15), 0 0 0 24px rgba(212, 170, 82, .05)
    }
}

.loc-pin-label {
    background: var(--forest);
    color: var(--gilt);
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 10px;
    display: block
}

.loc-map-corner {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(11, 23, 16, .85);
    padding: 16px 20px;
    backdrop-filter: blur(10px)
}

.loc-map-corner strong {
    color: var(--gilt);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
    font-weight: 400
}

.loc-map-corner p {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    line-height: 1.6
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.loc-group h4 {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(184, 147, 58, .2)
}

.loc-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(11, 23, 16, .06)
}

.loc-row .lp {
    font-size: 14px;
    color: var(--forest);
    flex: 1
}

.loc-row .ld {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold);
    font-weight: 400
}

.loc-addr {
    background: var(--forest);
    padding: 26px 30px;
    margin-top: 10px
}

.loc-addr strong {
    color: var(--gilt);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-weight: 400
}

.loc-addr p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.85
}

/* ─── MASTER PLAN ─── */
.mp-s {
    background: var(--cream)
}

.mp-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 70px
}

.mp-visual {
    background: linear-gradient(135deg, #e8f5e9, #f0f7f0);
    padding: 40px;
    box-shadow: 0 30px 80px rgba(11, 23, 16, .1)
}

.mp-points {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.mpp {
    display: flex;
    gap: 22px;
    padding: 24px;
    background: var(--white);
    transition: all var(--r)
}

.mpp:hover {
    background: var(--forest);
    transform: translateX(6px)
}

.mpp:hover .mpn,
.mpp:hover .mpt {
    color: var(--gilt)
}

.mpp:hover .mpd {
    color: rgba(255, 255, 255, .5)
}

.mpn {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    min-width: 48px;
    transition: color var(--r)
}

.mpt {
    font-size: 13px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 5px;
    transition: color var(--r)
}

.mpd {
    font-size: 12px;
    color: #6a8070;
    line-height: 1.65;
    font-weight: 300;
    transition: color var(--r)
}

/* ─── GALLERY ─── */
.gallery-s {
    background: var(--ink);
    overflow: hidden
}

.gallery-s .h2 {
    color: var(--white)
}

.gallery-s .h2 em {
    color: var(--gilt)
}

.gallery-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 4px;
    margin-top: 60px
}

.gi {
    overflow: hidden;
    position: relative;
    cursor: none
}

.gi-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .7s ease
}

.gi:hover .gi-bg {
    transform: scale(1.07)
}

.gi::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 23, 16, .4);
    opacity: 0;
    transition: opacity .4s
}

.gi:hover::after {
    opacity: 1
}

.gi:nth-child(1) {
    grid-row: span 2
}

.gi-lbl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(11, 23, 16, .9), transparent);
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    transform: translateY(100%);
    transition: transform .4s
}

.gi:hover .gi-lbl {
    transform: translateY(0)
}

/* ─── CTA BAND ─── */
.cta-band {
    background: var(--forest);
    padding: 100px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

.cta-band-text .h2 {
    color: var(--white)
}

.cta-band-text .h2 em {
    color: var(--gilt)
}

.cta-band-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    max-width: 480px;
    line-height: 1.85;
    margin-top: 18px;
    font-weight: 300
}

.cta-band-actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 280px
}

.cta-phone {
    text-align: center;
    padding: 22px 40px;
    background: var(--ink)
}

.cta-phone .pn {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gilt);
    font-weight: 400;
    text-decoration: none;
    display: block
}

.cta-phone .pl {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-top: 4px
}

.cta-booking {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: 1px
}

/* ═══════════════════════════════════════════
   PAGE: ABOUT
═══════════════════════════════════════════ */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.5)
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 23, 16, .95) 0%, rgba(11, 23, 16, .3) 100%)
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 64px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%
}

.page-hero-content .tag {
    color: var(--gilt)
}

.page-hero-content .h1 {
    font-family: var(--serif);
    font-size: clamp(46px, 5.5vw, 80px);
    font-weight: 400;
    color: var(--white);
    line-height: 1
}

.page-hero-content .h1 em {
    font-style: italic;
    color: var(--gilt)
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px
}

.as-visual {
    position: relative
}

.as-img {
    width: 100%;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=900') center/cover;
    box-shadow: 0 40px 80px rgba(11, 23, 16, .15)
}

.as-quote {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--forest);
    padding: 32px;
    max-width: 280px;
    box-shadow: 0 20px 50px rgba(11, 23, 16, .2)
}

.as-quote p {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--white);
    line-height: 1.6
}

.as-quote cite {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gilt);
    margin-top: 12px;
    display: block;
    font-style: normal
}

.as-text h3 {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--forest);
    margin-bottom: 24px;
    line-height: 1.2
}

.as-text p {
    font-size: 15px;
    color: #4a6a57;
    line-height: 1.95;
    font-weight: 300;
    margin-bottom: 18px
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 80px
}

.av {
    padding: 50px 40px;
    background: var(--white);
    text-align: center;
    transition: all var(--r)
}

.av:hover {
    background: var(--forest);
    transform: translateY(-6px)
}

.av:hover h4,
.av:hover .av-num {
    color: var(--gilt)
}

.av:hover p {
    color: rgba(255, 255, 255, .55)
}

.av-num {
    font-family: var(--serif);
    font-size: 56px;
    color: var(--mist);
    font-weight: 400;
    margin-bottom: 12px;
    transition: color var(--r)
}

.av h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: color var(--r)
}

.av p {
    font-size: 13px;
    color: #6a8070;
    line-height: 1.75;
    font-weight: 300;
    transition: color var(--r)
}

.about-team {
    margin-top: 100px
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px
}

.tm {
    position: relative;
    overflow: hidden
}

.tm-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center top;
    transition: transform .5s
}

.tm:hover .tm-img {
    transform: scale(1.05)
}

.tm-info {
    padding: 24px;
    background: var(--white)
}

.tm-info h4 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--forest)
}

.tm-info span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold)
}

.tm-info p {
    font-size: 13px;
    color: #6a8070;
    margin-top: 10px;
    line-height: 1.7;
    font-weight: 300
}

.about-timeline {
    margin-top: 100px
}

.tl {
    position: relative;
    margin-top: 60px;
    padding-left: 60px
}

.tl::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gilt), var(--mist))
}

.tl-item {
    position: relative;
    padding-bottom: 50px
}

.tl-dot {
    position: absolute;
    left: -48px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--gilt);
    border-radius: 50%;
    border: 3px solid var(--cream)
}

.tl-year {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
    font-weight: 400
}

.tl-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest);
    margin: 8px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.tl-item p {
    font-size: 14px;
    color: #6a8070;
    max-width: 520px;
    line-height: 1.8;
    font-weight: 300
}

/* ═══════════════════════════════════════════
   PAGE: BRAND
═══════════════════════════════════════════ */
.brand-hero {
    background: var(--ink);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.brand-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .07;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(184, 147, 58, .3) 60px, rgba(184, 147, 58, .3) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(184, 147, 58, .3) 60px, rgba(184, 147, 58, .3) 61px)
}

.brand-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 64px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%
}

.brand-hero-content .h1 {
    font-family: var(--serif);
    font-size: clamp(56px, 7vw, 100px);
    font-weight: 400;
    color: var(--white);
    line-height: .95
}

.brand-hero-content .h1 em {
    font-style: italic;
    color: var(--gilt)
}

.brand-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, .45);
    max-width: 540px;
    line-height: 1.9;
    margin-top: 28px;
    font-weight: 300
}

.brand-identity {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 80px
}

.brand-logo-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    height: 480px;
    position: relative;
    overflow: hidden
}

.bld-bg {
    position: absolute;
    inset: 0;
    opacity: .04;
    background: repeating-conic-gradient(rgba(46, 107, 79, .2) 0%, transparent 25%)
}

.bld-logo {
    position: relative;
    z-index: 2;
    text-align: center
}

.bld-icon {
    margin: 0 auto 20px
}

.bld-name {
    font-family: var(--serif);
    font-size: 52px;
    color: var(--forest);
    letter-spacing: 6px;
    font-weight: 400
}

.bld-sub {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 6px
}

.brand-colors {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px
}

.bc {
    display: flex;
    align-items: center;
    gap: 20px
}

.bc-swatch {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(11, 23, 16, .1)
}

.bc-name {
    font-size: 12px;
    color: var(--forest);
    font-weight: 500
}

.bc-hex {
    font-size: 11px;
    color: #8a9a8e;
    margin-top: 2px
}

.brand-story-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 100px
}

.bsb {
    padding: 60px 48px;
    position: relative;
    overflow: hidden
}

.bsb:nth-child(1) {
    background: var(--forest)
}

.bsb:nth-child(2) {
    background: var(--parch)
}

.bsb:nth-child(3) {
    background: var(--parch)
}

.bsb:nth-child(4) {
    background: var(--forest)
}

.bsb h3 {
    font-family: var(--serif);
    font-size: 30px;
    margin-bottom: 18px
}

.bsb:nth-child(odd) h3 {
    color: var(--gilt)
}

.bsb:nth-child(even) h3 {
    color: var(--forest)
}

.bsb p {
    font-size: 14px;
    line-height: 1.9;
    font-weight: 300
}

.bsb:nth-child(odd) p {
    color: rgba(255, 255, 255, .55)
}

.bsb:nth-child(even) p {
    color: #5a7a67
}

.bsb-num {
    font-family: var(--serif);
    font-size: 80px;
    font-weight: 400;
    position: absolute;
    bottom: -10px;
    right: 20px;
    opacity: .06
}

.bsb:nth-child(odd) .bsb-num {
    color: var(--gilt)
}

.bsb:nth-child(even) .bsb-num {
    color: var(--grove)
}

/* ═══════════════════════════════════════════
   PAGE: BLOG
═══════════════════════════════════════════ */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    margin-top: 70px
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(11, 23, 16, .08)
}

.bf-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden
}

.bf-img::after {
    content: 'FEATURED';
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--ink);
    font-size: 9px;
    letter-spacing: 3px;
    padding: 6px 14px;
    font-weight: 600
}

.bf-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px
}

.blog-date {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold)
}

.bf-content h2 {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--forest);
    line-height: 1.25
}

.bf-content p {
    font-size: 14px;
    color: #5a7a67;
    line-height: 1.85;
    font-weight: 300
}

.read-more {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap var(--r);
    cursor: none;
    font-family: var(--sans)
}

.read-more:hover {
    gap: 18px
}

.blog-grid-list {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.blog-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(11, 23, 16, .06)
}

.blog-card-img {
    height: 140px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0
}

.blog-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--forest);
    line-height: 1.3;
    margin-bottom: 10px
}

.blog-card p {
    font-size: 13px;
    color: #6a8070;
    line-height: 1.75;
    font-weight: 300
}

.blog-sidebar {
    border-left: 1px solid rgba(11, 23, 16, .08);
    padding-left: 60px
}

.bs-widget {
    margin-bottom: 50px
}

.bs-widget h4 {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184, 147, 58, .2)
}

.bs-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(11, 23, 16, .05);
    font-size: 13px;
    color: #5a7a67;
    cursor: none;
    transition: color var(--r)
}

.bs-cat-item:hover {
    color: var(--forest)
}

.bs-cat-item span {
    background: var(--mist);
    padding: 3px 10px;
    font-size: 11px;
    color: var(--forest);
    font-weight: 600
}

.bs-recent {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bsr {
    display: flex;
    gap: 14px;
    align-items: center
}

.bsr-img {
    width: 56px;
    height: 56px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0
}

.bsr h5 {
    font-size: 12px;
    color: var(--forest);
    line-height: 1.4;
    margin-bottom: 4px
}

.bsr span {
    font-size: 10px;
    color: #8a9a8e
}

.bs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.bs-tag {
    padding: 7px 16px;
    background: var(--parch);
    font-size: 11px;
    color: #5a7a67;
    letter-spacing: 1px;
    cursor: none;
    transition: all var(--r)
}

.bs-tag:hover {
    background: var(--forest);
    color: var(--gilt)
}

/* ═══════════════════════════════════════════
   PAGE: CONTACT
═══════════════════════════════════════════ */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 0;
    min-height: 80vh
}

.contact-left {
    background: var(--forest);
    padding: 100px 64px;
    position: relative;
    overflow: hidden
}

.contact-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=900') center/cover;
    opacity: .06
}

.contact-left-inner {
    position: relative;
    z-index: 2
}

.contact-left .h2 {
    color: var(--white)
}

.contact-left .h2 em {
    color: var(--gilt)
}

.contact-left>*+* {
    margin-top: 0
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 50px
}

.cib {
    display: flex;
    gap: 20px
}

.cib-icon {
    width: 46px;
    height: 46px;
    background: rgba(184, 147, 58, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.cib h4 {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gilt);
    margin-bottom: 8px;
    font-weight: 400
}

.cib p,
.cib a {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    font-weight: 300;
    text-decoration: none;
    transition: color var(--r)
}

.cib a:hover {
    color: var(--gilt)
}

.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 50px
}

.csoc {
    width: 42px;
    height: 42px;
    background: rgba(184, 147, 58, .12);
    border: 1px solid rgba(184, 147, 58, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gilt);
    font-size: 16px;
    transition: all var(--r);
    cursor: none;
    text-decoration: none
}

.csoc:hover {
    background: var(--gilt);
    color: var(--ink)
}

.contact-right {
    padding: 100px 64px;
    background: var(--cream)
}

.contact-right h3 {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--forest);
    margin-bottom: 8px
}

.contact-right .sub {
    font-size: 13px;
    color: #6a8070;
    margin-bottom: 44px;
    font-weight: 300
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.form-group label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--sans);
    background: var(--white);
    border: 1px solid rgba(11, 23, 16, .1);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--forest);
    outline: none;
    transition: border-color var(--r);
    width: 100%
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.form-submit {
    background: var(--gold);
    color: var(--ink);
    padding: 16px 40px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: none;
    font-family: var(--sans);
    transition: all var(--r);
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px
}

.form-submit:hover {
    background: var(--gilt);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184, 147, 58, .3)
}

.contact-map-strip {
    background: var(--forest);
    height: 300px;
    position: relative;
    overflow: hidden
}

.cmb {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1569336415962-a4bd9f69c07f?w=1600') center/cover;
    opacity: .35
}

.cmb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px
}

.cmb-overlay h3 {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--white);
    font-style: italic
}

.cmb-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    letter-spacing: 1px
}

.cmb-overlay a {
    margin-top: 10px;
    background: var(--gilt);
    color: var(--ink);
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--r);
    cursor: none
}

.cmb-overlay a:hover {
    background: var(--white)
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#footer {
    background: #050e08;
    position: relative
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding: 80px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.footer-brand .fb-logo {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gilt);
    letter-spacing: 3px;
    margin-bottom: 6px
}

.footer-brand .fb-sub {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 20px
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.85;
    max-width: 280px;
    font-weight: 300
}

.footer-col h4 {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184, 147, 58, .15);
    font-weight: 400
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-col ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
    cursor: none;
    transition: color var(--r)
}

.footer-col ul li:hover {
    color: var(--gilt)
}

.footer-col ul li a {
    color: inherit;
    text-decoration: none
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.fci {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.6
}

.fci strong {
    color: var(--gilt);
    font-weight: 400;
    font-size: 12px;
    display: block;
    letter-spacing: 1px;
    margin-bottom: 2px
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 64px
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: 1px
}

.footer-rera {
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: 1px
}

/* ═══════════════════════════════════════════
   SHARED REVEAL
═══════════════════════════════════════════ */
.r {
    opacity: 0;
    transform: translateY(36px);
    transition: all .9s cubic-bezier(.16, 1, .3, 1)
}

.rl {
    opacity: 0;
    transform: translateX(-36px);
    transition: all .9s cubic-bezier(.16, 1, .3, 1)
}

.rr {
    opacity: 0;
    transform: translateX(36px);
    transition: all .9s cubic-bezier(.16, 1, .3, 1)
}

.r.in,
.rl.in,
.rr.in {
    opacity: 1;
    transform: none
}

.r.d1 {
    transition-delay: .1s
}

.r.d2 {
    transition-delay: .2s
}

.r.d3 {
    transition-delay: .3s
}

.r.d4 {
    transition-delay: .4s
}

/* ═══════════════════════════════════════════
   MOBILE NAV PANEL
═══════════════════════════════════════════ */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 499;
    background: rgba(11, 23, 16, .98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform .5s cubic-bezier(.76, 0, .24, 1)
}

.mobile-nav.open {
    transform: none
}

.mobile-nav a {
    font-family: var(--serif);
    font-size: 36px;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color var(--r);
    cursor: none
}

.mobile-nav a:hover {
    color: var(--gilt)
}

.mobile-nav .mn-cta {
    background: var(--gold);
    color: var(--ink);
    padding: 14px 40px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--sans);
    font-style: normal;
    font-size: 13px
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1100px) {

    .intro-grid,
    .about-story,
    .loc-grid,
    .mp-grid,
    .brand-identity,
    .contact-split {
        grid-template-columns: 1fr
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .plot-range-hero,
    .brand-story-blocks {
        grid-template-columns: 1fr
    }

    .blog-layout {
        grid-template-columns: 1fr
    }

    .blog-sidebar {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(11, 23, 16, .08);
        padding-top: 50px
    }

    .blog-featured {
        grid-template-columns: 1fr
    }

    .intro-imgs {
        height: 400px
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .gi:nth-child(1) {
        grid-row: auto
    }

    .cta-band {
        flex-direction: column
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .about-values,
    .team-grid {
        grid-template-columns: 1fr 1fr
    }

    .s {
        padding: 80px 30px
    }

    .page-hero-content,
    .contact-left,
    .contact-right,
    .footer-top,
    .footer-bottom,
    .cta-band {
        padding-left: 30px;
        padding-right: 30px
    }

    #nav {
        padding: 16px 30px
    }

    #nav.scrolled {
        padding: 12px 30px
    }

    .hero-content {
        padding: 0 30px
    }

    .hero-stats-bar {
        display: none
    }
}

@media(max-width:700px) {

    .nav-links,
    .nav-btn {
        display: none
    }

    .nav-hamburger {
        display: flex
    }

    .features-cards {
        grid-template-columns: 1fr
    }

    .highlights,
    .about-values,
    .team-grid {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .blog-card {
        grid-template-columns: 1fr
    }

    .blog-card-img {
        height: 200px
    }

    .gallery-strip {
        grid-template-columns: 1fr
    }
    .mp-visual {
        background: linear-gradient(135deg, #e8f5e9, #f0f7f0);
        padding: 20px;
        box-shadow: 0 30px 80px rgba(11, 23, 16, .1);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .layout-img {
        max-width: 100%;
        max-height: 500px; /* control height */
        object-fit: contain;
    }
    .layout-title {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 20px;
        text-align: center; /* 👈 center align */
    }
    @media(max-width:700px) {

        .gi {
            height: 250px;   /* 🔥 REQUIRED */
        }
    
        .gi-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
    
        .gi-lbl {
            transform: translateY(0); /* always visible on mobile */
        }
    }
    @media(max-width:700px) {

        .mp-visual {
            display: flex;
            flex-direction: column;   /* 🔥 THIS FIX */
            align-items: center;
            text-align: center;
            padding: 20px;
        }
    
        .layout-title {
            width: 100%;
            text-align: center;
            margin-bottom: 15px;
        }
    
        .layout-img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
    }
    .map-frame {
        width: 100%;
        height: 500px; /* desktop */
    }
    @media(max-width:700px) {

        .map-frame {
            height: 350px;  /* 🔥 perfect mobile height */
        }
    
        .loc-map-wrap {
            height: auto;   /* remove fixed height */
        }
    }
}