/* ── RESET & ROOT ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:  #f7f4ef;
  --dark:   #2e2e2c;
  --green:  #2d4a3e;
  --gold:   #b89b6a;
  --muted:  #6b6b63;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  transition: background 0.5s, padding 0.4s;
  box-sizing: border-box;
  max-width: 100vw;
}
nav.scrolled {
  background: rgba(26,26,24,0.92);
  backdrop-filter: blur(12px);
  padding: 18px 52px;
}
nav.nav-solid {
  background: var(--dark);
  padding: 20px 52px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 2em;
}
.nav-logo img { display: block; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active {
  color: #fff;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 2px;
}


.nav-cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: #fff; }

/* ── HERO (homepage) ─────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s ease;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide-1 { background-image: url('images/home/hero1.jpg'); }
.slide-2 { background-image: url('images/home/hero2.jpg'); }
.slide-3 { background-image: url('images/home/hero3.jpg'); }
.slide-4 { background-image: url('images/home/hero4.jpg'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(141deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: absolute;
  bottom: 14vh;
  left: 52px;
  right: 52px;
  color: #fff;
}
.hero-logo {
  display: block;
  width: 280px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.4s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s 0.7s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1s forwards;
}
.hero-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
  transition: background 0.25s, color 0.25s;
}
.hero-btn:hover { background: #fff; }

.hero-dots {
  position: absolute;
  bottom: 36px;
  right: 52px;
  display: flex;
  gap: 10px;
}
.dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.dot.active { background: var(--gold); width: 48px; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  display: block;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero-content {
  position: absolute;
  bottom: 60px;
  left: 52px;
  color: #fff;
}
.page-hero-content .section-label {
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
}
.page-hero-content h1 em { font-style: italic; color: var(--gold); }

/* ── SHARED SECTION COMPONENTS ───────────────────── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.btn-gold {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-gold:hover { background: var(--dark); color: var(--gold); }
.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* ── INTRO (homepage) ────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.intro-text {
  background: var(--dark);
  color: #fff;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 28px;
}
.intro-text h2 em { font-style: italic; color: var(--gold); }
.intro-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  margin-bottom: 16px;
}
.intro-image {
  background-image: url('images/home/intro.jpg');
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

/* ── FEATURES STRIP ───────────────────────────────── */
.features {
  background: var(--green);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  padding: 52px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.feature:last-child { border-right: none; }
.feature-icon { font-size: 1.6rem; margin-bottom: 18px; display: block; }
.feature h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ── APARTMENTS (homepage) ───────────────────────── */
.apartments { padding: 120px 52px; }
.apartments-header { text-align: center; margin-bottom: 72px; }
.apartments-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.apartments-header h2 em { font-style: italic; color: var(--gold); }
.apartments-header p {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}
.apartments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}
.apt-card { position: relative; overflow: hidden; cursor: pointer; }
.apt-card-img {
  width: 100%; height: 580px;
  object-fit: cover; display: block;
  transition: transform 0.8s ease;
}
.apt-card:hover .apt-card-img { transform: scale(1.04); }
.apt-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px;
  transition: background 0.4s;
}
.apt-card:hover .apt-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%);
}
.apt-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.apt-name {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.apt-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.apt-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s;
}
.apt-card:hover .apt-link { opacity: 1; transform: translateY(0); }
.apt-link::after { content: '→'; font-size: 1rem; transition: transform 0.25s; }
.apt-link:hover::after { transform: translateX(5px); }

/* ── LANDSCAPE PARALLAX ──────────────────────────── */
.landscape { position: relative; height: 75vh; overflow: hidden; }
.landscape-bg {
  position: absolute; inset: 0;
  background-image: url('images/home/hero1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.landscape-overlay { position: absolute; inset: 0; background: rgba(26,26,24,0.52); }
.landscape-content {
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 0 52px;
}
.landscape-content .section-label { text-align: center; }
.landscape-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.landscape-content h2 em { font-style: italic; color: var(--gold); }
.landscape-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
}

/* ── ACTIVITIES ───────────────────────────────────── */
.activities {
  background: var(--cream);
  padding: 100px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.activities-img-wrap { position: relative; }
.activities-img-main {
  width: 100%; height: 520px;
  object-fit: cover; display: block;
}
.activities-img-accent {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px; height: 280px;
  object-fit: cover;
  border: 6px solid var(--cream);
}
.activities-text .section-label { margin-bottom: 20px; }
.activities-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}
.activities-text h2 em { font-style: italic; color: var(--green); }
.activities-text p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
}
.activities-list {
  list-style: none;
  margin: 28px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.activities-list li {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.activities-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── CONTACT SECTION ─────────────────────────────── */
.contact-section {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-text {
  padding: 100px 80px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-text .section-label { color: var(--gold); margin-bottom: 24px; }
.contact-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 32px;
}
.contact-text h2 em { font-style: italic; color: var(--gold); }
.contact-details { margin-bottom: 40px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-item-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.contact-item-value a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s;
}
.contact-item-value a:hover { color: var(--gold); }
.contact-photo {
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

/* ── GALLERY (apartment pages) ───────────────────── */
.gallery-section { padding: 80px 52px; }
.gallery-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 40px;
}
.gallery-section h2 em { font-style: italic; color: var(--gold); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-grid .gallery-item-large {
  grid-column: span 2;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-item-large img { height: 564px; }
.gallery-item:hover img { transform: scale(1.05); }


/* ── APARTMENT DETAIL PAGE ───────────────────────── */
.apt-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.apt-detail-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.apt-detail-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 28px;
}
.apt-detail-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
}
.apt-detail-meta {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.apt-detail-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apt-detail-meta-item span:first-child {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.apt-detail-meta-item span:last-child {
  font-family: var(--serif);
  font-size: 1.3rem;
}
.apt-detail-hero-img {
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  width: 100%;
}

/* ── AMENITIES ───────────────────────────────────── */
.amenities-section {
  background: var(--dark);
  padding: 80px 52px;
  color: #fff;
}
.amenities-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 56px;
  text-align: center;
}
.amenities-section h2 em { font-style: italic; color: var(--gold); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.amenity-cat h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.amenity-cat ul {
  list-style: none;
}
.amenity-cat ul li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.amenity-cat ul li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── BELEGUNGSKALENDER ───────────────────────────── */
.calendar-section {
  padding: 80px 52px 60px;
}
.calendar-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 32px;
  color: var(--dark);
}

/* ── BOOKING CTA STRIP ───────────────────────────── */
.booking-strip {
  background: var(--green);
  padding: 72px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.booking-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
}
.booking-strip h2 em { font-style: italic; color: var(--gold); }

/* ── FAQ PAGE ────────────────────────────────────── */
.faq-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 52px;
}
.faq-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 52px;
}
.faq-section h2 em { font-style: italic; color: var(--gold); }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
}
.faq-answer ul {
  margin: 10px 0 10px 20px;
}
.faq-answer ul li {
  margin-bottom: 6px;
}
.faq-item.open .faq-answer { display: block; }

/* ── ABOUT PAGE ──────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 65vh;
}
.about-story-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  color: var(--dark);
}
.about-story-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 28px;
}
.about-story-text h2 em { font-style: italic; color: var(--gold); }
.about-story-text p {
  font-size: 0.93rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-story-img {
  background-size: cover;
  background-position: center;
}
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.about-photo-grid a {
  display: block;
  overflow: hidden;
}
.about-photo-grid img {
  width: 100%; height: 300px;
  object-fit: cover; display: block;
  transition: transform 0.6s;
}
.about-photo-grid a:hover img { transform: scale(1.03); }

.about-location {
  background: var(--dark);
  padding: 80px 52px;
  color: #fff;
}
.about-location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-location-inner img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.about-values {
  background: var(--cream);
  padding: 80px 52px;
  text-align: center;
}
.about-values h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 52px;
}
.about-values h2 em { font-style: italic; color: var(--gold); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.value-item {
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.1);
}
.value-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--dark);
}
.value-item p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ── CONTACT FULL PAGE ───────────────────────────── */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.contact-page-form {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-page-form h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.contact-page-form h2 em { font-style: italic; color: var(--gold); }
.contact-page-form p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.25s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success {
  background: var(--green);
  color: #fff;
  padding: 16px 20px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  display: none;
}
.form-success.show { display: block; }
.contact-page-info {
  background: var(--dark);
  color: #fff;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-page-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 36px;
}
.info-block {
  margin-bottom: 32px;
}
.info-block h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.info-block p, .info-block a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  text-decoration: none;
  display: block;
  transition: color 0.25s;
}
.info-block a:hover { color: var(--gold); }

/* ── LEGAL PAGES ─────────────────────────────────── */
.legal-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 52px;
}
.legal-section h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 36px 0 14px;
  color: var(--dark);
}
.legal-section p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 14px;
}
.legal-section a {
  color: var(--gold);
  text-decoration: none;
}
.legal-section a:hover { text-decoration: underline; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: #2e2e2e;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img { display: block; opacity: 1; }
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ── REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── BURGER / MOBILE MENU ────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow-y: auto;
  padding: 100px 24px 48px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu ul a {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu ul a:hover,
.mobile-menu ul a.active { color: var(--gold); }
.mobile-menu .nav-cta {
  display: inline-block;
  margin-top: 8px;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1280px) {
  .nav-cta { display: none; }
}

@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled, nav.nav-solid { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-logo { margin-right: 0; }
  .nav-logo img { height: 46px; max-width: calc(100vw - 100px); }
  .hero-btn-discover { display: none; }
  .hero-scroll { display: none; }
  .hero-content { left: 28px; right: 28px; bottom: 10vh; }
  .hero-dots { right: 28px; }
  .hero-scroll { left: 28px; }
  .hero-logo { width: 200px; }
  .page-hero-content { left: 24px; bottom: 40px; }
  .intro { grid-template-columns: 1fr; }
  .intro-text { padding: 64px 28px; }
  .intro-image { min-height: 320px; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature { padding: 36px 24px; }
  .apartments { padding: 72px 24px; }
  .apartments-grid { grid-template-columns: 1fr; }
  .apt-card-img { height: 420px; }
  .landscape-bg { background-attachment: scroll; }
  .activities { grid-template-columns: 1fr; padding: 64px 24px; gap: 40px; }
  .activities-img-accent { display: none; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-text { padding: 64px 28px; }
  .contact-photo { min-height: 280px; }
  .apt-detail { grid-template-columns: 1fr; }
  .apt-detail-text { padding: 52px 28px; }
  .apt-detail-hero-img { height: 340px; }
  .apt-detail-meta { flex-wrap: wrap; gap: 20px; }
  .apt-detail-meta-item { min-width: 0; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .amenities-section { padding: 64px 28px; }
  .gallery-section { padding: 60px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item-large { grid-column: span 2; }
  .gallery-item img, .gallery-item-large img { height: 220px; }
  .booking-strip { flex-direction: column; align-items: flex-start; padding: 52px 28px; }
  .faq-section { padding: 60px 24px; }
  .about-story { grid-template-columns: 1fr; }
  .about-story-text { padding: 64px 28px; }
  .about-story-img { min-height: 300px; }
  .about-photo-grid { grid-template-columns: 1fr 1fr; }
  .about-location { padding: 60px 28px; }
  .about-location-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-location-inner img { height: 280px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-values { padding: 60px 24px; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-page-form { padding: 60px 24px; }
  .contact-page-info { padding: 60px 24px; }
  .legal-section { padding: 80px 24px; }
  footer { padding: 36px 24px; flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 12px; }
  .calendar-section { padding: 60px 0 40px; }
  .calendar-section h2 { padding: 0 24px; }
  .calendar-section iframe { display: block; width: 100%; }
  .hero-overlay{ background: linear-gradient(165deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.1) 100%); }
}

@media (max-width: 370px) {
  nav { padding: 14px 16px; overflow: hidden; }
  nav.scrolled, nav.nav-solid { padding: 12px 16px; }
  .nav-logo { min-width: 0; overflow: hidden; max-width: calc(100vw - 80px); }
  .nav-logo img { height: 34px; width: auto; display: block; }
  .nav-burger { flex-shrink: 0; margin-left: 8px; }
}
