/* ═══════════════════════════════════════════════════════════════
   Dream Home (SapanaGhar) — Bright Luxury + Storytelling Theme
   2026 Edition
══════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --bg-main:        #FDFAF6;
  --bg-warm:        #F7F1E8;
  --bg-card:        #FFFFFF;
  --bg-step-alt:    #FDF6EC;

  --text-primary:   #1A1714;
  --text-secondary: #4B4540;
  --text-muted:     #7C746E;

  --gold:           #D4940A;
  --gold-light:     #F5C842;
  --terracotta:     #C2410C;
  --terracotta-hover: #9A3412;
  --sage:           #5B7B5E;

  --border-light:   #EAE5DE;
  --border-gold:    rgba(212,148,10,0.25);

  --shadow-xs:  0 1px 4px rgba(26,23,20,0.05);
  --shadow-sm:  0 4px 12px rgba(26,23,20,0.07);
  --shadow-md:  0 12px 32px rgba(26,23,20,0.10);
  --shadow-lg:  0 24px 56px rgba(26,23,20,0.13);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;
  --font-nepali:'Noto Sans Devanagari', sans-serif;

  --container:  1180px;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-family: var(--font-sans); font-size: 16px; line-height: 1.65; color: var(--text-primary); background: var(--bg-main); scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; background: var(--bg-main); min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 92%; max-width: var(--container); margin: 0 auto; }

/* ─── Scroll Reveal Animations ───────────────────────────── */
.reveal-fade,
.reveal-slide-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal-fade.visible,
.reveal-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-link { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand-logo { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; }
.brand-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--text-primary); line-height: 1.1; white-space: nowrap; }
.brand-sub { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em; white-space: nowrap; }
.nepali-inline { font-family: var(--font-nepali); }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; list-style: none; align-items: center; gap: 0.3rem; flex-wrap: nowrap; }
.site-nav a { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); padding: 0.4rem 0.7rem; border-radius: 100px; white-space: nowrap; transition: background 0.2s, color 0.2s; }
.site-nav a:hover, .site-nav a.active-page { background: var(--bg-warm); color: var(--text-primary); }
.site-nav .nav-cta { background: var(--terracotta); color: #fff; font-weight: 600; padding: 0.45rem 1rem; }
.site-nav .nav-cta:hover { background: var(--terracotta-hover); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.hamburger-bar { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 100px;
  font-family: var(--font-sans); font-size: 0.93rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.25s var(--ease-out);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,65,12,0.30); }
.btn-secondary { background: var(--bg-warm); color: var(--text-primary); border: 1.5px solid var(--border-light); }
.btn-secondary:hover { background: #EEE8DC; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: rgba(255,255,255,0.18); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.30); }
.btn-glow:hover { box-shadow: 0 0 0 4px rgba(194,65,12,0.15), 0 8px 24px rgba(194,65,12,0.28); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero-section {
  position: relative; min-height: 96vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-image { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.55) saturate(0.9); transform: scale(1.04); transition: transform 8s ease; }
.hero-section:hover .hero-bg-img { transform: scale(1.0); }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,23,20,0.45) 0%, rgba(26,23,20,0.15) 50%, rgba(26,23,20,0.6) 100%);
}

.hero-content-wrap {
  position: relative; z-index: 2;
  padding: 7rem 0 5rem;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92); font-size: 0.82rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); display: inline-block; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0.6} }
.nepali-text { font-family: var(--font-nepali); }
.meaning-sep { opacity: 0.5; }

.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1.1; color: #fff;
  margin-bottom: 1.4rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.capacity-strip { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
.cap-pill {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-size: 0.82rem; font-weight: 500; padding: 0.35rem 0.9rem;
  border-radius: 100px; letter-spacing: 0.02em;
}

.hero-tagline { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 1.4rem; max-width: 520px; }

.rating-strip { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 2rem; }
.stars-row { display: flex; gap: 2px; }
.stars-row span { color: var(--gold-light); font-size: 1.1rem; }
.rating-text { color: rgba(255,255,255,0.85); font-size: 0.88rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5); transform: rotate(45deg);
  animation: bounce 1.6s ease infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translate(0,0)} 50%{transform:rotate(45deg) translate(3px,3px)} }

/* ─── Journey Section ─────────────────────────────────────── */
.journey-section { background: var(--bg-main); }

.journey-step {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-light);
}
.journey-step:nth-child(even) { background: var(--bg-step-alt); }
.journey-step:last-child { border-bottom: none; }

.journey-step-inner {
  display: grid; gap: 4rem; align-items: center;
  width: 92%; max-width: var(--container); margin: 0 auto;
}
.step-img-left  { grid-template-columns: 1.1fr 1fr; }
.step-img-right { grid-template-columns: 1fr 1.1fr; }
.step-img-right .journey-img-col { order: 2; }
.step-img-right .journey-text-col { order: 1; }

.step-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 0.9rem;
}
.journey-title {
  font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; line-height: 1.2; color: var(--text-primary);
  margin-bottom: 1rem;
}
.journey-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 1.4rem; }
.journey-detail-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.journey-detail-list li {
  font-size: 0.9rem; color: var(--text-secondary);
  padding-left: 1.4rem; position: relative;
}
.journey-detail-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.7rem; top: 0.2em;
}

/* Journey Images */
.journey-img-col { display: flex; align-items: center; }
.journey-img-wrap {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  width: 100%;
}
.journey-img-wrap:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }

.journey-img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform 0.5s var(--ease-out); }
.journey-img-wrap:hover .journey-img { transform: scale(1.04); }
.journey-img-tall .journey-img { height: 480px; }

.journey-img-hover {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(26,23,20,0.55) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.journey-img-wrap:hover .journey-img-hover { opacity: 1; }
.tap-hint {
  font-size: 0.78rem; color: rgba(255,255,255,0.9);
  background: rgba(26,23,20,0.5); backdrop-filter: blur(6px);
  padding: 0.3rem 0.75rem; border-radius: 100px; letter-spacing: 0.04em;
}

.journey-img-pair { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
.journey-img-pair .journey-img { height: 300px; }
.journey-img-small .journey-img { 
  height: 280px; 
  object-fit: cover; 
  object-position: center 45%; 
}

img[src*="tv-entertainment"] {
  object-fit: cover;
  object-position: center 42%;
  height: 290px;
}

.journey-img-trio { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0.9rem; width: 100%; }
.journey-img-trio .journey-img-wrap:first-child { grid-column: 1 / -1; }
.journey-img-trio .journey-img { height: 240px; }
.journey-img-trio .journey-img-wrap:first-child .journey-img { height: 300px; }

/* Neon Teaser */
.neon-teaser {
  margin-top: 1.8rem; border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.neon-teaser:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.neon-img { width: 100%; height: 160px; object-fit: cover; object-position: center 30%; }
.neon-caption {
  position: absolute; bottom: 0.8rem; left: 1rem;
  font-size: 0.8rem; font-style: italic; color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ─── Highlights Bar ─────────────────────────────────────── */
.highlights-bar {
  background: var(--text-primary); padding: 3rem 0;
}
.highlights-grid {
  display: flex; flex-wrap: wrap; gap: 0;
  justify-content: space-between;
}
.highlight-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.3rem; flex: 1; min-width: 140px; padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.highlight-item:last-child { border-right: none; }
.hi-icon { font-size: 1.7rem; margin-bottom: 0.2rem; }
.highlight-item strong { color: #fff; font-size: 0.95rem; font-weight: 600; }
.highlight-item span { color: rgba(255,255,255,0.55); font-size: 0.8rem; }

/* ─── Neighbourhood ──────────────────────────────────────── */
.neighborhood-section { padding: 6rem 0; background: var(--bg-warm); }
.neighborhood-intro { text-align: center; margin-bottom: 3rem; }

.section-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.6rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; line-height: 1.2; margin-bottom: 0.6rem; }
.section-lead { color: var(--text-secondary); font-size: 1rem; }

.window-pane-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
.pane-cell {
  background: var(--bg-card); padding: 2rem 1.8rem;
  transition: background 0.25s, transform 0.25s;
  position: relative;
}
.pane-cell:hover { background: #FFFDF9; }
.pane-number { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; color: var(--terracotta); margin-bottom: 0.6rem; }
.pane-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.2rem; }
.pane-time { font-size: 0.8rem; font-weight: 600; color: var(--gold); display: block; margin-bottom: 0.6rem; }
.pane-detail { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; }

/* ─── Reviews ─────────────────────────────────────────────── */
.reviews-section { padding: 6rem 0; background: var(--bg-main); }
.review-score-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 2.5rem; }
.score-badge { text-align: center; background: var(--bg-warm); border: 1px solid var(--border-gold); border-radius: var(--radius-md); padding: 1.2rem 2rem; }
.score-num { display: block; font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.score-stars { font-size: 1.1rem; color: var(--gold); margin-top: 0.2rem; }
.score-meta h2 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 0.3rem; }
.score-meta p { color: var(--text-muted); font-size: 0.9rem; }

.featured-review-card {
  background: var(--bg-warm); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 2rem 2.4rem; margin-bottom: 2rem;
}
.featured-quote { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: var(--text-primary); line-height: 1.7; margin-bottom: 0.8rem; }
.quote-attribution { font-size: 0.88rem; color: var(--text-muted); }

.reviewers-pills { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }
.pill-title { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.review-pill { background: var(--bg-card); border: 1px solid var(--border-light); color: var(--text-secondary); font-size: 0.82rem; padding: 0.3rem 0.85rem; border-radius: 100px; }

/* ─── CTA Banner ─────────────────────────────────────────── */
.booking-cta-banner {
  background: linear-gradient(135deg, var(--terracotta) 0%, #9A3412 100%);
  padding: 5rem 0;
}
.banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.banner-text h2 { font-family: var(--font-serif); font-size: clamp(1.5rem,3vw,2.2rem); color: #fff; margin-bottom: 0.5rem; }
.banner-text p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.banner-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.banner-btns .btn-primary { background: #fff; color: var(--terracotta); }
.banner-btns .btn-primary:hover { background: #FFF5F0; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.banner-btns .btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); }
.banner-btns .btn-secondary:hover { background: rgba(255,255,255,0.28); }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--text-primary); color: rgba(255,255,255,0.75); padding: 3rem 0 2rem; }
.footer-container { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer-logo { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.footer-title { display: block; font-weight: 600; color: #fff; margin-bottom: 0.3rem; font-size: 0.95rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.3rem 1rem; align-items: center; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-badge { font-size: 0.85rem; color: var(--gold-light); font-weight: 600; }
.footer-credit { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; font-weight: 400; letter-spacing: 0.04em; }

/* ─── Lightbox ───────────────────────────────────────────── */
.lightbox-modal {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,12,10,0.92); backdrop-filter: blur(20px);
  align-items: center; justify-content: center;
}
.lightbox-modal.active { display: flex; animation: lbFadeIn 0.3s var(--ease-out); }
@keyframes lbFadeIn { from{opacity:0} to{opacity:1} }

.lightbox-inner {
  max-width: 90vw; max-height: 92vh;
  display: flex; flex-direction: column;
  gap: 1rem; animation: lbSlideIn 0.35s var(--ease-out);
}
@keyframes lbSlideIn { from{transform:scale(0.93) translateY(16px);opacity:0} to{transform:scale(1) translateY(0);opacity:1} }

.lightbox-img { max-width: 90vw; max-height: 75vh; object-fit: contain; border-radius: var(--radius-md); box-shadow: 0 32px 80px rgba(0,0,0,0.6); }
.lightbox-info { text-align: center; }
.lightbox-caption { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: #fff; margin-bottom: 0.3rem; }
.lightbox-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.lightbox-close {
  position: fixed; top: 1.2rem; right: 1.4rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.5rem; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }

/* ─── Page-level sections shared across pages ─────────────── */
.page-banner { padding: 5rem 0 3rem; background: var(--bg-warm); border-bottom: 1px solid var(--border-light); }
.page-banner-title { font-family: var(--font-serif); font-size: clamp(2rem,5vw,3.2rem); font-weight: 700; margin: 0.4rem 0 0.5rem; }
.page-banner-lead { color: var(--text-secondary); font-size: 1rem; }

.suites-section { padding: 5rem 0; }
.suite-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: center; }
.suite-img-container { border-radius: var(--radius-md); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.suite-img { width: 100%; height: 400px; object-fit: cover; }
.suite-badge { position: absolute; top: 1rem; left: 1rem; background: var(--terracotta); color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.35rem 0.8rem; border-radius: 100px; }
.suite-title { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 0.8rem; }
.suite-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; }
.suite-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; margin-bottom: 1.5rem; }
.suite-features li { font-size: 0.88rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; }
.suite-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.suite-photos-section { padding: 3rem 0 5rem; }
.mini-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
.mini-gallery-img { width: 100%; height: 190px; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; transition: transform 0.3s var(--ease-out), box-shadow 0.3s; }
.mini-gallery-img:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md); }

/* Amenities gallery */
.full-gallery-section { padding: 4rem 0 6rem; }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.photo-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 0.85rem;
}
.photo-card {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  cursor: pointer; box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.photo-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow-lg); z-index: 1; }
.photo-card.card-large { grid-column: span 2; grid-row: span 2; }
.photo-card.card-wide { grid-column: span 2; }

.real-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease-out); }
.photo-card:hover .real-photo { transform: scale(1.06); }

.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.72) 0%, rgba(26,23,20,0.1) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem 1rem; gap: 0.25rem;
  opacity: 0; transition: opacity 0.35s;
}
.photo-card:hover .photo-overlay { opacity: 1; }
.photo-num { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; }
.photo-caption { font-size: 0.88rem; font-weight: 600; color: #fff; font-family: var(--font-serif); }
.view-btn {
  align-self: flex-start;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.28rem 0.7rem; border-radius: 100px; cursor: pointer;
  transition: background 0.2s;
}
.view-btn:hover { background: rgba(255,255,255,0.32); }

/* About section (apartments.html) */
.about-section { padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text .section-title { margin-bottom: 1rem; }
.about-text p { color: var(--text-secondary); margin-bottom: 0.8rem; }
.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.fact-card { background: var(--bg-warm); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 1.2rem 1rem; }
.fact-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.fact-card h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.2rem; }
.fact-card p { font-size: 0.82rem; color: var(--text-muted); }
.about-visual-card { display: flex; flex-direction: column; gap: 1rem; }
.featured-img-wrap { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.featured-img { width: 100%; height: 340px; object-fit: cover; }
.glass-badge { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; background: rgba(253,250,246,0.9); backdrop-filter: blur(12px); border-radius: var(--radius-sm); padding: 0.75rem 1rem; }
.badge-title { display: block; font-weight: 700; font-size: 0.9rem; }
.badge-sub { font-size: 0.78rem; color: var(--text-muted); }
.quick-call-box { background: var(--bg-warm); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 1.2rem; text-align: center; }
.quick-call-box p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.call-now-btn { display: inline-flex; background: var(--terracotta); color: #fff; padding: 0.65rem 1.4rem; border-radius: 100px; font-weight: 600; font-size: 0.9rem; transition: background 0.2s, transform 0.2s; }
.call-now-btn:hover { background: var(--terracotta-hover); transform: translateY(-2px); }

/* Contact page */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 2.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 1.5px solid var(--border-light); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-primary);
  background: var(--bg-main); transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,148,10,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-info-card { display: flex; flex-direction: column; gap: 1.5rem; }
.info-block h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 0.6rem; }
.info-row { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0; border-bottom: 1px solid var(--border-light); }
.info-row:last-child { border-bottom: none; }
.info-icon { font-size: 1.1rem; flex-shrink: 0; }
.info-text { font-size: 0.9rem; }
.info-text strong { display: block; font-weight: 600; margin-bottom: 0.1rem; }
.info-text span { color: var(--text-muted); font-size: 0.85rem; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-light); }

/* Toast */
#toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--text-primary); color: #fff; padding: 0.75rem 1.5rem; border-radius: 100px; font-size: 0.9rem; font-weight: 500; z-index: 999; opacity: 0; transition: all 0.35s var(--ease-out); pointer-events: none; white-space: nowrap; }
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ─── Mobile & Tablet Navigation Overlay ─────────────────── */
@media (max-width: 1200px) {
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-toggle { display: flex; z-index: 10000 !important; position: relative; }
  .nav-toggle.active .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
  .nav-toggle.active .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: fixed !important; 
    top: 0 !important; 
    left: 0 !important; 
    right: 0 !important; 
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #FDFAF6 !important;
    z-index: 9999 !important;
    display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: flex-start !important;
    padding: 5.5rem 1.5rem 3rem !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .site-nav.active {
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  .site-nav ul { flex-direction: column !important; gap: 1rem !important; text-align: center !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }
  .site-nav a { font-size: 1.25rem !important; font-weight: 600 !important; padding: 0.7rem 1.8rem !important; display: inline-block !important; color: var(--text-primary) !important; }
  .site-nav a.active-page { background: var(--bg-warm) !important; color: var(--terracotta) !important; }
  .site-nav .nav-cta { font-size: 1.05rem !important; margin-top: 0.5rem !important; display: inline-flex !important; justify-content: center !important; }
}

/* ─── Responsive: Tablet ─────────────────────────────────── */
@media (max-width: 900px) {
  .step-img-left, .step-img-right { grid-template-columns: 1fr; gap: 2.5rem; }
  .step-img-right .journey-img-col { order: 1; }
  .step-img-right .journey-text-col { order: 2; }
  .journey-step { padding: 4rem 0; }
  .suite-card { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .window-pane-grid { grid-template-columns: repeat(2,1fr); }
  .journey-img-trio { grid-template-columns: 1fr 1fr; }
  .photo-masonry-grid { grid-template-columns: repeat(2,1fr); }
  .photo-card.card-large { grid-column: span 2; }
  .photo-card.card-wide { grid-column: span 2; }
}

/* ─── Responsive: Mobile ─────────────────────────────────── */
@media (max-width: 600px) {
  .hero-content-wrap { padding: 5rem 0 3.5rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .journey-img { height: 260px; }
  .journey-img-tall .journey-img { height: 320px; }
  .journey-img-pair .journey-img-small .journey-img { height: 220px; object-position: center 42%; }
  .journey-img-trio { grid-template-columns: 1fr; }
  .journey-img-trio .journey-img-wrap:first-child { grid-column: span 1; }
  .highlights-grid { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); min-width: 45%; }
  .window-pane-grid { grid-template-columns: 1fr; }
  .photo-masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .photo-card.card-large, .photo-card.card-wide { grid-column: span 1; grid-row: span 1; }
  .banner-inner { flex-direction: column; text-align: center; }
  .review-score-header { flex-direction: column; text-align: center; }
  .mini-gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { flex-direction: column; gap: 1.5rem; }
  .suite-features { grid-template-columns: 1fr; }
}

/* ─── Map Embed Section ─────────────────────────────────── */
.map-embed-section {
  padding: 3rem 0 5rem;
}
.map-embed-wrap {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  background: var(--bg-card);
}
.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Floating WhatsApp Button ──────────────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}
.floating-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.floating-whatsapp svg {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .floating-whatsapp {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.75rem;
    border-radius: 50%;
  }
  .floating-whatsapp .wa-text {
    display: none;
  }
}

/* ─── 5-Second Shutter Intro Overlay ──────────────────────── */
.shutter-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1714;
  color: #FDFAF6;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}
.shutter-blade {
  position: absolute;
  left: 0;
  right: 0;
  height: 50vh;
  background: radial-gradient(circle at center, #231F1B 0%, #161311 100%);
  z-index: 1;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.shutter-blade.blade-top { top: 0; border-bottom: 2px solid var(--terracotta); }
.shutter-blade.blade-bottom { bottom: 0; border-top: 2px solid var(--terracotta); }

.shutter-intro-overlay.opening .shutter-blade.blade-top {
  transform: translateY(-100%);
}
.shutter-intro-overlay.opening .shutter-blade.blade-bottom {
  transform: translateY(100%);
}
.shutter-intro-overlay.opening .shutter-content {
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.shutter-intro-overlay.dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.shutter-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.shutter-logo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(200, 90, 50, 0.15);
  border: 2px solid var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(200, 90, 50, 0.3);
  animation: shutterPulse 2s infinite ease-in-out;
}
.shutter-logo-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.shutter-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #FDFAF6;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}
.shutter-sub {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.shutter-progress-bar {
  width: 220px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.shutter-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--gold) 100%);
  border-radius: 100px;
  animation: shutterFill 4.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.shutter-skip-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes shutterPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(200, 90, 50, 0.25); }
  50% { transform: scale(1.06); box-shadow: 0 0 45px rgba(200, 90, 50, 0.5); }
}
@keyframes shutterFill {
  0% { width: 0%; }
  100% { width: 100%; }
}
