:root {
    --color-gold: #c6a469;
    --color-gold-light: #e2c892;
    --color-dark: #0c0d0f;
    --color-dark-soft: #13161a;
    --color-anthracite: #1b2026;
    --color-cream: #f3eee6;
    --color-white: #ffffff;
    --color-muted: #a9afb8;
    --color-border: rgba(255, 255, 255, 0.12);
    --color-error: #ff7d7d;
    --color-success: #88d7a3;
    --shadow-soft: 0 24px 64px rgba(0, 0, 0, 0.32);
    --radius: 8px;
    --radius-lg: 18px;
    --container: 1480px;
    --transition: 0.35s ease;
    --page-bg: linear-gradient(180deg, #090a0b 0%, #0d1014 55%, #12161c 100%);
    --text-main: rgba(255, 255, 255, 0.96);
    --text-soft: rgba(255, 255, 255, 0.82);
    --surface-muted: rgba(255, 255, 255, 0.02);
    --surface-soft: rgba(255, 255, 255, 0.03);
    --surface-strong: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    --line-soft: rgba(255, 255, 255, 0.08);
    --header-bg: rgba(10, 12, 15, 0.94);
    --header-bg-strong: rgba(10, 12, 15, 0.96);
    --header-line: rgba(255, 255, 255, 0.05);
    --menu-bg: rgba(10, 12, 15, 0.84);
    --footer-bg: #090a0b;
    --hero-overlay:
        radial-gradient(circle at 10% 20%, rgba(198, 164, 105, 0.18), transparent 38%),
        linear-gradient(115deg, rgba(6, 7, 9, 0.88), rgba(6, 7, 9, 0.52) 52%, rgba(6, 7, 9, 0.82));
    --page-hero-bg:
        radial-gradient(circle at top left, rgba(198, 164, 105, 0.15), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    --badge-bg: rgba(11, 11, 14, 0.82);
    --field-bg: rgba(255, 255, 255, 0.04);
    --field-border: rgba(255, 255, 255, 0.12);
    --table-head-bg: rgba(255, 255, 255, 0.04);
    --cookie-bg: rgba(10, 12, 15, 0.96);
    --shadow-elevated: 0 22px 44px rgba(0, 0, 0, 0.34);
}

html[data-theme='light'] {
    --page-bg: linear-gradient(180deg, #f6efe4 0%, #f7f1e8 44%, #ebe3d6 100%);
    --text-main: #241f17;
    --text-soft: rgba(36, 31, 23, 0.8);
    --color-cream: #201a13;
    --color-muted: rgba(74, 63, 48, 0.78);
    --color-border: rgba(55, 42, 23, 0.12);
    --surface-muted: rgba(255, 255, 255, 0.52);
    --surface-soft: rgba(255, 255, 255, 0.7);
    --surface-strong: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 239, 228, 0.86));
    --line-soft: rgba(70, 52, 30, 0.12);
    --header-bg: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 239, 228, 0.92) 58%, rgba(235, 227, 214, 0.94) 100%);
    --header-bg-strong: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 239, 228, 0.98) 58%, rgba(235, 227, 214, 0.99) 100%);
    --header-line: rgba(70, 52, 30, 0.08);
    --menu-bg: rgba(255, 255, 255, 0.92);
    --footer-bg: #efe4d4;
    --hero-overlay:
        radial-gradient(circle at 8% 18%, rgba(198, 164, 105, 0.28), transparent 34%),
        linear-gradient(115deg, rgba(246, 239, 228, 0.92), rgba(246, 239, 228, 0.7) 52%, rgba(233, 224, 211, 0.9));
    --page-hero-bg:
        radial-gradient(circle at top left, rgba(198, 164, 105, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    --badge-bg: rgba(255, 250, 244, 0.94);
    --field-bg: rgba(255, 255, 255, 0.9);
    --field-border: rgba(55, 42, 23, 0.16);
    --table-head-bg: rgba(255, 255, 255, 0.72);
    --cookie-bg: rgba(247, 241, 232, 0.98);
    --shadow-soft: 0 24px 60px rgba(82, 59, 25, 0.12);
    --shadow-elevated: 0 24px 50px rgba(82, 59, 25, 0.14);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: 'Source Sans 3', Arial, sans-serif;
    background: var(--page-bg);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: clip;
    transition: background var(--transition), color var(--transition);
}

main,
section,
div,
article,
aside,
header,
footer,
li {
    min-width: 0;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

iframe {
    width: 100%;
    border: 0;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.section,
.page-hero,
.hero {
    position: relative;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background: var(--surface-muted);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

h1,
h2,
h3 {
    margin: 0 0 18px;
    line-height: 1.05;
}

h1,
h2 {
    font-family: 'Playfair Display', Georgia, serif;
}

h1 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.3rem);
    font-weight: 600;
}

.page-contact h2 {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
}

h3 {
    font-size: 1.2rem;
    font-family: 'Source Sans 3', Arial, sans-serif;
    font-weight: 600;
}

p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.muted-note,
small {
    color: var(--color-muted);
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #17120a;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    box-shadow: 0 18px 36px rgba(198, 164, 105, 0.22);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(198, 164, 105, 0.28);
}

.button--secondary {
    background: var(--surface-muted);
    border-color: var(--color-border);
    color: var(--text-main);
    box-shadow: none;
}

.button--ghost {
    background: transparent;
    color: var(--text-main);
    border-color: rgba(198, 164, 105, 0.45);
    box-shadow: none;
}

.button--header,
.button--full {
    width: 100%;
}

.button--whatsapp {
    gap: 12px;
    white-space: normal;
    text-align: center;
}

.button__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
}

.button__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.skip-link,
.sr-only,
.hp-field {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 1000;
    background: var(--color-white);
    color: #000;
    padding: 12px 14px;
    border-radius: 6px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 120;
    background: var(--line-soft);
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-line);
    backdrop-filter: blur(14px);
    transition: background var(--transition), padding var(--transition), border-color var(--transition);
}

.site-header--transparent {
    position: fixed;
    width: 100%;
    background: transparent;
    border-color: transparent;
}

.site-header.is-scrolled {
    background: var(--header-bg-strong);
    border-color: var(--line-soft);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.site-header__navgroup {
    display: flex;
    align-items: center;
    gap: 38px;
    flex: 0 1 auto;
    min-width: 0;
}

.site-brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.site-brand__logo,
.site-footer__logo {
    width: auto;
    max-width: 220px;
    max-height: 46px;
}

.site-footer__logo {
    display: block;
}

.site-footer__claim {
    margin-top: 32px;
}

.site-brand__logo {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.site-brand__logo--inline {
    display: block;
    width: min(220px, 20vw);
    height: auto;
    max-width: 100%;
    max-height: none;
}

.site-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
    justify-content: center;
}

.site-nav a {
    position: relative;
    color: var(--text-soft);
    font-weight: 600;
    font-size: 1rem;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text-main);
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-header__actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.theme-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border: 1px solid rgba(198, 164, 105, 0.18);
    border-radius: 999px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border: 1px solid rgba(198, 164, 105, 0.18);
    border-radius: 999px;
}

.lang-switcher__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lang-switcher__link:hover,
.lang-switcher__link:focus-visible,
.lang-switcher__link.is-active {
    background: rgba(198, 164, 105, 0.09);
    border-color: rgba(198, 164, 105, 0.26);
    color: var(--text-main);
}

.theme-switcher__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-height: 36px;
    min-width: 36px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: var(--text-soft);
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.theme-switcher__button i {
    font-size: 0.95rem;
    color: var(--color-gold-light);
}

.theme-switcher__button:hover,
.theme-switcher__button:focus-visible {
    color: var(--text-main);
}

.theme-switcher__button[aria-pressed='true'] {
    background: rgba(198, 164, 105, 0.09);
    border-color: rgba(198, 164, 105, 0.26);
    color: var(--text-main);
    box-shadow: none;
}

.theme-switcher--header {
    position: static;
    transform: none;
    z-index: auto;
}

.theme-switcher--mobile {
    display: none;
    margin-top: 16px;
    width: auto;
    justify-content: flex-start;
}

.mobile-menu__tools {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.site-header__actions .button--whatsapp {
    min-height: 42px;
    width: auto;
    padding: 0 16px;
    gap: 10px;
}

.site-header__actions .button--whatsapp .button__icon {
    width: 20px;
    height: 20px;
}

@media (min-width: 961px) {
    .site-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    background: var(--field-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--text-main);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    z-index: 85;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: var(--color-dark-soft);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-elevated);
}

.mobile-menu .container {
    width: 100%;
    padding: 22px 24px;
}

.mobile-menu .nav-list {
    display: grid;
    gap: 14px;
    margin-bottom: 0;
    justify-items: start;
}

.mobile-menu .site-nav {
    position: static;
    transform: none;
    width: 100%;
}

.mobile-menu .site-nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
    overflow-wrap: anywhere;
    text-align: left;
}

.mobile-menu .site-nav a::after {
    bottom: 2px;
}

html[data-theme='light'] .mobile-menu {
    background: linear-gradient(90deg, #ffffff 0%, #f6efe4 58%, #ebe3d6 100%);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-home .hero {
    min-height: auto;
    width: 100%;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.65fr);
    gap: 56px;
    align-items: end;
    padding: 180px 0 88px;
}

.page-home .hero__content {
    width: 100%;
    max-width: none;
    padding: 0;
}

.hero__lead {
    font-size: 1.08rem;
    max-width: 720px;
}

.hero__actions,
.button-row,
.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero__contact-line {
    margin-top: 16px;
    color: var(--text-main);
}

.hero__contact-line a {
    color: var(--color-gold-light);
    font-weight: 700;
}

.hero__panel,
.panel-card,
.form-card,
.benefit-card,
.property-card,
.service-card,
.reference-card,
.timeline__item,
.stat-card,
.cta-panel {
    background: var(--surface-strong);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero-carousel {
    overflow: hidden;
}

.hero-carousel__viewport {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.hero-carousel__track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.hero-carousel__slide {
    position: relative;
    flex: 0 0 100%;
    min-height: 78vh;
    overflow: hidden;
}

.hero-carousel__media,
.hero-carousel__overlay {
    position: absolute;
    inset: 0;
}

.hero-carousel__media {
    background: linear-gradient(180deg, rgba(198, 164, 105, 0.18), rgba(255, 255, 255, 0.03));
}

.hero-carousel__media img,
.hero-carousel__media iframe,
.hero-carousel__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.12) saturate(1.04);
    border: 0;
}

.hero-carousel__overlay {
    background:
        radial-gradient(circle at 12% 18%, rgba(198, 164, 105, 0.18), transparent 28%),
        linear-gradient(110deg, rgba(8, 9, 12, 0.64) 0%, rgba(8, 9, 12, 0.26) 46%, rgba(8, 9, 12, 0.68) 100%);
}

.hero-carousel__inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), 1560px);
    min-height: 78vh;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    padding: 148px 0 42px;
}

.hero-carousel__content {
    width: min(100%, 640px);
    padding: 34px;
    background: linear-gradient(180deg, rgba(9, 11, 14, 0.82), rgba(9, 11, 14, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    backdrop-filter: blur(12px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
    transform: translateY(-10px);
}

.hero-carousel__content .hero__lead {
    max-width: 100%;
}

.hero-carousel__location {
    margin-bottom: 14px;
    color: var(--color-gold-light);
    font-weight: 600;
}

.hero-carousel__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hero-carousel__meta li {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}

.hero-carousel__price {
    display: grid;
    gap: 6px;
    margin-top: 24px;
}

.hero-carousel__price strong {
    color: var(--color-gold-light);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
}

.hero-carousel__price span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
}

.hero-carousel__badge {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(9, 11, 14, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 56px;
    height: 56px;
    margin-top: -28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(9, 11, 14, 0.58);
    color: #fff;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.hero-carousel__nav:hover,
.hero-carousel__nav:focus-visible {
    background: rgba(9, 11, 14, 0.76);
}

.hero-carousel__nav span {
    font-size: 2rem;
    line-height: 1;
}

.hero-carousel__nav--prev {
    left: 24px;
}

.hero-carousel__nav--next {
    right: 24px;
}

.hero-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-carousel__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
}

.hero-carousel__dot.is-active {
    background: var(--color-gold-light);
}

.hero__panel {
    padding: 24px;
}

.hero__panel-item + .hero__panel-item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

.hero__panel-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-cream);
    font-size: 1.1rem;
}

.page-hero {
    padding: 50px 0 50px;
    background: var(--page-hero-bg);
    border-bottom: 1px solid var(--header-line);
}

.page-hero--compact {
    padding-bottom: 48px;
}

.breadcrumbs {
    position: relative;
    z-index: 10;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--header-line);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--color-muted);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.section-heading--stacked {
    align-items: flex-start;
    flex-direction: column;
}

.section-heading--center {
    text-align: center;
    justify-content: center;
}

.benefit-grid,
.property-grid,
.service-grid,
.stats-grid {
    display: grid;
    gap: 24px;
}

.stat-card {
    padding: 24px;
}

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

.benefit-card,
.panel-card,
.form-card,
.service-card,
.reference-card {
    padding: 28px;
}

.benefit-card {
    text-align: center;
}

.benefit-card strong {
    display: block;
}

.benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(198, 164, 105, 0.18), rgba(198, 164, 105, 0.05));
    color: var(--color-gold-light);
    box-shadow: inset 0 0 0 1px rgba(198, 164, 105, 0.18), 0 5px 10px rgba(0, 0, 0, 0.18);
}

.benefit-card__icon i {
    font-size: 2rem;
    line-height: 1;
}

.service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.split-section,
.split-cards,
.property-detail,
.article-layout {
    display: grid;
    gap: 28px;
}

.split-section {
    grid-template-columns: minmax(0, 1.18fr) minmax(420px, 560px);
    align-items: stretch;
}

.split-section__media,
.split-section__media img {
    height: 100%;
}

.split-section__media img,
.service-card__image,
.article-cover,
.reference-card__media img {
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.service-card__media {
    position: relative;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(198, 164, 105, 0.16), rgba(255, 255, 255, 0.04));
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform var(--transition);
}

.service-card:hover .service-card__image {
    transform: scale(1.04);
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
}

.service-card__body h2,
.service-card__body p {
    margin: 0;
}

.service-card__body .feature-list {
    margin: 0;
}

.service-card__body .button {
    margin-top: auto;
    align-self: flex-start;
}

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

.feature-list {
    display: grid;
    gap: 14px;
}

.feature-list li {
    position: relative;
    padding-left: 26px;
    color: var(--text-soft);
}

.feature-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 16px rgba(198, 164, 105, 0.45);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.timeline__item {
    position: relative;
    padding: 28px;
}

.timeline__item span:first-child {
    display: inline-flex;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(198, 164, 105, 0.12);
    color: var(--color-gold-light);
    font-weight: 800;
}

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

.property-card {
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}

.property-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198, 164, 105, 0.45);
}

.property-card__link {
    color: inherit;
    text-decoration: none;
}

.property-card__link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.property-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1.14 / 1;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(198, 164, 105, 0.16), rgba(255, 255, 255, 0.04));
}

.property-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.property-card:hover .property-card__media img {
    transform: scale(1.05);
}

.property-card__media.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--color-muted);
}

.property-card__badge {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--badge-bg);
    border: 1px solid var(--color-border);
    font-size: 0.78rem;
    font-weight: 700;
}

.property-card__badge--ghost {
    left: auto;
    right: 18px;
}

.status-novinka { color: #ffffff; }
.status-aktivni { color: #ffffff; }
.status-rezervovano { color: #ffdf9e; }
.status-prodano,
.status-pronajato { color: #c9ffd2; }

.property-card__body {
    padding: 24px;
}

.property-card__topline,
.property-card__meta,
.filters-actions,
.site-footer__bottom,
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.property-card__topline,
.property-card__meta {
    color: var(--color-muted);
    font-size: 0.93rem;
}

.property-card__description {
    min-height: 4.9rem;
}

.property-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
}

.property-card__footer strong {
    display: flex;
    flex-direction: column;
    font-size: 1.15rem;
}

.property-card__footer strong span {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 500;
}

.property-card__cta {
    pointer-events: none;
}

.filters-panel {
    margin-bottom: 16px;
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
}

.filters-grid,
.form-grid,
.parameter-grid {
    display: grid;
    gap: 18px;
}

.filters-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.properties-table__summary {
    margin: 0;
    color: var(--color-muted);
}

.properties-table-filters {
    margin-top: 0;
}

.properties-table-filters__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: min(100%, 240px);
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(198, 164, 105, 0.24);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--text-main);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.properties-table-filters__toggle:hover,
.properties-table-filters__toggle:focus-visible,
.properties-table-filters__toggle[aria-expanded='true'] {
    background: rgba(198, 164, 105, 0.1);
    border-color: rgba(198, 164, 105, 0.42);
}

.properties-table-filters__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform var(--transition);
}

.properties-table-filters__toggle[aria-expanded='true'] .properties-table-filters__toggle-icon {
    transform: rotate(45deg);
}

.properties-table-filters__panel {
    margin-top: 14px;
}

.properties-table-filters__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.properties-table-filters .filters-actions {
    margin-top: 12px;
}

.properties-table-filters .button--secondary {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.88rem;
}

.properties-table-wrap {
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
}

.properties-table {
    width: 100%;
    border-collapse: collapse;
}

.properties-table th,
.properties-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
    vertical-align: middle;
    font-size: 0.93rem;
}

.properties-table thead th {
    background: var(--table-head-bg);
    color: var(--color-cream);
    font-size: 0.95rem;
    font-weight: 700;
}

.properties-table tbody tr {
    cursor: pointer;
    transition: background var(--transition);
}

.properties-table tbody tr:hover {
    background: var(--surface-muted);
}

.properties-table tbody tr:focus-within {
    background: var(--surface-muted);
}

.properties-table tbody tr:last-child td {
    border-bottom: 0;
}

.properties-table td a {
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
}

.properties-table td a:hover {
    color: var(--color-gold-light);
}

.properties-table__sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}

.properties-table__sort::after {
    content: '↕';
    color: rgba(198, 164, 105, 0.9);
    font-size: 0.95rem;
}

.properties-table__status {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--surface-muted);
    border: 1px solid var(--line-soft);
    font-size: 0.78rem;
    font-weight: 700;
}

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

.parameter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.parameter-grid div {
    padding: 18px;
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.parameter-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.form-field label,
.form-consent {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--field-border);
    background: var(--field-bg);
    color: var(--text-main);
    font-size: 0.92rem;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

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

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.button:focus-visible,
.faq-trigger:focus-visible,
.menu-toggle:focus-visible {
    outline: none;
    border-color: rgba(198, 164, 105, 0.6);
    box-shadow: 0 0 0 4px rgba(198, 164, 105, 0.16);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid select {
    border-color: rgba(255, 125, 125, 0.75);
}

.form-error {
    display: block;
    margin-top: 8px;
    color: var(--color-error);
    font-size: 0.88rem;
}

.form-alert {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 12px;
}

.form-alert--error {
    background: rgba(255, 125, 125, 0.08);
    border: 1px solid rgba(255, 125, 125, 0.3);
    color: #ffd6d6;
}

.form-alert--success {
    background: rgba(136, 215, 163, 0.1);
    border: 1px solid rgba(136, 215, 163, 0.32);
    color: #d8ffe3;
}

.form-consent {
    display: flex;
    gap: 12px;
    margin: 18px 0 24px;
    color: var(--color-muted);
    align-items: flex-start;
}

.form-consent input {
    margin-top: 4px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px;
}

.cta-panel__contact {
    margin-top: 18px;
    color: var(--text-main);
}

.cta-panel__contact strong {
    color: var(--color-gold-light);
    margin-right: 8px;
}

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

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

.page-home .section > .container,
.page-properties .section > .container,
.page-property-detail .section > .container,
.page-hero .container,
.breadcrumbs .container,
.site-footer .container,
.site-header .container {
    width: min(calc(100% - 40px), 1560px);
}

.stat-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--color-gold-light);
    font-size: 2.3rem;
    font-family: 'Playfair Display', serif;
}

.stat-card span {
    display: block;
    margin-bottom: 10px;
}

.stat-card small {
    display: block;
    line-height: 1.5;
}

.reference-slider {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.reference-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.reference-card__media img {
    width: 100%;
    height: 180px;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: var(--surface-soft);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: transparent;
    border: 0;
    color: var(--text-main);
    font-weight: 700;
    text-align: left;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 164, 105, 0.12);
    color: var(--color-gold-light);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-content p {
    padding: 0 24px 24px;
}

.property-detail {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.property-gallery__hero img {
    width: 100%;
    aspect-ratio: 1.3 / 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.property-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.property-gallery__thumbs img {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    border-radius: 12px;
}

.property-price {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    margin-bottom: 18px;
}

.property-price strong {
    color: var(--color-gold-light);
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
}

.sticky-card {
    position: sticky;
    top: 120px;
}

.advisor-card {
    margin-top: 20px;
    display: grid;
    gap: 6px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

.country-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.country-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--text-main);
    font-weight: 600;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.country-pill:hover,
.country-pill:focus-visible,
.country-pill.is-active {
    background: rgba(198, 164, 105, 0.14);
    border-color: rgba(198, 164, 105, 0.45);
    color: var(--text-main);
    transform: translateY(-1px);
}

.advisor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.advisor-profile {
    display: grid;
    gap: 18px;
    padding: 28px;
    background: var(--surface-strong);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.advisor-profile__photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(198, 164, 105, 0.18), rgba(255, 255, 255, 0.04));
}

.advisor-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-profile__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 3rem;
}

.advisor-profile__content h3 {
    margin-bottom: 10px;
}

.advisor-profile__meta {
    display: grid;
    gap: 8px;
}

.advisor-profile__meta a {
    color: var(--text-main);
    font-weight: 600;
}

.property-video {
    margin-top: 24px;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
}

.property-video iframe,
.property-video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.map-embed iframe {
    min-height: 280px;
    border-radius: 14px;
}

.article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
}

.article-content,
.legal-content {
    max-width: 880px;
}

.article-content p,
.legal-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.empty-state {
    margin-top: 28px;
    padding: 32px;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(198, 164, 105, 0.4);
    background: var(--surface-soft);
}

.site-footer {
    padding: 72px 0 96px;
    background: var(--footer-bg);
    border-top: 1px solid var(--header-line);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr 0.8fr;
    gap: 28px;
}

.site-footer h3 {
    margin-bottom: 18px;
    color: var(--color-cream);
    font-size: 1.05rem;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--text-soft);
}

.site-footer__bottom {
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 130;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    background: var(--cookie-bg);
    border: 1px solid rgba(198, 164, 105, 0.28);
    border-radius: 18px;
    box-shadow: var(--shadow-elevated);
    backdrop-filter: blur(18px);
}

.cookie-banner__content {
    max-width: 820px;
}

.cookie-banner__content strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-cream);
}

.cookie-banner__content p {
    margin: 0;
    color: var(--color-muted);
}

.cookie-banner__content a {
    color: var(--color-gold-light);
}

html[data-theme='light'] .hero h1,
html[data-theme='light'] .hero .eyebrow,
html[data-theme='light'] .hero__lead,
html[data-theme='light'] .hero__contact-line,
html[data-theme='light'] .hero__panel-item strong,
html[data-theme='light'] .site-footer h3,
html[data-theme='light'] .properties-table thead th,
html[data-theme='light'] .cookie-banner__content strong {
    color: #231d16;
}

html[data-theme='light'] .status-novinka {
    color: #1f1911;
}

html[data-theme='light'] a[href^='tel:'] {
    color: #231d16;
}

html[data-theme='light'] .site-brand__logo {
    filter: drop-shadow(0 4px 10px rgba(120, 91, 37, 0.14));
}

html[data-theme='light'] .hero-carousel__overlay {
    background:
        radial-gradient(circle at 12% 18%, rgba(198, 164, 105, 0.18), transparent 30%),
        linear-gradient(110deg, rgba(252, 248, 241, 0.74) 0%, rgba(252, 248, 241, 0.2) 46%, rgba(242, 233, 219, 0.58) 100%);
}

html[data-theme='light'] .hero-carousel__content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 238, 227, 0.76));
    border-color: rgba(131, 107, 74, 0.2);
    box-shadow: 0 28px 60px rgba(83, 62, 35, 0.18);
}

html[data-theme='light'] .hero-carousel__badge {
    background: rgba(255, 255, 255, 0.74);
    color: #5a4529;
    border-color: rgba(144, 113, 67, 0.22);
}

html[data-theme='light'] .hero-carousel__meta li {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(144, 113, 67, 0.18);
    color: #5f5547;
}

html[data-theme='light'] .hero-carousel__location,
html[data-theme='light'] .hero-carousel__price span {
    color: #6d5b45;
}

html[data-theme='light'] .hero-carousel__nav {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(144, 113, 67, 0.2);
    color: #3e3122;
    box-shadow: 0 14px 30px rgba(83, 62, 35, 0.12);
}

html[data-theme='light'] .hero-carousel__nav:hover,
html[data-theme='light'] .hero-carousel__nav:focus-visible {
    background: rgba(255, 255, 255, 0.94);
}

html[data-theme='light'] .hero-carousel__dot {
    background: rgba(125, 97, 55, 0.24);
}

html[data-theme='light'] .hero-carousel__dot.is-active {
    background: var(--color-gold);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll--visible,
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }

    .cookie-banner {
        transform: none;
    }
}
