/* ── Utility classes (replace inline styles removed for strict CSP) ───────────
   These replace style="..." attributes that were previously in index.html.
   JavaScript-set styles (el.style.x) are unaffected by CSP.               */
.section--white     { background: white; }
.section--pt-sm     { padding-top: 2.5rem; }
.section--rentals-top { padding-top: 1.25rem; padding-bottom: 0; }
.section--legal     { background: white; padding-top: 3rem; min-height: 70vh; }
.section-inner--narrow { max-width: 720px; }
.section-label--inverted { background: rgba(255,255,255,0.15); color: white; }
.legal-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-size: 2.2rem; color: #1a1a1a; margin: 1.5rem 0 2rem;
}
/* Gallery lightbox: hidden by default (was inline style="display:none") */
#gallery-lightbox { display: none; }

/* Self-hosted fonts — no Google Fonts request */
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/cormorant-garamond-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/cormorant-garamond-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/cormorant-garamond-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/cormorant-garamond-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/cormorant-garamond-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/cormorant-garamond-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
*{box-sizing:border-box;margin:0;padding:0}
:root{
  --brand:#486682;--brand-dark:#2e4a5e;--brand-mid:#5c7d96;
  --brand-light:#e5ecfa;--brand-xlight:#f0f5fb;
  --bg:#f0efeb;--white:#ffffff;
  --text:#1e2e38;--text-muted:#5a6a74;
  --r:12px;--r-sm:8px;
  --shadow:0 2px 16px rgba(72,102,130,0.10);
}
body{font-family:var(--font-sans,system-ui,sans-serif);background:var(--bg);color:var(--text);line-height:1.7;overflow-x:hidden}

/* NAV */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:rgba(252,249,243,0.97);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,0.07);
  height:116px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 3rem;
  box-shadow:0 1px 0 rgba(0,0,0,0.04);
  transition:background 0.45s ease,border-color 0.45s ease,box-shadow 0.45s ease,height 0.35s ease;
}
nav.scrolled{box-shadow:0 2px 24px rgba(0,0,0,0.08);height:116px}
nav.scrolled .nav-logo{height:100px}
nav.scrolled .nav-brand-name{font-size:19px}
nav.scrolled .nav-brand-sub{opacity:0;height:0;overflow:hidden}
/* Transparent state — over hero on home page */
nav.nav-top{
  background:transparent;
  border-bottom-color:transparent;
  box-shadow:none;
  backdrop-filter:none;-webkit-backdrop-filter:none;
}
nav.nav-top .nav-brand-name{
  color:#fff;
  text-shadow:0 1px 10px rgba(0,0,0,0.55);
}
nav.nav-top .nav-brand-sub{
  color:rgba(255,255,255,0.85);
  text-shadow:0 1px 6px rgba(0,0,0,0.5);
}
nav.nav-top .nav-links a{
  color:#fff;
  text-shadow:0 1px 8px rgba(0,0,0,0.55);
}
nav.nav-top .nav-links a:hover,nav.nav-top .nav-links a.active{color:#fff;opacity:0.8}
nav.nav-top .nav-cta{background:rgba(255,255,255,0.2);color:#fff;border:1px solid rgba(255,255,255,0.5)}
nav.nav-top .nav-cta:hover{background:rgba(255,255,255,0.35)}
nav.nav-top .nav-hamburger span{background:#fff}
nav.nav-top .nav-logo{filter:brightness(0) invert(1)}
/* Brand */
.nav-brand{
  display:flex;flex-direction:row;align-items:center;
  cursor:pointer;flex-shrink:0;gap:20px;
  text-decoration:none;
}
.nav-logo{
  height:100px;width:auto;
  display:block;
  transition:height 0.35s ease;
}
.nav-brand-text{display:flex;flex-direction:column;gap:2px}
.nav-brand-name{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:21px;font-weight:400;
  color:#1a1a1a;letter-spacing:0.06em;
  line-height:1;display:block;
  transition:font-size 0.3s;
}
.nav-brand-sub{
  font-size:9.5px;font-weight:500;letter-spacing:0.22em;
  text-transform:uppercase;color:#777;
  display:block;
  transition:opacity 0.3s,height 0.3s;
}
/* Links — centered column */
.nav-links{
  display:flex;list-style:none;gap:2.5rem;margin:0;padding:0;
  justify-content:center;
}
.nav-links a{
  font-size:11px;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;
  color:#444;text-decoration:none;
  transition:color 0.2s;
}
.nav-links a:hover,.nav-links a.active{color:#1a1a1a}
/* Right */
.nav-right{
  display:flex;align-items:center;gap:1rem;
  justify-content:flex-end;
}
.nav-brand-text{display:none}
nav.nav-top .nav-brand-text{display:flex}
.nav-cta{
  font-size:11px;font-weight:500;letter-spacing:0.14em;text-transform:uppercase;
  color:#fff;background:var(--brand);
  padding:10px 24px;border-radius:30px;
  text-decoration:none;transition:background 0.25s;white-space:nowrap;
}
.nav-cta:hover{background:var(--brand)}
/* Hamburger */
.nav-hamburger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  background:none;border:none;cursor:pointer;padding:6px;
}
.nav-hamburger span{
  display:block;width:22px;height:1.5px;background:#1a1a1a;
  border-radius:2px;transition:all 0.2s;
}
/* Mobile menu */
.mobile-menu{
  display:none;flex-direction:column;
  background:rgba(252,249,243,0.99);
  border-bottom:1px solid rgba(0,0,0,0.07);
  position:fixed;top:100px;left:0;right:0;z-index:199;
}
.mobile-menu a{
  padding:18px 2rem;
  color:#888;text-decoration:none;
  font-size:11px;letter-spacing:0.18em;text-transform:uppercase;font-weight:500;
  border-bottom:1px solid rgba(0,0,0,0.05);
  transition:color 0.2s;
}
.mobile-menu a:last-child{border-bottom:none}
.mobile-menu a:hover{color:#1a1a1a}
.mobile-menu.open{display:flex}
@media(max-width:680px){
  nav{padding:0 1.5rem;height:80px;grid-template-columns:1fr auto}
  nav.scrolled{height:62px}
  .nav-links{display:none}
  .nav-cta{display:none}
  .nav-hamburger{display:flex}
  .nav-logo{height:50px}
  nav.scrolled .nav-logo{height:42px}
  .nav-brand-name{font-size:17px}
  .nav-brand-sub{display:none}
  .mobile-menu{top:80px;left:0;right:0}
  nav.scrolled ~ .mobile-menu{top:62px}
}

.page{display:none}
.page.active{display:block}
/* Fixed nav: push non-hero pages down so content isn't hidden behind the nav */
#page-rentals,#page-detail-louis,#page-detail-bergliebe{padding-top:100px}
@media(max-width:680px){
  #page-rentals,#page-detail-louis,#page-detail-bergliebe{padding-top:80px}
}

/* HERO */
.hero{
  position:relative;min-height:96vh;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
  background:var(--brand-dark);
}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center top;opacity:0.7}
.hero-gradient{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(10,20,30,0.52) 0%,rgba(46,74,94,0.1) 28%,rgba(46,74,94,0.4) 60%,rgba(22,42,58,0.92) 100%)}
.hero-content{position:relative;padding:4rem 3rem 5rem;max-width:900px;text-align:center;margin:0 auto}
.hero-label{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);
  color:rgba(255,255,255,0.9);font-size:12px;letter-spacing:0.12em;
  text-transform:uppercase;padding:6px 14px;border-radius:20px;
  margin-bottom:1.25rem;
}
.hero-dot{width:6px;height:6px;border-radius:50%;background:#7eb3d4;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.4}}
.hero-content h1{
  font-size:clamp(3rem,7vw,5.5rem);font-weight:400;
  color:#fff;line-height:1.1;margin-bottom:1.25rem;
  letter-spacing:-0.02em;
}
.hero-content h1 em{font-style:normal;color:#7eb3d4}
.hero-content p{
  font-size:1.15rem;color:rgba(255,255,255,0.78);
  margin-bottom:2.25rem;line-height:1.75;max-width:520px;
}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.btn-hero{
  background:var(--brand);color:white;border:none;
  padding:14px 32px;border-radius:28px;
  font-size:15px;font-weight:500;cursor:pointer;
  transition:all 0.2s;letter-spacing:0.01em;
}
.btn-hero:hover{background:var(--brand-mid);transform:translateY(-2px)}
.btn-hero-ghost{
  background:rgba(255,255,255,0.1);color:white;
  border:1.5px solid rgba(255,255,255,0.4);
  padding:13px 28px;border-radius:28px;
  font-size:15px;cursor:pointer;transition:all 0.2s;
}
.btn-hero-ghost:hover{background:rgba(255,255,255,0.2)}

/* SCROLL INDICATOR */
.scroll-hint{
  position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:8px;
  color:rgba(255,255,255,0.5);font-size:11px;letter-spacing:0.1em;text-transform:uppercase;
  animation:bounceDown 2s ease infinite;
}
@keyframes bounceDown{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)}}
.scroll-arrow{width:20px;height:20px;border-right:1.5px solid rgba(255,255,255,0.4);border-bottom:1.5px solid rgba(255,255,255,0.4);transform:rotate(45deg)}

/* TRUST BAR */
.trust-bar{
  background:var(--brand-dark);
  padding:1.25rem 2.5rem;
  display:flex;align-items:center;justify-content:center;gap:3rem;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.trust-item{
  display:flex;align-items:center;gap:10px;
  color:rgba(255,255,255,0.72);font-size:13px;
}
.trust-icon{width:32px;height:32px;background:rgba(255,255,255,0.1);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0}

/* SECTIONS */
.section{padding:5.5rem 2.5rem}
.section-inner{max-width:1080px;margin:0 auto}
.section-label{
  display:inline-block;font-size:11px;letter-spacing:0.14em;
  text-transform:uppercase;color:var(--brand);
  background:var(--brand-xlight);padding:4px 12px;border-radius:12px;
  margin-bottom:1rem;font-weight:500;
}
.section-title{font-size:clamp(1.7rem,3.2vw,2.5rem);font-weight:400;margin-bottom:1rem;color:var(--text);letter-spacing:-0.01em}
.section-sub{font-size:1.05rem;color:var(--text-muted);max-width:560px;line-height:1.8}

/* INTRO SPLIT */
.intro-split{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;margin-top:3.5rem}
.intro-img{border-radius:var(--r);overflow:hidden;aspect-ratio:4/3;position:relative}
.intro-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s}
.intro-img:hover img{transform:scale(1.03)}
.intro-img-badge{
  position:absolute;bottom:1.25rem;left:1.25rem;
  background:rgba(72,102,130,0.92);backdrop-filter:blur(8px);
  color:white;padding:10px 16px;border-radius:10px;font-size:13px;
  border:1px solid rgba(255,255,255,0.15);
}
.intro-img-badge strong{display:block;font-size:15px;font-weight:500}
.intro-text h3{font-size:1.5rem;font-weight:400;margin-bottom:1.25rem;color:var(--text)}
.intro-text p{color:var(--text-muted);line-height:1.85;margin-bottom:1rem}

/* APARTMENTS GRID */
.apt-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.apt-card{
  background:var(--white);border-radius:var(--r);
  border:1px solid rgba(72,102,130,0.1);
  overflow:hidden;cursor:pointer;
  transition:transform 0.25s,box-shadow 0.25s;
  position:relative;
}
.apt-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(72,102,130,0.15)}
.apt-card-img{aspect-ratio:16/10;overflow:hidden;position:relative}
.apt-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s}
.apt-card:hover .apt-card-img img{transform:scale(1.05)}
.apt-tag{
  position:absolute;top:12px;left:12px;
  background:var(--brand);color:white;
  font-size:11px;letter-spacing:0.06em;text-transform:uppercase;
  padding:4px 10px;border-radius:10px;font-weight:500;
}
.apt-body{padding:1.5rem}
.apt-body h3{font-size:1.1rem;font-weight:500;margin-bottom:0.4rem;color:var(--text)}
.apt-body p{font-size:0.9rem;color:var(--text-muted);line-height:1.65;margin-bottom:1.1rem}
.apt-specs{display:flex;gap:0.75rem;flex-wrap:wrap;margin-bottom:1.1rem}
.spec{
  display:flex;align-items:center;gap:5px;
  font-size:12px;color:var(--brand-dark);
  background:var(--brand-xlight);padding:4px 10px;border-radius:8px;
}
.apt-footer{display:flex;align-items:center;justify-content:space-between;padding-top:1rem;border-top:1px solid rgba(72,102,130,0.08)}
.apt-price{font-size:14px;color:var(--text-muted)}
.apt-price strong{font-size:17px;color:var(--brand-dark);font-weight:500}
.btn-card{
  font-size:13px;padding:8px 18px;border-radius:20px;
  border:1.5px solid var(--brand);color:var(--brand);
  background:transparent;cursor:pointer;transition:all 0.2s;font-weight:500;
}
.btn-card:hover{background:var(--brand);color:white}

/* ATMOSPHERE MOSAIC */
.mosaic{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:240px 240px;gap:1rem;margin-top:3rem}
.mosaic-img{border-radius:var(--r);overflow:hidden;position:relative}
.mosaic-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s}
.mosaic-img:hover img{transform:scale(1.04)}
.mosaic-caption{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(to top,rgba(30,46,56,0.75) 0%,transparent 100%);
  padding:1rem 1.25rem 0.85rem;color:white;font-size:13px;
  opacity:0;transition:opacity 0.3s;
}
.mosaic-img:hover .mosaic-caption{opacity:1}

/* WHY GRID */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;margin-top:3rem}
.why-card{
  padding:1.75rem 1.5rem;
  background:var(--brand-dark);border-radius:var(--r);
  color:rgba(255,255,255,0.85);transition:transform 0.2s;
}
.why-card:hover{transform:translateY(-3px)}
.why-num{font-size:2rem;font-weight:300;color:rgba(255,255,255,0.25);margin-bottom:0.5rem;font-family:serif}
.why-card h4{font-size:1rem;font-weight:500;margin-bottom:0.6rem;color:white}
.why-card p{font-size:0.88rem;line-height:1.65;color:rgba(255,255,255,0.65)}

/* TESTIMONIAL STRIP */
.testimonial-strip{
  background:var(--brand);
  text-align:center;position:relative;overflow:hidden;
  user-select:none;
  display:flex;align-items:center;justify-content:center;
  min-height:420px;padding:4rem 5rem;
}
.testimonial-content{
  max-width:680px;width:100%;margin:0 auto;
  display:flex;flex-direction:column;align-items:center;
  min-height:220px;
  transition:opacity 0.35s ease,transform 0.35s ease;
}
.testimonial-content.fading{opacity:0;transform:translateY(8px)}
.t-stars{color:#f9d94e;font-size:1.1rem;letter-spacing:3px;margin-bottom:1rem;flex-shrink:0}
.testimonial-strip blockquote{
  font-size:clamp(1rem,2vw,1.35rem);font-weight:300;
  color:white;margin:0 auto 1rem;
  line-height:1.75;letter-spacing:0.01em;
  flex:1;display:flex;align-items:center;overflow:hidden;
}
.testimonial-strip cite{color:rgba(255,255,255,0.6);font-size:13.5px;font-style:normal;display:block;margin-bottom:0.6rem;flex-shrink:0}
.t-platform{
  display:inline-block;font-size:11px;font-weight:600;
  letter-spacing:0.1em;text-transform:uppercase;
  color:rgba(255,255,255,0.35);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:20px;padding:3px 12px;
}
.testimonial-dots{display:flex;justify-content:center;gap:8px;margin-top:2rem}
.t-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,0.25);cursor:pointer;transition:all 0.25s}
.t-dot.on{background:white;transform:scale(1.2)}
.t-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,0.12);border:none;color:white;
  width:44px;height:44px;border-radius:50%;cursor:pointer;
  font-size:1.4rem;line-height:1;
  transition:background 0.2s;display:flex;align-items:center;justify-content:center;
}
.t-arrow:hover{background:rgba(255,255,255,0.25)}
.t-prev{left:1.5rem}
.t-next{right:1.5rem}
@media(max-width:680px){
  .testimonial-strip{padding:3rem 1.25rem;min-height:320px}
  .t-arrow{display:none}
  .testimonial-content{min-height:200px}
  .testimonial-strip blockquote{font-size:0.97rem}
}

/* CTA BANNER */
.cta-banner{
  background:var(--brand-xlight);padding:4.5rem 2.5rem;
  text-align:center;border-top:1px solid rgba(72,102,130,0.12);
  border-bottom:1px solid rgba(72,102,130,0.12);
}
.cta-banner h2{font-size:clamp(1.5rem,3vw,2.2rem);font-weight:400;color:var(--brand-dark);margin-bottom:0.75rem}
.cta-banner p{color:var(--text-muted);margin-bottom:2rem}
.btn-primary{
  background:var(--brand);color:white;border:none;
  padding:14px 36px;border-radius:28px;font-size:15px;
  font-weight:500;cursor:pointer;transition:all 0.2s;
}
.btn-primary:hover{background:var(--brand-dark);transform:translateY(-2px)}
.btn-outline-blue{
  background:transparent;color:var(--brand);
  border:1.5px solid var(--brand);
  padding:13px 28px;border-radius:28px;font-size:15px;
  cursor:pointer;transition:all 0.2s;margin-left:12px;
}
.btn-outline-blue:hover{background:var(--brand-light)}

/* ABOUT PAGE */
.about-hero{
  background:var(--brand-dark);padding:5rem 2.5rem 4rem;
  text-align:center;
}
.about-hero h1{font-size:clamp(2rem,4vw,3rem);font-weight:400;color:white;margin-bottom:1rem}
.about-hero p{color:rgba(255,255,255,0.7);max-width:540px;margin:0 auto;line-height:1.75}
.about-split{display:grid;grid-template-columns:1fr 1.3fr;gap:5rem;align-items:center;margin-top:3.5rem}
.about-portrait{border-radius:var(--r);overflow:hidden;aspect-ratio:3/4}
.about-portrait img{width:100%;height:100%;object-fit:cover}
.about-text .quote-mark{font-size:5rem;color:var(--brand-light);line-height:0.6;margin-bottom:1rem;font-family:Georgia,serif}
.about-text blockquote{font-size:1.25rem;color:var(--brand);font-weight:400;line-height:1.65;margin-bottom:1.75rem;font-style:italic}
.about-text p{color:var(--text-muted);line-height:1.85;margin-bottom:1rem}
.signature{font-size:1.05rem;font-weight:500;color:var(--text);margin-top:1.5rem}
.signature small{display:block;font-size:13px;color:var(--text-muted);font-weight:400;margin-top:2px}

/* LOCATION */
.loc-hero{background:var(--brand);padding:4rem 2.5rem 3rem;text-align:center}
.loc-hero h1{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:400;color:white;margin-bottom:0.75rem}
.loc-hero p{color:rgba(255,255,255,0.75);max-width:500px;margin:0 auto}
.loc-split{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;margin-top:3.5rem;align-items:start}
.loc-map{border-radius:var(--r);overflow:hidden;aspect-ratio:4/3;background:var(--brand-xlight)}
.loc-map img{width:100%;height:100%;object-fit:cover}
.tips-list{list-style:none;margin-top:1rem}
.tip{
  display:flex;gap:1rem;padding:1rem 0;
  border-bottom:1px solid rgba(72,102,130,0.1);
}
.tip:last-child{border-bottom:none}
.tip-icon{
  width:38px;height:38px;border-radius:10px;
  background:var(--brand-xlight);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;margin-top:2px;
}
.tip-text strong{display:block;font-size:0.95rem;color:var(--text);margin-bottom:2px}
.tip-text span{font-size:0.88rem;color:var(--text-muted)}

/* CONTACT */
.contact-wrap{display:grid;grid-template-columns:1.2fr 1fr;gap:4rem;margin-top:3.5rem}
.contact-form-card{
  background:white;border-radius:var(--r);
  border:1px solid rgba(72,102,130,0.1);
  padding:2.5rem;
}
.form-row{margin-bottom:1.25rem}
.form-row label{display:block;font-size:13px;color:var(--text-muted);margin-bottom:7px;font-weight:500}
.form-row input,.form-row textarea,.form-row select{
  width:100%;padding:12px 15px;
  border:1.5px solid rgba(72,102,130,0.18);
  border-radius:var(--r-sm);background:var(--bg);
  font-size:14px;color:var(--text);font-family:inherit;
  outline:none;transition:border 0.2s,background 0.2s;
}
.form-row input:focus,.form-row textarea:focus{
  border-color:var(--brand);background:white;
}
.form-row textarea{resize:vertical;min-height:120px}
.form-row-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.contact-info-card{padding-top:1rem}
.contact-info-card h3{font-size:1.2rem;font-weight:500;margin-bottom:0.5rem;color:var(--text)}
.contact-info-card>p{color:var(--text-muted);font-size:0.95rem;margin-bottom:2rem;line-height:1.7}
.contact-item{
  display:flex;gap:14px;align-items:flex-start;
  margin-bottom:1.5rem;padding:1rem 1.25rem;
  background:var(--brand-xlight);border-radius:var(--r-sm);
  border-left:3px solid var(--brand);
}
.c-icon{
  width:36px;height:36px;border-radius:8px;
  background:var(--brand);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.c-icon svg{flex-shrink:0}
.c-text strong{display:block;font-size:13px;color:var(--text-muted);margin-bottom:2px;text-transform:uppercase;letter-spacing:0.06em}
.c-text a,.c-text span{font-size:14px;color:var(--brand-dark);font-weight:500;text-decoration:none}

/* DETAIL PAGE */
.detail-layout{display:grid;grid-template-columns:1.5fr 1fr;gap:3rem;align-items:start}
.detail-desc p{color:var(--text-muted);line-height:1.85;margin-bottom:1rem}
.badges{display:flex;gap:0.65rem;flex-wrap:wrap;margin:1.5rem 0}
.badge{
  background:var(--brand-xlight);color:var(--brand-dark);
  font-size:13px;padding:7px 15px;border-radius:20px;font-weight:500;
}
.amenities-grid{display:grid;grid-template-columns:1fr 1fr;gap:0.5rem 1.25rem;margin-top:1.25rem}
.amenity{font-size:0.9rem;color:var(--text-muted);display:flex;gap:8px;align-items:center;padding:4px 0}
.amenity-check{color:var(--brand);font-size:15px}
.amenity--featured{color:var(--brand-dark);font-weight:600}
.amenity--featured .amenity-check{color:var(--brand-dark)}
.amenity-feature-box{
  margin-top:1.1rem;
  background:var(--brand-xlight);
  border-left:3px solid var(--brand);
  border-radius:var(--r-sm);
  padding:0.9rem 1.1rem;
}
.amenity-feature-title{
  font-size:0.82rem;font-weight:700;letter-spacing:0.07em;
  text-transform:uppercase;color:var(--brand-dark);
  margin-bottom:0.45rem;
}
.amenity-feature-desc{font-size:0.85rem;color:var(--text-muted);line-height:1.65}
.booking-card{
  background:white;border-radius:var(--r);
  border:1.5px solid rgba(72,102,130,0.12);
  padding:2rem;position:sticky;top:80px;
}
.price-line{display:flex;align-items:baseline;gap:6px;margin-bottom:1.75rem}
.price-big{font-size:2rem;font-weight:500;color:var(--brand-dark)}
.price-label{font-size:0.9rem;color:var(--text-muted)}
.booking-grid{display:grid;grid-template-columns:1fr 1fr;gap:0.75rem;margin-bottom:0.75rem}
.b-field label{display:block;font-size:12px;color:var(--text-muted);margin-bottom:5px;font-weight:500;text-transform:uppercase;letter-spacing:0.06em}
.b-field input,.b-field select{
  width:100%;padding:10px 12px;
  border:1.5px solid rgba(72,102,130,0.18);border-radius:var(--r-sm);
  background:var(--bg);font-size:14px;color:var(--text);
  font-family:inherit;outline:none;
}
.b-field input:focus{border-color:var(--brand)}

/* FOOTER */
footer{
  background:var(--brand-dark);
  border-top:3px solid var(--brand-mid);
  color:rgba(255,255,255,0.6);
  padding:4rem 2.5rem 2rem;
}
.footer-inner{
  max-width:1080px;margin:0 auto;
  display:grid;grid-template-columns:1.75fr 1fr 1fr 1fr;
  gap:0;align-items:start;
}
.footer-brand{
  padding-right:3rem;
  border-right:1px solid rgba(255,255,255,0.08);
  margin-right:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.footer-logo{
  display:block;
  height:300px;width:auto;
  max-width:100%;
  margin-bottom:0rem;
  filter:brightness(0) invert(1);
}
.footer-brand strong{display:block;color:white;font-size:19px;font-weight:700;letter-spacing:0.02em;margin-bottom:0.75rem}
.footer-brand p{font-size:12.5px;line-height:1.85;color:rgba(255,255,255,0.4);max-width:230px}
.footer-col{padding-left:2.5rem}
.footer-col h4{
  font-size:10.5px;text-transform:uppercase;letter-spacing:0.14em;
  color:rgba(255,255,255,0.3);margin-bottom:1.1rem;font-weight:700;
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:0.65rem}
.footer-col a{
  color:rgba(255,255,255,0.58);text-decoration:none;
  font-size:13.5px;transition:color 0.2s;cursor:pointer;
}
.footer-col a:hover{color:white}
.footer-bottom{
  max-width:1080px;margin:0 auto;
  border-top:1px solid rgba(255,255,255,0.07);
  margin-top:3rem;padding-top:1.5rem;
  display:flex;justify-content:space-between;align-items:center;
  font-size:12px;color:rgba(255,255,255,0.28);
}
.footer-bottom-links{display:flex;gap:1.5rem}
.footer-bottom-links a{color:rgba(255,255,255,0.35);text-decoration:none;font-size:12px;transition:color 0.2s}
.footer-bottom-links a:hover{color:rgba(255,255,255,0.7)}
.footer-credit{
  max-width:1080px;margin:0.75rem auto 0;
  text-align:center;font-size:13px;color:rgba(255,255,255,0.35);
}
.footer-credit a{color:rgba(255,255,255,0.55);text-decoration:none;transition:color 0.2s}
.footer-credit a:hover{color:white}
/* Form privacy notice */
.form-privacy{font-size:12px;color:#888;margin-top:0.5rem;line-height:1.5}
.form-privacy a{color:#486682;text-decoration:underline}
/* Legal pages */
.legal-body{color:#333;line-height:1.8;font-size:15px}
.legal-body h2{font-family:'Cormorant Garamond',Georgia,serif;font-weight:500;font-size:1.25rem;color:#2e4a5e;margin:2rem 0 0.5rem}
.legal-body p{margin-bottom:1rem}
.legal-body ul{padding-left:1.5rem;margin-bottom:1rem}
.legal-body ul li{margin-bottom:0.35rem}

/* FADE IN */
.fade-up{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease}
.fade-up.in{opacity:1;transform:none}

/* RENT PAGE HEADER */
.page-hero-blue{
  background:linear-gradient(135deg,var(--brand-dark) 0%,var(--brand) 100%);
  padding:5rem 2.5rem 4rem;text-align:center;
}
.page-hero-blue h1{font-size:clamp(2rem,4vw,2.8rem);font-weight:400;color:white;margin-bottom:0.75rem}
.page-hero-blue p{color:rgba(255,255,255,0.72);max-width:520px;margin:0 auto}

/* PHOTO GALLERY (Airbnb-style 5-photo grid) */
.photo-gallery{
  display:grid;grid-template-columns:1.1fr 0.9fr;
  grid-template-rows:480px;
  gap:5px;
  margin-bottom:2.5rem;
  border-radius:var(--r);overflow:hidden;
}
.pg-main{overflow:hidden;cursor:pointer}
.pg-main img{width:100%;height:100%;object-fit:cover;transition:transform 0.35s}
.pg-main:hover img{transform:scale(1.03)}
.pg-grid{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;gap:5px}
.pg-cell{overflow:hidden;position:relative;cursor:pointer;min-height:0}
.pg-cell img{width:100%;height:100%;object-fit:cover;transition:transform 0.35s;display:block}
.pg-cell:hover img{transform:scale(1.03)}
.pg-last{position:relative}
.pg-show-all{
  position:absolute;bottom:12px;right:12px;
  background:white;border:1.5px solid #e0e0e0;
  border-radius:8px;padding:7px 13px;
  font-size:12.5px;font-weight:600;color:#222;
  cursor:pointer;box-shadow:0 2px 8px rgba(0,0,0,0.12);
  transition:box-shadow 0.2s,transform 0.15s;
  display:flex;align-items:center;gap:5px;
  white-space:nowrap;
}
.pg-show-all:hover{box-shadow:0 4px 16px rgba(0,0,0,0.18);transform:translateY(-1px)}
@media(max-width:680px){
  .photo-gallery{grid-template-columns:1fr;grid-template-rows:auto;height:auto}
  .pg-main{height:230px}
  .pg-grid{grid-template-columns:repeat(4,1fr);grid-template-rows:1fr;height:90px;gap:3px}
  .pg-show-all{font-size:10px;padding:4px 8px;bottom:5px;right:5px}
}

/* LIGHTBOX — gallery grid */
#gallery-lightbox{
  position:fixed;inset:0;background:white;
  z-index:900;overflow-y:auto;
}
.lightbox-header{
  position:sticky;top:0;background:white;
  border-bottom:1px solid #e5e5e5;
  padding:0.85rem 1.5rem;
  display:flex;align-items:center;gap:1rem;z-index:1;
}
#gallery-lightbox .lightbox-close{
  display:flex;align-items:center;gap:6px;
  padding:6px 14px 6px 10px;border:1.5px solid #ccc;
  border-radius:20px;background:white;cursor:pointer;
  font-size:13.5px;font-weight:600;color:#222;
  transition:border-color 0.2s,background 0.2s;flex-shrink:0;
  position:static;opacity:1;
}
#gallery-lightbox .lightbox-close:hover{border-color:#222;background:#f5f5f5}
.lightbox-title{font-size:14.5px;font-weight:600;color:#222}
.lightbox-body{max-width:960px;margin:0 auto;padding:1.5rem 1.5rem 5rem}
.lightbox-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.lightbox-grid img{
  width:100%;aspect-ratio:4/3;object-fit:cover;
  border-radius:8px;cursor:zoom-in;
  transition:opacity 0.2s;
}
.lightbox-grid img:hover{opacity:0.88}
@media(max-width:680px){.lightbox-grid{grid-template-columns:repeat(2,1fr)}}

/* FILTER BAR */
.filter-bar{
  display:flex;gap:0.75rem;margin-top:2.5rem;flex-wrap:wrap;
}
.filter-btn{
  padding:8px 18px;border-radius:20px;
  border:1.5px solid rgba(72,102,130,0.2);
  color:var(--text-muted);background:white;
  font-size:13px;cursor:pointer;transition:all 0.2s;
}
.filter-btn:hover,.filter-btn.on{
  background:var(--brand);color:white;border-color:var(--brand);
}

/* DETAIL PAGE REDESIGN */
.detail-back a{
  font-size:13px;color:var(--brand);text-decoration:none;
  display:inline-flex;align-items:center;gap:6px;margin-bottom:1.5rem;
  transition:color 0.2s;
}
.detail-back a:hover{color:var(--brand-dark)}
.detail-header{margin-bottom:2rem}
.detail-title{
  font-size:clamp(1.6rem,3.5vw,2.3rem);font-weight:400;
  color:var(--text);line-height:1.25;margin-top:0.5rem;
}
.detail-body{
  display:grid;grid-template-columns:1.6fr 1fr;gap:3rem;
  align-items:start;margin-top:2.5rem;
}
.detail-content{}
.detail-section{margin-bottom:2.5rem}
.detail-section p{color:var(--text-muted);line-height:1.85;font-size:1rem}
.detail-section-title{
  font-size:0.85rem;font-weight:600;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--text);
  margin-bottom:1rem;padding-bottom:0.5rem;
  border-bottom:1px solid rgba(72,102,130,0.12);
}
.detail-sidebar{position:sticky;top:120px}
.contact-card{
  background:white;border-radius:var(--r);
  border:1px solid rgba(72,102,130,0.12);
  padding:2rem;box-shadow:0 4px 24px rgba(72,102,130,0.08);
}
.contact-card-price{
  font-size:1.75rem;font-weight:300;color:var(--brand-dark);
  margin-bottom:1rem;
}
.contact-card-price strong{font-weight:600}
.contact-card-price span{font-size:0.9rem;color:var(--text-muted)}
.contact-card p{font-size:0.9rem;color:var(--text-muted);line-height:1.65;margin-bottom:1.5rem}
.contact-card-btn{
  display:block;text-align:center;width:100%;
  padding:14px;text-decoration:none;
  font-size:14px;border-radius:28px;
}
.contact-card-note{
  font-size:12px;color:var(--text-muted);text-align:center;
  margin-top:1rem;line-height:1.6;
}
.detail-rating{
  display:flex;align-items:center;gap:1.25rem;
  background:var(--brand-xlight);border-radius:var(--r-sm);
  padding:1rem 1.25rem;
}
.rating-score{
  font-size:2.2rem;font-weight:300;color:var(--brand-dark);
  flex-shrink:0;line-height:1;
}
.rating-text{display:flex;flex-direction:column;gap:2px}
.rating-breakdown{margin-top:1rem}
.rating-breakdown-title{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;color:var(--brand-dark);margin-bottom:0.5rem}
.rating-row{display:flex;align-items:center;gap:8px;margin-bottom:5px}
.rating-row span{font-size:12px;color:#555;width:10px;text-align:right;flex-shrink:0}
.rb-track{flex:1;height:6px;background:#e0e0e0;border-radius:3px;overflow:hidden}
.rb-fill{height:100%;background:var(--brand-dark);border-radius:3px;transition:width 0.4s ease}
.rating-text strong{font-size:0.95rem;color:var(--text)}
.rating-text span{font-size:0.82rem;color:var(--text-muted)}
.detail-notes{
  list-style:none;display:flex;flex-direction:column;gap:0.6rem;
}
.detail-notes li{
  font-size:0.9rem;color:var(--text-muted);
  padding-left:1.25rem;position:relative;
}
.detail-notes li::before{
  content:'—';position:absolute;left:0;color:var(--brand);font-size:0.8rem;
}
@media(max-width:760px){
  .detail-body{grid-template-columns:1fr}
  .detail-sidebar{position:static}
}

@media(max-width:760px){
  .intro-split,.about-split,.contact-wrap,.loc-split,.detail-layout{grid-template-columns:1fr;gap:2rem}
  .apt-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr 1fr}
  .mosaic{grid-template-columns:1fr 1fr;grid-template-rows:160px 160px 160px}
  .section{padding:4rem 1.75rem}
.footer-inner{grid-template-columns:1fr 1fr;gap:2rem}
  .footer-brand{grid-column:span 2;border-right:none;padding-right:0;border-bottom:1px solid rgba(255,255,255,0.08);padding-bottom:1.5rem;margin-bottom:0.5rem;align-items:center;text-align:center}
  .footer-logo{height:220px}
  .footer-col{padding-left:0}
  .footer-bottom{flex-direction:column;gap:0.75rem;text-align:center}
  .footer-bottom-links{justify-content:center}
  nav .nav-links{display:none}
  .hero-content{padding:2rem 1.5rem 4rem}
  .trust-bar{gap:1.25rem;flex-wrap:wrap}
  .form-row-2{grid-template-columns:1fr}
  .booking-grid{grid-template-columns:1fr}
}

/* LIGHTBOX — fullscreen single image */
#lightbox{
  display:none;position:fixed;inset:0;z-index:900;
  background:rgba(0,0,0,0.92);
  align-items:center;justify-content:center;
  animation:lb-fade 0.2s ease;
}
#lightbox.active{display:flex}
@keyframes lb-fade{from{opacity:0}to{opacity:1}}
.lightbox-img{
  max-width:90vw;max-height:88vh;
  object-fit:contain;border-radius:4px;
  box-shadow:0 8px 60px rgba(0,0,0,0.6);
  animation:lb-zoom 0.22s cubic-bezier(0.22,1,0.36,1);
}
@keyframes lb-zoom{from{transform:scale(0.93);opacity:0}to{transform:scale(1);opacity:1}}
.lightbox-close{
  position:fixed;top:1.25rem;right:1.5rem;
  background:none;border:none;color:#fff;
  font-size:2.2rem;line-height:1;cursor:pointer;
  opacity:0.7;transition:opacity 0.15s;
  font-weight:300;
}
.lightbox-close:hover{opacity:1}
.lightbox-prev,.lightbox-next{
  position:fixed;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);
  color:#fff;font-size:1.6rem;line-height:1;
  width:48px;height:64px;display:flex;align-items:center;justify-content:center;
  cursor:pointer;border-radius:6px;
  transition:background 0.15s;
}
.lightbox-prev:hover,.lightbox-next:hover{background:rgba(255,255,255,0.22)}
.lightbox-prev{left:1rem}
.lightbox-next{right:1rem}
.lightbox-counter{
  position:fixed;bottom:1.5rem;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,0.55);font-size:12px;letter-spacing:0.1em;
}
/* BOOKING BUTTON (sidebar) */
.btn-booking{
  display:block;text-align:center;width:100%;
  padding:13px;text-decoration:none;
  font-size:13px;font-weight:600;border-radius:28px;
  background:#003580;color:white;
  margin-top:0.75rem;transition:background 0.2s;
  letter-spacing:0.01em;
}
.btn-booking:hover{background:#00245a;color:white}
.btn-airbnb{
  display:block;text-align:center;width:100%;
  padding:13px;text-decoration:none;
  font-size:13px;font-weight:600;border-radius:28px;
  background:#ff5a5f;color:white;
  margin-top:0.5rem;transition:background 0.2s;
  letter-spacing:0.01em;
}
.btn-airbnb:hover{background:#e0454a;color:white}

/* APT CARD ACTIONS */
.apt-actions{display:flex;gap:0.4rem;align-items:center;flex-wrap:wrap}
.apt-book-pair{display:flex;gap:0.4rem;flex-shrink:0}
.btn-card-book{
  font-size:11px;padding:6px 11px;border-radius:20px;
  border:none;color:#003580;background:rgba(0,53,128,0.08);
  cursor:pointer;transition:all 0.2s;font-weight:500;
  text-decoration:none;white-space:nowrap;
}
.btn-card-book:hover{background:#003580;color:white}
.btn-card-book-airbnb{
  font-size:11px;padding:6px 11px;border-radius:20px;
  border:none;color:#e0454a;background:rgba(255,90,95,0.08);
  cursor:pointer;transition:all 0.2s;font-weight:500;
  text-decoration:none;white-space:nowrap;
}
.btn-card-book-airbnb:hover{background:#ff5a5f;color:white}

/* WHATSAPP BUTTON */
.wa-button{
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:500;
  width:52px;height:52px;border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.4);
  text-decoration:none;
  transition:transform 0.2s,box-shadow 0.2s;
  animation:wa-pop 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.wa-button:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,0.55)}
@keyframes wa-pop{from{transform:scale(0.6);opacity:0}to{transform:scale(1);opacity:1}}
.wa-tooltip{
  display:none;position:absolute;right:60px;
  background:#1a1a1a;color:white;
  font-size:12px;padding:5px 10px;border-radius:6px;
  white-space:nowrap;pointer-events:none;
}
.wa-button:hover .wa-tooltip{display:block}
@media(max-width:680px){
  .wa-button{width:44px;height:44px;bottom:1rem;right:1rem}
  .wa-button svg{width:22px;height:22px}
}

/* CONTACT SECTION TABS */
.form-tabs{
  display:flex;gap:0;
  border-bottom:2px solid rgba(72,102,130,0.13);
  margin:2rem 0 0;
}
.form-tab{
  background:none;border:none;
  padding:12px 28px;
  font-size:12px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;
  color:#888;cursor:pointer;
  border-bottom:2px solid transparent;margin-bottom:-2px;
  transition:color 0.2s,border-color 0.2s;
}
.form-tab.active{color:var(--brand);border-bottom-color:var(--brand)}
.form-tab:hover:not(.active){color:var(--text)}
.form-panel{display:none;padding-top:2rem}
.form-panel.active{display:block}

/* SERVICE GRID (owner tab) */
.service-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0.75rem;margin-bottom:1.5rem;
}
.service-card{
  background:transparent;border-radius:var(--r);
  padding:0.75rem 1rem;
  border:1px solid rgba(72,102,130,0.08);
  box-shadow:none;
}
.service-icon{font-size:1.1rem;margin-bottom:0.25rem;line-height:1}
.service-card h4{
  font-size:0.78rem;font-weight:600;
  color:var(--brand-mid);margin-bottom:0.25rem;
  letter-spacing:0.02em;
}
.service-card p{
  font-size:0.76rem;color:var(--text-muted);line-height:1.55;
}
.owner-intro{
  font-size:1rem;color:var(--text-muted);line-height:1.85;
  margin-bottom:2rem;max-width:680px;
}

/* FORM ELEMENTS */
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:1.1rem}
.form-group label{
  font-size:11px;font-weight:700;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--text);
}
.form-group input,
.form-group select,
.form-group textarea{
  border:1px solid rgba(72,102,130,0.22);
  border-radius:var(--r-sm);
  padding:11px 14px;
  font-size:14px;font-family:inherit;
  color:var(--text);background:white;
  transition:border-color 0.2s,box-shadow 0.2s;
  width:100%;box-sizing:border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(72,102,130,0.1);
}
.form-group textarea{resize:vertical;min-height:110px}
.form-cols{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-submit-row{margin-top:1.25rem}
.form-feedback{margin-top:0.75rem;font-size:13px;min-height:20px;line-height:1.5}
.form-feedback.success{color:#2a7d3a}
.form-feedback.error{color:#c0392b}

@media(max-width:680px){
  .form-cols{grid-template-columns:1fr;gap:0}
  .service-grid{grid-template-columns:1fr}
  .form-tab{padding:10px 16px;font-size:11px}

  /* Section spacing */
  .section{padding:3.5rem 1.25rem}
  .section-title{margin-bottom:0.75rem}

  /* Hero */
  .page-hero-blue{padding:3.5rem 1.25rem 3rem}
  .hero{min-height:85vh}
  .hero-content{padding:2rem 1.25rem 3.5rem}
  .hero-content h1{font-size:2.6rem;line-height:1.15}
  .hero-label{font-size:11px;padding:5px 12px}
  .hero-content p{font-size:0.98rem;margin-bottom:1.75rem}
  .hero-btns{flex-direction:column;align-items:stretch;gap:10px;width:100%}
  .btn-hero,.btn-hero-ghost{width:100%;text-align:center;padding:15px 20px;font-size:14px}
  .scroll-hint{display:none}

  /* Apartment cards */
  .apt-footer{flex-direction:column;align-items:flex-start;gap:0.75rem}
  .apt-actions{width:100%;justify-content:flex-start;flex-wrap:wrap}
  .apt-book-pair{flex-shrink:0}

  /* Why grid → 1 column on small screens */
  .why-grid{grid-template-columns:1fr}


  /* CTA section */
  .cta-banner{padding:3rem 1.25rem}
  .cta-banner h2{font-size:1.5rem}
  .btn-primary{padding:13px 28px;font-size:14px}
  .btn-outline-blue{margin-left:0;margin-top:16px;padding:12px 24px;font-size:14px;display:block;width:100%}
  .cta-banner .btn-primary{display:block;width:100%}

  /* Trust bar */
  .trust-bar{gap:1.25rem;padding:1rem 1.25rem;justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap}
  .trust-item{flex-shrink:0}

  /* Contact form */
  .contact-wrap{gap:2rem}
  .form-tabs{margin:1.25rem 0 0}
  .form-submit-row .btn-primary{width:100%;padding:15px;font-size:15px}
  .form-group input,.form-group select,.form-group textarea{font-size:16px}/* prevent iOS zoom */
  .form-group label{font-size:11px}
  .owner-intro{font-size:0.9rem}

  /* Detail pages */
  .detail-sidebar{order:-1}
  .detail-back{margin-bottom:1rem}
  .detail-title{font-size:1.35rem;line-height:1.3}
  .badges{gap:0.4rem}
  .badge{font-size:12px;padding:4px 10px}
  .detail-section-title{font-size:1rem}
  .contact-card{padding:1.25rem}

  /* Section headings */
  .section-sub{font-size:0.95rem}
  .section-label{font-size:10.5px}

  /* Mosaic — smaller on mobile */
  .mosaic{grid-template-columns:1fr 1fr;grid-template-rows:140px 140px 140px;gap:0.6rem}

  /* Footer */
  .footer-inner{grid-template-columns:1fr;gap:1.5rem}
  .footer-brand{grid-column:span 1;align-items:center;text-align:center}
  .footer-logo{height:120px}
}