/* =============================================
   ANTIPAROS HOUSES — Main Stylesheet
   ============================================= */

/* 0. Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* 1. Variables & Reset */
:root {
  --navy:        #0D1B2A;
  --blue:        #1A4F8A;
  --blue-light:  #2E72BC;
  --gold:        #C4933A;
  --sand:        #EDE5D8;
  --sand-light:  #F5F0E8;
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --text:        #1C1C1C;
  --text-muted:  #6B6B6B;
  --border:      #DDD5C8;
  --nav-h:       72px;
  --transition:  0.3s ease;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.15);
  --radius:      4px;
  --radius-lg:   12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 2. Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.75; color: var(--text-muted); }

.label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-intro {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.section-intro h2 { margin: 0.4rem 0 1rem; }

/* 3. Navigation */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar.solid {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy);
}
.nav-logo span:last-child {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.navbar.transparent .nav-logo span:first-child,
.navbar.transparent .nav-menu > li > a { color: var(--white); }
.navbar.transparent .nav-logo span:last-child { color: var(--sand); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy);
  transition: color var(--transition);
}
.nav-menu > li > a:hover { color: var(--blue); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border-top: 2px solid var(--blue);
  padding: 0.5rem 0;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover {
  background: var(--sand-light);
  color: var(--blue);
}

.btn-book {
  margin-left: 1rem;
  padding: 0.55rem 1.5rem;
  background: var(--blue);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-book:hover { background: var(--navy); transform: translateY(-1px); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}
.navbar.transparent .hamburger span { background: var(--white); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 2rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.sub {
  padding-left: 1.2rem;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
}
.mobile-nav .btn-book-mobile {
  margin-top: 1.5rem;
  padding: 0.9rem;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 500;
  border-bottom: none;
}

/* 4. Hero Sections */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-sm {
  height: 55vh;
  min-height: 380px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,27,42,0.35) 0%,
    rgba(13,27,42,0.55) 60%,
    rgba(13,27,42,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-content .label { color: var(--sand); margin-bottom: 1rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; font-style: italic; }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  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.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--sand-light); }

/* 6. Sections */
.section {
  padding: 6rem 1.5rem;
}
.section-sm { padding: 4rem 1.5rem; }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-sand { background: var(--sand-light); }
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container-wide { max-width: 1400px; margin: 0 auto; }

/* 7. Houses Grid */
.houses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.house-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.house-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.house-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.house-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.house-card:hover .house-card-img img { transform: scale(1.05); }
.house-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--white);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.house-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.house-card-body h3 {
  font-size: 1.4rem;
  margin: 0.2rem 0 0.4rem;
  color: var(--navy);
}
.house-card-body .tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.house-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.spec-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  background: var(--sand-light);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 500;
}
.spec-pill svg { width: 13px; height: 13px; }
.house-card-body .btn { margin-top: auto; align-self: flex-start; }

/* 8. Feature List (on house pages) */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-section.reverse { direction: rtl; }
.feature-section.reverse > * { direction: ltr; }
.feature-label { margin-bottom: 0.5rem; }
.feature-section h2 { margin-bottom: 1rem; }
.feature-section p { margin-bottom: 2rem; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img img { width: 100%; height: 480px; object-fit: cover; }

/* Capacity badges */
.capacity-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.capacity-badge {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}
.capacity-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.capacity-badge .cap-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.3rem;
}

/* 9. Gallery */
.gallery-section {
  padding: 5rem 1.5rem;
  background: var(--sand-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1300px;
  margin: 2.5rem auto 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--sand);
}
.gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.35);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay svg { color: var(--white); width: 36px; height: 36px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  background: none;
  border: none;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

/* 10. Booking / Contact Form */
.form-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.form-wrapper h2 { text-align: center; margin-bottom: 0.5rem; }
.form-wrapper > p { text-align: center; margin-bottom: 2.5rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,79,138,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--blue);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--navy); transform: translateY(-2px); }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #EEF8F0;
  border-radius: var(--radius);
  color: #1a6b35;
  font-size: 0.95rem;
}

/* 11. Info Blocks (beaches, tavernas) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.info-card:hover { transform: translateY(-4px); }
.info-card-img { height: 200px; overflow: hidden; }
.info-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.info-card:hover .info-card-img img { transform: scale(1.06); }
.info-card-body { padding: 1.25rem 1.5rem; }
.info-card-body h4 { margin-bottom: 0.25rem; }
.info-card-body p { font-size: 0.82rem; }

/* 12. Stats bar */
.stats-bar {
  background: var(--navy);
  padding: 3rem 1.5rem;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.4rem;
  display: block;
}

/* 13. How to come - Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: 700px;
}
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 0.4rem; color: var(--navy); }
.step-content p { font-size: 0.9rem; }

/* 14. Location section */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.location-text {
  padding: 5rem 4rem;
  background: var(--navy);
}
.location-text h2, .location-text h3 { color: var(--white); }
.location-text p { color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.location-text .label { color: var(--sand); }
.location-map { background: var(--sand); }
.location-map iframe { width: 100%; height: 100%; min-height: 380px; border: none; filter: grayscale(20%); }

/* 15. Footer */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo span:first-child { color: var(--white); font-size: 1.4rem; }
.footer-brand .nav-logo span:last-child { color: var(--sand); font-size: 0.7rem; }
.footer-brand p { font-size: 0.88rem; margin-top: 1.25rem; line-height: 1.7; }
.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--sand); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.75);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

/* 16. Divider */
.divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}
.divider-left { margin: 1rem 0 0; }

/* 17. Page header (non-hero pages) */
.page-header {
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  text-align: center;
  background: var(--sand-light);
}
.page-header .label { margin-bottom: 0.5rem; }
.page-header h1 { color: var(--navy); }

/* 18. Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  justify-content: center;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* 19. Responsive */
@media (max-width: 1024px) {
  .houses-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-section { gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-menu, .btn-book { display: none; }
  .hamburger { display: flex; }

  .houses-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }
  .info-grid { grid-template-columns: 1fr; }
  .feature-section { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr !important; }
  .feature-img img { height: 300px; }
  .location-section { grid-template-columns: 1fr; }
  .location-text { padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .lightbox-prev { left: -2rem; }
  .lightbox-next { right: -2rem; }
  .section { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .capacity-badges { gap: 0.75rem; }
  .stats-inner { gap: 1.5rem; }
  .stat-num { font-size: 2.2rem; }
}

/* ── House pages: navbar always solid/readable with blue text ───────── */
.navbar.house-nav { background: rgba(255,255,255,0.96) !important; }
.navbar.house-nav .nav-logo span:first-child { color: var(--blue) !important; }
.navbar.house-nav .nav-logo span:last-child  { color: var(--blue) !important; }
.navbar.house-nav .nav-menu > li > a         { color: var(--blue) !important; }
.navbar.house-nav .hamburger span            { background: var(--blue) !important; }
.navbar.house-nav.scrolled { background: var(--white) !important; }
