/* =============================================
   Lux Apartament — Sunny Spain
   style.css · L'Eden inspired
   ============================================= */

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

/* --- Variables --- */
:root {
  --teal:       #5a8c8b;
  --teal-dark:  #3d6b6a;
  --teal-light: #eaf2f2;
  --white:      #ffffff;
  --off-white:  #faf9f7;
  --text:       #555;
  --text-light: #aaa;
  --text-dark:  #2a2a2a;
  --border:     #e8e8e8;
  --nav-h:      64px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

/* --- Typography --- */
h1, h2, h3 {
  color: var(--teal);
  line-height: 1.2;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

p { color: var(--text); font-size: 14px; line-height: 1.85; }

.label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.section        { padding: 100px 0; }
.section--tight { padding: 0; }
.section--gray  { background: var(--off-white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 28px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
}
.btn-dark:hover { background: #444; }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn-whatsapp  { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1fba58; }
.btn-messenger { background: linear-gradient(135deg, #00c6ff, #0068ff); color: #fff; }

.btn-full { width: 100%; justify-content: center; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s, border-color 0.35s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: color 0.3s;
}
.nav-logo em { font-style: italic; font-weight: 300; opacity: 0.7; }
.nav.scrolled .nav-logo { color: var(--teal-dark); }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 20px;
}

/* --- Language switcher --- */
.lang-switcher {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
  margin-right: 20px;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  padding: 5px 8px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  border-radius: 3px;
  transition: all 0.2s;
  line-height: 1;
}
.lang-btn.active {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.85); }
.nav.scrolled .lang-btn { color: var(--text-light); }
.nav.scrolled .lang-btn.active { color: var(--teal); border-color: var(--teal); }
.nav.scrolled .lang-btn:hover:not(.active) { color: var(--text-dark); }
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: rgba(255,255,255,1); }
.nav.scrolled .nav-links a { color: var(--text-light); }
.nav.scrolled .nav-links a:hover { color: var(--teal); }

.nav.scrolled .nav-cta-btn {
  color: var(--teal);
  border-color: var(--teal);
}
.nav.scrolled .nav-cta-btn:hover {
  background: var(--teal);
  color: var(--white);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.9);
  transition: background 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--text-dark); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 40px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 13px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn-whatsapp { border: none; margin-top: 8px; }

.nav-mobile-lang {
  display: flex;
  gap: 8px;
  padding: 14px 0 4px;
}
.nav-mobile .nav-mobile-lang .lang-btn {
  color: var(--text-light);
  border-color: var(--border);
}
.nav-mobile .nav-mobile-lang .lang-btn.active {
  color: var(--teal);
  border-color: var(--teal);
}
.nav-mobile .nav-mobile-lang .lang-btn:hover:not(.active) {
  color: var(--text-dark);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,15,25,0.52) 0%,
    rgba(5,15,25,0.18) 38%,
    rgba(5,15,25,0.38) 60%,
    rgba(5,15,25,0.72) 100%
  );
  z-index: 1;
}

/* Centered logo in the middle of the photo */
.hero-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.hero-center-logo h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-center-logo p {
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Bottom content */
.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
}
.hero-bottom-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.hero-location {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  margin-top: 8px;
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.hero-title {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Scroll hint */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  padding-bottom: 4px;
}
.hero-scroll svg { animation: bounce-down 2s infinite; }

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* =============================================
   WELCOME (Bienvenue style)
   ============================================= */
.welcome {
  text-align: center;
  padding: 88px 0;
}
.welcome h2 { margin-bottom: 20px; }
.welcome p  { max-width: 560px; margin: 0 auto; font-size: 14px; }

/* =============================================
   PHOTO GRID (Le Bar / Le Restaurant style)
   ============================================= */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.photo-grid-item { display: flex; flex-direction: column; }
.photo-grid-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.photo-grid-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.photo-grid-img:hover img { transform: scale(1.04); }

/* Gallery slider */
.gallery-section { position: relative; }
.gallery-wrapper { position: relative; }
.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 calc(33.333% - 2px);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.gallery-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-img:hover img { transform: scale(1.04); }
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: var(--text-dark);
}
.gallery-btn:hover { background: #fff; }
.gallery-btn--prev { left: 16px; }
.gallery-btn--next { right: 16px; }
.gallery-placeholder {
  background: #f0f0ee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.photo-grid-label {
  text-align: center;
  padding: 14px 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* =============================================
   ALTERNATING SECTIONS
   ============================================= */
.alt-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.alt-section--reverse { direction: rtl; }
.alt-section--reverse > * { direction: ltr; }

.alt-img {
  overflow: hidden;
  position: relative;
}
.alt-img img { width: 100%; height: 100%; object-fit: cover; }

.alt-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--white);
}
.alt-text--gray { background: var(--off-white); }
.alt-text .label { margin-bottom: 14px; }
.alt-text h2 { margin-bottom: 20px; }
.alt-text p { margin-bottom: 16px; }
.alt-text p:last-of-type { margin-bottom: 28px; }

/* =============================================
   AMENITIES (simple list)
   ============================================= */
.amenities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.amenity-item:nth-child(3n) { border-right: none; }
.amenity-icon { font-size: 1.2rem; flex-shrink: 0; }
.amenity-item span { font-size: 13px; color: var(--text); font-weight: 300; }

/* =============================================
   BOOKING
   ============================================= */
.booking-section {
  padding: 100px 0;
  background: var(--off-white);
}

.booking-head {
  text-align: center;
  margin-bottom: 64px;
}
.booking-head h2 { margin-top: 12px; margin-bottom: 14px; }
.booking-head p { font-size: 14px; }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.booking-col {
  display: flex;
  flex-direction: column;
}
.booking-col--calendar {
  padding-bottom: 0;
}
.cal-contact-row {
  margin-top: auto !important;
  padding-top: 20px;
}
.booking-col h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--teal);
}
.booking-col > p { font-size: 15px; color: var(--text-dark); margin-bottom: 20px; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.form-error { font-size: 13px; color: #a33; display: none; }

.form-success {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--border);
  background: var(--white);
}
.form-success-icon {
  width: 40px; height: 40px;
  background: var(--teal);
  color: white;
  font-size: 1.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.form-success h3 { color: var(--teal); margin-bottom: 8px; }

.alt-contact-row {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.alt-contact-row > p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.alt-contact-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER (L'Eden style — centered, minimal)
   ============================================= */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-main {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand-block {
  flex: 0 0 220px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}
.footer-brand-name em { font-style: italic; font-weight: 300; }
.footer-brand-tagline {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 64px;
  flex: 1;
  flex-wrap: wrap;
}
.footer-col { text-align: left; }
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.footer-col p,
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 7px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--teal); }

.footer-inline-links {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}
.footer-inline-links a {
  display: inline;
  margin-bottom: 0;
}
.footer-inline-links span {
  color: var(--text-light);
  font-size: 12px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.footer-bottom p {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* =============================================
   PLACEHOLDERS
   ============================================= */
.placeholder-img {
  background: linear-gradient(135deg, #c5dde5 0%, #8fb8c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(90,140,139,0.25);
  font-size: 1.5rem;
  position: relative;
}
.placeholder-img::after {
  content: 'zdjęcie';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(90,140,139,0.4);
}

.calendar-embed-wrap {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
}
.calendar-embed-iframe {
  width: 100%;
  height: 480px;
  display: block;
  border: none;
}

/* Mock calendar (placeholder for Google Calendar) */
.mock-calendar {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  font-family: 'Jost', sans-serif;
  background: #ffffff;
}
.mock-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.mock-cal-month {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-transform: uppercase;
}
.mock-cal-nav {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-light);
  cursor: default;
  padding: 0 4px;
  line-height: 1;
}
.mock-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 12px 16px 16px;
}
.mock-cal-day-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 6px 0 10px;
}
.mock-cal-d,
.mock-cal-empty {
  text-align: center;
  padding: 7px 4px;
  font-size: 13px;
  border-radius: 50%;
  margin: 2px auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mock-cal-d.free {
  background: #e8f5f0;
  color: #2a7a5e;
  font-weight: 500;
}
.mock-cal-d.occupied {
  color: #ccc;
  text-decoration: line-through;
  font-weight: 300;
}
.mock-cal-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border);
}
.mock-cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.mock-cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.free-dot { background: #2a7a5e; }
.occupied-dot { background: #ddd; }

.form-direct-contact {
  margin-top: auto;
  padding-top: 20px;
}
.form-direct-contact > p {
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-direct-btns {
  display: flex;
  gap: 10px;
}
.form-direct-btns .btn {
  flex: 1;
  justify-content: center;
}

.placeholder-calendar,
.placeholder-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  border: 1px dashed var(--border);
  padding: 60px 24px;
  text-align: center;
}
.placeholder-calendar span,
.placeholder-map span { font-size: 2rem; }
.placeholder-calendar p,
.placeholder-map p {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--teal);
  margin: 0;
}
.placeholder-calendar small,
.placeholder-map small {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

/* =============================================
   REGION / OKOLICA
   ============================================= */
.region-section { background: var(--white); }

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.region-text h2 { margin: 16px 0 20px; }
.region-text > p { margin-bottom: 0; }

.destination-list { margin-top: 36px; }

.destination-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.destination-item:first-child { border-top: 1px solid var(--border); }

.destination-name {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.destination-dist {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--teal);
  font-weight: 300;
}

.region-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.region-map-embed {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.region-map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(25%) contrast(0.92) brightness(1.04);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .lang-switcher { display: none; }
  .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }
}

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

  .alt-section { grid-template-columns: 1fr; }
  .alt-section--reverse { direction: ltr; }
  .alt-text { padding: 56px 40px; }
  .alt-img { min-height: 320px; }

  .booking-grid { grid-template-columns: 1fr; gap: 48px; }

  .amenities-list { grid-template-columns: repeat(2, 1fr); }
  .amenity-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .amenity-item:nth-child(2n) { border-right: none; }

  .footer-cols { gap: 56px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 640px) {
  .container, .container--narrow { padding: 0 20px; }
  .section { padding: 72px 0; }

  .gallery-item { flex: 0 0 100%; }

  .hero-center-logo h1 { font-size: 2.4rem; }
  .hero-bottom-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-scroll { display: none; }

  .photo-grid { grid-template-columns: 1fr; }

  .amenities-list { grid-template-columns: 1fr; }
  .amenity-item { border-right: none; }

  .form-row--2 { grid-template-columns: 1fr; }

  .booking-grid { grid-template-columns: 1fr; }
}
