/* ════════════════════════════════════════
   LUDWIG — Shared Stylesheet v2
   Inspired by Highstay.com
   ════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:    #faf8f4;
  --charcoal: #1a1714;
  --warm:     #c9b996;
  --mid:      #8a8070;
  --light:    #e8e2d6;
  --accent:   #2c2620;
  --serif:    'Cormorant Garamond', serif;
  --sans:     'Jost', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  background: var(--ivory); color: var(--charcoal); font-family: var(--sans);
  font-weight: 300; overflow-x: hidden;
  animation: pageFadeIn .5s ease forwards;
}
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--warm); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--sans); font-size: 9.5px; font-weight: 400; letter-spacing: 3.5px;
  text-transform: uppercase; padding: 18px 46px; background: var(--ivory);
  color: var(--charcoal); border: none; cursor: pointer; text-decoration: none;
  transition: background .35s ease, color .35s ease; display: inline-block;
}
.btn-primary:hover { background: var(--warm); }

.btn-outline {
  font-family: var(--sans); font-size: 9.5px; font-weight: 400; letter-spacing: 3.5px;
  text-transform: uppercase; padding: 18px 46px; background: transparent;
  color: var(--ivory); border: 1px solid rgba(250,248,244,.38); cursor: pointer;
  text-decoration: none; transition: all .35s ease; display: inline-block;
}
.btn-outline:hover { border-color: var(--ivory); background: rgba(250,248,244,.06); }

.btn-warm {
  font-family: var(--sans); font-size: 9.5px; letter-spacing: 3.5px; text-transform: uppercase;
  padding: 18px 46px; background: var(--warm); color: var(--charcoal); border: none;
  cursor: pointer; text-decoration: none; display: inline-block; transition: background .35s ease;
}
.btn-warm:hover { background: #baa882; }

.btn-dark {
  font-family: var(--sans); font-size: 9.5px; letter-spacing: 3.5px; text-transform: uppercase;
  padding: 16px 38px; background: var(--charcoal); color: var(--ivory); border: none;
  cursor: pointer; text-decoration: none; display: inline-block; transition: background .35s ease;
}
.btn-dark:hover { background: var(--accent); }

.link-arrow {
  font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none; display: inline-flex;
  align-items: center; gap: 14px; transition: gap .4s cubic-bezier(.22,.61,.36,1), color .3s;
}
.link-arrow:hover { gap: 22px; }
.link-arrow::after { content: '→'; font-size: 13px; transition: transform .3s; }
.link-arrow:hover::after { transform: translateX(2px); }
.link-arrow.light { color: var(--ivory); }
.link-arrow.warm  { color: var(--warm); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px; height: 82px; transition: all .45s cubic-bezier(.22,.61,.36,1); background: transparent;
}
.nav.scrolled {
  background: rgba(250,248,244,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,226,214,.7); height: 68px;
  box-shadow: 0 1px 28px rgba(0,0,0,.07);
}
.nav-logo { display: flex; justify-content: center; align-items: center; }
.nav-logo .logo-white { height: 22px; display: block; }
.nav-logo .logo-black { height: 22px; display: none; }
.nav.scrolled .nav-logo .logo-white { display: none; }
.nav.scrolled .nav-logo .logo-black { display: block; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; justify-content: flex-start; }
.nav-links a {
  font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(250,248,244,.75); text-decoration: none;
  transition: color .3s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px; background: var(--warm); transition: right .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover { color: var(--warm); }
.nav.scrolled .nav-links a:hover { color: var(--warm); }

.nav-right { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
.nav-btn {
  font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 10px 22px; border: 1px solid rgba(250,248,244,.45);
  color: rgba(250,248,244,.9); background: transparent; cursor: pointer;
  text-decoration: none; transition: all .3s;
}
.nav.scrolled .nav-btn { border-color: var(--charcoal); color: var(--charcoal); }
.nav-btn:hover { background: var(--warm); border-color: var(--warm); color: var(--charcoal); }

/* Member icon in nav */
.nav-member {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(250,248,244,.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,248,244,.65); text-decoration: none;
  transition: all .3s; flex-shrink: 0;
}
.nav.scrolled .nav-member { border-color: rgba(26,23,20,.25); color: var(--mid); }
.nav-member:hover { border-color: var(--warm); color: var(--warm); background: rgba(201,185,150,.07); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 1px; background: rgba(250,248,244,.9); transition: all .3s; }
.nav.scrolled .hamburger span { background: var(--charcoal); }

/* ── HERO SEARCH (embedded inside hero) ── */
.hero-search {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  opacity: 0; animation: heroSearchIn .9s 1.5s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes heroSearchIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hero-search-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.hero-search-bar {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr auto;
  background: rgba(22,18,14,.88); backdrop-filter: blur(24px) saturate(1.6);
  border-top: 1px solid rgba(201,185,150,.28);
  border-left: 1px solid rgba(201,185,150,.08);
  border-right: 1px solid rgba(201,185,150,.08);
  box-shadow: 0 -12px 60px rgba(0,0,0,.45), 0 -1px 0 rgba(201,185,150,.08) inset;
}
.hs-field {
  padding: 24px 30px; border-right: 1px solid rgba(255,255,255,.06);
  cursor: pointer; transition: background .4s cubic-bezier(.22,.61,.36,1); position: relative;
}
.hs-field:hover { background: rgba(201,185,150,.04); }
.hs-field:focus-within { background: rgba(201,185,150,.06); }
.hs-label {
  font-family: var(--sans); font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--warm); margin-bottom: 7px; display: flex; align-items: center; gap: 5px;
}
.hs-value {
  font-family: var(--serif); font-size: 15px; font-weight: 300; color: var(--ivory);
  position: relative;
}
.hs-select {
  font-family: var(--serif); font-size: 15px; font-weight: 300; color: var(--ivory);
  background: none; border: none; outline: none; cursor: pointer; appearance: none; width: 100%;
}
.hs-select option { background: var(--charcoal); }
.hs-input {
  font-family: var(--serif); font-size: 15px; font-weight: 300; color: var(--ivory);
  background: none; border: none; outline: none; cursor: pointer; width: 100%;
}
.hs-input::placeholder { color: rgba(250,248,244,.3); }
.hs-nights {
  font-family: var(--sans); font-size: 9px; letter-spacing: 1px; color: var(--warm);
  display: block; margin-top: 2px;
}
.hs-submit {
  padding: 0 38px; background: var(--warm); cursor: pointer; border: none;
  transition: background .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s;
  display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 9.5px;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--charcoal); font-weight: 400; white-space: nowrap;
  position: relative; overflow: hidden;
}
.hs-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 55%);
  pointer-events: none;
}
.hs-submit:hover { background: #c2b08a; box-shadow: 0 0 40px rgba(201,185,150,.2); }

/* District dropdown panel — opens UPWARD so it stays inside overflow:hidden hero */
.hs-district-panel {
  position: absolute; bottom: 100%; top: auto; left: 0; z-index: 200;
  display: none; grid-template-columns: repeat(3, 1fr); gap: 3px;
  background: rgba(26,23,20,.97); backdrop-filter: blur(20px);
  border: 1px solid rgba(201,185,150,.15);
  box-shadow: 0 -16px 60px rgba(0,0,0,.6);
  width: 540px;
  padding: 3px;
  margin-bottom: 4px;
}
.hs-district-panel.open { display: grid; }
.hs-dist-opt {
  position: relative; height: 120px; overflow: hidden; cursor: pointer;
  border: 1.5px solid transparent; transition: border-color .25s;
  text-decoration: none; display: block;
}
.hs-dist-opt:hover, .hs-dist-opt.selected { border-color: var(--warm); }
.hs-dist-opt img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
  filter: brightness(.55);
}
.hs-dist-opt:hover img { transform: scale(1.07); }
.hs-dist-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 12px;
  background: linear-gradient(to top, rgba(10,8,6,.8), transparent);
}
.hs-dist-name {
  font-family: var(--serif); font-size: 14px; font-weight: 300; color: var(--ivory);
}
.hs-dist-count {
  font-family: var(--sans); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--warm); display: block; margin-top: 2px;
}
.hs-clear-btn {
  position: absolute; top: 0; right: 0;
  padding: 6px 14px; font-family: var(--sans); font-size: 8px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(201,185,150,.6); background: none; border: none;
  cursor: pointer; transition: color .2s;
}
.hs-clear-btn:hover { color: var(--warm); }

/* ── CUSTOM DATE PICKER ── */
.hs-date-display {
  font-family: var(--serif); font-size: 15px; font-weight: 300;
  color: rgba(250,248,244,.3); cursor: pointer; display: block; width: 100%;
}
.hs-date-display.has-date { color: var(--ivory); }
.hs-cal-panel {
  position: absolute; bottom: calc(100% + 2px); top: auto; left: 0; z-index: 400;
  width: 292px; background: rgba(18,14,11,.99); backdrop-filter: blur(24px);
  border: 1px solid rgba(201,185,150,.2); border-bottom: none;
  box-shadow: 0 -20px 70px rgba(0,0,0,.7);
  padding: 22px 20px 18px; display: none;
  animation: calOpen .18s ease;
}
.hs-cal-panel.open { display: block; }
@keyframes calOpen { from { opacity:0; transform:translateY(5px); } to { opacity:1; transform:none; } }
.hs-cal-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.hs-cal-arrow {
  background: none; border: 1px solid rgba(255,255,255,.07); color: rgba(201,185,150,.45);
  cursor: pointer; font-size: 13px; padding: 6px 12px; line-height: 1; transition: all .2s;
  font-family: var(--sans);
}
.hs-cal-arrow:hover { border-color: var(--warm); color: var(--warm); }
.hs-cal-month {
  font-family: var(--serif); font-size: 17px; font-weight: 300; color: var(--ivory); letter-spacing: .5px;
}
.hs-cal-days-hdr {
  display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 10px;
  border-bottom: 1px solid rgba(201,185,150,.08); padding-bottom: 9px;
}
.hs-cal-days-hdr span {
  font-family: var(--sans); font-size: 7.5px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,185,150,.35); text-align: center; padding: 2px 0;
}
.hs-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 1px; }
.hs-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11.5px; font-weight: 300;
  color: rgba(250,248,244,.65); cursor: pointer; transition: all .15s; position: relative;
}
.hs-cal-day:hover:not(.hs-cal-empty):not(.hs-cal-past) {
  color: var(--ivory); background: rgba(201,185,150,.12);
}
.hs-cal-day.hs-cal-today { color: var(--warm); font-weight: 400; }
.hs-cal-day.hs-cal-today::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 3px; background: var(--warm); border-radius: 50%;
}
.hs-cal-day.hs-cal-selected { background: var(--warm); color: var(--charcoal); font-weight: 500; }
.hs-cal-day.hs-cal-selected::after { display: none; }
.hs-cal-day.hs-cal-in-range { background: rgba(201,185,150,.09); color: rgba(250,248,244,.75); }
.hs-cal-day.hs-cal-past { color: rgba(250,248,244,.13); cursor: default; pointer-events: none; }
.hs-cal-day.hs-cal-empty { pointer-events: none; }
.hs-cal-hint {
  font-family: var(--sans); font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,185,150,.28); text-align: center; margin-top: 14px; padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--charcoal);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 48px;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-close {
  position: absolute; top: 28px; right: 48px; font-size: 28px;
  color: var(--ivory); cursor: pointer; background: none; border: none;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--ivory);
  text-decoration: none; letter-spacing: 2px; transition: color .3s;
}
.mobile-menu nav a:hover { color: var(--warm); }

/* ── SECTIONS ── */
section { padding: 112px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: var(--sans); font-size: 8px; letter-spacing: 5px; text-transform: uppercase; color: var(--warm); margin-bottom: 20px; display: block; }
.section-title { font-family: var(--serif); font-size: clamp(36px,4.5vw,60px); font-weight: 300; line-height: 1.05; letter-spacing: .5px; margin-bottom: 20px; }
.section-title em { font-style: italic; }
.section-rule { width: 36px; height: 1px; background: var(--warm); margin-bottom: 36px; }
.section-body { font-family: var(--sans); font-size: 14px; font-weight: 300; line-height: 2; color: var(--mid); max-width: 520px; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ── FLATPICKR THEME ── */
.flatpickr-calendar {
  border-radius: 0 !important;
  box-shadow: 0 8px 40px rgba(0,0,0,.18) !important;
  border: 1px solid var(--light) !important;
  font-family: var(--sans) !important;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  background: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
}
.flatpickr-day.inRange {
  background: var(--light) !important;
  border-color: var(--light) !important;
  color: var(--charcoal) !important;
}
.flatpickr-day:hover { background: var(--warm) !important; border-color: var(--warm) !important; color: var(--charcoal) !important; }
.flatpickr-months { background: var(--charcoal) !important; color: var(--ivory) !important; }
.flatpickr-month { fill: var(--ivory) !important; color: var(--ivory) !important; }
.flatpickr-current-month { color: var(--ivory) !important; }
.flatpickr-current-month .flatpickr-monthDropdown-months { color: var(--ivory) !important; background: var(--charcoal) !important; }
.flatpickr-weekday { color: var(--warm) !important; font-family: var(--sans) !important; font-size: 10px !important; letter-spacing: 1px !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: var(--warm) !important; }

/* ── IMG LAZY LOAD ── */
img[loading="lazy"] { opacity: 0; transition: opacity .6s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* ── SELECTION COLOR ── */
::selection { background: var(--warm); color: var(--charcoal); }

/* ══════════════════════════════════════════
   PREMIUM TRANSITIONS & ANIMATIONS
   ══════════════════════════════════════════ */

/* ── PAGE TRANSITION OVERLAY ── */
.page-transition {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--charcoal);
  pointer-events: none;
  opacity: 0;
  transition: opacity .55s cubic-bezier(.76,0,.24,1);
  will-change: opacity;
}
.page-transition.out { opacity: 1; pointer-events: all; }
.page-transition.in  { opacity: 0; }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(to right, var(--warm), #e8d5b0);
  z-index: 1001;
  transition: width .05s linear;
  pointer-events: none;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--warm);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .08s ease, width .25s ease, height .25s ease, background .25s ease, opacity .25s ease;
  opacity: 0;
  will-change: transform;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9997;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,185,150,.5);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, width .25s ease, height .25s ease, border-color .25s ease, opacity .25s ease;
  opacity: 0;
  will-change: transform;
}
body.cursor-active .cursor-dot { opacity: 1; }
body.cursor-active .cursor-ring { opacity: 1; }
.cursor-dot.hover  { width: 12px; height: 12px; background: var(--charcoal); }
.cursor-ring.hover { width: 52px; height: 52px; border-color: rgba(201,185,150,.8); }
.cursor-dot.click  { transform: translate(-50%,-50%) scale(.6); }
.cursor-ring.click { transform: translate(-50%,-50%) scale(.85); }
@media (max-width: 1024px) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ── STAGGERED REVEAL ── */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: .24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: .32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: .40s; }

/* ── ENHANCED BUTTON INTERACTIONS ── */
.btn-primary, .btn-warm, .btn-dark, .btn-outline, .bw-submit, .nav-btn {
  position: relative; overflow: hidden;
}
.btn-primary::after, .btn-warm::after, .btn-dark::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.76,0,.24,1);
}
.btn-primary:hover::after, .btn-warm:hover::after, .btn-dark:hover::after { transform: translateX(0); }
.btn-primary:active, .btn-warm:active, .btn-dark:active, .bw-submit:active { transform: scale(.98); }

/* ── COLLECTION TAB PANEL CROSSFADE ── */
.coll-panel { display: none; }
.coll-panel.active {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  animation: tabFadeIn .45s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@media(max-width:900px){ .coll-panel.active { grid-template-columns: 1fr; } }

/* ── ENHANCED APT CARD ── (overridden below) ── */

/* ── HERO PARALLAX ── */
.hero-parallax {
  will-change: transform;
  transition: transform 0s linear;
}

/* ── LINK UNDERLINE ANIMATION ── */
.footer-col a {
  position: relative; display: inline-block;
}
.footer-col a::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 100%;
  height: 1px; background: var(--warm); transition: right .3s ease;
}
.footer-col a:hover::after { right: 0; }

/* ── NUMBER COUNTER (animated) ── */
.count-num { display: inline-block; }

/* ── REVIEW CARD HOVER ── */
.review-card {
  transition: transform .4s ease, box-shadow .4s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

/* ── SMOOTH IMAGE ZOOM ON DIST CARDS ── */
.dist-card img {
  transition: transform 1.4s cubic-bezier(.22,.61,.36,1);
}
.dist-card:hover img { transform: scale(1.09); }

/* ── FILTER BAR BUTTON INDICATOR — already handled by border-bottom in base styles ── */
/* Smooth border-bottom transition */
.filter-btn { transition: color .3s, border-bottom-color .3s; }

/* ── MAP MARKER PULSE ── */
.map-marker-pulse {
  animation: markerPulse 2.5s ease-in-out infinite;
}
@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,185,150,.4); }
  50%       { box-shadow: 0 0 0 8px rgba(201,185,150,0); }
}

/* ── BOOKING WIDGET INPUT FOCUS ── */
.bw-input:focus {
  border-color: var(--warm);
  box-shadow: 0 0 0 3px rgba(201,185,150,.15);
}

/* ── CTA BAND ENTRANCE ── */
.about-cta, .banner { overflow: hidden; }
.banner-content { animation: none; }

/* ══════════════════════════════════════════
   APARTMENT CARDS — Ludwig Premium
   ══════════════════════════════════════════ */
.apt-card {
  cursor: pointer; overflow: hidden; background: var(--ivory);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: box-shadow .6s cubic-bezier(.22,.61,.36,1);
}
.apt-card:hover {
  box-shadow: 0 24px 72px rgba(0,0,0,.14);
}

/* Image container */
.apt-img-wrap {
  overflow: hidden; height: 300px; position: relative;
  background: var(--light);
}
.apt-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 2s cubic-bezier(.22,.61,.36,1);
}
.apt-card:hover .apt-img { transform: scale(1.07); }

/* Hover overlay — slides up from bottom of image */
.apt-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,12,9,.72) 0%, rgba(15,12,9,.0) 55%);
  opacity: 0;
  transition: opacity .5s ease;
}
.apt-card:hover .apt-img-wrap::after { opacity: 1; }

/* Price shown over image on hover */
.apt-img-price {
  position: absolute; bottom: 18px; left: 22px; z-index: 3;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s ease .05s, transform .4s ease .05s;
  pointer-events: none;
}
.apt-card:hover .apt-img-price { opacity: 1; transform: translateY(0); }
.apt-img-price-val {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: var(--ivory); line-height: 1;
}
.apt-img-price-unit {
  font-family: var(--sans); font-size: 10px; letter-spacing: 1px;
  color: rgba(250,248,244,.55); margin-left: 4px;
}

/* Badge */
.apt-badge {
  position: absolute; top: 16px; left: 0; z-index: 4;
  font-family: var(--sans); font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--charcoal); color: var(--warm); padding: 6px 14px;
}
.apt-badge.warm { background: var(--warm); color: var(--charcoal); }

/* Body */
.apt-body {
  padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column;
  border-top: 1.5px solid transparent;
  transition: border-top-color .5s ease;
}
.apt-card:hover .apt-body { border-top-color: var(--warm); }
.apt-district { font-family: var(--sans); font-size: 8.5px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--warm); margin-bottom: 8px; }
.apt-name { font-family: var(--serif); font-size: 22px; font-weight: 300; line-height: 1.18; margin-bottom: 9px; letter-spacing: .2px; }
.apt-tagline { font-family: var(--sans); font-size: 12px; color: var(--mid); margin-bottom: 18px; line-height: 1.7; flex: 1; font-weight: 300; }

.apt-specs { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--light); }
.apt-spec { font-family: var(--sans); font-size: 11px; color: var(--mid); white-space: nowrap; display: flex; align-items: center; gap: 4px; font-weight: 300; }

.apt-footer { display: flex; align-items: flex-end; justify-content: space-between; }
.apt-price-from { font-family: var(--sans); font-size: 8.5px; letter-spacing: 1.5px; color: rgba(138,128,112,.6); display: block; margin-bottom: 2px; text-transform: uppercase; }
.apt-price-num { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--charcoal); line-height: 1; }
.apt-price-unit { font-family: var(--sans); font-size: 11px; color: var(--mid); }

.apt-rating { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.apt-stars { color: var(--warm); font-size: 10px; letter-spacing: 2px; }
.apt-review-count { font-family: var(--sans); font-size: 9.5px; color: var(--mid); font-weight: 300; }

/* CTA row */
.apt-cta {
  font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 0; border-top: 1px solid var(--light); margin-top: 20px;
  color: var(--charcoal); display: flex; align-items: center; justify-content: space-between;
  transition: color .4s ease, letter-spacing .4s ease;
}
.apt-cta::after { content: '→'; font-size: 14px; transition: transform .4s ease; }
.apt-card:hover .apt-cta { color: var(--warm); letter-spacing: 3.5px; }
.apt-card:hover .apt-cta::after { transform: translateX(5px); }

/* ── HIGHLIGHTS LIST ON CARD ── */
.apt-highlights { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.apt-highlight { font-family: var(--sans); font-size: 11px; color: var(--mid); display: flex; align-items: center; gap: 8px; }
.apt-highlight::before { content: ''; width: 12px; height: 1px; background: var(--warm); flex-shrink: 0; }

/* ══════════════════════════════════════════
   REVIEW CARDS — Highstay style
   ══════════════════════════════════════════ */
.review-card { background: var(--charcoal); padding: 36px; position: relative; }
.review-quote { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--warm); opacity: .25; line-height: .8; margin-bottom: 12px; }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-star { color: var(--warm); font-size: 13px; }
.review-text { font-family: var(--serif); font-size: 17px; font-weight: 300; font-style: italic; line-height: 1.75; color: var(--ivory); margin-bottom: 24px; }
.review-footer { display: flex; align-items: center; gap: 16px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: var(--charcoal); flex-shrink: 0;
}
.review-author-name { font-family: var(--sans); font-size: 12px; letter-spacing: 1px; color: var(--ivory); }
.review-author-meta { font-family: var(--sans); font-size: 10px; letter-spacing: 1px; color: var(--mid); margin-top: 2px; }
.review-platform-badge {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--sans); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--warm); border: 1px solid rgba(201,185,150,.3); padding: 4px 8px;
}

/* ══════════════════════════════════════════
   SEARCH BAR
   ══════════════════════════════════════════ */
.search-bar { background: var(--charcoal); padding: 0 48px; }
.search-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 0.8fr auto; gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.search-field { padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.08); cursor: pointer; transition: background .3s; position: relative; }
.search-field:hover { background: rgba(255,255,255,.04); }
.search-label { font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--warm); margin-bottom: 6px; display: flex; align-items: center; }
.search-value { font-family: var(--serif); font-size: 15px; font-weight: 300; color: var(--ivory); position: relative; }
.search-select { font-family: var(--serif); font-size: 15px; font-weight: 300; color: var(--ivory); background: none; border: none; outline: none; cursor: pointer; appearance: none; width: 100%; }
.search-select option { background: var(--charcoal); }
.search-input-field { font-family: var(--serif); font-size: 15px; font-weight: 300; color: var(--ivory); background: none; border: none; outline: none; cursor: pointer; width: 100%; }
.search-input-field::placeholder { color: rgba(250,248,244,.35); }
.search-nights { font-family: var(--sans); font-size: 9px; letter-spacing: 1px; color: var(--warm); display: block; margin-top: 2px; }
.search-submit {
  padding: 0 36px; background: var(--warm); cursor: pointer; border: none; transition: background .3s;
  display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--charcoal); font-weight: 400; white-space: nowrap;
}
.search-submit:hover { background: #b5a27d; }

/* ══════════════════════════════════════════
   FILTER BAR
   ══════════════════════════════════════════ */
.filter-bar { background: var(--ivory); padding: 0 48px; position: sticky; top: 68px; z-index: 100; border-bottom: 1px solid rgba(26,23,20,.09); box-shadow: 0 2px 18px rgba(0,0,0,.05); }
.filter-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 0; }
.filter-btn {
  font-family: var(--sans); font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(26,23,20,.38); background: none; border: none; border-bottom: 2px solid transparent;
  padding: 15px 20px; cursor: pointer; transition: all .25s; position: relative; top: 1px; white-space: nowrap;
}
.filter-btn:hover { color: rgba(26,23,20,.75); }
.filter-btn.active { color: var(--charcoal); border-bottom-color: var(--warm); }
.filter-select {
  font-family: var(--sans); font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(26,23,20,.45); background: none; border: none; border-left: 1px solid rgba(26,23,20,.1);
  padding: 15px 20px; cursor: pointer; outline: none; appearance: none;
}
.filter-select option { background: var(--ivory); color: var(--charcoal); }
.filter-spacer { flex: 1; }
.view-toggle { display: flex; gap: 0; border-left: 1px solid rgba(26,23,20,.1); }
.view-btn {
  font-family: var(--sans); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(26,23,20,.38); background: none; border: none; padding: 15px 16px;
  cursor: pointer; transition: color .25s; display: flex; align-items: center; gap: 6px;
}
.view-btn.active, .view-btn:hover { color: var(--charcoal); }

/* ══════════════════════════════════════════
   MAP
   ══════════════════════════════════════════ */
#map { height: 560px; width: 100%; }
.leaflet-popup-content-wrapper {
  background: var(--charcoal) !important; border-radius: 0 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.4) !important; border: 1px solid rgba(201,185,150,.2) !important;
}
.leaflet-popup-content { margin: 20px 24px !important; min-width: 180px; }
.leaflet-popup-tip-container { display: none; }
.leaflet-popup-close-button { color: var(--warm) !important; font-size: 18px !important; }
.map-popup-name { font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--ivory); margin-bottom: 4px; }
.map-popup-district { font-family: var(--sans); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm); margin-bottom: 10px; }
.map-popup-specs { font-family: var(--sans); font-size: 11px; color: rgba(250,248,244,.5); margin-bottom: 8px; }
.map-popup-price { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--ivory); }
.map-popup-price span { font-family: var(--sans); font-size: 11px; color: var(--mid); }
.map-popup-link {
  display: inline-block; margin-top: 14px; font-family: var(--sans); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--warm); text-decoration: none;
  border-bottom: 1px solid rgba(201,185,150,.3); padding-bottom: 2px;
}
.map-marker {
  background: var(--charcoal); color: var(--warm); font-family: var(--sans); font-size: 11px;
  font-weight: 400; letter-spacing: 1px; padding: 7px 12px; white-space: nowrap;
  border: 1px solid rgba(201,185,150,.5); box-shadow: 0 3px 14px rgba(0,0,0,.5);
  cursor: pointer; transition: background .2s;
}
.map-marker:hover { background: var(--warm); color: var(--charcoal); }
.map-marker.active { background: var(--warm); color: var(--charcoal); }

/* ══════════════════════════════════════════
   BOOKING WIDGET
   ══════════════════════════════════════════ */
.booking-widget { background: var(--charcoal); padding: 32px; position: sticky; top: 88px; }
.bw-title { font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--warm); margin-bottom: 16px; }
.bw-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.bw-price-num { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--ivory); line-height: 1; }
.bw-price-unit { font-family: var(--sans); font-size: 12px; color: var(--mid); }
.bw-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; }
.bw-field { margin-bottom: 2px; }
.bw-label { font-family: var(--sans); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm); margin-bottom: 7px; display: block; }
.bw-input {
  width: 100%; font-family: var(--sans); font-size: 13px; padding: 13px 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: var(--ivory); outline: none; transition: border-color .3s;
}
.bw-input:focus { border-color: var(--warm); }
.bw-input::placeholder { color: rgba(250,248,244,.3); }
.bw-rule { height: 1px; background: rgba(255,255,255,.08); margin: 20px 0; }
.bw-breakdown { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.bw-row { display: flex; justify-content: space-between; font-family: var(--sans); font-size: 12px; color: rgba(250,248,244,.55); }
.bw-row.total { color: var(--ivory); font-weight: 400; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.bw-row.total .bw-total-val { font-family: var(--serif); font-size: 22px; font-weight: 300; }
.bw-submit {
  width: 100%; font-family: var(--sans); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  padding: 17px; background: var(--warm); color: var(--charcoal); border: none; cursor: pointer;
  transition: background .3s; margin-bottom: 10px; font-weight: 400;
}
.bw-submit:hover { background: #b5a27d; }
.bw-airbnb {
  width: 100%; font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 15px; background: transparent; color: rgba(250,248,244,.55);
  border: 1px solid rgba(255,255,255,.12); cursor: pointer; transition: all .3s;
  text-decoration: none; display: block; text-align: center;
}
.bw-airbnb:hover { border-color: var(--warm); color: var(--warm); }
.bw-note { font-family: var(--sans); font-size: 11px; color: rgba(250,248,244,.25); text-align: center; margin-top: 14px; line-height: 1.6; }
.bw-trust { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; font-family: var(--sans); font-size: 10px; color: rgba(250,248,244,.3); }

/* ══════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 360px 200px; gap: 3px; }
.gallery-grid-main { grid-row: 1 / -1; overflow: hidden; cursor: zoom-in; }
.gallery-grid-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.gallery-grid-main:hover img { transform: scale(1.03); }
.gallery-grid-sub { overflow: hidden; cursor: zoom-in; position: relative; }
.gallery-grid-sub img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.gallery-grid-sub:hover img { transform: scale(1.05); }
.gallery-grid-sub.last::after {
  content: 'Alle Fotos ansehen'; position: absolute; inset: 0; background: rgba(10,8,6,.55);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ivory); cursor: pointer;
}
.gallery-lightbox {
  display: none; position: fixed; inset: 0; background: rgba(10,8,6,.96); z-index: 3000;
  align-items: center; justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.gallery-lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 28px; color: var(--ivory); cursor: pointer; background: none; border: none; opacity: .7; transition: opacity .2s; }
.gallery-lightbox-close:hover { opacity: 1; }
.gallery-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(255,255,255,.2); color: var(--ivory); font-size: 24px; cursor: pointer; padding: 16px 20px; opacity: .6; transition: all .3s; }
.gallery-lightbox-nav:hover { opacity: 1; background: rgba(255,255,255,.08); }
.gallery-lightbox-nav.prev { left: 24px; }
.gallery-lightbox-nav.next { right: 24px; }
.gallery-lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-family: var(--sans); font-size: 11px; letter-spacing: 2px; color: rgba(250,248,244,.5); }

/* ══════════════════════════════════════════
   AMENITIES GRID
   ══════════════════════════════════════════ */
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.amenity-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--light); font-family: var(--sans); font-size: 13px; color: var(--charcoal); }
.amenity-icon { font-size: 18px; width: 28px; text-align: center; }

/* ══════════════════════════════════════════
   FORM ELEMENTS
   ══════════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-family: var(--sans); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm); }
.form-input, .form-select, .form-textarea {
  font-family: var(--sans); font-size: 14px; font-weight: 300; padding: 14px 16px;
  border: 1px solid var(--light); background: transparent; color: var(--charcoal);
  outline: none; transition: border-color .3s; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--warm); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════ */
.page-hero { height: 58vh; min-height: 460px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 7s cubic-bezier(.22,.61,.36,1); }
.page-hero:hover .page-hero-bg { transform: scale(1.04); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,8,6,.42) 0%, rgba(10,8,6,.06) 42%, rgba(10,8,6,.78) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 48px 68px; max-width: 1248px; width: 100%; margin: 0 auto; color: var(--ivory); }
.page-hero-label { font-family: var(--sans); font-size: 8px; letter-spacing: 5px; text-transform: uppercase; color: var(--warm); margin-bottom: 18px; display: block; }
.page-hero-title { font-family: var(--serif); font-size: clamp(46px,6vw,86px); font-weight: 300; line-height: .95; letter-spacing: 1px; }
.page-hero-title em { font-style: italic; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer { background: var(--charcoal); color: var(--ivory); padding: 64px 48px 40px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 36px;
}
.footer-brand img { height: 22px; margin-bottom: 20px; }
.footer-brand p { font-family: var(--sans); font-size: 12px; line-height: 1.9; color: rgba(250,248,244,.4); max-width: 240px; }
.footer-col h4 { font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--warm); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(250,248,244,.45); text-decoration: none; transition: color .3s; }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: var(--sans); font-size: 11px; color: rgba(250,248,244,.25); text-decoration: none; transition: color .3s; }
.footer-legal a:hover { color: rgba(250,248,244,.6); }
.footer-copy { font-family: var(--sans); font-size: 11px; color: rgba(250,248,244,.25); }
.footer-social { display: flex; gap: 20px; margin-top: 20px; }
.footer-social a { font-family: var(--sans); font-size: 11px; letter-spacing: 1px; color: rgba(250,248,244,.35); text-decoration: none; transition: color .3s; }
.footer-social a:hover { color: var(--warm); }

/* ── FOOTER NEWSLETTER ── */
.footer-nl { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-nl-label { font-family: var(--sans); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--warm); margin-bottom: 12px; }
.footer-nl-form { display: flex; gap: 0; }
.footer-nl-input {
  flex: 1; min-width: 0;
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  padding: 11px 14px; letter-spacing: .5px;
  background: rgba(255,255,255,.05); color: var(--ivory);
  border: 1px solid rgba(255,255,255,.1); border-right: none; outline: none;
  transition: border-color .3s;
}
.footer-nl-input::placeholder { color: rgba(250,248,244,.2); }
.footer-nl-input:focus { border-color: rgba(201,185,150,.4); }
.footer-nl-btn {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  padding: 11px 18px; flex-shrink: 0;
  background: transparent; color: var(--warm);
  border: 1px solid rgba(201,185,150,.35); cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.footer-nl-btn:hover { background: var(--warm); color: var(--charcoal); border-color: var(--warm); }

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:.9} }

/* reveal variants — add class in HTML for directional entrances */
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
}
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
}
.reveal-scale {
  opacity: 0; transform: scale(.97);
  transition: opacity 1.1s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav { padding: 0 24px; grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .nav-member { display: none; }
  .nav-logo { justify-content: flex-start; }
  .hamburger { display: flex; }
  section { padding: 72px 24px; }
  .page-hero-content { padding: 0 24px 44px; }
  .filter-bar { padding: 0 24px; overflow-x: auto; }
  .filter-inner { min-width: max-content; }
  .search-bar { padding: 0 24px; }
  .search-inner { grid-template-columns: 1fr 1fr; }
  .search-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .search-submit { padding: 20px 32px; justify-content: center; grid-column: 1 / -1; }
  /* hero search mobile */
  .hero-search-inner { padding: 0 16px; }
  .hero-search-bar { grid-template-columns: 1fr 1fr; }
  .hs-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 18px 20px; }
  .hs-submit { grid-column: 1 / -1; padding: 18px 0; justify-content: center; }
  .hs-district-panel { width: 100%; }
  footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .gallery-grid { grid-template-rows: 260px 160px; }
}
