/* ===== APARTHOUSE LUBNO — Pixel-Perfect Clone ===== */

/* Fonts — exact Wix fonts */
@font-face {
  font-family: 'Beautifully Delicious';
  src: url('../fonts/beautifully-delicious.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Effra Light';
  src: url('../fonts/effra-light.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Light';
  src: url('../fonts/helvetica-light.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --black: #000000;
  --font-body: 'Effra Light', 'Helvetica Neue', Arial, sans-serif;
  --font-script: 'Beautifully Delicious', 'Helvetica Neue', Arial, sans-serif;
  --font-helvetica: 'Helvetica Light', 'Helvetica Neue', Helvetica, sans-serif;
  --max-w: 980px;
  --nav-h: 84px;
  --content-pad: 230px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  height: var(--nav-h);
  border-bottom: 1px solid #e5e5e5;
}
.header-inner {
  display: flex; align-items: center;
  height: 100%; max-width: 1440px; margin: 0 auto;
  padding: 0 var(--content-pad);
}

/* Logo */
.logo {
  display: flex; align-items: center; text-decoration: none;
  flex-shrink: 0; margin-right: 40px;
}
.logo img {
  height: 40px; width: auto;
}

/* Nav */
.main-nav {
  flex: 1; display: flex; justify-content: center;
}
.nav-list {
  display: flex; gap: 30px; align-items: center; list-style: none;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--black);
  transition: opacity 0.2s; white-space: nowrap;
}
.nav-link:hover { opacity: 0.55; }
.nav-link.active { color: rgb(0, 87, 225); }
.nav-link--cta {
  background: var(--black); color: var(--white) !important;
  padding: 8px 20px;
}
.nav-link--cta:hover { opacity: 0.85; }

/* Nav dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white); min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 101; padding: 8px 0; list-style: none;
}
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li { padding: 0; }
.nav-dropdown a {
  display: block; padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px; letter-spacing: 0.5px;
  color: var(--black); white-space: nowrap;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: #f5f5f5; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  border: none; padding: 5px 10px; font-size: 16px; background: transparent;
  cursor: pointer; font-family: var(--font-body);
  letter-spacing: 0; transition: background 0.15s;
}
.lang-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--white); min-width: 70px;
  border: 1px solid #e5e5e5; border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 102; list-style: none; padding: 4px 0; margin: 0;
}
.lang-dropdown.open { display: block; }
.lang-dropdown li { padding: 0; }
.lang-dropdown a {
  display: block; padding: 8px 16px;
  font-family: var(--font-body); font-size: 16px;
  color: var(--black); transition: background 0.15s;
}
.lang-dropdown a:hover { background: #f5f5f5; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.hamburger-line {
  display: block; width: 24px; height: 2px;
  background: var(--black); transition: 0.3s;
}

/* Mobile nav */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; }
  .main-nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--white); margin: 0;
    transform: translateX(100%); transition: transform 0.3s;
    z-index: 99; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 0; padding: 20px 0; }
  .nav-link {
    display: block; padding: 14px 24px; font-size: 16px;
    border-bottom: 1px solid #e5e5e5; width: 100%;
  }
  .nav-link--cta {
    margin: 20px 24px; text-align: center;
    width: auto;
  }
  .nav-dropdown {
    position: static; transform: none;
    box-shadow: none; min-width: 0;
    background: #f9f9f9;
    display: none;
  }
  .has-dropdown:hover .nav-dropdown,
  .has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 10px 40px; font-size: 14px; }
  .container { padding: 0 24px; }
  .logo { margin-right: 0; }

  /* Hamburger X animation */
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative; width: 100%;
  margin-top: var(--nav-h);
  padding: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 1440/897;
  object-fit: cover;
}
.hero-scroll-wrap {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.hero-scroll {
  font-family: var(--font-helvetica);
  font-size: 20px; font-weight: 400;
  color: var(--white);
  line-height: 28px;
}
.hero-scroll-arrow {
  width: 8px; height: 61px;
}

/* ===== INTRO SECTION ===== */
.intro {
  padding: 60px 0;
}
.intro-inner {
  display: grid;
  grid-template-columns: 526fr 408fr;
  gap: 50px;
  align-items: start;
}
.intro-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 526/419;
  object-fit: cover;
}
.intro-content {
  padding-top: 0;
}
.intro-content p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--black);
  margin-bottom: 16px;
}
.intro-content p:first-child {
  font-weight: 700;
}

/* ===== AMENITIES ===== */
.amenities {
  padding: 40px 0 60px;
  text-align: center;
}
.amenities-img {
  display: none;
  max-width: 1237px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  image-rendering: auto;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 16px;
  max-width: 600px;
  margin: 0 auto;
}
.amenity-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.amenity-item svg { opacity: 0.7; }
.amenity-item span {
  font-family: var(--font-body); font-size: 13px; line-height: 1.3;
  color: var(--black);
}

/* ===== PHOTO MOSAIC ===== */
.photo-mosaic {
  display: grid;
  grid-template-columns: 430fr 191fr 329fr;
  grid-template-rows: 287px 190px 219px;
  gap: 15px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--content-pad);
}
.photo-mosaic img {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-mosaic .pm-1 { grid-column: 1; grid-row: 1; }
.photo-mosaic .pm-2 { grid-column: 2; grid-row: 1; }
.photo-mosaic .pm-3 { grid-column: 1 / span 2; grid-row: 2 / span 2; }
.photo-mosaic .pm-4 { grid-column: 3; grid-row: 1 / span 2; }
.photo-mosaic .pm-5 {
  grid-column: 3; grid-row: 3;
  position: relative;
}
.photo-mosaic .pm-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.56);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.photo-mosaic .pm-overlay span {
  font-family: var(--font-script);
  font-size: 35px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 1.75px;
  text-align: center;
}

@media (max-width: 700px) {
  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .photo-mosaic .pm-1,
  .photo-mosaic .pm-2,
  .photo-mosaic .pm-3,
  .photo-mosaic .pm-4,
  .photo-mosaic .pm-5 {
    grid-column: 1; grid-row: auto;
  }
  .photo-mosaic img { height: 250px; }
}

/* ===== SECTION HEADINGS (script font) ===== */
.section-title {
  font-family: var(--font-script);
  font-size: 100px;
  font-weight: 400;
  line-height: 140px;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: normal;
}

/* ===== APARTMENTS ===== */
.apartments {
  padding: 40px 0;
  background: var(--white);
}
.apartment-cards { margin-top: 16px; }

.apartment-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

.apartment-card-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.apartment-card-title {
  font-family: var(--font-script);
  font-size: 70px; font-weight: 400;
  line-height: 98px;
  margin-bottom: 8px;
}
.apartment-card-subtitle {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 700;
  line-height: 22.4px;
  color: var(--black);
  margin-bottom: 16px;
}
.apartment-card-text {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  line-height: 22.4px;
  color: var(--black);
  margin-bottom: 16px;
}
.apartment-card-capacity-title {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 700;
  line-height: 22.4px;
  margin-bottom: 4px; margin-top: 16px;
}
.apartment-card-capacity {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  line-height: 22.4px;
  color: var(--black);
  margin-bottom: 20px;
}

/* Button — Wix style: filled black with white text */
.btn {
  display: inline-block;
  background: var(--black); color: var(--white);
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  letter-spacing: 1.6px;
  text-align: center;
  transition: opacity 0.2s;
  border: none;
}
.btn:hover { opacity: 0.85; }

@media (max-width: 900px) {
  .apartment-card { grid-template-columns: 1fr; gap: 24px; }
  .apartment-card-img img { aspect-ratio: 16/10; }
}

/* ===== PRICING (ceník) ===== */
.pricing-section {
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.pricing-section:last-of-type { border-bottom: none; }
.pricing-section h2 {
  font-family: var(--font-script);
  font-size: 70px; line-height: 98px; font-weight: 400;
  margin-bottom: 16px;
}
.pricing-capacity {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 700;
  line-height: 22.4px;
  color: var(--black);
  margin-bottom: 24px;
}
.pricing-icon-row {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 24px;
}
.pricing-icon-row img {
  width: 31px; height: 31px; flex-shrink: 0; margin-top: 2px;
}
.pricing-icon-row .pricing-icon-content h4 {
  margin-bottom: 4px;
}

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 24px;
}
.pricing-col h4 {
  font-family: var(--font-body);
  font-weight: 700; font-size: 16px; margin-bottom: 12px;
}
.pricing-col p, .pricing-col li {
  font-family: var(--font-body);
  font-size: 16px; line-height: 22.4px;
}
.pricing-col ul { padding-left: 0; }
.pricing-col li { padding: 3px 0; }
.pricing-col li::before { content: "\2022"; margin-right: 8px; color: #888; }

.pricing-checkin {
  margin-top: 16px; padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px; color: var(--black);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== GALERIE ===== */
.gallery-section { margin-bottom: 64px; }
.gallery-section h2 {
  font-family: var(--font-script);
  font-size: 64px; line-height: 80px; font-weight: 400;
  text-align: center; margin-bottom: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%; height: 260px; object-fit: cover;
  cursor: pointer; transition: opacity 0.2s;
}
.gallery-grid img:hover { opacity: 0.85; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; width: auto; height: auto; position: relative; z-index: 1; cursor: default; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; z-index: 2;
  color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  color: #fff; font-size: 2.5rem; cursor: pointer; background: none; border: none;
  padding: 20px;
}
.lightbox-nav.prev { left: 10px; }
.lightbox-nav.next { right: 10px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  margin-bottom: 48px;
}
.contact-grid h3, .contact-col h3 {
  font-family: var(--font-script);
  font-size: 50px; line-height: 70px; font-weight: 400;
  margin-bottom: 16px;
  white-space: nowrap;
}
.contact-grid p, .contact-col p {
  font-family: var(--font-body);
  font-size: 16px; line-height: 22.4px;
}
.contact-grid a { text-decoration: underline; }

.map-wrapper { position: relative; margin-top: 16px; }
.contact-map { width: 100%; height: 400px; border: 0; border-radius: 0; display: block; }
.map-directions-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 12px 24px;
  background: var(--black); color: var(--white);
  font-family: var(--font-body); font-size: 16px;
  letter-spacing: 0.8px; transition: opacity 0.2s;
  text-decoration: none;
}
.map-directions-btn:hover { opacity: 0.85; }
.map-directions-btn svg { flex-shrink: 0; }

.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px; text-decoration: none !important;
  transition: opacity 0.2s;
}
.social-link:hover { opacity: 0.6; }
.social-link svg { width: 24px; height: 24px; }

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== TEAM ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 48px; max-width: 900px; margin: 0 auto;
}
.team-member { text-align: left; }
.team-member img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 0; margin: 0 0 16px;
}
.team-member h4 {
  font-family: var(--font-body);
  font-weight: 700; font-size: 16px;
}
.team-member p {
  font-family: var(--font-body);
  font-size: 16px; color: #888;
}

/* ===== EVENT / AKCE PAGE ===== */
.event-section { margin-bottom: 64px; }
.event-section h2 {
  font-family: var(--font-script);
  font-size: 70px; line-height: 98px; font-weight: 400;
  text-align: center; margin-bottom: 24px;
}
.event-section .lead {
  font-family: var(--font-body);
  font-weight: 700; font-size: 16px; margin-bottom: 24px;
}
.event-list { margin-bottom: 24px; }
.event-list li {
  padding: 10px 0; font-size: 16px; line-height: 22.4px;
  border-bottom: 1px solid #e5e5e5;
}
.event-list li strong { font-weight: 700; }

/* ===== XMAS ===== */
.xmas-intro { margin-bottom: 48px; }
.xmas-meta {
  display: flex; gap: 32px; margin-bottom: 24px;
  padding: 20px 24px; background: #faf8f5; border-left: 3px solid var(--black);
}
.xmas-meta p { font-size: 16px; line-height: 22.4px; margin: 0; }
.xmas-lead { font-size: 16px; line-height: 24px; max-width: 800px; }
.xmas-section-title {
  font-family: var(--font-script); font-size: 50px; line-height: 70px;
  font-weight: 400; margin-bottom: 24px;
}
.xmas-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-bottom: 48px;
}
.xmas-card {
  background: #faf8f5; padding: 32px; border-bottom: 2px solid var(--black);
}
.xmas-card-header { margin-bottom: 12px; }
.xmas-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.xmas-price { font-size: 24px; font-weight: 400; color: var(--black); letter-spacing: 0.5px; }
.xmas-card p { font-size: 16px; color: #555; line-height: 22.4px; }
.xmas-included {
  padding: 24px 32px; background: #faf8f5; max-width: 600px;
}
.xmas-included ul { padding-left: 0; }
.xmas-included li {
  padding: 6px 0; font-size: 16px; line-height: 22.4px; list-style: none;
}
.xmas-included li::before { content: "\2713"; margin-right: 12px; color: #2d7d46; font-weight: 700; }

/* ===== INSTAGRAM FEED ===== */
.instagram-feed {
  padding: 48px 0;
}
.ig-header {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 24px;
  position: relative;
}
.ig-avatar {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
}
.ig-info { flex: 1; }
.ig-username {
  font-family: var(--font-body); font-size: 22px; font-weight: 400;
  margin-bottom: 6px;
}
.ig-stats {
  display: flex; gap: 24px; margin-bottom: 10px;
  font-family: var(--font-body); font-size: 14px; color: #333;
}
.ig-stats strong { font-weight: 700; }
.ig-bio {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: #333;
}
.ig-bio a { color: rgb(0, 55, 107); text-decoration: none; }
.ig-follow-btn {
  position: absolute; top: 0; right: 0;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border: 1px solid #dbdbdb; border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--black); background: var(--white); text-decoration: none;
  transition: background 0.15s;
}
.ig-follow-btn:hover { background: #f5f5f5; }
.ig-follow-btn svg { flex-shrink: 0; }
.ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  margin-bottom: 24px;
}
.ig-grid a { display: block; }
.ig-grid img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  transition: opacity 0.2s;
}
.ig-grid img:hover { opacity: 0.85; }
.ig-load-more {
  display: block; width: fit-content; margin: 0 auto;
  padding: 10px 32px; border: 1px solid #dbdbdb;
  font-family: var(--font-body); font-size: 14px;
  color: var(--black); background: var(--white);
  text-decoration: none; transition: background 0.15s;
}
.ig-load-more:hover { background: #f5f5f5; }

/* ===== BOOKING IFRAME ===== */
.booking-frame { width: 100%; min-height: 800px; border: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black); color: var(--white); padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-family: var(--font-script);
  font-size: 35px; line-height: normal;
  margin-bottom: 12px; font-weight: 400;
}
.footer-col p, .footer-col a, .footer-col address {
  font-family: var(--font-body);
  font-size: 16px; line-height: 22.4px; color: rgba(255,255,255,0.85);
}
.footer-col a { text-decoration: underline; text-underline-offset: 3px; }
.footer-col a:hover { color: var(--white); }
.footer-col .social-link { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-col .social-link:hover { color: var(--white); }

.footer-bottom {
  text-align: center; font-size: 14px; color: rgba(255,255,255,0.7);
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== UTILITIES ===== */
.page-top { padding-top: calc(var(--nav-h) + 24px); }
section { padding: 20px 0; }

/* Offset anchor scroll for fixed header */
section[id],
.gallery-section[id],
.apartment-card[id] {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

/* About page */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; margin-bottom: 64px;
}
.about-intro img { width: 100%; }

/* Floorplan */
.floorplan { margin: 8px 0; }
.floorplan img { width: 100%; height: auto; cursor: pointer; transition: opacity 0.2s; }
.floorplan img:hover { opacity: 0.85; }

/* Partners logos */
.partners {
  padding: 40px 0;
  text-align: center;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.partners-grid img {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.partners-grid img:hover { opacity: 1; }

/* About text spacing */
.about-intro-text p { margin-bottom: 1.2em; }
.about-intro-text p:last-child { margin-bottom: 0; }

/* ===== COMPREHENSIVE MOBILE RESPONSIVE ===== */

/* Tablet (700-900px) */
@media (max-width: 900px) {
  :root { --content-pad: 40px; }
  .hero-scroll-wrap { bottom: 20px; }
  .hero-scroll { font-size: 16px; }
  .hero-scroll-arrow { height: 40px; }
  .intro-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Amenities: reduce to 3 columns on tablet/mobile */
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }

  /* Half section gaps on mobile */
  section { padding: 20px 0; }
  .intro { padding: 30px 0; }
  .amenities { padding: 20px 0 30px; }
  .apartments { padding: 20px 0; }
  .apartment-card { margin-bottom: 40px; }
  .pricing-section { margin-bottom: 32px; padding-bottom: 32px; }
  .gallery-section { margin-bottom: 32px; }
  .event-section { margin-bottom: 32px; }
  .about-intro { margin-bottom: 32px; }
  .xmas-intro { margin-bottom: 24px; }
  .xmas-cards { margin-bottom: 24px; }
  .page-top { padding-top: calc(var(--nav-h) + 24px); }

  /* Bigger headings — light but readable */
  .section-title { font-size: 64px; line-height: 1.3; margin-bottom: 24px; }
  .apartment-card-title { font-size: 56px; line-height: 1.2; }
  .pricing-section h2 { font-size: 56px; line-height: 1.2; }
  .gallery-section h2 { font-size: 50px; line-height: 1.3; }
  .contact-grid h3, .contact-col h3 { font-size: 50px; line-height: 1.3; }
  .event-section h2 { font-size: 50px; line-height: 1.3; }
  .xmas-section-title { font-size: 44px; line-height: 1.3; }

  /* Photo mosaic overlay as button */
  .photo-mosaic .pm-overlay {
    background: rgba(0,0,0,0.55);
  }
  .photo-mosaic .pm-overlay span {
    color: var(--white);
    font-size: 28px;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.6);
  }
}

/* Phone (max 700px) */
@media (max-width: 700px) {
  :root { --content-pad: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro { grid-template-columns: 1fr; }
  .event-list li { padding: 14px 0; line-height: 1.6; }
  .map-directions-btn { width: 100%; justify-content: center; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 20px;
  }
  .photo-mosaic .pm-1,
  .photo-mosaic .pm-2,
  .photo-mosaic .pm-3,
  .photo-mosaic .pm-4,
  .photo-mosaic .pm-5 {
    grid-column: 1; grid-row: auto;
  }
  .photo-mosaic img { height: 250px; }
}

/* Small phone (max 480px) */
@media (max-width: 480px) {
  :root { --content-pad: 16px; }
  .section-title { font-size: 52px; line-height: 1.2; margin-bottom: 20px; }
  .apartment-card-title { font-size: 46px; line-height: 1.2; }
  .pricing-section h2 { font-size: 46px; line-height: 1.2; }
  .gallery-section h2 { font-size: 40px; line-height: 1.3; }
  .contact-grid h3, .contact-col h3 { font-size: 40px; line-height: 1.3; }
  .event-section h2 { font-size: 40px; line-height: 1.3; }
  .xmas-section-title { font-size: 38px; line-height: 1.3; }
  .xmas-meta { flex-direction: column; gap: 8px; }
  .hero-img { aspect-ratio: 9/12; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 220px; }
  .footer-col h4 { font-size: 28px; }
  .contact-map { height: 280px; }
  .booking-frame { min-height: 600px; }
  .btn { width: 100%; text-align: center; }
  .photo-mosaic { padding: 0 16px; }
  .photo-mosaic img { height: 200px; }
}

/* Touch-friendly lightbox */
@media (max-width: 900px) {
  .lightbox-close { top: 12px; right: 16px; font-size: 2.5rem; padding: 8px; }
  .lightbox-nav { font-size: 3rem; padding: 24px; }
  .lightbox-nav.prev { left: 0; }
  .lightbox-nav.next { right: 0; }
  .lightbox img { max-width: 95vw; max-height: 85vh; }
}
