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

:root {
    --dark:          #1C1008;
    --brown:         #3D2410;
    --brown-mid:     #6B4226;
    --gold:          #C9A84C;
    --gold-light:    #E8D28A;
    --gold-pale:     #F5EDD0;
    --cream:         #FAF6EE;
    --cream-mid:     #F0E8D6;
    --cream-dark:    #E2D4BC;
    --text:          #2A1A0C;
    --text-muted:    #7A6045;
    --border:        #DDD0B0;
    --white:         #FFFFFF;
    --shadow-sm:     0 2px 8px rgba(60,36,16,.08);
    --shadow-md:     0 6px 24px rgba(60,36,16,.13);
    --shadow-lg:     0 16px 56px rgba(60,36,16,.20);
    --radius:        4px;
    --radius-sm:     3px;
    --radius-full:   999px;
    --transition:    .25s ease;
    --nav-h:         80px;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--text); background: var(--cream);
    line-height: 1.65; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; }
h1 em, h2 em { font-style: italic; color: var(--gold); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: 'DM Sans', system-ui, sans-serif; font-size: 1rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 34px; background: var(--brown); color: var(--cream);
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .88rem;
    letter-spacing: .8px; text-transform: uppercase;
    border: 1.5px solid var(--brown);
    transition: all var(--transition); white-space: nowrap;
}
.btn-primary:hover { background: transparent; color: var(--brown); }
.btn-sm { padding: 10px 22px; font-size: .8rem; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    background: var(--cream);
    box-shadow: 0 1px 0 var(--border);
}
.nav-inner { display: flex; align-items: center; height: var(--nav-h); gap: 32px; }

.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700; letter-spacing: 4px;
    color: var(--white); transition: color var(--transition); line-height: 1;
}
.brand-rule { width: 1px; height: 24px; background: rgba(201,168,76,.6); flex-shrink: 0; }
.brand-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: .68rem; font-weight: 600; letter-spacing: 4px;
    color: var(--gold); text-transform: uppercase; transition: color var(--transition);
}
.navbar.scrolled .brand-main { color: var(--brown); }
.navbar.scrolled .brand-rule { background: var(--border); }
.navbar.scrolled .brand-sub { color: var(--brown-mid); }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
    padding: 8px 16px; font-size: .82rem; font-weight: 500;
    letter-spacing: .3px; color: rgba(255,255,255,.88);
    transition: all var(--transition); position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
    height: 1px; background: var(--gold); transform: scaleX(0);
    transition: transform var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.navbar.scrolled .nav-link { color: var(--text-muted); }
.navbar.scrolled .nav-link:hover { color: var(--brown); }
.navbar.scrolled .nav-link::after { background: var(--brown); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-toggle {
    padding: 7px 16px; border: 1px solid rgba(201,168,76,.5);
    font-size: .75rem; font-weight: 700; letter-spacing: 1.5px;
    color: var(--gold); transition: all var(--transition); text-transform: uppercase;
}
.lang-toggle:hover { border-color: var(--gold); background: rgba(201,168,76,.1); }
.navbar.scrolled .lang-toggle { border-color: var(--border); color: var(--brown-mid); }
.navbar.scrolled .lang-toggle:hover { border-color: var(--gold); color: var(--brown); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all var(--transition); }
.navbar.scrolled .hamburger span { background: var(--brown); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: calc(var(--nav-h) + 60px) 32px 110px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(165deg, rgba(28,16,8,.82) 0%, rgba(40,20,8,.58) 50%, rgba(10,5,0,.45) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; width: 100%; }

.hero-ornament { font-size: 1.4rem; color: var(--gold); opacity: .7; margin-bottom: 18px; animation: fadeInDown .8s ease both; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: .7; transform: translateY(0); } }

.hero-badge {
    display: inline-block; margin-bottom: 22px;
    font-size: .73rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(232,210,138,.9); animation: fadeIn .9s .1s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.2rem); font-weight: 600;
    color: var(--white); line-height: 1.08; letter-spacing: -.5px;
    margin-bottom: 20px; animation: fadeInUp .9s .2s ease both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-content p {
    font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 48px;
    font-weight: 300; letter-spacing: .2px; animation: fadeIn 1s .35s ease both;
}

/* Search */
.search-card {
    background: var(--white); display: flex; align-items: center;
    box-shadow: 0 24px 64px rgba(28,16,8,.35);
    max-width: 900px; margin: 0 auto;
    border-top: 2px solid var(--gold); animation: fadeIn 1s .45s ease both;
}
.search-field { flex: 1; padding: 16px 22px; min-width: 0; }
.search-field label { display: block; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brown-mid); margin-bottom: 5px; }
.search-field input, .search-field select { width: 100%; border: none; outline: none; font-size: .9rem; color: var(--text); background: transparent; padding: 0; }
.search-field input::placeholder { color: var(--cream-dark); }
.search-sep { width: 1px; height: 40px; background: var(--cream-dark); flex-shrink: 0; }
.search-btn {
    padding: 0 32px; background: var(--brown); color: var(--cream);
    font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    height: 100%; align-self: stretch; min-width: 120px;
    transition: background var(--transition); flex-shrink: 0;
}
.search-btn:hover { background: var(--dark); }

.hero-stats {
    position: relative; z-index: 1; display: flex; align-items: center;
    justify-content: center; gap: 48px; margin-top: 64px; animation: fadeIn 1s .6s ease both;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat span { font-size: .72rem; color: rgba(255,255,255,.6); letter-spacing: .8px; text-transform: uppercase; margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 48px; background: rgba(201,168,76,.3); }

/* ===== FEATURE STRIP ===== */
.feature-strip { background: var(--brown); padding: 18px 0; border-top: 1px solid rgba(201,168,76,.2); }
.feature-strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.feature-item { display: flex; align-items: center; gap: 9px; color: rgba(232,210,138,.85); font-size: .8rem; font-weight: 500; letter-spacing: .3px; padding: 6px 20px; }
.feature-icon { font-size: 1rem; }
.feat-sep { color: rgba(201,168,76,.35); font-size: 1.2rem; }

/* ===== GUESTY SECTION ===== */
.guesty-section { background: var(--cream-mid); }
.guesty-widget-wrap {
    max-width: 1000px; margin: 0 auto;
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    background: var(--white);
    overflow: hidden;
}

/* ===== SECTIONS ===== */
.section { padding: 110px 0; background: var(--cream); }
.section-alt { background: var(--cream-mid); }

.ornament-line { text-align: center; margin-bottom: 14px; }
.ornament-line.left { text-align: left; }
.ornament-line span { color: var(--gold); font-size: .9rem; letter-spacing: 8px; }

.section-label { font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--brown-mid); margin-bottom: 10px; text-align: center; display: block; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; color: var(--dark); margin-bottom: 14px; line-height: 1.15; }
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.7; font-weight: 300; }

/* ===== CITY TABS ===== */
.city-tabs { display: flex; margin-bottom: 52px; border-bottom: 1px solid var(--border); }
.filter-btn {
    padding: 12px 28px; font-size: .8rem; font-weight: 600;
    letter-spacing: .8px; text-transform: uppercase; color: var(--text-muted);
    background: transparent; border: none; border-bottom: 2px solid transparent;
    margin-bottom: -1px; transition: all var(--transition);
}
.filter-btn:hover { color: var(--brown); }
.filter-btn.active { color: var(--brown); border-bottom-color: var(--gold); }

/* ===== APARTMENT CARDS ===== */
.apartments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.apt-card {
    background: var(--white); cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative; overflow: hidden;
}
.apt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); z-index: 1; }

.apt-img-wrap { position: relative; height: 240px; overflow: hidden; }
.apt-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.apt-card:hover .apt-img-wrap img { transform: scale(1.05); }

.apt-badge {
    position: absolute; top: 0; left: 0;
    background: var(--brown); color: var(--cream);
    font-size: .65rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 7px 14px;
}
.apt-fav {
    position: absolute; top: 12px; right: 12px; width: 34px; height: 34px;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: .95rem; cursor: pointer; transition: transform var(--transition);
    border: 1px solid var(--cream-dark);
}
.apt-fav:hover { transform: scale(1.15); }
.apt-fav.liked { color: #c0392b; }

.apt-info { padding: 22px; border-top: 2px solid var(--gold-pale); }
.apt-name { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.apt-location { font-size: .75rem; color: var(--text-muted); margin-bottom: 14px; letter-spacing: .3px; }
.apt-amenities { display: flex; gap: 12px; flex-wrap: wrap; font-size: .78rem; color: var(--text-muted); margin-bottom: 16px; }
.apt-amenity { display: flex; align-items: center; gap: 4px; }
.apt-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--cream-dark); }

/* "Priamo" badge na obrázku */
.apt-direct-badge {
    position: absolute; top: 0; right: 0;
    background: var(--gold); color: var(--dark);
    font-size: .6rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 7px 12px;
}
.apt-rating { font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.apt-rating .star { color: var(--gold); }
.no-results { text-align: center; padding: 80px 0; color: var(--text-muted); }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: flex; align-items: flex-start; justify-content: center; }
.step-card { flex: 1; max-width: 300px; text-align: center; padding: 40px 32px; background: var(--white); border: 1px solid var(--border); position: relative; }
.step-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brown), var(--gold)); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700; color: var(--cream-dark); line-height: 1; margin-bottom: 10px; font-style: italic; }
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.step-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.7; }
.step-connector { display: flex; align-items: center; padding-top: 80px; }
.connector-line { width: 40px; height: 1px; background: var(--gold); position: relative; }
.connector-line::after { content: '▶'; position: absolute; right: -8px; top: -6px; font-size: .6rem; color: var(--gold); }

/* ===== WHY US ===== */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-wrap img { width: 100%; height: 540px; object-fit: cover; }
.why-img-card {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--brown); color: var(--cream);
    padding: 24px 28px; text-align: center; min-width: 120px; box-shadow: var(--shadow-md);
}
.why-img-card strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; line-height: 1; color: var(--gold); }
.why-img-card span { display: block; font-size: .85rem; color: var(--gold); margin: 6px 0; }
.why-img-card small { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(232,210,138,.6); }
.why-content .ornament-line { text-align: left; }
.why-content .section-label { text-align: left; }
.why-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--dark); margin-bottom: 18px; line-height: 1.2; }
.why-content > p { color: var(--text-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 32px; }
.why-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.why-point { display: flex; align-items: flex-start; gap: 14px; font-size: .9rem; }
.why-check { color: var(--gold); font-size: .8rem; margin-top: 2px; flex-shrink: 0; }

/* ===== CITIES ===== */
.cities-section { background: var(--dark); padding: 100px 0; }
.cities-section .section-head h2 { color: var(--cream); }
.cities-section .ornament-line span { color: var(--gold); }
.cities-section .section-label { color: rgba(201,168,76,.7); }
.cities-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 2px; background: rgba(201,168,76,.15); }
.city-card { position: relative; overflow: hidden; }
.city-img { height: 340px; overflow: hidden; }
.city-card-large .city-img { height: 440px; }
.city-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: brightness(.75) saturate(.8); }
.city-card:hover .city-img img { transform: scale(1.05); filter: brightness(.6) saturate(.8); }
.city-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px; background: linear-gradient(0deg, rgba(28,16,8,.92) 0%, transparent 100%);
}
.city-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.city-info p { font-size: .82rem; color: rgba(250,246,238,.72); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon-box { width: 44px; height: 44px; background: var(--cream-mid); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brown-mid); margin-bottom: 5px; }
.contact-item p { font-size: .92rem; color: var(--text); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--gold); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--brown-mid); margin-bottom: 9px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    background: var(--cream); font-size: .9rem; outline: none; color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.form-group textarea { resize: vertical; }
.form-success { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 14px 18px; background: #f0f8e8; color: #3a6b1a; font-size: .9rem; font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(250,246,238,.65); padding: 72px 0 0; }
.footer-top { text-align: center; margin-bottom: 40px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .brand-main { color: var(--cream); font-size: 1.6rem; letter-spacing: 5px; }
.footer-brand .brand-rule { background: rgba(201,168,76,.4); }
.footer-brand .brand-sub { color: var(--gold); letter-spacing: 4px; }
.footer-top p { font-size: .88rem; line-height: 1.8; color: rgba(250,246,238,.55); }
.footer-ornament { text-align: center; color: rgba(201,168,76,.4); font-size: .75rem; letter-spacing: 6px; margin-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(201,168,76,.1); }
.footer h4 { font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-light); margin-bottom: 20px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: .86rem; color: rgba(250,246,238,.55); transition: color var(--transition); }
.footer ul a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 8px; margin-bottom: 16px; }
.social-btn { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,.25); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; text-transform: uppercase; color: rgba(250,246,238,.5); transition: all var(--transition); }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-email { font-size: .8rem; color: rgba(201,168,76,.55); }
.footer-bottom { padding: 22px 0; text-align: center; font-size: .78rem; color: rgba(250,246,238,.3); letter-spacing: .3px; }
.footer-legal-links { margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(201,168,76,.5); text-decoration: none; transition: color .2s; font-size: .75rem; letter-spacing: .3px; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-sep { color: rgba(201,168,76,.3); font-size: .7rem; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(28,16,8,.75); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: fadeIn .2s ease; }
.modal { background: var(--white); max-width: 940px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: slideUp .3s ease; border-top: 3px solid var(--gold); }
@keyframes slideUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.modal-close { position: sticky; top: 16px; left: 100%; width: 38px; height: 38px; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .9rem; margin-right: 16px; margin-top: 16px; z-index: 10; transition: all var(--transition); }
.modal-close:hover { background: var(--dark); color: var(--cream); }
.modal-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 250px 250px; gap: 3px; height: 503px; overflow: hidden; }
.modal-gallery img { width: 100%; height: 100%; object-fit: cover; }
.modal-gallery img:first-child { grid-row: 1 / -1; }
.modal-grid { display: grid; grid-template-columns: 1fr 290px; gap: 40px; padding: 36px; }
.modal-left h2 { font-size: 1.7rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.modal-location { font-size: .8rem; color: var(--text-muted); margin-bottom: 18px; }
.modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.modal-tag { padding: 5px 14px; background: var(--cream); border: 1px solid var(--border); font-size: .75rem; font-weight: 600; color: var(--text-muted); }
.modal-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 26px; }
.modal-amenities-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: var(--dark); }
.modal-amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.modal-amenity-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-muted); }
.modal-amenity-item .check { color: var(--gold); }

.booking-panel { border: 1px solid var(--border); border-top: 2px solid var(--gold); padding: 26px; position: sticky; top: 80px; background: var(--cream); }
.booking-price { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.booking-price .rating { font-size: .8rem; font-weight: 600; color: var(--text-muted); }
.booking-discount-note { font-size: .85rem; color: var(--brown-mid); background: var(--gold-pale); border: 1px solid var(--gold-light); padding: 12px 16px; margin-bottom: 18px; line-height: 1.5; }
.booking-btn-direct { justify-content: center; }
.booking-note { text-align: center; font-size: .72rem; color: var(--text-muted); margin-top: 10px; letter-spacing: .2px; }

/* Toast */
.toast { position: fixed; bottom: 36px; left: 50%; transform: translateX(-50%); padding: 14px 32px; background: var(--dark); color: var(--cream); font-size: .85rem; font-weight: 500; box-shadow: var(--shadow-lg); z-index: 300; animation: toastIn .3s ease; border-top: 2px solid var(--gold); }
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(16px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .apartments-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 56px; }
    .why-img-wrap img { height: 400px; }
    .why-img-card { right: 0; bottom: -16px; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .city-card:last-child { grid-column: 1 / -1; }
    .city-card:last-child .city-img { height: 300px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .modal-grid { grid-template-columns: 1fr; }
    .booking-panel { position: static; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .nav-inner { position: relative; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--cream); padding: 16px; box-shadow: var(--shadow-md); z-index: 99; gap: 2px; }
    .nav-links.open .nav-link { color: var(--text-muted); padding: 12px 16px; }
    .search-card { flex-direction: column; }
    .search-sep { width: 100%; height: 1px; }
    .search-btn { width: 100%; padding: 16px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .feature-strip-inner { flex-direction: column; gap: 8px; align-items: flex-start; padding: 0 32px; }
    .feat-sep { display: none; }
    .steps-grid { flex-direction: column; }
    .step-connector { display: none; }
    .step-card { max-width: 100%; }
    .apartments-grid { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: 1fr; }
    .city-card:last-child { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .modal-gallery { grid-template-columns: 1fr; height: 260px; grid-template-rows: 260px; }
    .modal-gallery img:not(:first-child) { display: none; }
    .modal-gallery img:first-child { grid-row: 1; }
    .modal-amenities-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .modal-grid { padding: 24px; gap: 28px; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.6rem; }
    .section { padding: 72px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .city-tabs { overflow-x: auto; }
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
    background: var(--cream-mid);
    padding: calc(var(--nav-h) + 80px) 0 72px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.legal-hero .ornament-line { margin-bottom: 12px; }
.legal-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.15;
}
.legal-hero .section-sub { font-size: .85rem; }

.legal-content { padding: 80px 0 120px; background: var(--cream); }

.legal-body { max-width: 760px; margin: 0 auto; }

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.legal-section:last-of-type { border-bottom: none; margin-bottom: 0; }

.legal-section h2 {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-pale);
}
.legal-section h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown-mid);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin: 28px 0 12px;
}
.legal-section p {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
}
.legal-section ul, .legal-section ol {
    padding-left: 22px;
    margin-bottom: 14px;
}
.legal-section li {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 9px;
    list-style: disc;
}
.legal-section ol li { list-style: decimal; }
.legal-section a { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; }
.legal-section a:hover { color: var(--gold); }
.legal-section code {
    font-family: monospace;
    font-size: .85em;
    background: var(--cream-mid);
    border: 1px solid var(--border);
    padding: 1px 6px;
    color: var(--brown);
}

.legal-info-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 22px 26px;
    margin-bottom: 24px;
}
.legal-info-box strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brown-mid);
    margin-bottom: 10px;
}
.legal-info-box p {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 5px;
}
.legal-info-box a { color: var(--brown); text-decoration: underline; }

.legal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 56px;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--brown-mid);
    transition: color var(--transition);
}
.legal-back-btn::before { content: '←'; font-size: 1rem; }
.legal-back-btn:hover { color: var(--brown); }

@media (max-width: 768px) {
    .legal-hero { padding: calc(var(--nav-h) + 48px) 0 48px; }
    .legal-content { padding: 56px 0 80px; }
    .legal-body { padding: 0 4px; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 500;
    background: var(--dark);
    border-top: 2px solid var(--gold);
    box-shadow: 0 -4px 32px rgba(28,16,8,.35);
    animation: slideUpBanner .4s ease;
}
@keyframes slideUpBanner {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 200px; }
.cookie-banner-text p { font-size: .84rem; line-height: 1.6; color: rgba(250,246,238,.7); margin: 0; }
.cookie-banner-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
    padding: 10px 28px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline {
    padding: 10px 20px;
    background: transparent;
    color: rgba(250,246,238,.5);
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    border: 1px solid rgba(250,246,238,.15);
    cursor: pointer;
    transition: all var(--transition);
}
.cookie-btn-decline:hover { border-color: rgba(250,246,238,.4); color: rgba(250,246,238,.8); }
@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; }
    .cookie-banner-actions { justify-content: flex-end; }
}
