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

:root {
    --bg-body: #f6f3ee;
    --bg-soft: #f9f6f1;
    --bg-soft-alt: #f1ece3;
    --surface: #ffffff;
    --border-subtle: #e0d9cd;
    --primary: #b28044;
    --primary-soft: #ffebd4;
    --accent: #c49a63;
    --text-main: #25221e;
    --text-muted: #6b645c;
    --text-soft: #a1968a;
    --shadow-soft: 0 18px 40px rgba(26, 24, 19, 0.14);
    --radius-lg: 0.8rem;
    --radius-xl: 0.8rem;
    --radius-pill: 999px;
    --transition-fast: 150ms ease-out;
    --transition-med: 220ms ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
}

/* Layout */

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4.25rem 0;
}

.buffer_section {
	height:50px;
	margin-top:-50px;
}

.section-soft {
    background: linear-gradient(to bottom, var(--bg-soft), var(--bg-soft-alt));
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(246, 243, 238, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(224, 217, 205, 0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.7rem 0rem;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    text-decoration: none;
}

.logo img {width:200px;}

.logo-mark {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(197, 154, 99, 0.6);
    color: var(--primary);
}

.logo-text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--transition-fast);
}


.menu-modal .modal-dialog {
    max-width: 420px;
    width: calc(100% - 2.5rem);
    padding: 0;
}

.menu-modal-dialog {
    padding: 0;
}

.menu-modal-nav {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.5rem 0.4rem;
    gap: 0.2rem;
}

.menu-modal-nav a {
    padding: 0.6rem 0.2rem;
    font-size: 0.98rem;
    text-decoration: none;
    color: var(--text-main);
}

.menu-modal-nav a:hover,
.menu-modal-nav a:focus-visible {
    color: var(--primary);
}

.menu-modal-footer {
    padding: 0.8rem 1.5rem 1.2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: flex-end;
}


.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    color: var(--primary);
    background: rgba(178, 128, 68, 0.08);
}



.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 0.1rem 0.25rem;
    cursor: pointer;
    color: inherit;
    font: inherit;
    opacity: 0.6;
    transition: opacity 150ms ease-out, color 150ms ease-out;
}

.lang-btn:hover {
    opacity: 1;
    color: var(--primary);
}

.lang-active {
    opacity: 1;
    color: var(--primary);
    font-weight: 600;
}

.lang-divider {
    opacity: 0.5;
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-pill);
    border: none;
    outline: none;
    background: var(--primary);
    color: #fdfbf7;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(37, 34, 30, 0.26);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(37, 34, 30, 0.3);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(37, 34, 30, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(53, 92, 90, 0.05);
    box-shadow: 0 8px 20px rgba(37, 34, 30, 0.18);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(197, 154, 99, 0.7);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(196, 154, 99, 0.08);
}

.btn-small {
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

.btn-plan {
    margin-top: 0.3rem;
    padding: 0.45rem 1.25rem;
    font-size: 0.8rem;
    border-radius: 999px;
}

/* Hero */

.hero {
    padding: 4rem 0 3.5rem;
    background: radial-gradient(circle at top left, #ebe3d8, #f6f3ee 42%, #f2eee7 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 3.3vw, 2.9rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 0.7rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 30rem;
}

.hero-actions {
    margin: 1.75rem 0 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    font-size: 0.9rem;
}

.hero-stats div dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-soft);
}

.hero-stats div dd {
    font-weight: 500;
}

/* Hero media */

.hero-media {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr);
    gap: 0.9rem;
}

.hero-photo-main {
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(224, 217, 205, 0.8);
}

.hero-photo-main img {
    width: 100%;
    height: 320px !important;
    object-fit: cover;
    display: block;
}

.hero-photo-secondary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 0.85rem;
    align-items: center;
}

.hero-photo-secondary figure {
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid rgba(224, 217, 205, 0.8);
}

.hero-photo-secondary img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.95rem 1rem;
    border-radius: 0.8rem;
    background: var(--bg-soft);
    border: 1px solid rgba(224, 217, 205, 0.9);
}

/* Typography and helpers */

h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    margin-bottom: 0.9rem;
	line-height:1.1;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
	line-height:1.1;
}

.section-lead {
    color: var(--text-muted);
    max-width: 32rem;
    font-size: 0.97rem;
}

p {
    margin-bottom: 0.75rem;
}

.muted {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.small-note {
    font-size: 0.8rem;
	margin-top:16px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 0.35rem;
}

.section-intro {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    align-items: flex-end;
}

/* Grids & cards */

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.75rem;
}

.project-facts {
    align-self: center;
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 1.8rem 1.7rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.facts-list {
    display: grid;
    gap: 1rem;
    font-size: 0.94rem;
}

.facts-list div {
    padding-bottom: 0.6rem;
    border-bottom: 1px dashed rgba(224, 217, 205, 0.9);
}

.facts-list dt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
}

.facts-list dd {
    font-weight: 500;
}

/* Lists */

.check-list {
    list-style: none;
    margin-top: 1.1rem;
	margin-bottom: 1.1rem;
    display: grid;
    gap: 0.55rem;
    font-size: 0.94rem;
}

.check-list li::before {
    content: "•";
    margin-right: 0.55rem;
    color: var(--accent);
}

/* Location / map */

.icon-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin: 1.1rem 0;
    font-size: 0.94rem;
}

.icon-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--accent);
    display: inline-block;
    margin-right: 0.5rem;
}

.map-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.map-embed iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
}

.map-caption {
    padding: 1rem 1.2rem 1.1rem;
}

/* Why Ravda */

.pill-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
	margin-top: 1.8rem;
}

.pill {
    padding: 1.2rem 1.1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}

.pill-header {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.35rem;
}

.pill-icon {
    font-size: 1.25rem;
}

/* Apartments */

.section-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.85rem;
    align-items: center;
    justify-content: flex-end;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.status-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
}

.status-available {
    background: #4ade80;
}

.status-reserved {
    background: #fb923c;
}

.status-sold {
    background: #f97373;
}

.filters {
    margin: 1.1rem 0 1.8rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-soft);
}

.filter-group {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.chip {
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    padding: 0.35rem 0.95rem 0.32rem 0.95rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-muted);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.chip:hover {
    transform: translateY(-1px);
    border-color: var(--primary);
    color: var(--primary);
}

.chip.active {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--primary);
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
}

.apartment-card {
    background: var(--surface);
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.apartment-body {
    padding: 1.3rem 1.3rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.apartment-header-line {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.apartment-header-line h3 {
    margin-bottom: 0;
    font-size: 1rem;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fefcf7;
}

.status-badge.status-available {
    background: #15803d;
}

.status-badge.status-reserved {
    background: #f97316;
}

.status-badge.status-sold {
    background: #b91c1c;
}

.apartment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    font-size: 0.86rem;
}

.apartment-meta div {
    min-width: 5rem;
}

.apartment-meta dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
}

.apartment-meta dd {
    font-weight: 500;
}

.apartment-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floorplans */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.plan-card {
    background: var(--surface);
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    font-size: 0.86rem;
}

.plan-card img {
    display: block;
    width: 100%;
}

.plan-card figcaption {
    padding: 0.8rem 0.9rem 0.9rem;
    color: var(--text-muted);
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-item {
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    font-size: 0.86rem;
}

.gallery-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 0.7rem 0.8rem 0.85rem;
    color: var(--text-muted);
}

/* Contact */

.section-contact {
    background: var(--bg-soft-alt);
    border-top: 1px solid rgba(224, 217, 205, 0.9);
    border-bottom: 1px solid rgba(224, 217, 205, 0.9);
}

.contact-details {
    margin: 1.2rem 0 1.4rem;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--surface);
    padding: 1.6rem 1.6rem 1.5rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}
.form-status {
    margin-bottom: 0.9rem;
    padding: 0.75rem 0.9rem;
    border-radius: 0.5rem;
    font-size: 0.86rem;
    line-height: 1.4;
}

.form-status-success {
    background: #e6f5ec;
    border: 1px solid #9cc7a8;
	color: #155724;
    padding: 30px;
    text-align: center;
    margin-top: 70px;
}

.form-status-error {
    background: #fbecec;
    border: 1px solid #e4a3a3;
    color: #7f1f1f;
}
.form-status-dialog {
    max-width: 420px;
}

.form-status-content {
    font-size: 0.95rem;
    line-height: 1.5;
}



.form-status-error {
    color: #842029;
}


.field {
    margin-bottom: 0.9rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: var(--text-soft);
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border-subtle);
    background: #fbf8f2;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(53, 92, 90, 0.3);
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(224, 217, 205, 0.9);
    background: #f2eee7;
    padding: 1.6rem 0 1.9rem;
    margin-top: 1rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    font-size: 0.86rem;
}

.logo-foot {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.footer-meta {
    text-align: right;
}

.footer-links {
    margin-top: 0.2rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.86rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Modals */

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 40;
}

.modal.open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 12, 0.45);
    backdrop-filter: blur(4px);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 840px;
    width: calc(100% - 2.5rem);
    border-radius: 0.8rem;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 24px 80px rgba(18, 16, 12, 0.38);
	height: 90%;
}

.modal-dialog-plan {
    max-width: 960px;
}

.modal-content {
    padding: 1.6rem 1.7rem 1.7rem;
    height: 100%;
    overflow: auto;	
}

.modal-content-plan {
    padding: 1.3rem 1.5rem 1.5rem;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    border: none;
    background: #fdfbf7;
    color: var(--text-muted);
    border-radius: 999px;
    width: 2.1rem;
    height: 2.1rem;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(18, 16, 12, 0.4);
}

.modal-content-terms h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
}

.terms-list {
    margin: 0.5rem 0 0.9rem 1.1rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.terms-list li {
    margin-bottom: 0.7rem;
}

.terms-list strong {
    display: inline-block;
    margin-bottom: 0.15rem;
}

.plan-modal-figure {
    margin-bottom: 0.6rem;
}

.plan-modal-figure img {
    width: 100%;
    display: block;
    border-radius: 0.8rem;
    border: 1px solid var(--border-subtle);
    margin-bottom: 0.45rem;
}

.plan-modal-figures {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.plan-modal-heading {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: var(--text-soft);
}


/* Responsive */

@media (max-width: 1150px) {
    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-media {
        max-width: 420px;
    }

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

    .apartments-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .plans-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .section-header,
    .section-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        display: none;
    }
	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}	
	.logo img {width:250px;}
}

@media (max-width: 640px) {
    .header-inner {
        padding-inline: 1rem;
    }

    .hero {
        padding: 3rem 0 2.6rem;
    }

    .hero-photo-main img {
        height: 250px !important;
    }

    .hero-photo-secondary {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form {
        padding-inline: 1.2rem;
    }

    .modal-content,
    .modal-content-plan {
        padding-inline: 1.2rem;
    }
	.pill-header h3 {
		word-break: break-all;
	}
	.logo img {width:220px;}
    .main-nav {
        display: none;
    }
	.header-actions {
		gap: 0.4rem;
	}

	.lang-switch {
		font-size: 0.72rem;
	}
	
}

/* Image modal (lightbox) */

.image-modal-backdrop {
    background: rgba(20, 24, 30, 0.6); /* ~60% тъмен сив фон */
}

.image-modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 1.2rem;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#image-modal-img {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 1.1rem;
    box-shadow: var(--shadow-soft);
    background: #000; /* за да няма "прозрачни" краища при някои снимки */
}

.image-modal-close {
    background: #fdfbf7;
}

/* Показваме „лупа“ при кликваемите снимки */
.hero-photo-secondary img,
.gallery-item img {
    cursor: zoom-in;
}

/* Parking table */
.parking-section {
    margin-top: 2.2rem;
}

.parking-title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.parking-table-wrapper {
    margin-top: 1rem;
    overflow-x: auto;
}

.parking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 260px;
}

.parking-table th,
.parking-table td {
    padding: 0.5rem 0.6rem;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.parking-table th {
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
}

.parking-table tr:last-child td {
    border-bottom: none;
}