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

:root {
  --deep-blue: #134a63;
  --mid-blue: #2c7da0;
  --terracotta: #c56a45;
  --sand: #e7d6b6;
  --cream: #f6f2e6;
  --dark: #1a1a18;
  --text: #2c2a24;
  --text-muted: #7a7568;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 2px;
  --radius-lg: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep-blue);
}

.display { font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; letter-spacing: -0.02em; }
.headline { font-size: clamp(2rem, 4vw, 3.2rem); }
.subheadline { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(246, 242, 230, 0.97);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.nav.scrolled .nav-logo { color: var(--deep-blue); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--terracotta); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-book {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em;
  transition: var(--transition) !important;
}
.nav-book:hover { background: var(--deep-blue) !important; color: var(--white) !important; }
.nav-book::after { display: none !important; }

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav-menu-btn span { background: var(--deep-blue); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--deep-blue) 0%, #0d3347 60%, #1a4a35 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-score {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}

.hero-score-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sand);
}

.hero-score-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
}

.hero-location::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--terracotta);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.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.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--deep-blue); }

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

.btn-dark {
  background: var(--deep-blue);
  color: var(--white);
}
.btn-dark:hover { background: var(--terracotta); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe5d; }

/* ─── SCORE BAND ─── */
.score-band {
  background: var(--deep-blue);
  padding: 3rem 0;
}

.score-band-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.score-item-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.score-item-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── INTRO SECTION ─── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-wrap::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid var(--sand);
  z-index: 0;
}

.intro-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.intro-image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.intro-text .overline { margin-bottom: 1rem; }
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { color: var(--text-muted); font-size: 0.95rem; }

.intro-quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--terracotta);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--deep-blue);
  line-height: 1.6;
}

/* ─── APARTMENTS ─── */
.apartments-bg { background: var(--white); }

.apartments-header {
  text-align: center;
  margin-bottom: 4rem;
}
.apartments-header .overline { margin-bottom: 1rem; }
.apartments-header h2 { margin-bottom: 1rem; }
.apartments-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
}

.apt-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  group: true;
}

.apt-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.apt-card-placeholder {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.apt-card:hover .apt-card-image,
.apt-card:hover .apt-card-placeholder { transform: scale(1.04); }

.apt-card-body {
  padding: 1.8rem;
  border-bottom: 1px solid var(--sand);
}

.apt-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.apt-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep-blue);
}

.apt-price {
  text-align: right;
}
.apt-price-from {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.apt-price-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--terracotta);
}
.apt-price-night {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.apt-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.apt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--sand);
  color: var(--text-muted);
}

.apt-card-footer {
  padding: 1.2rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apt-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.apt-link:hover { color: var(--terracotta); }
.apt-link::after {
  content: '→';
  transition: var(--transition);
}
.apt-link:hover::after { transform: translateX(4px); }

/* ─── FEATURES ─── */
.features-bg { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

.feature-item { text-align: center; }

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.2rem;
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1.3rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}
.feature-text { font-size: 0.85rem; color: var(--text-muted); }

/* ─── REVIEWS ─── */
.reviews-bg { background: var(--deep-blue); }
.reviews-bg .overline { color: var(--sand); }
.reviews-bg h2 { color: var(--white); }

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
}

.review-stars {
  color: var(--sand);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-author::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--terracotta);
}

/* ─── AREA ─── */
.area-bg { background: var(--white); }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.area-list { margin-top: 2rem; }

.area-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--sand);
}
.area-item:last-child { border-bottom: none; }

.area-item-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sand);
  font-weight: 300;
  min-width: 2rem;
  line-height: 1;
  padding-top: 0.2rem;
}

.area-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 0.3rem;
}
.area-item-text { font-size: 0.85rem; color: var(--text-muted); }

.area-image-stack { position: relative; }
.area-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.area-image-placeholder {
  width: 100%;
  height: 480px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.area-image-inset {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--white);
}
.area-image-inset-placeholder {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  background: var(--terracotta);
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-align: center;
}

/* ─── ABOUT ─── */
.about-bg { background: var(--cream); }

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text .overline { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

.about-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-image-placeholder {
  width: 100%;
  height: 560px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ─── CONTACT ─── */
.contact-bg { background: var(--deep-blue); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-text .overline { color: var(--sand); margin-bottom: 1rem; }
.contact-text h2 { color: var(--white); margin-bottom: 1rem; }
.contact-text p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

.contact-details { margin: 2rem 0; }
.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  min-width: 90px;
  padding-top: 0.15rem;
}

.contact-ctas { display: flex; flex-direction: column; gap: 0.75rem; }

.contact-form-side h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* BOOKING WIDGET PLACEHOLDER */
.booking-widget-placeholder {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.lang-btn {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-family: var(--font-body);
}
.lang-btn.active, .lang-btn:hover { color: var(--white); }
.nav.scrolled .lang-btn { color: var(--text-muted); }
.nav.scrolled .lang-btn.active,
.nav.scrolled .lang-btn:hover { color: var(--deep-blue); }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  max-width: 260px;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.2rem;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--sand); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ─── APT DETAIL PAGE ─── */
.apt-hero {
  min-height: 65vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.apt-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--deep-blue);
}

.apt-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.apt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,74,99,0.95) 0%, transparent 60%);
}

.apt-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.apt-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.apt-detail-main { padding: 3rem 0; }

.apt-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.amenity-dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

.apt-booking-panel {
  position: sticky;
  top: 7rem;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 2rem;
}

.panel-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sand);
}
.panel-price-from { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.panel-price-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--terracotta); line-height: 1; }
.panel-price-night { font-size: 0.75rem; color: var(--text-muted); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--deep-blue);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--sand); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .intro-grid, .area-grid, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .intro-image-wrap::before { display: none; }
  .area-image-inset, .area-image-inset-placeholder { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .apt-detail-grid { grid-template-columns: 1fr; }
  .apt-booking-panel { position: static; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .section { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .apartments-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ─── LANG SECTIONS ─── */
[data-lang] { display: none; }
[data-lang].active { display: block; }
[data-lang-inline] { display: none; }
[data-lang-inline].active { display: inline; }

/* ─── PHOTO GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 3rem;
}
.gallery-grid .gallery-hero {
  grid-column: span 3;
  height: 420px;
}
.gallery-grid .gallery-thumb {
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-grid .gallery-thumb img,
.gallery-grid .gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid .gallery-thumb:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-nav {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}
.lightbox-nav button {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.lightbox-nav button:hover { background: rgba(255,255,255,0.25); }
.lightbox-counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-hero { grid-column: span 2; height: 280px; }
  .gallery-grid .gallery-thumb { height: 160px; }
}
