/* ===== Walles — Private Real Estate ===== */

:root {
  --bg: #0b0b0c;
  --bg-alt: #0e0e10;
  --bg-band: #111114;
  --ink: #f2efe9;
  --ink-60: rgba(242, 239, 233, 0.60);
  --ink-45: rgba(242, 239, 233, 0.45);
  --ink-35: rgba(242, 239, 233, 0.35);
  --ink-25: rgba(242, 239, 233, 0.25);
  --accent: #b89b6e;            /* muted brass */
  --accent-soft: rgba(184, 155, 110, 0.18);
  --line: rgba(242, 239, 233, 0.10);
  --line-strong: rgba(242, 239, 233, 0.32);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --pad: 56px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--serif); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px var(--pad);
  background: rgba(11, 11, 12, 0.55); backdrop-filter: blur(10px);
  border-bottom: 0.5px solid transparent; transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled { background: rgba(11, 11, 12, 0.92); border-bottom-color: var(--line); }
.nav-logo { font-family: var(--sans); font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-60); transition: color 0.25s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 0.5px solid var(--line-strong); padding: 9px 18px; transition: all 0.25s;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #15110a; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 0 var(--pad); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { filter: brightness(0.55) saturate(0.85); transform: scale(1.04); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,11,12,0.85) 0%, rgba(11,11,12,0.4) 45%, transparent 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 26px; padding-left: 2px;
}
.hero-title {
  font-size: clamp(56px, 9.5vw, 120px); font-weight: 400; line-height: 0.9;
  letter-spacing: -0.02em; margin-bottom: 30px; font-optical-sizing: auto;
}
.hero-title-light { font-style: italic; font-weight: 300; color: var(--ink-60); }
.hero-sub { font-family: var(--sans); font-size: 14px; font-weight: 300; letter-spacing: 0.02em; color: var(--ink-60); margin-bottom: 40px; max-width: 420px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary, .btn-ghost {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 32px; cursor: pointer; transition: all 0.25s; display: inline-block;
}
.btn-primary { background: var(--accent); color: #15110a; }
.btn-primary:hover { background: #cdb286; transform: translateY(-1px); }
.btn-ghost { border: 0.5px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-45);
}
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(var(--accent), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== Marquee ===== */
.marquee { overflow: hidden; border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); padding: 22px 0; background: var(--bg-alt); }
.marquee-track { display: flex; gap: 40px; align-items: center; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { font-size: 30px; font-style: italic; font-weight: 300; color: var(--ink-25); white-space: nowrap; }
.marquee-dot { font-size: 12px !important; color: var(--accent) !important; font-style: normal !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Featured split ===== */
.featured { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 86vh; }
.featured-media { position: relative; overflow: hidden; background: #141414; }
.featured-media img { filter: brightness(0.9); transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1); }
.featured:hover .featured-media img { transform: scale(1.05); }
.featured-badge {
  position: absolute; top: 28px; left: 28px; font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
  background: rgba(11,11,12,0.55); backdrop-filter: blur(6px);
  border: 0.5px solid var(--line-strong); padding: 8px 16px;
}
.featured-media { cursor: zoom-in; }
.featured-viewgallery { position: absolute; bottom: 28px; right: 28px; font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); background: rgba(11,11,12,0.5); backdrop-filter: blur(6px); border: 0.5px solid var(--line-strong); padding: 9px 16px; display: flex; align-items: center; gap: 7px; opacity: 0; transition: opacity 0.35s; pointer-events: none; }
.featured:hover .featured-viewgallery { opacity: 1; }
.featured-body { display: flex; flex-direction: column; justify-content: center; padding: 64px var(--pad); background: var(--bg-alt); }
.featured-title { font-size: clamp(40px, 5vw, 64px); font-weight: 400; font-style: italic; line-height: 0.95; margin: 14px 0 22px; }
.featured-desc { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--ink-60); line-height: 1.85; max-width: 460px; margin-bottom: 36px; }
.featured-specs { display: grid; grid-template-columns: repeat(4, auto); gap: 36px; margin-bottom: 40px; }
.spec { display: flex; flex-direction: column; gap: 6px; }
.spec-num { font-size: 26px; font-weight: 400; letter-spacing: -0.01em; }
.spec-label { font-family: var(--sans); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-45); }
.featured-cta { align-self: flex-start; }

/* ===== Section scaffolding ===== */
.section, .process-section, .agents-section, .testimonials-section, .faq-section { padding: 96px var(--pad); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 24px; }
.section-label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-title { font-size: clamp(34px, 5vw, 60px); font-weight: 400; font-style: italic; line-height: 0.95; letter-spacing: -0.01em; }
.section-meta { font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--ink-45); text-align: right; max-width: 250px; line-height: 1.8; }

/* ===== Filters ===== */
.filters { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-chip {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: none; border: 0.5px solid var(--line); color: var(--ink-60);
  padding: 10px 18px; cursor: pointer; transition: all 0.22s; border-radius: 100px;
}
.filter-chip:hover { border-color: var(--line-strong); color: var(--ink); }
.filter-chip.is-active { background: var(--ink); border-color: var(--ink); color: #15110a; }
.filter-count { opacity: 0.5; margin-left: 4px; }

/* ===== Listings ===== */
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
.listing-card { cursor: pointer; transition: opacity 0.4s, transform 0.4s; }
.listing-card.hidden { display: none; }
.listing-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #141414; }
.listing-media img { transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1); filter: brightness(0.9); }
.listing-card:hover .listing-media img { transform: scale(1.06); filter: brightness(1); }
.listing-media { cursor: zoom-in; }
.listing-gallery-hint { position: absolute; top: 14px; right: 14px; font-family: var(--sans); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); background: rgba(11,11,12,0.5); backdrop-filter: blur(5px); border: 0.5px solid var(--line); padding: 6px 11px; display: flex; align-items: center; gap: 6px; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.listing-card:hover .listing-gallery-hint { opacity: 1; }
.vg-icon { font-size: 13px; line-height: 1; }
.listing-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: flex-start; padding: 20px; background: linear-gradient(to top, rgba(11,11,12,0.7), transparent 55%); opacity: 0; transition: opacity 0.35s; }
.listing-card:hover .listing-overlay { opacity: 1; }
.listing-overlay-btn { font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; background: none; border: 0.5px solid rgba(242,239,233,0.8); padding: 11px 22px; color: var(--ink); cursor: pointer; transition: all 0.2s; }
.listing-overlay-btn:hover { background: var(--ink); color: #15110a; }
.listing-info { padding: 16px 0 14px; border-bottom: 0.5px solid var(--line); }
.listing-name { font-size: 20px; font-style: italic; margin-bottom: 5px; }
.listing-location { font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-45); }
.listing-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; }
.listing-price { font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: 0.04em; color: var(--ink-60); }
.listing-tags { display: flex; gap: 7px; }
.listing-tag { font-family: var(--sans); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-45); border: 0.5px solid var(--line); padding: 4px 9px; border-radius: 100px; }
.listings-empty { display: none; font-family: var(--sans); font-size: 13px; color: var(--ink-45); text-align: center; padding: 48px 0; }
.listings-empty a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }

/* ===== Booking ===== */
.booking-section { background: var(--bg-band); border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); padding: 96px var(--pad); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.booking-title { font-size: clamp(40px, 6vw, 68px); font-weight: 400; font-style: italic; line-height: 0.92; margin: 14px 0 20px; letter-spacing: -0.01em; }
.booking-desc { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--ink-60); line-height: 1.85; margin-bottom: 30px; max-width: 440px; }

.preview-card { display: flex; gap: 18px; align-items: stretch; background: var(--bg); border: 0.5px solid var(--line); padding: 14px; margin-bottom: 30px; transition: border-color 0.3s; }
.preview-card:hover { border-color: var(--line-strong); }
.preview-media { width: 110px; flex-shrink: 0; aspect-ratio: 1; overflow: hidden; background: #161616; }
.preview-media img { transition: opacity 0.3s; }
.preview-body { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.preview-name { font-size: 20px; font-style: italic; margin-bottom: 3px; }
.preview-loc { font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 14px; }
.preview-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.preview-row span:first-child { font-family: var(--sans); font-size: 14px; color: var(--ink); }
.preview-when { font-family: var(--sans); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); text-align: right; }

.booking-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.booking-feature { font-family: var(--sans); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-60); display: flex; align-items: center; gap: 14px; }
.booking-feature::before { content: ''; width: 22px; height: 0.5px; background: var(--accent); flex-shrink: 0; }

.booking-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-bottom: 1px; }
.form-row-single { grid-template-columns: 1fr; }
.form-field { background: rgba(242,239,233,0.04); border: none; outline: none; padding: 18px 20px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em; color: var(--ink); width: 100%; transition: background 0.2s; border-bottom: 1px solid transparent; }
.form-field::placeholder { color: var(--ink-35); letter-spacing: 0.12em; text-transform: uppercase; font-size: 10px; }
.form-field:focus { background: rgba(242,239,233,0.07); border-bottom-color: var(--accent); }
select.form-field { appearance: none; cursor: pointer; }
select.form-field option { background: #1a1a1c; color: var(--ink); }
textarea.form-field { resize: none; }
input[type="date"].form-field { color: var(--ink-45); text-transform: uppercase; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }
.form-submit { background: var(--accent); color: #15110a; border: none; padding: 20px 32px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; width: 100%; margin-top: 1px; text-align: left; display: flex; justify-content: space-between; align-items: center; transition: all 0.25s; }
.form-submit:hover { background: #cdb286; }
.form-submit-arrow { font-size: 18px; transition: transform 0.25s; }
.form-submit:hover .form-submit-arrow { transform: translateX(5px); }
.booking-confirm { display: none; border: 0.5px solid var(--accent-soft); background: var(--accent-soft); padding: 28px 26px; }
.confirm-title { font-size: 22px; font-style: italic; margin-bottom: 8px; }
.confirm-text { font-family: var(--sans); font-size: 12px; color: var(--ink-60); line-height: 1.8; }

/* ===== Multi-step booking ===== */
.booking-steps { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.bstep { display: flex; flex-direction: column; gap: 3px; background: none; border: none; cursor: pointer; text-align: left; padding: 0; opacity: 0.4; transition: opacity 0.3s; }
.bstep.is-active, .bstep.is-done { opacity: 1; }
.bstep-num { font-family: var(--sans); font-size: 10px; letter-spacing: 0.15em; color: var(--accent); }
.bstep-label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.bstep-divider { flex: 1; height: 0.5px; background: var(--line); }
.booking-panel { display: none; animation: panelIn 0.4s ease; }
.booking-panel.is-active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.panel-hint { font-family: var(--sans); font-size: 11px; font-weight: 300; color: var(--ink-45); line-height: 1.7; margin: 14px 2px 0; }
.panel-error { font-family: var(--sans); font-size: 11px; color: #d98a72; margin: 12px 2px 0; opacity: 0; transition: opacity 0.2s; }
.panel-error.show { opacity: 1; }
.panel-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 18px; }
.step-back { background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-45); transition: color 0.2s; padding: 8px 0; }
.step-back:hover { color: var(--ink); }
.form-submit-inline { width: auto; padding: 16px 28px; }

/* ===== Process ===== */
.process-section { border-top: 0.5px solid var(--line); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.process-step { padding: 32px 24px 32px 26px; border-left: 0.5px solid var(--line-strong); transition: background 0.3s; }
.process-step:hover { background: var(--bg-alt); }
.step-num { font-family: var(--sans); font-size: 11px; color: var(--accent); letter-spacing: 0.15em; margin-bottom: 22px; }
.step-title { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.step-desc { font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--ink-45); line-height: 1.8; }

/* ===== Stats band ===== */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); background: var(--bg-alt); }
.stat { padding: 64px 32px; text-align: center; border-right: 0.5px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.stat:last-child { border-right: none; }
.stat-num { font-size: clamp(40px, 5vw, 60px); font-weight: 300; letter-spacing: -0.02em; }
.stat-label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-45); }

/* ===== Agents ===== */
.agents-section { border-top: 0.5px solid var(--line); }
.agents-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.agent-portrait { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #161616; }
.agent-portrait img { filter: grayscale(1) brightness(0.82); transition: filter 0.6s, transform 0.8s; }
.agent-card:hover .agent-portrait img { filter: grayscale(0) brightness(1); transform: scale(1.04); }
.agent-portrait::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,12,0.85), transparent 55%); }
.agent-info { position: absolute; bottom: 16px; left: 16px; z-index: 1; }
.agent-name { font-size: 17px; font-style: italic; margin-bottom: 2px; }
.agent-role { font-family: var(--sans); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-45); }
.agent-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; }
.agent-lang { font-family: var(--sans); font-size: 10px; color: var(--ink-45); letter-spacing: 0.08em; }
.agent-social { display: flex; gap: 12px; }
.agent-social a { font-family: var(--sans); font-size: 9px; letter-spacing: 0.15em; color: var(--ink-35); text-transform: uppercase; transition: color 0.2s; }
.agent-social a:hover { color: var(--accent); }

/* ===== Testimonials ===== */
.testimonials-section { border-top: 0.5px solid var(--line); background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.testimonial { border-top: 0.5px solid var(--line-strong); padding-top: 24px; }
.testimonial-text { font-size: 19px; font-style: italic; font-weight: 300; line-height: 1.6; color: rgba(242,239,233,0.85); margin-bottom: 18px; }
.testimonial-author { font-family: var(--sans); font-style: normal; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-35); }

/* ===== FAQ ===== */
.faq-section { border-top: 0.5px solid var(--line); }
.faq-list { border-top: 0.5px solid var(--line); }
.faq-item { border-bottom: 0.5px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; padding: 24px 0; font-family: var(--sans); font-size: 14px; letter-spacing: 0.03em; color: var(--ink-60); text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: color 0.2s; }
.faq-q:hover { color: var(--ink); }
.faq-q-marker { font-size: 22px; color: var(--accent); font-weight: 300; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q-marker { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { font-family: var(--sans); font-size: 13px; font-weight: 300; color: var(--ink-45); line-height: 1.85; padding-bottom: 24px; max-width: 660px; }
.faq-item.open .faq-a { max-height: 260px; }

/* ===== Contact ===== */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 96px var(--pad); border-top: 0.5px solid var(--line); }
.contact-title { font-size: clamp(46px, 6.5vw, 80px); line-height: 0.9; margin-bottom: 30px; }
.contact-desc { font-family: var(--sans); font-size: 13px; font-weight: 300; color: var(--ink-45); margin-bottom: 26px; line-height: 1.85; max-width: 380px; }
.contact-email { display: inline-block; font-family: var(--sans); font-size: 15px; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 12px; border-bottom: 1px solid var(--accent-soft); transition: border-color 0.2s; }
.contact-email:hover { border-bottom-color: var(--accent); }
.contact-social { font-family: var(--sans); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-25); }
.office-list { list-style: none; }
.office-item { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 0.5px solid var(--line); transition: padding-left 0.25s; }
.office-item:hover { padding-left: 8px; }
.office-city { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.office-status { font-family: var(--sans); font-size: 10px; color: var(--ink-35); letter-spacing: 0.08em; }

/* ===== Footer ===== */
.footer { display: flex; justify-content: space-between; align-items: center; padding: 30px var(--pad); border-top: 0.5px solid var(--line); }
.footer-copy { font-family: var(--sans); font-size: 10px; color: var(--ink-25); letter-spacing: 0.08em; }
.footer-credit { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--accent); letter-spacing: 0.02em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-family: var(--sans); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-35); transition: color 0.2s; }
.footer-links a:hover { color: var(--ink-60); }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,6,7,0.96); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { width: min(92vw, 1100px); display: flex; flex-direction: column; gap: 14px; }
.lb-img { width: 100%; height: min(64vh, 680px); object-fit: cover; background: #161616; opacity: 1; transition: opacity 0.25s; }
.lb-img.fading { opacity: 0.3; }
.lb-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.lb-name { font-size: 22px; font-style: italic; }
.lb-loc { font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-45); margin-top: 3px; }
.lb-right { display: flex; align-items: center; gap: 20px; }
.lb-counter { font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-45); }
.lb-book { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; background: var(--accent); color: #15110a; border: none; padding: 12px 22px; cursor: pointer; transition: background 0.2s; }
.lb-book:hover { background: #cdb286; }
.lb-thumbs { display: flex; gap: 8px; }
.lb-thumb { width: 76px; height: 54px; object-fit: cover; opacity: 0.4; cursor: pointer; border: 0.5px solid transparent; transition: opacity 0.2s, border-color 0.2s; }
.lb-thumb:hover { opacity: 0.75; }
.lb-thumb.is-active { opacity: 1; border-color: var(--accent); }
.lb-close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: var(--ink-60); font-size: 34px; line-height: 1; cursor: pointer; transition: color 0.2s; }
.lb-close:hover { color: var(--ink); }
.lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--ink-45); font-size: 56px; line-height: 1; cursor: pointer; padding: 12px; transition: color 0.2s; }
.lb-arrow:hover { color: var(--ink); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
body.lb-open { overflow: hidden; }
@media (max-width: 680px) {
  .lb-img { height: 48vh; }
  .lb-thumbs { overflow-x: auto; }
  .lb-arrow { font-size: 40px; }
  .lb-name { font-size: 18px; }
}

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-specs { gap: 24px; }
}
@media (max-width: 880px) {
  :root { --pad: 32px; }
  .featured { grid-template-columns: 1fr; min-height: 0; }
  .featured-media { aspect-ratio: 4 / 3; }
  .process-steps, .agents-grid, .stats-band { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0.5px solid var(--line); }
  .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 680px) {
  :root { --pad: 22px; }
  .nav { padding: 14px 22px; }
  .nav-links { display: none; }
  .hero { padding: 0 22px; }
  .hero-scroll { display: none; }
  .section, .booking-section, .process-section, .agents-section,
  .testimonials-section, .faq-section, .contact-section { padding: 60px 22px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-meta { text-align: left; max-width: none; }
  .listings-grid, .booking-grid, .testimonials-grid, .contact-section { grid-template-columns: 1fr; gap: 32px; }
  .booking-grid { gap: 40px; }
  .process-steps, .agents-grid { grid-template-columns: 1fr 1fr; }
  .featured-specs { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 14px; text-align: center; }
  .marquee-track span { font-size: 22px; }
}
