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


:root {
  --green-deep:   #1c3a28;
  --green-mid:    #2e5c3e;
  --green-light:  #4a7c5f;
  --green-pale:   #c8ddd0;
  --cream:        #f7f3ec;
  --cream-warm:   #efe8db;
  --gold:         #c9a96e;
  --gold-light:   #e8d5b0;
  --text-dark:    #1a1f18;
  --text-mid:     #4a5247;
  --text-light:   #8a9487;
  --white:        #ffffff;
  --shadow-soft:  0 4px 30px rgba(28,58,40,0.08);
  --shadow-deep:  0 20px 60px rgba(28,58,40,0.18);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.1; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: all 0.4s ease;
}
nav.scrolled {
  padding: 0.9rem 4rem;
  background: rgba(247,243,236,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--white); text-decoration: none; letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4); transition: color 0.3s;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-img {
  width: 32px; height: 32px; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: filter 0.3s, opacity 0.3s;
}
nav.scrolled .nav-logo { color: var(--green-deep); text-shadow: none; }
nav.scrolled .nav-logo-img { filter: none; opacity: 1; }
.nav-logo span { color: var(--gold); }
@media (max-width: 600px) {
  .nav-logo { font-size: 1.1rem; }
  .nav-logo-img { width: 26px; height: 26px; }
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5); transition: color 0.2s;
}
nav.scrolled .nav-links a { color: var(--text-mid); text-shadow: none; }
.nav-links a:hover { color: var(--gold); }
nav.scrolled .nav-links a:hover { color: var(--green-deep); }
.nav-cta {
  background: var(--gold) !important; color: var(--green-deep) !important;
  padding: 0.55rem 1.3rem; border-radius: 2px;
  text-shadow: none !important; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0.3rem;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: 0.3s; }
nav.scrolled .hamburger span { background: var(--green-deep); }

/* ── HERO SLIDESHOW ── */
#hero {
  position: relative; height: 100vh; min-height: 600px; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}

/* Overlay: dark gradient left, lighter right so logo shines through */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20,44,30,0.75) 0%,
    rgba(20,44,30,0.45) 45%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

/* ── LOGO WATERMARK ── */
.hero-logo-mark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(82vw, 980px);
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  z-index: 2;
  /* Subtle slow rotation animation */
  animation: logoFloat 20s ease-in-out infinite alternate;
  filter: brightness(2) saturate(0);
  mix-blend-mode: screen;
}

@keyframes logoFloat {
  from { transform: translateY(-50%) scale(1) rotate(-2deg); }
  to   { transform: translateY(-52%) scale(1.04) rotate(1deg); }
}

/* ── HERO CONTENT ── */
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 5rem;
  z-index: 3;
  /* Center like .container so text aligns with sections below */
  max-width: 1200px;
  margin: 0 auto;
  left: 0; right: 0;
  padding-left: 3rem;
  padding-right: 3rem;
}
.hero-eyebrow {
  font-size: 0.73rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; font-weight: 500;
  opacity: 0; animation: fadeUp 0.9s 0.3s forwards;
}
.hero-title {
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  color: var(--white); line-height: 1.0; margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
  max-width: 680px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7;
  max-width: 460px; margin-bottom: 3rem; font-weight: 300;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  background: var(--gold); color: var(--green-deep);
  padding: 0.95rem 2.4rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.25s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.4); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 0.95rem 2.4rem; font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.25s; display: inline-block;
  backdrop-filter: blur(4px); background: rgba(255,255,255,0.06);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); }

/* ── HERO BOTTOM BAR ── */
.hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 7rem;
  background: linear-gradient(to top, rgba(20,44,30,0.55) 0%, transparent 100%);
  z-index: 3;
}
.hero-badge-pill {
  background: rgba(20,44,30,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 40px;
  padding: 0.6rem 1.3rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.82rem; color: var(--white);
  opacity: 0; animation: fadeIn 1s 1.2s forwards;
}
.hero-badge-pill strong { color: var(--gold); font-weight: 600; }
.hero-dots {
  display: flex; gap: 0.6rem; align-items: center;
  opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
.hero-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.35s; border: none; padding: 0;
}
.hero-dot.active { background: var(--gold); width: 44px; }

/* ── SECTIONS ── */
section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.2rem;
}
.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  color: var(--green-deep); line-height: 1.1; margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--green-light); }
.divider { width: 48px; height: 2px; background: var(--gold); margin-bottom: 2rem; }

/* ── INTRO ── */
#intro { background: var(--cream); padding: 5rem 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.intro-text p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; }
.intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stat-card {
  background: var(--cream-warm); border-left: 3px solid var(--gold);
  padding: 1.5rem 1.5rem 1.5rem 1.8rem;
}
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--green-deep); line-height: 1; font-weight: 300; }
.stat-label { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.1em; margin-top: 0.3rem; text-transform: uppercase; }

/* ── APARTMENTS ── */
.apartment-section { padding: 4rem 0; }
.apartment-section:nth-child(odd) { background: var(--cream); }
.apartment-section:nth-child(even) { background: var(--cream-warm); }
.apt-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 580px;
  border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-deep);
}
.apt-grid.reverse { direction: rtl; }
.apt-grid.reverse > * { direction: ltr; }
.apt-gallery-wrap { position: relative; overflow: hidden; min-height: 460px; background: #f0ece4; }
.apt-images img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; transition: transform 0.8s ease; }
.apt-images:hover img { transform: scale(1.04); }
.apt-image-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--green-deep); color: var(--gold);
  font-family: 'Cormorant Garamond', serif; font-size: 0.9rem;
  padding: 0.4rem 0.9rem; letter-spacing: 0.08em; border-radius: 2px;
}
.apt-content { background: var(--white); padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.apt-nr { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--cream-warm); line-height: 1; font-weight: 300; margin-bottom: 10px; user-select: none; }
.apt-title { font-size: 2.2rem; color: var(--green-deep); margin-bottom: 0.5rem; }
.apt-subtitle { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; font-weight: 500; }
.apt-desc { font-size: 0.96rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 2.5rem; font-weight: 300; }
.apt-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 2.5rem; }
.apt-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-mid); }
.apt-feature::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.apt-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-book {
  background: var(--green-deep); color: var(--cream);
  padding: 0.85rem 2rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.25s;
}
.btn-book:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-enquire {
  background: transparent; color: var(--green-deep);
  border: 1px solid var(--green-deep);
  padding: 0.85rem 2rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.25s;
}
.btn-enquire:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-1px); }

/* 360° Banner */
.tour360-banner {
  display: flex; align-items: center; gap: 2rem;
  background: var(--green-deep);
  padding: 2rem 3rem;
  cursor: pointer; transition: background 0.25s;
  border-radius: 0 0 4px 4px;
  margin-top: -1px;
}
.tour360-banner:hover { background: var(--green-mid); }
.tour360-icon { color: var(--gold); flex-shrink: 0; opacity: 0.9; }
.tour360-text { flex: 1; }
.tour360-label {
  display: inline-block; background: var(--gold); color: var(--green-deep);
  font-family: 'Outfit', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 2px; margin-bottom: 0.5rem;
}
.tour360-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  color: var(--cream); margin: 0 0 0.3rem; font-weight: 600;
}
.tour360-sub { font-size: 0.88rem; color: rgba(247,243,236,0.65); margin: 0; line-height: 1.5; }
.tour360-cta {
  display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
  color: var(--gold); font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .tour360-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
  .tour360-cta { display: none; }
}
.apt-size-tag { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--text-light); font-style: italic; }
.apt-cal-link {
  display: inline-block; margin-top: 1rem;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color 0.25s, color 0.25s;
}
.apt-cal-link:hover { color: var(--green-deep); border-bottom-color: var(--gold); }

/* ── HIGHLIGHTS ── */
#highlights { background: var(--green-deep); padding: 4rem 0; }
#highlights .section-title { color: var(--cream); }
.highlights-intro { font-size: 1.05rem; color: var(--green-pale); font-weight: 300; line-height: 1.7; max-width: 600px; margin-bottom: 3rem; }
.highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.1); }
.highlight-card { padding: 1.8rem 2rem; border: 1px solid rgba(255,255,255,0.08); transition: background 0.25s; }
.highlight-card:hover { background: var(--green-mid); }
.highlight-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--gold); margin-bottom: 0.4rem; font-weight: 600; }
.highlight-desc { font-size: 0.88rem; color: rgba(247,243,236,0.7); line-height: 1.6; margin: 0; }.highlight-desc { font-size: 0.82rem; color: var(--green-pale); line-height: 1.6; font-weight: 300; }

/* ── BONUS ── */
#bonus { background: var(--cream-warm); padding: 5rem 0; }
.bonus-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.4fr; box-shadow: var(--shadow-deep);
}
.bonus-visual {
  background: var(--green-mid);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4rem 3rem; gap: 1.5rem; position: relative; overflow: hidden;
}
.bonus-visual::before { content: '🐧'; position: absolute; font-size: 12rem; opacity: 0.07; transform: rotate(-15deg); top: -1rem; right: -2rem; }
.bonus-pct { font-family: 'Cormorant Garamond', serif; font-size: 6rem; color: var(--gold); font-weight: 300; line-height: 1; }
.bonus-pct-label { font-size: 1rem; color: var(--cream); letter-spacing: 0.08em; text-align: center; font-weight: 300; }
.bonus-content { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.bonus-content .section-title { font-size: 2.2rem; margin-bottom: 1rem; }
.bonus-content p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300; }
.bonus-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-pale); color: var(--green-deep);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 0.4rem 1rem; border-radius: 2px; margin-right: 0.5rem; margin-bottom: 0.5rem;
}

/* ── LOCATION ── */
#location { background: var(--cream); padding: 6rem 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.location-text p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300; }
.loc-item { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.loc-item:last-child { border-bottom: none; }
.loc-icon { width: 36px; height: 36px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.loc-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
.loc-text strong { color: var(--text-dark); font-weight: 600; display: block; margin-bottom: 0.1rem; }
.map-embed { background: var(--cream-warm); border-radius: 4px; overflow: hidden; height: 420px; box-shadow: var(--shadow-soft); position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.address-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--white); padding: 1rem 1.3rem; border-radius: 4px;
  box-shadow: var(--shadow-soft); font-size: 0.82rem; color: var(--text-dark); line-height: 1.5;
}

/* ── BOOKING ── */
#booking { background: var(--green-deep); padding: 6rem 0; text-align: center; }
.booking-inner { max-width: 700px; margin: 0 auto; }
#booking .section-label { justify-content: center; display: flex; }
#booking .section-title { color: var(--cream); margin-bottom: 1.5rem; font-size: clamp(2.5rem, 4vw, 4rem); }
.booking-sub { font-size: 1.05rem; color: var(--green-pale); font-weight: 300; line-height: 1.7; margin-bottom: 3rem; }
.booking-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.btn-large { padding: 1.1rem 2.8rem; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; text-decoration: none; transition: all 0.25s; }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,169,110,0.3); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.3); color: var(--cream); }
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.contact-info { margin-top: 2.5rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; align-items: flex-start; }
.contact-info-item { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 0.35rem; padding: 1.4rem 2rem; flex: 1; min-width: 180px; }
.contact-info-item:last-child { }
.contact-info-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-family: 'Outfit', sans-serif; }
.contact-info-value { font-size: 0.92rem; color: var(--cream); font-family: 'Outfit', sans-serif; text-align: center; }
.contact-info-value a { color: var(--cream); text-decoration: none; }
.contact-info-value a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer { background: #111d16; padding: 3rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--cream); font-weight: 400; display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-img { width: 28px; height: 28px; object-fit: contain; opacity: 0.7; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream); align-items: center; justify-content: center;
    gap: 2.5rem; z-index: 200;
  }
  .nav-links.open a { font-size: 1.2rem; color: var(--text-dark) !important; text-shadow: none !important; }
  .hero-content { padding: 7rem 20px 0; max-width: 100%; left: 0; right: 0; margin: 0; }
  .hero-bottom { padding: 1rem 20px; flex-wrap: wrap; gap: 0.6rem; }
  .hero-sub { line-height: 1.45; font-size: 0.98rem; margin-bottom: 2rem; }
  .hero-logo-mark { width: 95vw; opacity: 0.13; right: -10%; }
  .intro-grid, .apt-grid, .apt-grid.reverse, .bonus-card, .location-grid { grid-template-columns: 1fr; }
  .apt-grid.reverse { direction: ltr; }
  .apt-grid.reverse .apt-gallery-wrap { order: -1; }
  .apt-grid.reverse .apt-content { order: 1; }
  .apt-images { min-height: 260px; }
  .apt-gallery-wrap { min-height: 280px; }
  .apt-content { padding: 2rem 1.5rem; }
  .apt-nr { font-size: 3.5rem; margin-bottom: 10px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  #highlights > .container > div { grid-template-columns: 1fr; gap: 2rem; }
  .bonus-visual { padding: 2rem 1.5rem; }
  .bonus-pct { font-size: 4rem; }
  .bonus-content { padding: 2rem 1.5rem; }
  .bonus-content .section-title { font-size: 1.9rem; }
  .intro-grid { gap: 3rem; }
  .location-grid { gap: 3rem; }
  .map-embed { height: 300px; }
  .container { padding: 0 20px; }
  section { padding: 3.5rem 0; }
  .booking-actions { flex-direction: column; align-items: stretch; }
  .btn-large { padding: 1rem 1.5rem; text-align: center; white-space: nowrap; }
  .contact-info { flex-direction: column; }
  .contact-info-item { }
}
@media (max-width: 600px) {
  .hero-title { font-size: 4.8rem; }
  .apt-features { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  #highlights > .container > div { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-actions { flex-direction: column; gap: 0.8rem; align-items: flex-start; }
  .container { padding: 0 20px; }
  .hero-bottom { padding: 0.8rem 20px; }
  .hero-badge-pill { font-size: 0.75rem; padding: 0.5rem 1rem; }
  .apt-gallery-wrap { min-height: 240px; }
  .apt-content { padding: 1.5rem; }
  .apt-desc { font-size: 0.92rem; }
  .bonus-visual { padding: 1.5rem 1rem; }
  .bonus-pct { font-size: 3rem; }
  .bonus-pct-label { font-size: 0.88rem; }
  .bonus-content { padding: 1.5rem; }
  .bonus-content .section-title { font-size: 1.6rem; }
  section { padding: 2.5rem 0; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .booking-sub { font-size: 0.95rem; margin-bottom: 2rem; }
  .apt-grid.reverse .apt-gallery-wrap { order: -1; }
  .apt-grid.reverse .apt-content { order: 1; }
  #preise .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ── GALLERY ── */
.apt-gallery-wrap { position:relative; overflow:hidden; min-height:460px; background:var(--cream); display:flex; align-items:center; justify-content:center; }
.apt-gallery-wrap img.gallery-img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
  display:none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.apt-gallery-wrap img.gallery-img:hover { transform: scale(1.02); }
.apt-gallery-wrap img.gallery-img.active { display:block; }
.apt-image-badge {
  position:absolute; top:1.5rem; left:1.5rem;
  background:var(--green-deep); color:var(--gold);
  font-family:'Cormorant Garamond',serif; font-size:1.8rem;
  padding:0.8rem 1.8rem; letter-spacing:0.08em; border-radius:2px; z-index:2;
}
.gallery-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(28,58,40,0.55); border:none; cursor:pointer;
  color:#fff; font-size:1.6rem; line-height:1;
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  z-index:3; transition:background 0.2s, transform 0.15s;
  backdrop-filter:blur(4px);
}
.gallery-arrow:hover { background:var(--green-deep); transform:translateY(-50%) scale(1.08); }
.gallery-arrow.prev { left:1rem; }
.gallery-arrow.next { right:1rem; }
.gallery-dots {
  position:absolute; bottom:0.9rem; left:50%; transform:translateX(-50%);
  display:flex; gap:5px; z-index:3;
}
.gallery-dot {
  width:6px; height:6px; border-radius:50%;
  background:rgba(255,255,255,0.45); border:none; cursor:pointer; padding:0;
  transition:background 0.2s, transform 0.2s;
}
.gallery-dot.active { background:var(--gold); transform:scale(1.3); }

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,20,14,0.82);
  backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 5vh 1rem 3rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  overflow-y: auto;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--cream);
  border-radius: 4px;
  max-width: 760px; width: 100%;
  padding: 3.5rem 4rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.modal-close {
  position: absolute; top: 1.5rem; right: 1.8rem;
  font-size: 1.8rem; color: var(--text-light);
  background: none; border: none; cursor: pointer;
  line-height: 1; transition: color 0.2s;
}
.modal-close:hover { color: var(--green-deep); }
.modal-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; color: var(--green-deep);
  margin-bottom: 2rem;
}
.modal-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--green-deep);
  margin: 2rem 0 0.6rem; font-weight: 600;
}
.modal-box p {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 0.8rem;
  font-weight: 300;
}
.modal-box a { color: var(--green-light); }
.modal-box .modal-divider {
  width: 40px; height: 2px; background: var(--gold);
  margin: 0.5rem 0 1.5rem;
}
@media (max-width: 600px) {
  .modal-box { padding: 2.5rem 1.5rem; }
}
/* ── Lightbox ── */
#lightbox {
  display:none; position:fixed; inset:0; z-index:1000;
  background:rgba(0,0,0,0.92); align-items:center; justify-content:center;
  flex-direction:column;
}
#lightbox.open { display:flex; }
#lightbox-img {
  max-width:92vw; max-height:82vh;
  object-fit:contain; border-radius:4px;
  user-select:none;
}
#lightbox-close {
  position:absolute; top:1.2rem; right:1.5rem;
  background:none; border:none; color:#fff; font-size:2.2rem;
  cursor:pointer; line-height:1; opacity:0.8;
}
#lightbox-close:hover { opacity:1; }
#lightbox-prev, #lightbox-next {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.12); border:none; color:#fff;
  font-size:1.8rem; width:52px; height:52px; border-radius:50%;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background 0.2s;
}
#lightbox-prev:hover, #lightbox-next:hover { background:rgba(255,255,255,0.25); }
#lightbox-prev { left:1.2rem; }
#lightbox-next { right:1.2rem; }
#lightbox-counter {
  margin-top:1rem; color:rgba(255,255,255,0.5);
  font-family:'Outfit',sans-serif; font-size:0.8rem; letter-spacing:0.1em;
}

/* ── Belegungskalender ── */
.cal-tabs {
  display:flex; justify-content:center; gap:0.6rem; margin-bottom:2rem;
}
.cal-tab {
  font-family:'Outfit',sans-serif; font-size:0.85rem; letter-spacing:0.06em;
  padding:0.7rem 1.8rem; border-radius:999px; cursor:pointer;
  border:1px solid var(--green-deep); background:transparent; color:var(--green-deep);
  transition:all 0.25s ease;
}
.cal-tab:hover { background:rgba(28,58,40,0.07); }
.cal-tab.active { background:var(--green-deep); color:var(--cream); }
.cal-panel { display:none; }
.cal-panel.active { display:block; }
.cal-wrap {
  overflow-x:auto; max-width:920px; margin:0 auto;
  background:var(--white); border-radius:12px; padding:1rem;
  box-shadow:var(--shadow-soft);
}
.cal-legend {
  display:flex; justify-content:center; gap:1.6rem; margin-top:1.4rem;
  font-size:0.82rem; color:var(--text-mid);
}
.cal-legend-item { display:inline-flex; align-items:center; gap:0.45rem; }
.cal-legend-dot {
  width:13px; height:13px; border-radius:3px; display:inline-block;
}
.cal-slider-shell {
  display:flex; align-items:center; justify-content:center; gap:0.9rem;
  margin:0.5rem 0 1rem;
}
.cal-slider {
  display:flex; justify-content:center; align-items:flex-start; gap:1.2rem;
  flex-wrap:nowrap;
}
.cal-month table { margin:0 auto; }
.cal-nav {
  flex-shrink:0;
  background:var(--green-deep); border:none; color:var(--cream);
  font-size:1.5rem; width:42px; height:42px; border-radius:50%;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background 0.2s, opacity 0.2s; line-height:1;
}
.cal-nav:hover:not(:disabled) { background:var(--green-mid); }
.cal-nav:disabled { opacity:0.25; cursor:default; }
/* Widget-Optik an Seitenstil angleichen */
.cal-wrap, .cal-wrap td, .cal-wrap th {
  font-family:'Outfit',sans-serif !important;
}
.cal-month table {
  border:1px solid var(--cream-warm) !important;
  background:var(--white) !important;
}
.cal-month table td {
  font-size:0.78rem !important;
  padding:3px 5px !important;
}
/* Nur die Monatsnamen-Zeile (thead) einfärben – Tageszeilen liegen im tbody
   derselben Tabelle und dürfen NICHT getroffen werden */
.cal-month > table > thead tr:first-child td,
.cal-month > table > thead tr:first-child th {
  background:var(--green-deep) !important;
  color:var(--cream) !important;
  font-size:0.7rem !important;
  font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  padding:6px 4px !important;
}
.cal-wrap a {
  font-family:'Outfit',sans-serif !important;
  font-size:0.85rem;
  color:var(--green-mid) !important;
  text-decoration:none !important;
  border-bottom:1px solid var(--gold);
}
.cal-wrap a:hover { color:var(--green-deep) !important; }
.cal-wrap a.cal-book-link {
  display:table;
  margin:0.9rem auto 0.2rem;
}
