/* ========================================
   Vila Chuchle – Luxury Real Estate
   Light Theme – Noble & Elegant
   ======================================== */

:root {
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f7f5;
  --color-surface: #f0eeeb;
  --color-text: #1a1a1a;
  --color-text-muted: rgba(26, 26, 26, 0.6);
  --color-accent: #8b7355;
  --color-accent-dark: #6b5642;
  --color-border: rgba(26, 26, 26, 0.1);
  --max-width: 1400px;
  --section-padding: clamp(100px, 15vh, 180px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

/* ========================================
   Typography
   ======================================== */

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.section-title span {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

/* ========================================
   Header
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(2rem, 5vw, 4rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 100%);
  transition: background 0.4s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-left a,
.nav-right a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--color-text);
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.language-switch {
  display: flex;
  gap: 0;
  border: 1px solid var(--color-border);
}

.lang {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  padding: 0.4rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang:hover {
  color: var(--color-text);
}

.lang.active {
  background: var(--color-accent);
  color: #fff;
}

/* ========================================
   Mobile Controls & Menu
   ======================================== */

.mobile-controls {
  display: none;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 101;
}

.language-switch-mobile {
  display: flex;
  gap: 0;
  border: 1px solid var(--color-border);
}

.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 102;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--color-accent);
}

body.menu-open {
  overflow: hidden;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pillars {
  position: absolute;
  left: clamp(1.5rem, 4vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-pillars span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 400;
}

.hero-content {
  max-width: 900px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent-dark);
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
}

.hero-title span {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8);
}

.hero-price {
  position: absolute;
  bottom: clamp(2rem, 5vh, 4rem);
  right: clamp(2rem, 5vw, 4rem);
  text-align: right;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.price-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.price-czk {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-accent-dark);
}

.price-eur {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.scroll-hint {
  position: absolute;
  bottom: clamp(2rem, 5vh, 4rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   Feature Image
   ======================================== */

.feature-image {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.feature-image-wrapper {
  width: 100%;
  height: 100%;
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-caption {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.feature-caption span {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  color: #fff;
  padding: 0.8rem 1.5rem;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
}

/* ========================================
   About Section
   ======================================== */

/* Decorative Lines */
.decorative-lines {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  width: clamp(300px, 40vw, 500px);
  height: clamp(300px, 40vw, 500px);
  pointer-events: none;
  z-index: 0;
  color: var(--color-accent);
}

.decorative-lines svg {
  width: 100%;
  height: 100%;
}

.decorative-lines-right {
  left: auto;
  right: -10%;
}

.decorative-lines-small {
  width: clamp(200px, 30vw, 350px);
  height: clamp(200px, 30vw, 350px);
}

@media (max-width: 768px) {
  .decorative-lines {
    display: none;
  }
}

.about {
  padding: var(--section-padding) clamp(2rem, 8vw, 8rem);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-text p {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.benefit {
  padding: 3rem 2rem;
  border-right: 1px solid var(--color-border);
  transition: background 0.3s ease;
}

.benefit:last-child {
  border-right: none;
}

.benefit:hover {
  background: var(--color-surface);
}

.benefit-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.benefit h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.benefit p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   Views Gallery
   ======================================== */

.views-gallery {
  padding: var(--section-padding) clamp(2rem, 8vw, 8rem);
  background: var(--color-bg);
}

.views-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
}

.views-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.view-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.view-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.view-item:hover img {
  transform: scale(1.03);
}

.view-item.large {
  grid-row: span 2;
}

.view-item::after {
  content: "🔍";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-item:hover::after {
  opacity: 0.7;
}

.views-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.views-grid-5 .view-item {
  aspect-ratio: 1;
}

.views-grid-5 .view-item img {
  aspect-ratio: 1;
}

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

/* ========================================
   Specs Section
   ======================================== */

.specs {
  padding: var(--section-padding) clamp(2rem, 8vw, 8rem);
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.specs-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--color-border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.spec-item {
  padding: 2.5rem 1.5rem;
  background: var(--color-bg-alt);
  text-align: center;
}

.spec-value {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}

.spec-unit {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent);
}

.spec-label {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ========================================
   Visualizations
   ======================================== */

.visualizations {
  padding: var(--section-padding) clamp(2rem, 8vw, 8rem);
  background: var(--color-surface);
}

.viz-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
}

.viz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.viz-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.viz-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.viz-item:hover img {
  transform: scale(1.03);
}

.viz-item figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
}

.viz-item::after {
  content: "🔍";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.viz-item:hover::after {
  opacity: 0.7;
}

/* ========================================
   Equipment Accordion
   ======================================== */

.equipment {
  padding: var(--section-padding) clamp(2rem, 8vw, 8rem);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.equipment-header {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}

.equipment-intro {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
}

.accordion {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  background: transparent;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: var(--color-accent);
}

.accordion-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
}

.accordion-status {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  margin-left: auto;
  margin-right: 2rem;
}

.accordion-status.realized {
  background: rgba(76, 175, 80, 0.1);
  color: #388e3c;
}

.accordion-status.partial {
  background: rgba(255, 193, 7, 0.15);
  color: #f57c00;
}

.accordion-status.planned {
  background: rgba(33, 150, 243, 0.1);
  color: #1976d2;
}

.accordion-status.designed {
  background: rgba(156, 39, 176, 0.1);
  color: #7b1fa2;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.accordion-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.accordion-header[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-content {
  max-height: 1000px;
}

.accordion-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-accent);
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding-bottom: 2rem;
}

.accordion-card {
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.accordion-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--color-accent-dark);
}

.accordion-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   Current State
   ======================================== */

.current-state {
  padding: var(--section-padding) clamp(2rem, 8vw, 8rem);
  background: var(--color-bg-alt);
}

.state-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.state-grid figure {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.state-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.state-grid figure:hover img {
  transform: scale(1.03);
}

.state-grid figure::after {
  content: "🔍";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.state-grid figure:hover::after {
  opacity: 0.7;
}

/* ========================================
   Floor Plans
   ======================================== */

.floorplans {
  padding: var(--section-padding) clamp(2rem, 8vw, 8rem);
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.floorplans-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: var(--color-accent);
  color: #fff;
}

.floorplans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.floorplan-item {
  text-align: center;
  cursor: pointer;
  position: relative;
}

.floorplan-item img {
  width: 100%;
  background: #fff;
  padding: 1rem;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.floorplan-item:hover img {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.floorplan-item figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.zoom-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: var(--color-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floorplan-item:hover .zoom-hint {
  opacity: 1;
}

/* ========================================
   Lightbox
   ======================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--color-text);
  color: #fff;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  letter-spacing: 0.1em;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}

/* ========================================
   Location Section
   ======================================== */

.location {
  padding: var(--section-padding) clamp(2rem, 8vw, 8rem);
  background: var(--color-bg);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 8vw, 6rem);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.location-text p {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.transport-list {
  margin-top: 3rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.transport-time {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-accent);
  min-width: 80px;
}

.transport-dest {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.location-map {
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(20%);
}

.map-marker {
  position: absolute;
  bottom: 35%;
  left: 38%;
  transform: translate(-50%, 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.marker-dot {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: markerPulse 2s ease-in-out infinite;
}

.marker-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.2;
  animation: markerRing 2s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes markerRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.marker-label {
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
  padding: var(--section-padding) clamp(2rem, 8vw, 8rem);
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.contact-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.contact-agent {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.agent-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.agent-photo {
  width: 100%;
}

.agent-photo img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  object-position: top;
}

.agent-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.agent-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.agent-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agent-phone,
.agent-email {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-accent-dark);
  transition: color 0.3s ease;
}

.agent-phone:hover,
.agent-email:hover {
  color: var(--color-accent);
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-wrapper h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--color-text-muted);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  align-self: flex-start;
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  border: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.form-gdpr {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-gdpr a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-gdpr a:hover {
  color: var(--color-accent-dark);
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  padding: 3rem clamp(2rem, 8vw, 8rem);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.footer-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  max-width: 500px;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1200px) {
  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .floorplans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: -1;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit:nth-child(2) {
    border-right: none;
  }

  .views-grid {
    grid-template-columns: 1fr 1fr;
  }

  .view-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .views-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .viz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .floorplans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-controls {
    display: flex;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .language-switch {
    display: none;
  }

  .hero-pillars {
    display: none;
  }

  .hero-price {
    position: static;
    text-align: center;
    margin-top: 3rem;
  }

  .scroll-hint {
    display: none;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .benefit:last-child {
    border-bottom: none;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .viz-grid,
  .state-grid {
    grid-template-columns: 1fr;
  }

  .views-grid {
    grid-template-columns: 1fr;
  }

  .view-item.large {
    grid-column: span 1;
  }

  .views-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .accordion-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .accordion-status {
    order: 3;
    margin-left: 0;
    margin-right: 0;
  }

  .accordion-icon {
    order: 2;
    margin-left: auto;
  }

  .floorplans-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .floorplans-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .agent-photo img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title span {
    font-size: 2.5rem;
  }

  .section-title span {
    font-size: 2rem;
  }

  .benefit-number {
    font-size: 2rem;
  }

  .spec-value {
    font-size: 2.5rem;
  }
}
