* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f1ea;
  --bg-alt: #ede3d7;
  --card: #ffffff;
  --text: #2b2623;
  --muted: #635750;
  --primary: #7a4b3a;
  --primary-dark: #5e372b;
  --border: rgba(43, 38, 35, 0.08);
  --shadow: 0 12px 30px rgba(43, 38, 35, 0.1);
  --radius: 20px;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

.hidden {
  display: none !important;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
  background: rgba(246, 241, 234, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-switch button {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.lang-switch button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}








.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: url("images/aussen-1.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(43, 27, 22, 0.78), rgba(43, 27, 22, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0;
  max-width: 760px;
}

.hero-kicker,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.08;
  margin: 0 0 18px;
  white-space: pre-line;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-buttons,
.platform-buttons,
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-buttons {
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary,
.btn-solid {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover,
.btn-solid:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.26);
}

.btn-dark-text {
  color: var(--text);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(43, 38, 35, 0.08);
}

.btn-dark-text:hover {
  background: rgba(255, 255, 255, 0.92);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 82px 0;
}

.alt-bg {
  background: var(--bg-alt);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.muted {
  color: var(--muted);
}

.info-card,
.map-card,
.cta-box,
.feature-card,
.gallery-card,
.property-card,
.property-highlight {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 24px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  border-bottom: 0;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.property-card {
  overflow: hidden;
}

.property-card img {
  height: 240px;
  object-fit: cover;
}

.property-content {
  padding: 22px;
}

.property-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.property-section {
  align-items: flex-start;
}

.property-highlight {
  overflow: hidden;
}

.property-highlight img {
  height: 320px;
  object-fit: cover;
}

.gallery-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

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

.gallery-card {
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(43, 38, 35, 0.13);
}

.gallery-card img {
  height: 230px;
  object-fit: cover;
}

.gallery-card-info {
  padding: 16px 18px;
}

.gallery-card-info h3 {
  margin: 0 0 4px;
  color: var(--primary-dark);
}

.gallery-card-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.features-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 20px;
  text-align: center;
  font-weight: 700;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-box {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.contact-list p {
  margin: 0 0 10px;
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.footer {
  background: #2d201b;
  color: var(--white);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 13, 11, 0.9);
  padding: 20px;
}

.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox img {
  max-width: 92vw;
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  margin-top: 14px;
  text-align: center;
  color: var(--white);
}

.lightbox-caption h3 {
  margin: 0 0 4px;
}

.lightbox-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.nav-arrow,
.close-btn {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-arrow:hover,
.close-btn:hover {
  background: rgba(255, 255, 255, 0.26);
}

.nav-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 28px;
}

.nav-arrow.left {
  left: 24px;
}

.nav-arrow.right {
  right: 24px;
}

.close-btn {
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 980px) {
  .grid-2,
  .features-grid,
  .gallery-grid,
  .property-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
  }
.grid-2,
  .features-grid,
  .gallery-grid,
  .property-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 70px 0;
  }

  .gallery-card img,
  .property-card img,
  .property-highlight img {
    height: 220px;
  }

  .nav-arrow {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .nav-arrow.left {
    left: 10px;
  }

  .nav-arrow.right {
    right: 10px;
  }

  .close-btn {
    top: 10px;
    right: 10px;
  }
}

.details-block {
  margin-top: 28px;
}

.details-title {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.details-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.95rem;
}

.details-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.details-category {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.details-category h4 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 1rem;
}

.details-category ul {
  margin: 0;
  padding-left: 18px;
}

.details-category li {
  margin-bottom: 6px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .details-categories {
    grid-template-columns: 1fr;
  }
}

/* Fix property card buttons: same vertical position */
.property-grid {
  align-items: stretch;
}

.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.property-card > img {
  height: 240px;
  object-fit: cover;
}

.property-content {
  position: relative;
  min-height: 260px;
  padding: 22px;
  padding-bottom: 95px;
}

.property-content h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

.property-content p {
  margin: 0;
}

.property-content .btn {
  position: absolute;
  left: 22px;
  bottom: 32px;
}

@media (max-width: 768px) {
  .lightbox {
    padding: 70px 16px 40px;
  }

  .lightbox-inner {
    width: 100%;
    max-width: 100%;
  }

  .lightbox-inner img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
  }

  .nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
  }

  .nav-arrow.left {
    left: 18px;
  }

  .nav-arrow.right {
    right: 18px;
  }

  .close-btn {
    position: fixed;
    top: 78px;
    right: 20px;
    z-index: 10000;
  }
}