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

:root {
    --warm-white: #FDFBF7;
    --cream: #F7F4EE;
    --sand: #E8DFD2;
    --sand-light: #F0EBE3;
    --terracotta: #B8906A;
    --terracotta-deep: #9A7555;
    --terracotta-muted: rgba(184, 144, 106, 0.12);
    --olive: #7D8B72;
    --olive-muted: rgba(125, 139, 114, 0.1);
    --charcoal: #2C2825;
    --charcoal-light: #5A5550;
    --stone: #8A857D;
    --linen: #EDE9E2;
    --font-display: 'Bodoni Moda', serif;
    --font-body: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(44, 40, 37, 0.04), 0 1px 4px rgba(44, 40, 37, 0.03);
    --shadow-md: 0 2px 4px rgba(44, 40, 37, 0.03), 0 4px 12px rgba(44, 40, 37, 0.05);
    --shadow-lg: 0 4px 8px rgba(44, 40, 37, 0.03), 0 8px 24px rgba(44, 40, 37, 0.06);

    /* Spacing scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--warm-white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(253, 251, 247, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 0 rgba(44, 40, 37, 0.05);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    transition: color 0.5s;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.35s ease;
}

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

nav.scrolled .nav-links a { color: var(--charcoal-light); }
nav.scrolled .nav-links a:hover { color: var(--charcoal); }

.lang-toggle {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.75);
    padding: 0.45rem 0.95rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 400;
    transition: all 0.25s ease;
    border-radius: 2px;
}

nav.scrolled .lang-toggle {
    border-color: var(--sand);
    color: var(--charcoal-light);
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
}

nav.scrolled .lang-toggle:hover {
    background: var(--sand-light);
    border-color: var(--sand);
}

/* Mobile nav */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: white;
    transition: all 0.3s;
}

nav.scrolled .nav-hamburger span,
nav.menu-open .nav-hamburger span { background: var(--charcoal); }

/* Nav menu open state */
nav.menu-open {
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(44, 40, 37, 0.05);
}

nav.menu-open .nav-brand { color: var(--charcoal); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(180deg, rgba(42,38,34,0.08) 0%, rgba(42,38,34,0.02) 40%, rgba(42,38,34,0.45) 100%),
    url('photos/buiten-hero.jpeg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-out forwards;
    filter: saturate(0.82) contrast(0.92) brightness(1.03) sepia(0.12);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 144, 106, 0.18) 0%, rgba(125, 139, 114, 0.08) 50%, rgba(232, 223, 210, 0.12) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--space-2xl) var(--space-3xl);
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.5s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 400;
    font-style: italic;
    color: white;
    line-height: 1.12;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.7s forwards;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.9s forwards;
}

.hero-cta {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 1.1rem 2.8rem;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 1.1s forwards;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: -1;
}

.hero-cta:hover {
    color: var(--charcoal);
    border-color: white;
}

.hero-cta:hover::before {
    transform: translateY(0);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== SECTION COMMONS ===== */
section {
    padding: var(--space-3xl) var(--space-2xl);
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.18;
    margin-bottom: var(--space-lg);
}

.section-text {
    font-size: 1rem;
    color: var(--charcoal-light);
    max-width: 540px;
    line-height: 1.85;
}

.divider {
    width: 48px;
    height: 1px;
    background: var(--sand);
    margin: var(--space-xl) 0;
    opacity: 0.8;
}

/* ===== THE APARTMENT ===== */
.apartment {
    background: var(--warm-white);
}

.apartment-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-top: var(--space-2xl);
}

.apartment-image {
    aspect-ratio: 4/5;
    background:
    linear-gradient(135deg, rgba(184, 144, 106, 0.08), transparent),
    url('photos/appartment-main.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    filter: saturate(0.85) contrast(0.92) brightness(1.03) sepia(0.1);
}

.apartment-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(184, 144, 106, 0.1) 0%, transparent 30%, transparent 70%, rgba(44, 40, 37, 0.08) 100%);
    pointer-events: none;
}

.apartment-image::after {
    content: '';
    position: absolute;
    top: var(--space-xl);
    left: calc(-1 * var(--space-xl));
    right: var(--space-xl);
    bottom: calc(-1 * var(--space-xl));
    border: 1px solid var(--sand);
    z-index: -1;
    opacity: 0.7;
}

.apartment-image .warm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 144, 106, 0.1) 0%, rgba(232, 223, 210, 0.06) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.apartment-details {
    padding: var(--space-lg) 0;
}

.apartment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--sand-light);
    border: 1px solid rgba(226, 214, 198, 0.5);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: var(--terracotta-muted);
    border-color: rgba(184, 144, 106, 0.25);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--terracotta);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-label {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    letter-spacing: 0.02em;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 380px auto auto;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--sand-light);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s ease;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(44, 40, 37, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img,
.gallery-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: saturate(0.85) contrast(0.92) brightness(1.03) sepia(0.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 144, 106, 0.15) 0%, rgba(232, 223, 210, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder {
    transform: scale(1.03);
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.7rem;
    color: var(--stone);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(145deg, var(--cream) 0%, var(--sand-light) 100%);
}

.gallery-placeholder::before {
    content: '';
    width: 32px;
    height: 32px;
    border: 1px solid var(--sand);
    border-radius: 50%;
    opacity: 0.6;
}

.g1 { grid-column: 1 / 8; grid-row: 1; }
.g2 { grid-column: 8 / 13; grid-row: 1; }
.g3 { grid-column: 1 / 4; grid-row: 2; aspect-ratio: 1; }
.g4 { grid-column: 4 / 7; grid-row: 2; aspect-ratio: 1; }
.g5 { grid-column: 7 / 10; grid-row: 2; aspect-ratio: 1; }
.g6 { grid-column: 10 / 13; grid-row: 2; aspect-ratio: 1; }
.g7 { grid-column: 1 / 5; grid-row: 3; aspect-ratio: 4/3; }
.g8 { grid-column: 5 / 9; grid-row: 3; aspect-ratio: 4/3; }
.g9 { grid-column: 9 / 13; grid-row: 3; aspect-ratio: 4/3; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 38, 34, 0.95);
    z-index: 200;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

/* GLightbox Custom Theme */
.glightbox-container {
    font-family: var(--font-body);
}

.goverlay {
    background: rgba(42, 38, 34, 0.96) !important;
}

.gslide-media {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.gslide-image img {
    filter: saturate(0.9) contrast(0.95) brightness(1.02);
}

/* Navigation buttons */
.glightbox-container .gnext,
.glightbox-container .gprev {
    background: rgba(253, 251, 247, 0.08) !important;
    border: 1px solid rgba(253, 251, 247, 0.12) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover {
    background: rgba(253, 251, 247, 0.15) !important;
    border-color: rgba(253, 251, 247, 0.25) !important;
}

.glightbox-container .gnext svg,
.glightbox-container .gprev svg {
    fill: rgba(253, 251, 247, 0.8) !important;
    width: 18px !important;
    height: 18px !important;
}

.glightbox-container .gnext:hover svg,
.glightbox-container .gprev:hover svg {
    fill: rgba(253, 251, 247, 1) !important;
}

/* Close button */
.glightbox-container .gclose {
    background: transparent !important;
    border: 1px solid rgba(253, 251, 247, 0.2) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 2px !important;
    top: 20px !important;
    right: 20px !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
}

.glightbox-container .gclose:hover {
    background: rgba(253, 251, 247, 0.1) !important;
    border-color: rgba(253, 251, 247, 0.35) !important;
}

.glightbox-container .gclose svg {
    fill: rgba(253, 251, 247, 0.75) !important;
    width: 20px !important;
    height: 20px !important;
}

.glightbox-container .gclose:hover svg {
    fill: rgba(253, 251, 247, 1) !important;
}

/* Counter */
.glightbox-container .gslide-title {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 300 !important;
    color: rgba(253, 251, 247, 0.7) !important;
    letter-spacing: 0.02em !important;
}

/* Slide counter styling */
.glightbox-container .gslide-desc {
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    color: rgba(253, 251, 247, 0.5) !important;
}

/* Loading spinner */
.glightbox-container .gloader {
    border-color: rgba(184, 144, 106, 0.2) !important;
    border-left-color: var(--terracotta) !important;
}

/* Mobile adjustments for GLightbox */
@media (max-width: 900px) {
    .glightbox-container .gnext,
    .glightbox-container .gprev {
        width: 44px !important;
        height: 44px !important;
    }
    
    .glightbox-container .gclose {
        top: 15px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
    }
}

/* ===== CALENDAR ===== */
.calendar-section {
    background: var(--warm-white);
}

.calendar-container {
    background: var(--warm-white);
    border: 1px solid rgba(226, 214, 198, 0.4);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-2xl);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--sand-light);
}

.calendar-month-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal);
}

.calendar-nav {
    display: flex;
    gap: var(--space-sm);
}

.calendar-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--sand);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    color: var(--charcoal-light);
    font-size: 1rem;
}

.calendar-nav button:hover {
    background: var(--sand-light);
    border-color: var(--sand);
    color: var(--charcoal);
}

.calendar-nav button:active {
    transform: scale(0.96);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 3px;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    padding: var(--space-sm) 0 var(--space-md);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.calendar-day {
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 400;
    background: var(--cream);
    color: var(--charcoal);
    transition: all 0.2s ease;
    position: relative;
    border-radius: 1px;
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day.available {
    background: var(--olive-muted);
    cursor: default;
}

.calendar-day.available::after {
    content: '';
    position: absolute;
    bottom: 8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--olive);
}

.calendar-day.booked {
    background: var(--terracotta-muted);
    color: var(--stone);
}

.calendar-day.booked span {
    text-decoration: line-through;
    text-decoration-color: var(--stone);
}

.calendar-day.past {
    color: var(--sand);
    background: rgba(247, 244, 238, 0.5);
}

.calendar-legend {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--sand-light);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--charcoal-light);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.available { background: var(--olive); }
.legend-dot.booked { background: var(--terracotta); opacity: 0.6; }

/* ===== LOCATION ===== */
.location {
    background: var(--charcoal);
    color: white;
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
}

.location .section-eyebrow { color: var(--terracotta); }
.location .section-title { color: white; }
.location .section-text { color: rgba(255,255,255,0.65); }

.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.highlight {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.highlight-distance {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--terracotta);
    min-width: 55px;
    flex-shrink: 0;
    line-height: 1.2;
}

.highlight-info h4 {
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: white;
}

.highlight-info p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.location-map {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.85rem var(--space-md);
    border: 1px solid var(--sand);
    background: var(--warm-white);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.92rem;
    color: var(--charcoal);
    outline: none;
    transition: all 0.25s ease;
    -webkit-appearance: none;
    border-radius: 2px;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--sand);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--terracotta);
    background: white;
    box-shadow: 0 0 0 3px var(--terracotta-muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--stone);
    opacity: 0.6;
}

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

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A857D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-submit {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--charcoal);
    color: white;
    border: none;
    padding: 1.1rem var(--space-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--space-md);
    align-self: flex-start;
    border-radius: 2px;
}

.form-submit:hover {
    background: var(--terracotta-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.form-submit:active {
    transform: translateY(0);
}

.contact-aside {
    padding: var(--space-xl);
    background: var(--warm-white);
    border: 1px solid rgba(226, 214, 198, 0.4);
    box-shadow: var(--shadow-sm);
}

.contact-aside > p {
    font-size: 0.88rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--sand-light);
}

.contact-detail {
    margin-bottom: var(--space-lg);
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: var(--space-xs);
}

.contact-detail-value {
    font-size: 0.92rem;
    color: var(--charcoal);
}

.contact-detail-value a {
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--sand);
    transition: all 0.25s ease;
}

.contact-detail-value a:hover {
    color: var(--terracotta-deep);
    border-color: var(--terracotta);
}

/* ===== FOOTER ===== */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.4);
    padding: var(--space-xl) var(--space-2xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

footer .lang-toggle {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
}

footer .lang-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    section { padding: var(--space-2xl) var(--space-lg); }
    nav { padding: 1.2rem var(--space-lg); }
    nav.scrolled { padding: 0.8rem var(--space-lg); }

    .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253,251,247,0.97);
    backdrop-filter: blur(20px);
    padding: 0 var(--space-lg);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease,
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-hamburger { display: flex; }

    .nav-links.open {
    max-height: 400px;
    opacity: 1;
    padding: var(--space-xl) var(--space-lg);
    gap: var(--space-lg);
    }

    .nav-links a,
    .nav-links.open a { color: var(--charcoal); }
    
    .nav-links .lang-toggle {
    border-color: var(--sand);
    color: var(--charcoal-light);
    align-self: flex-start;
    }
    
    .nav-links .lang-toggle:hover {
    background: var(--sand-light);
    border-color: var(--sand);
    }

    .hero-content { padding: 0 var(--space-lg) var(--space-2xl); }

    .apartment-grid,
    .location-grid,
    .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    }

    .apartment-image::after { display: none; }
    .apartment-features { gap: var(--space-md); }

    .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    }
    .g1 { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16/9; }
    .g2 { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4/3; }
    .g3 { grid-column: 1; grid-row: auto; aspect-ratio: 1; }
    .g4 { grid-column: 2; grid-row: auto; aspect-ratio: 1; }
    .g5 { grid-column: 1; grid-row: auto; aspect-ratio: 1; }
    .g6 { grid-column: 2; grid-row: auto; aspect-ratio: 1; }
    .g7 { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4/3; }
    .g8 { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4/3; }
    .g9 { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4/3; }

    .calendar-container {
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    }

    .form-row { grid-template-columns: 1fr; }

    .contact-aside {
    padding: var(--space-lg);
    }

    footer {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    }
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}