/* ============================================
   Seeblick Sappl — Alpine Hospitality Design
   Inspiriert von josalzburg.com & hotel-alpendorf.at
   Warm · Naturverbunden · Premium
   ============================================ */

:root {
  /* Primary — Forest Green */
  --forest-50: #f2f5f0;
  --forest-100: #dbe3d5;
  --forest-200: #b8c9ab;
  --forest-300: #8faa78;
  --forest-400: #6b8c52;
  --forest-500: #4a6b35;
  --forest-600: #3a5529;
  --forest-700: #2c4120;
  --forest-800: #1e2d16;
  --forest-900: #111a0d;

  /* Accent — Alpine Gold */
  --gold-50: #faf6ed;
  --gold-100: #f0e4c3;
  --gold-200: #e5d199;
  --gold-300: #d9bc6b;
  --gold-400: #cda63d;
  --gold-500: #b8912e;
  --gold-600: #947424;
  --gold-700: #70571b;
  --gold-800: #4d3c12;

  /* Warm — Cream */
  --cream-50: #fefdfb;
  --cream-100: #faf7f0;
  --cream-200: #f5efe1;
  --cream-300: #ede3cc;
  --cream-400: #e2d4b1;

  /* Wood — Walnut */
  --walnut-300: #c9b49c;
  --walnut-500: #9e7c5c;
  --walnut-700: #604937;

  /* Neutral — Stone */
  --stone-50: #fafaf8;
  --stone-100: #f0eeea;
  --stone-200: #e3e0da;
  --stone-300: #d0ccc3;
  --stone-400: #b8b3a8;
  --stone-500: #9b9588;
  --stone-600: #7c766a;
  --stone-700: #5e594f;
  --stone-800: #403d36;
  --stone-900: #24221e;

  /* Sky — Alpine */
  --sky-500: #3079a8;

  /* Semantic */
  --success: #4a6b35;
  --warning: #b8912e;
  --error: #a63d3d;
  --info: #3079a8;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Helvetica, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --max-width: 1200px;
  --content-width: 720px;
  --header-height: 64px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-card: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-elevated: 0 8px 24px rgba(0,0,0,0.1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--stone-900);
  background-color: var(--cream-100);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--forest-600);
}

h1, h2 {
  font-family: var(--font-display);
  color: var(--stone-900);
  font-weight: 500;
  line-height: 1.2;
}

h3, h4 {
  font-family: var(--font-body);
  color: var(--stone-900);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: clamp(28px, 4vw, 36px); }
h2 { font-size: clamp(22px, 3vw, 28px); }
h3 { font-size: 18px; }
h4 { font-size: 15px; }

p { margin-bottom: 12px; }

ul, ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--cream {
  background-color: var(--cream-200);
}

.section--white {
  background-color: var(--cream-50);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  color: var(--stone-600);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Label (kicker) */
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-600);
  margin-bottom: 8px;
  display: block;
}

/* Decorative line */
.accent-line {
  width: 40px;
  height: 2px;
  background: var(--gold-400);
  margin: 12px auto 0;
}

.section-header .accent-line {
  margin: 12px auto 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--forest-500);
  color: var(--cream-50);
}
.btn--primary:hover {
  background: var(--forest-600);
  color: var(--cream-50);
}

.btn--gold {
  background: var(--gold-400);
  color: var(--forest-800);
}
.btn--gold:hover {
  background: var(--gold-500);
  color: var(--forest-800);
}

.btn--outline {
  background: transparent;
  color: var(--forest-500);
  border: 2px solid var(--forest-500);
}
.btn--outline:hover {
  background: var(--forest-500);
  color: var(--cream-50);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream-100);
  border: 1.5px solid var(--forest-300);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--cream-50);
}

.btn--ghost {
  background: transparent;
  color: var(--stone-600);
  border: 1px solid var(--stone-300);
}
.btn--ghost:hover {
  background: var(--stone-100);
  color: var(--stone-800);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}

/* --- Tags / Badges --- */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
}

.tag--forest {
  background: var(--forest-50);
  color: var(--forest-600);
}

.tag--gold {
  background: var(--gold-50);
  color: var(--gold-700);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--forest-700);
  height: var(--header-height);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  color: var(--forest-200);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav__link:hover {
  color: var(--cream-50);
  background: rgba(255,255,255,0.08);
}

.nav__link--active {
  color: var(--gold-400);
}

.nav__cta {
  margin-left: 8px;
  background: var(--gold-400);
  color: var(--forest-800);
  padding: 8px 20px;
  font-weight: 600;
  font-size: 13px;
}
.nav__cta:hover {
  background: var(--gold-500);
  color: var(--forest-800);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream-100);
  border-radius: 1px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream-50);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 24px;
}

.mobile-nav.active { display: flex; }

.mobile-nav__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--stone-800);
  padding: 14px 0;
  border-bottom: 1px solid var(--stone-200);
  text-decoration: none;
}

.mobile-nav__link:hover {
  color: var(--forest-500);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--cream-100);
  background: linear-gradient(168deg, var(--forest-800) 0%, var(--forest-700) 40%, var(--forest-600) 100%);
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,45,22,0.85) 0%, rgba(30,45,22,0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 48px 0;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--forest-200);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: var(--cream-100);
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--forest-200);
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 32px 0 20px;
  background: var(--cream-200);
  margin-top: var(--header-height);
  border-bottom: 1px solid var(--stone-200);
}

.page-hero h1 {
  color: var(--stone-900);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  font-size: clamp(24px, 3.5vw, 34px);
}

.page-hero h1::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold-400);
  margin-top: 10px;
}

.page-hero p {
  color: var(--stone-500);
  font-size: 14px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 12px 0;
  font-size: 12px;
  color: var(--stone-500);
  border-bottom: 1px solid var(--stone-200);
  margin-bottom: 0;
}

.breadcrumb a {
  color: var(--stone-500);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--forest-500); }
.breadcrumb span { margin: 0 6px; }

/* --- USP Row --- */
.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}

.usp-card {
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.usp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.usp-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.usp-card__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--forest-500);
}

.usp-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-600);
  margin-bottom: 4px;
}

.usp-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--forest-700);
  margin-bottom: 6px;
}

.usp-card__text {
  font-size: 13px;
  color: var(--stone-600);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Apartment Cards --- */
.apartment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.apartment-card {
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s, box-shadow 0.2s;
}

.apartment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.apartment-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--forest-100);
  position: relative;
}

.apartment-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--forest-500);
  color: var(--cream-50);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.apartment-card__body {
  padding: 20px 24px;
}

.apartment-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-600);
  margin-bottom: 4px;
}

.apartment-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest-800);
  margin-bottom: 8px;
}

.apartment-card__desc {
  color: var(--stone-600);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.apartment-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  list-style: none;
  padding: 0;
}

.apartment-card__features li {
  font-size: 11px;
  font-weight: 500;
  color: var(--forest-600);
  background: var(--forest-50);
  padding: 4px 10px;
  border-radius: 999px;
}

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--forest-500);
  fill: none;
}

.feature-card__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--forest-700);
  margin-bottom: 4px;
}

.feature-card__text {
  color: var(--stone-600);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Checklist Grid --- */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow 0.2s;
}

.checklist-item:hover {
  box-shadow: var(--shadow-card);
}

.checklist-item__icon {
  width: 22px;
  height: 22px;
  color: var(--forest-500);
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist-item__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--forest-700);
  margin-bottom: 2px;
}

.checklist-item__text {
  color: var(--stone-600);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(168deg, var(--forest-800) 0%, var(--forest-700) 100%);
  color: var(--cream-100);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--cream-100);
  font-style: italic;
  margin-bottom: 8px;
}

.cta-banner p {
  color: var(--forest-200);
  margin-bottom: 24px;
  font-size: 15px;
}

/* --- Form --- */
.form-card {
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  max-width: var(--content-width);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--stone-800);
}

.form-group label .required {
  color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--stone-900);
  background: white;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-400);
  box-shadow: 0 0 0 3px rgba(74,107,53,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  color: var(--stone-700);
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
  width: auto;
  accent-color: var(--forest-500);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--stone-600);
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-consent input { margin-top: 2px; width: auto; }

/* --- Price Table --- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.price-table thead {
  background: var(--forest-700);
  color: var(--cream-100);
}

.price-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--stone-200);
  font-size: 14px;
  background: var(--cream-50);
}

.price-table tbody tr:hover td {
  background: var(--cream-200);
}

/* --- Info Box --- */
.info-box {
  background: var(--cream-200);
  border-left: 3px solid var(--gold-400);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--stone-700);
}

.info-box p { margin-bottom: 0; }

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-500);
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s;
  border: 1px solid var(--stone-200);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Gallery Featured (Airbnb-Style) --- */
.gallery-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-featured .gallery-item {
  border-radius: 0;
  border: none;
}

.gallery-featured__main {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.gallery-featured__rest {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.gallery-featured__rest .gallery-item {
  aspect-ratio: 4/3;
}

/* --- Quick Facts --- */
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--stone-200);
  margin-bottom: 32px;
}

.quick-facts .tag {
  font-size: 12px;
  padding: 6px 14px;
  font-weight: 600;
}

/* --- Amenity Tags --- */
.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.amenity-tags .tag {
  font-size: 12px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.amenity-tags .tag svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* --- Apartment Links (Mini Cards) --- */
.apartment-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-200);
}

.apartment-links__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.apartment-links__card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.apartment-links__card strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--forest-700);
}

.apartment-links__card span {
  font-size: 12px;
  color: var(--stone-600);
  line-height: 1.4;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,26,13,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--cream-100);
  font-size: 28px;
  cursor: pointer;
  z-index: 2001;
}

.lightbox__content {
  max-width: 85%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--cream-100);
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream-100);
  font-size: 13px;
  opacity: 0.8;
}

/* --- Activity Cards --- */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-card {
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 0.2s;
  padding: 24px;
}

.activity-card:hover {
  box-shadow: var(--shadow-card);
}

.activity-card__img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-200);
}

.activity-card__body {
  padding: 16px 20px;
}

.activity-card__distance {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  margin-bottom: 4px;
}

.activity-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--forest-700);
  margin-bottom: 6px;
}

.activity-card__text {
  color: var(--stone-600);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Map --- */
.map-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--stone-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--stone-100);
  padding: 24px;
  text-align: center;
  z-index: 1;
}

.map-consent.hidden { display: none; }

.map-consent__text {
  max-width: 400px;
  font-size: 14px;
  color: var(--stone-600);
  line-height: 1.5;
}

.map-consent__btn {
  background: var(--forest-600);
  color: var(--cream-100);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.map-consent__btn:hover { background: var(--forest-500); }

.map-consent__link {
  font-size: 12px;
  color: var(--stone-500);
}

/* --- FAQ --- */
.faq-list {
  max-width: var(--content-width);
  margin: 0 auto;
}

.faq-item {
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--stone-800);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-item__question:hover {
  color: var(--forest-500);
}

.faq-item__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gold-400);
  transition: transform 0.2s;
}

.faq-item.active .faq-item__question::after {
  content: '\2212';
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq-item__answer__inner {
  padding: 0 20px 16px;
  color: var(--stone-600);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Timeline --- */
.timeline {
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-300);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--gold-400);
  border-radius: 50%;
  border: 2px solid var(--cream-100);
}

.timeline-item__year {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-600);
  margin-bottom: 2px;
}

.timeline-item__text {
  color: var(--stone-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Apartment Detail --- */
.apartment-detail {
  max-width: 900px;
}

.apartment-detail .label {
  margin-bottom: 4px;
}

.apartment-detail h2 {
  font-style: italic;
}

.apartment-detail .accent-line {
  margin: 8px 0 16px;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.amenity-list li {
  font-size: 13px;
  color: var(--stone-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--stone-100);
  display: flex;
  align-items: center;
  gap: 6px;
}

.amenity-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}

/* --- Footer --- */
.footer {
  background: var(--forest-800);
  color: var(--forest-200);
  padding: 48px 0 20px;
}

.footer a {
  color: var(--forest-200);
  text-decoration: none;
}
.footer a:hover { color: var(--gold-400); }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.footer__list {
  list-style: none;
  padding: 0;
}

.footer__list li {
  margin-bottom: 6px;
  font-size: 14px;
}

.footer__contact p {
  margin-bottom: 2px;
  font-size: 14px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--forest-300);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a { color: var(--forest-300); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .apartment-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .activity-grid { grid-template-columns: 1fr 1fr; }
  .usp-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: 75vh; }
  .hero__title { font-size: clamp(28px, 6vw, 36px); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-featured { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .gallery-featured__main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16/9; }
  .gallery-featured__rest { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .apartment-links { flex-direction: column; }
  .usp-row { margin-top: -32px; }
  .form-card { padding: 20px; }
  .page-hero { padding: 24px 0 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .usp-row { grid-template-columns: 1fr; }
  .apartment-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .hero__buttons { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--forest-600);
  color: var(--cream-100);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--forest-500);
}

/* --- Form Errors --- */
.input--error {
  border-color: var(--error) !important;
}

.form-error {
  display: block;
  color: var(--error);
  font-size: 12px;
  margin-top: 4px;
}

/* --- Print --- */
@media print {
  .header, .footer, .mobile-nav, .cta-banner, .scroll-top { display: none; }
  body { background: white; }
  .hero { min-height: auto; padding: 24px 0; }
}
