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

:root {
    --color-cream: #F7F3EE;
    --color-sand: #EAE3D9;
    --color-stone: #C9B99A;
    --color-earth: #A68B5B;
    --color-gold: #B8860B;
    --color-charcoal: #2A2A2A;
    --color-dark: #1A1A1A;
    --color-white: #FFFFFF;
    --color-offwhite: #FAFAF8;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background: var(--color-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== LANGUAGE TOGGLE ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 4px 6px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.navbar.scrolled .lang-toggle {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.12);
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.04);
}

.navbar.scrolled .lang-toggle:hover {
    background: rgba(0,0,0,0.1);
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 14px;
    opacity: 0.5;
    transition: var(--transition);
    cursor: pointer;
    filter: grayscale(0.4);
}

.lang-flag.active {
    opacity: 1;
    filter: grayscale(0);
    background: rgba(255,255,255,0.25);
}

.navbar.scrolled .lang-flag.active {
    background: rgba(0,0,0,0.08);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo-accent {
    color: var(--color-gold);
    font-style: italic;
    font-weight: 400;
}

.navbar.scrolled .logo {
    color: var(--color-charcoal);
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--color-charcoal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-gold);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--color-white);
}

.navbar.scrolled .nav-link:hover {
    color: var(--color-charcoal);
}

.cta-nav {
    background: var(--color-gold);
    color: var(--color-white) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    background: #9A7000;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-charcoal);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #2c3e35 0%, #1a1a1a 40%, #2d2518 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/IMG_0257.jpg') center/cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 140px 24px 60px;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    border: 1px solid rgba(184,134,11,0.4);
    padding: 8px 18px;
    border-radius: 100px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-accent {
    display: block;
    font-style: italic;
    color: var(--color-stone);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

/* Twin houses visual */
.twin-houses-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 32px;
    margin: 40px 0 48px;
    flex-wrap: wrap;
}

.house-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatIn 1s ease forwards;
    opacity: 0;
}

.house-block:nth-child(3) { animation-delay: 0.2s; }

@keyframes floatIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.house-roof {
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 50px solid rgba(184,134,11,0.6);
    margin-bottom: 2px;
}

.house-body {
    width: 140px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.house-floor {
    padding: 12px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.house-floor:last-child {
    border-bottom: none;
}

.house-floor span {
    font-size: 0.65rem;
    color: var(--color-gold);
    font-weight: 700;
}

.house-label {
    margin-top: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-stone);
    font-style: italic;
}

.twin-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 60px;
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
}

.twin-line {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.3);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: #9A7000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184,134,11,0.3);
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-charcoal);
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* ===== HOUSES SECTION ===== */
.houses {
    background: var(--color-cream);
}

.houses-twin {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 56px;
}

.house-detail-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.house-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.house-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: var(--color-charcoal);
    color: var(--color-white);
}

.house-badge {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

.house-total {
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.floors-list {
    padding: 8px 0;
}

.floor-row {
    padding: 20px 28px;
    border-bottom: 1px solid #f0f0f0;
}

.floor-row:last-child {
    border-bottom: none;
}

.floor-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.floor-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.floor-sqm {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold);
    background: rgba(184,134,11,0.08);
    padding: 4px 10px;
    border-radius: 4px;
}

.floor-desc {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
}

.twin-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    color: var(--color-stone);
    font-size: 1.4rem;
    gap: 12px;
}

.twin-divider .twin-line {
    width: 1px;
    height: 60px;
    background: var(--color-stone);
}

.specs-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    background: var(--color-white);
    padding: 28px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.spec-icon {
    font-size: 1.4rem;
    color: var(--color-gold);
    line-height: 1;
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-text strong {
    font-size: 1rem;
    color: var(--color-charcoal);
    font-weight: 600;
}

.spec-text span {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FLOOR EXPLORER ===== */
.floor-explorer {
    background: linear-gradient(180deg, var(--color-cream) 0%, #f0ece6 100%);
}

.floor-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}

.floor-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

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

.floor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 12px;
    min-height: 56px;
    -webkit-tap-highlight-color: transparent;
}

.floor-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}

.floor-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(184,134,11,0.1);
    color: var(--color-gold);
}

[data-floor="attic"] .floor-icon { background: rgba(166,139,91,0.12); }
[data-floor="first"] .floor-icon { background: rgba(184,134,11,0.15); }
[data-floor="ground"] .floor-icon { background: rgba(166,139,91,0.12); }
[data-floor="basement"] .floor-icon { background: rgba(120,100,70,0.12); }

.floor-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.floor-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.floor-sqm-badge {
    font-size: 0.8rem;
    color: var(--color-earth);
    font-weight: 500;
    background: rgba(184,134,11,0.08);
    padding: 2px 10px;
    border-radius: 20px;
}

.floor-arrow {
    font-size: 1.4rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.floor-card.active .floor-arrow {
    transform: rotate(90deg);
}

.floor-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 20px;
}

.floor-card.active .floor-body {
    max-height: 500px;
    padding: 0 20px 20px;
}

.floor-rooms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.room-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--color-offwhite);
    color: var(--color-charcoal);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.room-tag:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.room-tag.bedroom { background: rgba(139,115,85,0.1); }
.room-tag.kitchen { background: rgba(184,134,11,0.1); }
.room-tag.living { background: rgba(100,120,100,0.1); }
.room-tag.bath { background: rgba(70,130,180,0.1); }
.room-tag.wc { background: rgba(120,120,140,0.1); }
.room-tag.storage { background: rgba(140,120,100,0.1); }
.room-tag.closet { background: rgba(160,130,100,0.1); }
.room-tag.balcony { background: rgba(100,160,140,0.1); }
.room-tag.elevator { background: rgba(120,120,120,0.1); }
.room-tag.general { background: rgba(184,134,11,0.12); }

.floor-summary {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #555;
    padding-top: 8px;
    border-top: 1px dashed #e0e0e0;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 320px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #f0ece6 0%, #e5e0d8 100%);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* ===== BALCONY ===== */
.balcony {
    background: linear-gradient(180deg, #f5f7f2 0%, #eef1ea 100%);
}

.balcony-showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
}

.balcony-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-dark);
}

.balcony-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 480px;
    transition: transform 0.6s ease;
}

.balcony-frame:hover img {
    transform: scale(1.02);
}

.balcony-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.balcony-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.balcony-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.balcony-highlight {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.balcony-highlight:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.balcony-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.balcony-highlight h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.balcony-highlight p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.balcony-quote {
    padding: 24px 28px;
    background: rgba(184,134,11,0.08);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
}

.balcony-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.6;
}

/* ===== LAKE ===== */
.lake {
    background: linear-gradient(180deg, #f0f7f4 0%, #e8f0ec 100%);
}

.lake-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.lake-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.lake-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.lake-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lake-image:hover img {
    transform: scale(1.03);
}

.lake-main {
    grid-row: span 2;
    min-height: 420px;
}

.lake-side {
    min-height: 200px;
}

.lake-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.lake-info p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 28px;
}

.lake-distance {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.distance-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    font-size: 1rem;
}

.distance-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===== LOCATION ===== */
.location {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-sand) 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.location-highlights h3,
.distances-panel h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: var(--color-charcoal);
}

.highlight-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--color-white);
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.highlight-card.featured {
    padding: 28px;
    background: linear-gradient(135deg, var(--color-white) 0%, #FAF7F2 100%);
    border-left: 3px solid var(--color-gold);
    box-shadow: var(--shadow-md);
}

.highlight-card.featured .highlight-icon {
    background: rgba(184,134,11,0.15);
    width: 52px;
    height: 52px;
}

.highlight-card.featured .highlight-text h4 {
    font-size: 1.25rem;
    color: var(--color-earth);
}

.highlight-card.featured .highlight-text p {
    font-size: 0.95rem;
    line-height: 1.75;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(184,134,11,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.highlight-icon svg {
    width: 26px;
    height: 26px;
}

.highlight-text h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--color-charcoal);
}

.highlight-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.distances-panel {
    background: var(--color-white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.distance-list {
    margin-bottom: 32px;
}

.distance-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.distance-item:last-child {
    border-bottom: none;
}

.distance-route {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.distance-from {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal);
    white-space: nowrap;
}

.distance-line {
    flex: 1;
    height: 1px;
    border-bottom: 2px dotted #ddd;
    min-width: 20px;
}

.distance-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    white-space: nowrap;
}

.distance-km {
    font-size: 0.8rem;
    color: #999;
    margin-left: 12px;
    min-width: 50px;
    text-align: right;
}

.area-perks {
    border-top: 1px solid #eee;
    padding-top: 24px;
}

.area-perks h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--color-charcoal);
}

.area-perks ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-perks li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    color: #555;
}

.area-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

/* ===== ABOUT ===== */
.about {
    background: var(--color-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-layout.about-plain {
    display: block;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about-plain .section-tag {
    margin-bottom: 12px;
}

.about-plain .section-title {
    text-align: center;
    margin-bottom: 28px;
}

.about-plain p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.about-content {
    max-width: 520px;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-quote {
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--color-cream);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
}

.about-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
    padding: 80px 0;
    color: var(--color-white);
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 48px;
}

.contact-header h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin: 12px 0 16px;
}

.contact-header p {
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
    min-width: 260px;
    justify-content: center;
}

.contact-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(184,134,11,0.4);
    transform: translateY(-3px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(184,134,11,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
}

.contact-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.5);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand .logo {
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 4px;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.85rem;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 4px;
    display: block;
}

.lightbox-caption {
    margin-top: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .houses-twin {
        grid-template-columns: 1fr;
    }
    .twin-divider {
        flex-direction: row;
        padding: 8px 0;
    }
    .twin-divider .twin-line {
        width: 60px;
        height: 1px;
    }
    .location-grid {
        grid-template-columns: 1fr;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }
    .specs-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .lake-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .lake-images {
        grid-template-columns: 1fr 1fr;
    }
    .lake-main {
        grid-row: span 1;
        min-height: 320px;
    }
    .balcony-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .balcony-frame img {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        align-items: flex-start;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        color: var(--color-charcoal) !important;
        font-size: 1rem;
    }
    .nav-actions {
        gap: 12px;
    }
    .lang-toggle {
        padding: 3px 5px;
    }
    .lang-flag {
        font-size: 1rem;
        padding: 3px 5px;
    }
    .twin-houses-visual {
        gap: 16px;
    }
    .twin-divider {
        display: none;
    }
    .section {
        padding: 60px 0;
    }
    .floor-header {
        padding: 16px 16px;
    }
    .floor-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .floor-title {
        font-size: 1.05rem;
    }
    .floor-sqm-badge {
        font-size: 0.75rem;
    }
    .room-tag {
        font-size: 0.8rem;
        padding: 7px 12px;
    }
    .floor-card.active .floor-body {
        max-height: 600px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .gallery-item.wide {
        grid-column: span 1;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-prev {
        left: 12px;
    }
    .lightbox-next {
        right: 12px;
    }
    .specs-bar {
        grid-template-columns: 1fr;
    }
    .spec-item {
        padding: 12px;
    }
    .lake-images {
        grid-template-columns: 1fr;
    }
    .lake-main {
        min-height: 260px;
    }
    .lake-side {
        min-height: 200px;
    }
    .lake-distance {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .balcony-frame img {
        min-height: 280px;
    }
    .balcony-caption {
        font-size: 0.85rem;
        padding: 14px 16px;
    }
    .balcony-highlight {
        padding: 16px;
    }
    .balcony-quote {
        padding: 18px 20px;
    }
    .balcony-quote blockquote {
        font-size: 1rem;
    }
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    .contact-card {
        width: 100%;
        max-width: 320px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .distances-panel {
        padding: 20px;
    }
    .distance-item {
        flex-wrap: wrap;
        gap: 6px 0;
        padding: 12px 0;
    }
    .distance-route {
        flex-wrap: wrap;
        min-width: 0;
        gap: 6px;
    }
    .distance-from {
        white-space: normal;
        font-size: 0.88rem;
    }
    .distance-line {
        display: none;
    }
    .distance-time {
        white-space: nowrap;
        font-size: 0.8rem;
    }
    .distance-km {
        margin-left: 0;
        font-size: 0.75rem;
    }
    .highlight-card {
        padding: 18px;
        gap: 14px;
    }
    .highlight-card.featured {
        padding: 20px;
    }
    .highlight-icon {
        width: 40px;
        height: 40px;
    }
    .highlight-icon svg {
        width: 22px;
        height: 22px;
    }
    .highlight-text h4 {
        font-size: 1.05rem;
    }
    .highlight-text p {
        font-size: 0.85rem;
    }
    .area-perks li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .house-detail-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .floor-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


