*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0a1628;--navy-mid:#122040;--navy-light:#1a2f55;
  --gold:#c9a84c;--gold-light:#e8c96a;
  --cream:#f5f0e8;--cream-dark:#e8e0d0;
  --white:#ffffff;--text-muted:rgba(245,240,232,0.62);
  --card-overlay:linear-gradient(to top,rgba(10,22,40,0.93) 0%,rgba(10,22,40,0.35) 55%,rgba(10,22,40,0.05) 100%);
}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--navy);color:var(--cream);overflow-x:hidden}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:100;display:flex;align-items:center;justify-content:space-between;padding:1.25rem 3rem;transition:background .4s,backdrop-filter .4s}
nav.scrolled{background:rgba(10,22,40,.97);backdrop-filter:blur(14px);border-bottom:.5px solid rgba(201,168,76,.2)}
.nav-logo{display:flex;align-items:center;gap:.6rem;text-decoration:none}
.nav-logo img{height:46px;width:auto;mix-blend-mode:screen;filter:brightness(2.5) contrast(1.2)}
.nav-logo-text{display:flex;flex-direction:column;line-height:1}
.nav-logo-text .nl-main{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:500;letter-spacing:.08em;color:var(--cream)}
.nav-logo-text .nl-sub{font-size:.56rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-top:3px}
.nav-links{display:flex;align-items:center;gap:1.75rem}
.nav-links a{text-decoration:none;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--cream);opacity:.8;transition:opacity .2s,color .2s}
.nav-links a:hover{opacity:1;color:var(--gold-light)}
.nav-cta{border:1px solid var(--gold)!important;color:var(--gold)!important;padding:.45rem 1.1rem!important;opacity:1!important;transition:background .2s,color .2s!important}
.nav-cta:hover{background:var(--gold)!important;color:var(--navy)!important}
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:none}
.nav-hamburger span{display:block;width:22px;height:1.5px;background:var(--cream);transition:all .3s}
@media(max-width:900px){
  .nav-links{display:none;position:absolute;top:100%;left:0;right:0;background:rgba(10,22,40,.98);flex-direction:column;padding:1.5rem 2rem;gap:1.25rem;border-bottom:1px solid rgba(201,168,76,.2)}
  .nav-links.mobile-open{display:flex}
  .nav-links a{font-size:.85rem;opacity:1}
  .nav-cta{border:none!important;padding:.5rem 0!important}
  .nav-hamburger{display:flex}
  nav{padding:1rem 1.5rem}
}

/* ── HERO ── */
.hero{position:relative;min-height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0;background-size:cover;background-position:center 40%;animation:subtle-zoom 24s ease-in-out infinite alternate}
@keyframes subtle-zoom{from{transform:scale(1.04)}to{transform:scale(1.12)}}
.hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to bottom,rgba(10,22,40,.25) 0%,rgba(10,22,40,.45) 45%,rgba(10,22,40,.8) 80%,rgba(10,22,40,1) 100%)}
.hero-content{position:relative;z-index:2;max-width:820px;padding:0 2rem;text-align:center}
.hero-eyebrow{font-size:.68rem;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);margin-bottom:1.25rem;display:flex;align-items:center;justify-content:center;gap:.75rem}
.hero-eyebrow::before,.hero-eyebrow::after{content:'';display:block;width:36px;height:1px;background:var(--gold);opacity:.55}
.hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(3rem,7.5vw,5.75rem);font-weight:300;line-height:1.05;color:var(--cream);margin-bottom:1.25rem;letter-spacing:-.01em}
.hero h1 em{font-style:italic;color:var(--gold-light)}
.hero-sub{font-size:1rem;line-height:1.75;color:var(--text-muted);max-width:520px;margin:0 auto 2.75rem;font-weight:300}
.hero-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.hero-scroll{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);z-index:2;display:flex;flex-direction:column;align-items:center;gap:.5rem;opacity:.45;animation:float 2.8s ease-in-out infinite}
.hero-scroll span{font-size:.58rem;letter-spacing:.22em;text-transform:uppercase}
.hero-scroll svg{width:20px!important;height:20px!important;max-width:20px;max-height:20px}
@keyframes float{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)}}

/* ── BUTTONS ── */
.btn-primary{background:var(--gold);color:var(--navy);padding:.875rem 2.5rem;font-size:.75rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;text-decoration:none;border:none;cursor:pointer;transition:background .2s,transform .2s;display:inline-block}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--cream);padding:.875rem 2.5rem;font-size:.75rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;text-decoration:none;border:1px solid rgba(245,240,232,.3);cursor:pointer;transition:border-color .2s,transform .2s;display:inline-block}
.btn-ghost:hover{border-color:var(--cream);transform:translateY(-2px)}
.btn-gold-outline{background:transparent;color:var(--gold);padding:.7rem 1.75rem;font-size:.72rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;text-decoration:none;border:1px solid var(--gold);display:inline-block;transition:background .2s,color .2s}
.btn-gold-outline:hover{background:var(--gold);color:var(--navy)}

/* ── SECTIONS ── */
section{padding:6rem 3rem}
.section-eyebrow{font-size:.62rem;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);margin-bottom:.75rem}
.section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3.25rem);font-weight:300;color:var(--cream);line-height:1.1;margin-bottom:1rem}
.section-sub{font-size:.92rem;line-height:1.75;color:var(--text-muted);font-weight:300;max-width:520px}

/* ── TRUST BAR ── */
.trust-bar{background:var(--navy-mid);border-top:1px solid rgba(201,168,76,.15);border-bottom:1px solid rgba(201,168,76,.15);padding:2rem 3rem}
.trust-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;text-align:center}
.trust-item{display:flex;flex-direction:column;gap:.3rem}
.trust-number{font-family:'Cormorant Garamond',serif;font-size:2.25rem;font-weight:300;color:var(--gold);line-height:1}
.trust-label{font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--text-muted)}

/* ── PROPERTY GRID ── */
.properties{background:var(--navy)}
.properties-header{max-width:1100px;margin:0 auto 3.5rem;display:flex;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;gap:1.5rem}
.properties-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:2px}
.prop-card{position:relative;overflow:hidden;cursor:pointer;aspect-ratio:4/3;display:block;text-decoration:none}
.prop-card.featured{grid-column:span 2;aspect-ratio:16/9}
.prop-card.hidden{display:none}
.prop-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease;display:block}
.prop-card:hover img{transform:scale(1.05)}
.prop-overlay{position:absolute;inset:0;background:var(--card-overlay);transition:opacity .3s}
.prop-card:hover .prop-overlay{opacity:.88}
.prop-info{position:absolute;bottom:0;left:0;right:0;padding:1.5rem 1.75rem}
.prop-badge{display:inline-block;font-size:.56rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);border:1px solid rgba(201,168,76,.35);padding:.22rem .55rem;margin-bottom:.6rem}
.prop-name{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:400;color:var(--cream);line-height:1.2;margin-bottom:.45rem}
.prop-card.featured .prop-name{font-size:2.1rem}
.prop-meta{display:flex;align-items:center;gap:.85rem;font-size:.7rem;color:var(--text-muted);flex-wrap:wrap}
.prop-rating{display:flex;align-items:center;gap:.25rem;font-size:.7rem;color:var(--gold-light)}
.prop-hover-cta{position:absolute;top:1.5rem;right:1.5rem;background:var(--gold);color:var(--navy);padding:.4rem .95rem;font-size:.62rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;opacity:0;transform:translateY(-5px);transition:opacity .3s,transform .3s}
.prop-card:hover .prop-hover-cta{opacity:1;transform:translateY(0)}
.prop-new{position:absolute;top:1.5rem;left:1.5rem;background:rgba(10,22,40,.7);border:1px solid var(--gold);color:var(--gold);padding:.28rem .65rem;font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;backdrop-filter:blur(4px)}

/* ── DIRECT SECTION ── */
.direct{background:var(--navy-mid);border-top:1px solid rgba(201,168,76,.1)}
.direct-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.direct-visual{position:relative}
.direct-img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.direct-badge{position:absolute;bottom:-1.5rem;right:-1.5rem;background:var(--gold);color:var(--navy);padding:1.5rem;text-align:center;min-width:115px}
.direct-badge .amount{font-family:'Cormorant Garamond',serif;font-size:2.4rem;font-weight:500;line-height:1;display:block}
.direct-badge .label{font-size:.58rem;letter-spacing:.15em;text-transform:uppercase;display:block;margin-top:.3rem}
.direct-content{padding-right:1rem}
.direct-perks{list-style:none;margin:2rem 0;display:flex;flex-direction:column;gap:1.35rem}
.direct-perk{display:flex;gap:1rem;align-items:flex-start}
.perk-icon{width:36px;height:36px;flex-shrink:0;border:1px solid rgba(201,168,76,.3);display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:.95rem;margin-top:2px}
.perk-text strong{display:block;font-size:.88rem;font-weight:500;color:var(--cream);margin-bottom:.2rem}
.perk-text span{font-size:.8rem;color:var(--text-muted);line-height:1.65}

/* ── AREA CARDS ── */
.area{background:var(--navy)}
.area-inner{max-width:1100px;margin:0 auto}
.area-header{margin-bottom:3rem}
.area-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px}.area-card{background:var(--navy-mid);padding:1.75rem 1.5rem;border-bottom:2px solid transparent;transition:border-color .3s}
.area-card:hover{border-bottom-color:var(--gold)}
.area-icon{font-size:1.5rem;margin-bottom:1rem}
.area-title{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:400;color:var(--cream);margin-bottom:.4rem}
.area-dist{font-size:.65rem;letter-spacing:.15em;color:var(--gold);text-transform:uppercase;margin-bottom:.65rem}
.area-desc{font-size:.78rem;color:var(--text-muted);line-height:1.65}

/* ── REVIEWS ── */
.reviews{background:var(--navy-mid);border-top:1px solid rgba(201,168,76,.1)}
.reviews-inner{max-width:1100px;margin:0 auto}
.reviews-header{margin-bottom:3rem}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px}
.review-card{background:var(--navy);padding:2.25rem 1.75rem;border-left:2px solid transparent;transition:border-color .3s}
.review-card:hover{border-left-color:var(--gold)}
.review-stars{color:var(--gold);font-size:.7rem;letter-spacing:.12em;margin-bottom:1rem}
.review-text{font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-weight:300;font-style:italic;color:var(--cream);line-height:1.7;margin-bottom:1.35rem}
.review-author{font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;color:var(--text-muted)}
.review-property{color:var(--gold)}

/* ── PROPERTY PAGE HERO ── */
.prop-hero{position:relative;height:72vh;min-height:480px;display:flex;align-items:flex-end;overflow:hidden}
.prop-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.prop-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(10,22,40,.2) 0%,rgba(10,22,40,.3) 40%,rgba(10,22,40,.85) 85%,rgba(10,22,40,1) 100%)}
.prop-hero-content{position:relative;z-index:2;width:100%;max-width:1100px;margin:0 auto;padding:0 3rem 3.5rem}
.prop-breadcrumb{font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;color:var(--text-muted);margin-bottom:1.25rem}
.prop-breadcrumb a{color:var(--gold);text-decoration:none}
.prop-breadcrumb a:hover{color:var(--gold-light)}
.prop-breadcrumb span{margin:0 .5rem;opacity:.4}
.prop-hero-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2.5rem,5vw,4.5rem);font-weight:300;color:var(--cream);line-height:1.05;margin-bottom:1rem}
.prop-hero-meta{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.prop-hero-rating{display:flex;align-items:center;gap:.4rem;font-size:.85rem;color:var(--gold-light)}
.prop-hero-rating strong{font-size:1.1rem;font-weight:500}
.prop-hero-tag{font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;color:var(--text-muted)}
.prop-hero-tag.gold{color:var(--gold);border:1px solid rgba(201,168,76,.3);padding:.25rem .6rem}

/* ── PROPERTY STATS BAR ── */
.prop-stats{background:var(--navy-mid);border-bottom:1px solid rgba(201,168,76,.12);padding:1.5rem 3rem}
.prop-stats-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:2.5rem;flex-wrap:wrap}
.stat-item{display:flex;flex-direction:column;gap:.2rem;padding-right:2.5rem;border-right:.5px solid rgba(201,168,76,.15)}
.stat-item:last-of-type{border-right:none}
.stat-val{font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:300;color:var(--cream);line-height:1}
.stat-key{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:var(--text-muted)}
.stat-book-btn{margin-left:auto}

/* ── PROPERTY GALLERY ── */
.prop-gallery{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr;grid-template-rows:200px 200px;gap:2px}
.gallery-img{overflow:hidden;display:block}
.gallery-img.main{grid-row:span 2}
.gallery-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.gallery-img:hover img{transform:scale(1.04)}
.gallery-more{position:relative}
.gallery-more::after{content:'View all photos →';position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(10,22,40,.5);font-size:.72rem;letter-spacing:.15em;text-transform:uppercase;color:var(--cream);backdrop-filter:blur(2px);transition:background .2s}
.gallery-more:hover::after{background:rgba(10,22,40,.7)}

/* ── PROPERTY MAIN LAYOUT ── */
.prop-main{max-width:1100px;margin:0 auto;padding:4rem 3rem;display:grid;grid-template-columns:1fr 340px;gap:4rem;align-items:start}
.prop-description{font-size:.95rem;line-height:1.85;color:var(--text-muted);margin-bottom:3rem;font-weight:300}
.prop-description p{margin-bottom:1rem}
.prop-section-title{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:400;color:var(--cream);margin-bottom:1.5rem;padding-bottom:.75rem;border-bottom:.5px solid rgba(201,168,76,.15)}
.amenities-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;margin-bottom:3rem}
.amenity{display:flex;align-items:center;gap:.6rem;padding:.6rem .5rem;font-size:.8rem;color:var(--text-muted)}
.amenity-icon{font-size:1rem;flex-shrink:0}
.rules-list{display:flex;flex-direction:column;gap:.6rem;margin-bottom:3rem}
.rule-item{display:flex;align-items:center;gap:.75rem;font-size:.82rem;color:var(--text-muted);padding:.5rem 0;border-bottom:.5px solid rgba(201,168,76,.07)}
.rule-icon{font-size:.9rem;flex-shrink:0}
.proximity-grid{display:grid;grid-template-columns:1fr 1fr;gap:.5rem}
.prox-item{display:flex;justify-content:space-between;align-items:center;padding:.6rem .75rem;background:var(--navy-mid);font-size:.78rem}
.prox-name{color:var(--text-muted)}
.prox-dist{color:var(--gold);font-size:.7rem;letter-spacing:.1em}

/* ── BOOKING SIDEBAR ── */
.booking-card{position:sticky;top:100px;background:var(--navy-mid);border:1px solid rgba(201,168,76,.2);padding:2rem}
.booking-card-top{text-align:center;padding-bottom:1.5rem;border-bottom:.5px solid rgba(201,168,76,.12);margin-bottom:1.5rem}
.booking-save{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem}
.booking-headline{font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:300;color:var(--cream);line-height:1.2;margin-bottom:.4rem}
.booking-sub{font-size:.75rem;color:var(--text-muted);line-height:1.5}
.booking-cta{width:100%;margin-bottom:.75rem;text-align:center;padding:.875rem 1rem!important}
.booking-airbnb{display:flex;align-items:center;justify-content:center;gap:.4rem;font-size:.72rem;color:var(--text-muted);text-decoration:none;padding:.5rem;border:.5px solid rgba(201,168,76,.1);transition:color .2s,border-color .2s}
.booking-airbnb:hover{color:var(--cream);border-color:rgba(201,168,76,.25)}
.booking-perks{list-style:none;margin-top:1.5rem;display:flex;flex-direction:column;gap:.6rem}
.booking-perk{display:flex;align-items:center;gap:.6rem;font-size:.75rem;color:var(--text-muted)}
.booking-perk::before{content:'✓';color:var(--gold);font-size:.7rem;flex-shrink:0}
.booking-rating{margin-top:1.5rem;padding-top:1.5rem;border-top:.5px solid rgba(201,168,76,.12);display:flex;align-items:center;justify-content:space-between}
.booking-rating-score{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:300;color:var(--gold)}
.booking-rating-meta{text-align:right}
.booking-rating-stars{color:var(--gold);font-size:.65rem;letter-spacing:.1em}
.booking-rating-count{font-size:.68rem;color:var(--text-muted)}

/* ── OTHER PROPERTIES ── */
.other-props{background:var(--navy);padding:5rem 3rem;border-top:1px solid rgba(201,168,76,.1)}
.other-props-inner{max-width:1100px;margin:0 auto}
.other-props-header{margin-bottom:2.5rem}
.other-props-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px}
.op-card{display:block;text-decoration:none;position:relative;overflow:hidden;aspect-ratio:4/3}
.op-card img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.op-card:hover img{transform:scale(1.04)}
.op-overlay{position:absolute;inset:0;background:var(--card-overlay)}
.op-info{position:absolute;bottom:0;left:0;right:0;padding:1.25rem 1.5rem}
.op-name{font-family:'Cormorant Garamond',serif;font-size:1.2rem;color:var(--cream);margin-bottom:.3rem}
.op-meta{font-size:.68rem;color:var(--text-muted)}
.op-rating{color:var(--gold-light)}

/* ── FOOTER ── */
footer{background:#060f1c;border-top:1px solid rgba(201,168,76,.15);padding:4rem 3rem 2rem}
.footer-inner{max-width:1100px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-logo{display:flex;align-items:center;gap:.75rem;text-decoration:none;margin-bottom:1rem}
.footer-logo img{height:40px;filter:brightness(0) invert(1);opacity:.85}
.footer-logo-text .fl-main{font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-weight:500;letter-spacing:.08em;color:var(--cream);display:block}
.footer-logo-text .fl-sub{font-size:.56rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold)}
.footer-tagline{font-size:.8rem;color:var(--text-muted);line-height:1.7;max-width:230px}
.footer-col h4{font-size:.62rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:1.25rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.footer-col ul li a{text-decoration:none;font-size:.8rem;color:var(--text-muted);transition:color .2s}
.footer-col ul li a:hover{color:var(--cream)}
.footer-bottom{border-top:.5px solid rgba(201,168,76,.1);padding-top:1.75rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-copy{font-size:.7rem;color:var(--text-muted)}
.footer-legal{display:flex;gap:1.5rem}
.footer-legal a{font-size:.7rem;color:var(--text-muted);text-decoration:none}
.footer-legal a:hover{color:var(--gold)}

/* ── ANIMATIONS ── */
.fade-up{opacity:0;transform:translateY(28px);transition:opacity .75s ease,transform .75s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  section{padding:5rem 2rem}
  .trust-inner{grid-template-columns:repeat(2,1fr)}
  .properties-grid{grid-template-columns:repeat(2,1fr)}
  .prop-card.featured{grid-column:span 2}
  .direct-inner{grid-template-columns:1fr;gap:3.5rem}
  .direct-badge{right:0}
  .area-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem}
  .prop-main{grid-template-columns:1fr;gap:2.5rem;padding:3rem 2rem}
  .booking-card{position:static}
  .prop-stats{padding:1.5rem 2rem}
  .prop-hero-content{padding:0 2rem 2.5rem}
  .other-props-grid{grid-template-columns:1fr 1fr}
  .prop-gallery{grid-template-columns:2fr 1fr;grid-template-rows:180px 180px}
}
@media(max-width:640px){
  section{padding:4rem 1.25rem}
  .trust-inner{grid-template-columns:repeat(2,1fr);gap:2rem}
  .properties-grid{grid-template-columns:1fr;gap:2px}
  .prop-card.featured{grid-column:span 1;aspect-ratio:4/3}
  .area-grid{grid-template-columns:1fr 1fr;gap:1px}
  .reviews-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .prop-hero{height:65vh}
  .prop-hero-content{padding:0 1.25rem 2rem}
  .prop-hero-title{font-size:2.25rem}
  .prop-stats{padding:1.25rem}
  .prop-stats-inner{gap:1.25rem}
  .stat-item{padding-right:1.25rem}
  .prop-gallery{grid-template-columns:1fr 1fr;grid-template-rows:140px 140px}
  .gallery-img.main{grid-row:span 1;grid-column:span 2}
  .amenities-grid{grid-template-columns:1fr 1fr}
  .proximity-grid{grid-template-columns:1fr}
  .other-props-grid{grid-template-columns:1fr}
  .other-props{padding:3.5rem 1.25rem}
}
