/* ===== RENTORA ESTATE - Premium Real Estate ===== */
:root {
    --primary: #0a0a0a;
    --primary-light: #1a1a1a;
    --accent: #ffffff;
    --accent-light: #ffffff;
    --neutral-50: #ffffff;
    --neutral-100: #ffffff;
    --neutral-200: #ffffff;
    --neutral-600: #525252;
    --neutral-800: #1a1a1a;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --transition: all 0.3s ease;
}

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

/* ===== PRELOADER ===== */
body.preload-lock { overflow: hidden; }
.page-preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader-sweep {
    position: absolute;
    inset: 0;
    background: #050505;
    transform: translateX(-100%);
    transition: transform 1.9s cubic-bezier(.77, 0, .18, 1);
    z-index: 0;
}
.page-preloader.is-transitioning .preloader-sweep {
    transform: translateX(0);
}
.page-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: min(92vw, 760px);
    padding: 2rem;
    transition: transform 0.7s ease, opacity 0.55s ease, color 0.45s ease;
}
.preloader-logo {
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderWordmarkIn 0.9s ease forwards;
}
.preloader-logo-image {
    display: block;
    width: min(72vw, 32rem);
    height: auto;
    transition: filter 1.9s cubic-bezier(.77, 0, .18, 1);
}
.page-preloader.is-transitioning .preloader-logo-image {
    filter: brightness(0) invert(1);
}
.preloader-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: rgba(24,24,24,0.55);
    margin-left: 0.7em;
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderWordmarkIn 0.9s ease 0.12s forwards;
    transition: color 1.9s cubic-bezier(.77, 0, .18, 1);
}
.preloader-logo,
.preloader-subtitle {
    display: inline-block;
    position: relative;
    z-index: 2;
}
.preloader-subtitle::after {
    content: none;
}
.page-preloader.is-transitioning .preloader-subtitle::after {
    content: none;
}
.page-preloader.is-transitioning .preloader-subtitle {
    color: #ffffff;
}
.page-preloader.hidden .preloader-content {
    opacity: 0;
    transform: scale(1.03);
}
@keyframes preloaderWordmarkIn {
    from {
        opacity: 0;
        transform: translateY(10px);
        letter-spacing: 0.18em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 640px) {
    .preloader-content { padding: 1.5rem; }
    .preloader-logo { letter-spacing: 0.08em; }
    .preloader-subtitle {
        font-size: 0.68rem;
        letter-spacing: 0.48em;
    }
}
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
    font-family: 'Lato', sans-serif;
    color: var(--neutral-800);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; object-fit: cover; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ===== BUTTONS (pill shape) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
    min-height: 44px;
    min-width: 44px;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.04);
}
body.menu-open {
    overflow: hidden;
}

/* ===== STAGGERED MENU ===== */
.staggered-menu-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1100;
    pointer-events: none;
}
.staggered-menu-wrapper.fixed-wrapper {
    position: fixed;
    inset: 0;
    overflow: hidden;
}
.staggered-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 10, 0.5);
    pointer-events: none;
    z-index: 30;
}
.staggered-menu-header > * {
    pointer-events: auto;
}
.sm-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}
.sm-logo-image {
    display: block;
    width: min(11rem, 24vw);
    height: auto;
    filter: brightness(0) invert(1);
}
.sm-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 138px;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(10,10,10,0.52);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}
.sm-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.32);
}
.sm-toggle:focus-visible {
    outline: 2px solid rgba(255,255,255,0.65);
    outline-offset: 4px;
}
.sm-toggle-textWrap {
    position: relative;
    display: inline-block;
    height: 1rem;
    min-width: 4.75rem;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: middle;
}
.sm-toggle-textInner {
    display: flex;
    flex-direction: column;
    line-height: 1;
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.sm-toggle-line {
    display: flex;
    align-items: center;
    height: 1rem;
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
}
.sm-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sm-icon-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}
.sm-icon-line-v {
    transform: translate(-50%, -50%) rotate(90deg);
}
.sm-prelayers {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(32rem, 100vw);
    pointer-events: none;
    z-index: 12;
}
.sm-prelayer,
.staggered-menu-panel {
    transform: translateX(100%);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sm-prelayer {
    position: absolute;
    inset: 0;
}
.sm-prelayer:first-child {
    transition-delay: 0s;
}
.sm-prelayer:last-child {
    transition-delay: 0.08s;
}
.menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 6, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 8;
}
.staggered-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(32rem, 100vw);
    height: 100%;
    padding: 7.5rem 2rem 2.25rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow-y: auto;
    z-index: 20;
    pointer-events: auto;
}
.sm-panel-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.sm-panel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.sm-panel-kicker {
    color: rgba(17,17,17,0.56);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.lang-switcher {
    display: flex;
    gap: 6px;
}
.lang-btn {
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(17,17,17,0.18);
    background: transparent;
    color: #111;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.78rem;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}
.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.sm-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    counter-reset: smItem;
}
.sm-panel-itemWrap {
    overflow: hidden;
}
.sm-panel-item {
    position: relative;
    display: inline-block;
    padding-right: 2.6rem;
    padding-bottom: 0.14em;
    color: #101010;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.7vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}
.sm-panel-item::after {
    counter-increment: smItem;
    content: counter(smItem, decimal-leading-zero);
    position: absolute;
    top: 0.22em;
    right: 0;
    color: var(--accent);
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.12em;
    opacity: 0.55;
}
.sm-panel-itemLabel {
    display: inline-block;
    transform: translateY(125%) rotate(5deg);
    transform-origin: 50% 100%;
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease;
}
.sm-panel-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: transform 0.35s ease, background 0.35s ease;
}
.sm-panel-cta:hover {
    transform: translateY(-2px);
    background: #1e6f59;
}
.sm-socials {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.sm-socials-title {
    margin: 0;
    color: rgba(17,17,17,0.5);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.sm-socials-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.1rem;
}
.sm-socials-link {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, opacity 0.3s ease;
}
.sm-socials-link:hover {
    color: var(--accent);
}
.staggered-menu-wrapper[data-open] .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}
.staggered-menu-wrapper[data-open] .sm-prelayer,
.staggered-menu-wrapper[data-open] .staggered-menu-panel {
    transform: translateX(0);
}
.staggered-menu-wrapper[data-open] .sm-toggle {
    background: rgba(255,255,255,0.94);
    border-color: rgba(17,17,17,0.14);
    color: #111;
}
.staggered-menu-wrapper[data-open] .sm-toggle-textInner {
    transform: translateY(-50%);
}
.staggered-menu-wrapper[data-open] .sm-icon {
    transform: rotate(225deg);
}
.staggered-menu-wrapper[data-open] .sm-panel-itemLabel {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
}
.staggered-menu-wrapper[data-open] .sm-panel-itemWrap {
    overflow: visible;
}
.staggered-menu-wrapper[data-open] .sm-panel-itemWrap:nth-child(1) .sm-panel-itemLabel {
    transition-delay: 0.2s;
}
.staggered-menu-wrapper[data-open] .sm-panel-itemWrap:nth-child(2) .sm-panel-itemLabel {
    transition-delay: 0.28s;
}
.staggered-menu-wrapper[data-open] .sm-panel-itemWrap:nth-child(3) .sm-panel-itemLabel {
    transition-delay: 0.36s;
}
.staggered-menu-wrapper[data-open] .sm-panel-itemWrap:nth-child(4) .sm-panel-itemLabel {
    transition-delay: 0.44s;
}
.staggered-menu-wrapper[data-open] .sm-panel-itemWrap:nth-child(5) .sm-panel-itemLabel {
    transition-delay: 0.52s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100dvh;
    min-height: 760px;
    overflow: hidden;
    color: var(--white);
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: scale(1.03);
}
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(21, 18, 14, 0.2) 0%, rgba(21, 18, 14, 0.42) 50%, rgba(21, 18, 14, 0.7) 100%),
        linear-gradient(90deg, rgba(18, 16, 12, 0.34) 0%, rgba(18, 16, 12, 0.08) 45%, rgba(18, 16, 12, 0.28) 100%);
}
.hero-grid {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: inherit;
    padding: 10.5rem 1.6rem 2rem;
    display: block;
}
.hero-midline {
    width: min(100%, 1880px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
}
.hero-midline {
    align-items: center;
    padding-bottom: min(22vh, 10rem);
}
.hero-side-copy {
    align-self: end;
}
.hero-side-label {
    display: block;
    max-width: 12rem;
    font-size: clamp(1rem, 1.45vw, 1.55rem);
    line-height: 1.15;
    color: rgba(255,255,255,0.96);
}
.hero-editorial {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
    gap: 0.7rem;
    border-top: 1px solid rgba(255,255,255,0.24);
    padding-top: 1.5rem;
    margin-left: clamp(6rem, 11vw, 12rem);
}
.hero-editorial-kicker {
    display: inline-block;
    color: rgba(255,255,255,0.88);
    font-size: clamp(1rem, 1.3vw, 1.4rem);
}
.hero-editorial-text {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(1.5rem, 2.8vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.97);
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
}
.hero-approach-link {
    align-self: start;
    justify-self: end;
    color: rgba(255,255,255,0.96);
    text-decoration: none;
    font-size: clamp(1.1rem, 1.75vw, 2rem);
    font-weight: 500;
    line-height: 1.15;
}
.hero-bottomline {
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 2rem;
    width: min(100%, 1880px);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
    pointer-events: none;
}
.hero-display {
    margin: 0;
    max-width: 7ch;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.8vw, 4.8rem);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.98);
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
}
[data-lang="en"] .hero-editorial-text {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}
[data-lang="hy"] .hero-midline,
[data-lang="ru"] .hero-midline {
    grid-template-columns: 1fr auto;
}
[data-lang="hy"] .hero-side-label,
[data-lang="ru"] .hero-side-label {
    font-size: clamp(0.9rem, 1.08vw, 1.18rem);
}
[data-lang="hy"] .hero-approach-link,
[data-lang="ru"] .hero-approach-link {
    font-size: clamp(1.05rem, 1.65vw, 1.9rem);
}
[data-lang="hy"] .hero-side-label {
    max-width: none;
    white-space: nowrap;
}
[data-lang="ru"] .hero-side-label {
    max-width: none;
    white-space: nowrap;
}
[data-lang="hy"] .hero-side-label,
[data-lang="hy"] .hero-editorial-kicker,
[data-lang="hy"] .hero-editorial-text,
[data-lang="hy"] .hero-approach-link,
[data-lang="hy"] .hero-display {
    font-family: 'Noto Sans Armenian', 'Noto Sans', sans-serif;
}
[data-lang="ru"] .hero-side-label,
[data-lang="ru"] .hero-editorial-kicker,
[data-lang="ru"] .hero-editorial-text,
[data-lang="ru"] .hero-approach-link {
    font-family: 'Noto Sans', 'Lato', sans-serif;
}
[data-lang="hy"] .hero-editorial {
    grid-template-columns: 110px minmax(0, 1fr);
    margin-left: clamp(7rem, 12vw, 13rem);
}
[data-lang="hy"] .hero-editorial-text {
    max-width: 24ch;
    line-height: 1.04;
    letter-spacing: -0.035em;
    font-weight: 500;
}
[data-lang="ru"] .hero-editorial-text {
    max-width: 24ch;
    line-height: 1.04;
    letter-spacing: -0.035em;
    font-weight: 500;
}
[data-lang="hy"] .hero-display {
    max-width: 11ch;
    line-height: 0.96;
    padding-bottom: 0.12em;
    letter-spacing: -0.035em;
    font-weight: 500;
    text-transform: uppercase;
    white-space: pre-line;
}
[data-lang="ru"] .hero-display {
    max-width: 11ch;
    font-family: 'Playfair Display', serif;
    line-height: 0.94;
    padding-bottom: 0.12em;
    letter-spacing: -0.035em;
    font-weight: 600;
    text-transform: none;
}
[data-lang="hy"] .hero-bottomline {
    bottom: 2.2rem;
}
[data-lang="ru"] .hero-bottomline {
    bottom: 3.25rem;
}
.hero-scroll-hint {
    transition: opacity 0.4s ease;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    z-index: 5;
}
.hero-scroll-hint.hidden { opacity: 0; pointer-events: none; }
.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
    0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTIONS ===== */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.section-subtitle { color: var(--neutral-600); font-size: 1.1rem; }
[data-lang="hy"] .section-title,
[data-lang="ru"] .section-title {
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
}
[data-lang="hy"] .section-subtitle,
[data-lang="ru"] .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== CATEGORIES ===== */
.categories-section {
    padding: 0;
    background: #0c0c0c;
}
.categories-shell {
    width: 100%;
}
.categories-slider {
    position: relative;
    min-height: 100svh;
    height: 100svh;
    background: #0c0c0c;
    overflow: hidden;
}
.categories-stage {
    position: relative;
    width: 100%;
    height: 100%;
}
.category-card {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 100%;
    background: #0c0c0c;
    text-decoration: none;
    color: #ffffff;
    overflow: hidden;
    transition: opacity 0.7s ease, transform 0.7s ease;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    z-index: 1;
}
.category-card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
}
.category-card:hover .category-media img {
    transform: scale(1.04);
}
.category-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: min(100% - 2rem, 64rem);
    padding: clamp(2.5rem, 6vw, 4rem);
    min-width: 0;
    position: relative;
    z-index: 3;
}
.category-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.35rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.category-card i {
    display: none;
}
.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    line-height: 0.9;
    max-width: 11ch;
    margin-bottom: 1.1rem;
    color: #ffffff;
    text-wrap: balance;
}
.category-card p {
    max-width: 42rem;
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
    text-wrap: balance;
}
.category-note {
    max-width: 44rem;
    margin-top: 1rem;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}
.category-link {
    margin-top: 2.5rem;
    min-width: min(100%, 17rem);
    min-height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.4rem;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: none;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}
.category-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    overflow: hidden;
    z-index: 1;
}
.category-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.42) 0%, rgba(10, 10, 10, 0.54) 55%, rgba(6, 6, 6, 0.66) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 48%);
    z-index: 2;
}
.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.7s ease;
}
.categories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 3.8rem;
    height: 3.8rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(12, 12, 12, 0.46);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.categories-nav:hover {
    background: rgba(12, 12, 12, 0.72);
    border-color: rgba(255, 255, 255, 0.38);
}
.categories-nav-prev {
    left: clamp(1rem, 2vw, 2rem);
}
.categories-nav-next {
    right: clamp(1rem, 2vw, 2rem);
}
[data-lang="hy"] .category-card h3,
[data-lang="ru"] .category-card h3 {
    font-size: clamp(2.7rem, 6.8vw, 5.7rem);
    line-height: 0.95;
    max-width: 12ch;
}
[data-lang="hy"] .category-card p,
[data-lang="ru"] .category-card p {
    font-size: clamp(1rem, 1.55vw, 1.2rem);
    max-width: 38rem;
}
[data-lang="hy"] .category-note,
[data-lang="ru"] .category-note {
    font-size: clamp(0.95rem, 1.25vw, 1.08rem);
    max-width: 39rem;
}
.scroll-stack-end {
    display: none;
}

/* ===== FILTERS ===== */
.filters-section {
    padding: 2rem 0 2.5rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.96));
}
.filters-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.35rem 1.5rem;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(25, 22, 18, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    flex: 1 1 720px;
}
.filters-row select {
    min-height: 52px;
    padding: 0.95rem 3rem 0.95rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 18px;
    background-color: rgba(255,255,255,0.94);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23444444' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    appearance: none;
    -webkit-appearance: none;
    font-size: 0.98rem;
    color: var(--primary);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.filters-row select:focus {
    outline: none;
    border-color: rgba(255,255,255,0.55);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
}
.view-toggle {
    display: inline-flex;
    gap: 0.45rem;
    margin-left: 0.35rem;
    padding: 0.35rem;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.view-btn {
    width: 52px;
    height: 52px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 18px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--neutral-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.view-btn:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.1);
}
.view-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 24px rgba(10,10,10,0.18);
}
.active-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.results-count {
    margin-left: auto;
    color: var(--neutral-600);
    font-size: 1.05rem;
    white-space: nowrap;
}

/* ===== PROPERTY CARDS ===== */
.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.property-card .property-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.property-card .property-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}
.property-card:hover .property-img img { transform: scale(1.08); }
.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
}
.property-save {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-600);
    transition: var(--transition);
}
.property-save:hover, .property-save.saved { color: #e11d48; }
.property-save.saved i::before { content: "\f004"; }
.property-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.property-title { font-family: 'Crimson Text', serif; font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--primary); }
.property-location {
    font-size: 0.9rem;
    color: var(--neutral-600);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.property-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--neutral-600);
    margin-bottom: 1rem;
}
.property-meta span { display: flex; align-items: center; gap: 6px; }
.property-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.property-footer .btn { padding: 10px 20px; font-size: 0.9rem; }

/* Grid / List views */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.properties-grid.list-view {
    grid-template-columns: 1fr;
}
.properties-grid.list-view .property-card { flex-direction: row; }
.properties-grid.list-view .property-img { width: 280px; min-height: 200px; aspect-ratio: auto; flex-shrink: 0; }

/* Featured */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.featured-grid .property-card .property-img { aspect-ratio: 16/10; }

/* ===== WHY SECTION ===== */
.why-section {
    padding: 0;
    color: var(--white);
}
.why-parallax {
    --why-parallax-offset: 0px;
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.24), rgba(10,10,10,0.46)),
        url('images/why_us.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}
.why-parallax::before {
    content: '';
    position: absolute;
    inset: -6%;
    background: url('images/why_us.jpg') center center / cover no-repeat;
    transform: translate3d(0, var(--why-parallax-offset), 0) scale(1.08);
    will-change: transform;
    z-index: 0;
}
.why-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    z-index: 1;
}
.why-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: clamp(6rem, 12vw, 9rem);
    padding-bottom: clamp(6rem, 12vw, 9rem);
    max-width: 980px;
}
@media (min-width: 769px) {
    .why-parallax::before {
        display: none;
    }
}
.why-section .section-title {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.6rem);
    margin-bottom: 1rem;
    line-height: 1.02;
    letter-spacing: 0.03em;
}
.why-kicker {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}
.why-desc {
    margin: 0 auto 1.6rem;
    opacity: 0.96;
    line-height: 1.75;
    font-size: 1.06rem;
    max-width: 48rem;
    color: rgba(255,255,255,0.92);
}
.why-desc-lead {
    font-size: 1.28rem;
    color: rgba(255,255,255,0.95);
}
[data-lang="hy"] .why-section .section-title,
[data-lang="ru"] .why-section .section-title {
    font-size: clamp(2.4rem, 5.2vw, 4rem);
}
[data-lang="hy"] .why-desc,
[data-lang="ru"] .why-desc {
    max-width: 42rem;
    font-size: 0.98rem;
}
[data-lang="hy"] .why-desc-lead,
[data-lang="ru"] .why-desc-lead {
    font-size: 1.08rem;
}
.why-cta {
    margin-top: 0.8rem;
    background: var(--accent);
    color: var(--primary);
}
.why-cta:hover {
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(255,255,255,0.22);
}

.company-stats-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #101010 0%, #161616 100%);
    color: #ffffff;
    padding: clamp(3rem, 6vw, 4.75rem) 0;
}
.magic-rings-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}
.magic-rings-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}
.company-stats-shell {
    position: relative;
    z-index: 1;
    display: block;
}
.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.stat-box {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.1rem;
    padding: 1.2rem 1rem;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 3.7vw, 3.2rem);
    line-height: 0.95;
    color: #000000;
    margin-bottom: 0.5rem;
}
.stat-label {
    display: block;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.72);
}

.why-process-section {
    background: #ffffff;
    color: #121212;
    padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}
.why-process-shell {
    position: relative;
}
.why-process-head {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto clamp(3.5rem, 6vw, 5rem);
}
.why-process-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.82rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}
.why-process-section .section-title {
    color: #121212;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    margin-bottom: 1rem;
    line-height: 1.02;
}
.why-process-section .section-subtitle {
    max-width: 44rem;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.02rem;
    line-height: 1.75;
}
.why-process-timeline {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 1rem 0 2rem;
}
.why-process-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(8rem, 11vw, 10rem);
    height: 100%;
    overflow: visible;
    pointer-events: none;
}
.why-process-line-base,
.why-process-line-progress {
    fill: none;
    stroke-linecap: round;
    stroke-width: 3;
}
.why-process-line-base {
    stroke: rgba(0, 0, 0, 0.16);
}
.why-process-line-progress {
    stroke: #121212;
    transition: stroke-dashoffset 0.2s ease-out;
}
.why-process-step {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 8rem minmax(0, 1fr);
    align-items: center;
    min-height: 17rem;
}
.why-process-copy {
    max-width: 22rem;
    padding: 0 0.5rem;
    opacity: 0.4;
    transform: translateY(2rem) scale(0.98);
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.why-process-step-left .why-process-copy {
    justify-self: end;
    text-align: right;
}
.why-process-step-right .why-process-copy {
    justify-self: start;
    text-align: left;
}
.why-process-number {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: #121212;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.why-process-copy h3 {
    margin: 0 0 0.8rem;
    color: #121212;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
}
.why-process-copy p {
    margin: 0;
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.02rem;
    line-height: 1.7;
}
.why-process-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.why-process-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #121212;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}
.why-process-step.is-active .why-process-copy {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.why-process-step.is-active .why-process-dot {
    background: #121212;
    transform: scale(1.55);
    box-shadow: 0 0 0 0.75rem rgba(0, 0, 0, 0.12);
}
[data-lang="hy"] .why-process-section .section-title,
[data-lang="ru"] .why-process-section .section-title {
    font-size: clamp(2.15rem, 4.6vw, 3.7rem);
}
[data-lang="ru"] .why-process-copy h3 {
    font-size: clamp(1.35rem, 2.1vw, 1.95rem);
}
[data-lang="hy"] .why-process-copy h3 {
    font-size: clamp(0.98rem, 1.55vw, 1.38rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
}
[data-lang="hy"] .why-process-copy p,
[data-lang="ru"] .why-process-copy p {
    font-size: 0.95rem;
    line-height: 1.65;
}
.reviews-section {
    background: #0c0c0c;
    padding-top: clamp(4rem, 7vw, 6rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}
.reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.25rem;
    min-height: 9rem;
}
.reviews-copy .section-title {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 1rem;
}
.reviews-copy .section-subtitle {
    max-width: 42rem;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}
.reviews-all-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 0 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #111111;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(255, 255, 255, 0.18);
}
.reviews-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}
.reviews-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
}
.reviews-track::-webkit-scrollbar {
    display: none;
}
.reviews-nav {
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: #151515;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.reviews-nav:hover {
    transform: translateY(-2px);
    background: #1d1d1d;
    border-color: rgba(255, 255, 255, 0.45);
}
.review-card {
    flex: 0 0 min(24rem, calc(100vw - 6rem));
    scroll-snap-align: start;
    position: relative;
    padding: 2.35rem 2.15rem;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 31rem;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.review-top {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.review-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
}
.review-meta strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.review-meta span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.review-stars {
    color: #ffffff;
    letter-spacing: 0.16em;
    font-size: 1.15rem;
    margin-bottom: 0;
}
.review-title {
    font-size: 1.12rem;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 1rem;
    min-height: 3.1em;
}
.review-text {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
    margin-bottom: 1.35rem;
    font-size: 0.98rem;
}
[data-lang="hy"] .reviews-copy .section-title,
[data-lang="ru"] .reviews-copy .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}
[data-lang="hy"] .reviews-copy .section-subtitle,
[data-lang="ru"] .reviews-copy .section-subtitle {
    max-width: 38rem;
    font-size: 1rem;
    line-height: 1.65;
}
[data-lang="hy"] .review-meta strong,
[data-lang="ru"] .review-meta strong {
    font-size: 0.98rem;
}
[data-lang="hy"] .review-meta span,
[data-lang="ru"] .review-meta span {
    font-size: 0.88rem;
}
[data-lang="hy"] .review-title,
[data-lang="ru"] .review-title {
    font-size: 1rem;
    line-height: 1.4;
    min-height: 3.4em;
}
[data-lang="hy"] .review-text,
[data-lang="ru"] .review-text {
    font-size: 0.92rem;
    line-height: 1.62;
}
[data-lang="hy"] .review-author,
[data-lang="ru"] .review-author {
    font-size: 0.86rem;
}
.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}
.review-more {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}
/* ===== CALCULATOR ===== */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    font-size: 1rem;
}
.calculator-outputs {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
}
.output-item {
    margin-bottom: 1.5rem;
}
.output-label { display: block; font-size: 0.9rem; color: var(--neutral-600); margin-bottom: 0.25rem; }
.output-value { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.calculator-outputs .btn { margin-top: 1.5rem; width: 100%; }

/* ===== FAQ ===== */
.faq-accordion { max-width: 700px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #111111;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.faq-question:hover { color: #111111; }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p { padding: 0 0 1.25rem; color: var(--neutral-600); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-desc { margin-bottom: 1.5rem; }
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
}
.contact-link:hover { color: #111111; }
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #111111;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
}
.contact-form textarea { resize: vertical; min-height: 100px; }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--neutral-50); }
.newsletter-box {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.newsletter-box h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.newsletter-box p { color: var(--neutral-600); margin-bottom: 1.5rem; }
[data-lang="hy"] .newsletter-box h3,
[data-lang="ru"] .newsletter-box h3 {
    font-size: 1.28rem;
}
[data-lang="hy"] .newsletter-box p,
[data-lang="ru"] .newsletter-box p,
[data-lang="hy"] .contact-desc,
[data-lang="ru"] .contact-desc {
    font-size: 0.96rem;
    line-height: 1.6;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-pill);
    font-size: 1rem;
}
.toast {
    margin-top: 1rem;
    padding: 12px;
    border-radius: var(--radius);
    display: none;
}
.toast.show { display: block; }
.toast.success { background: #dcfce7; color: #166534; }
.toast.error { background: #fee2e2; color: #991b1b; }

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 2rem 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.footer-brand .logo-accent { color: var(--accent); }
.footer-social {
    color: var(--white);
    font-size: 1.5rem;
}
.footer-social:hover { color: var(--accent-light); }
.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    text-align: right;
}
.footer-copy { font-size: 0.9rem; opacity: 0.8; margin: 0; }
.footer-credit {
    font-size: 0.85rem;
    margin: 0;
}
.footer-credit [data-i18n="footer_credit_prefix"] {
    opacity: 0.75;
}
.footer-credit a {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    background: linear-gradient(120deg, #fff4c4 0%, #e8c547 45%, #c9a227 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 10px rgba(232, 197, 71, 0.45));
    transition: filter 0.25s ease, transform 0.25s ease;
}
.footer-credit a:hover {
    filter: drop-shadow(0 0 16px rgba(245, 215, 110, 0.75));
    transform: translateY(-1px);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .staggered-menu-wrapper.fixed-wrapper {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
    }
    .staggered-menu-header {
        padding: 1.15rem 1rem;
    }
    .sm-logo {
        max-width: 8.5rem;
    }
    .sm-toggle {
        min-width: 122px;
        padding: 0.85rem 1.1rem;
    }
    .sm-prelayers,
    .staggered-menu-panel {
        width: 100%;
    }
    .sm-prelayer {
        position: fixed;
        inset: 0;
        width: 100%;
    }
    .staggered-menu-panel {
        position: fixed;
        inset: 0;
        right: auto;
        min-height: 100dvh;
        width: 100vw;
        max-width: none;
        padding: 6.9rem 1.35rem 2rem;
    }
    .sm-panel-inner {
        min-height: calc(100dvh - 8.9rem);
        gap: 2.4rem;
    }
    .sm-panel-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.1rem;
    }
    .sm-panel-kicker {
        font-size: 0.92rem;
    }
    .lang-switcher {
        gap: 0.55rem;
    }
    .lang-btn {
        padding: 0.55rem 0.95rem;
        font-size: 0.88rem;
    }
    .sm-panel-item {
        font-size: clamp(2rem, 8.4vw, 2.85rem);
        line-height: 1.02;
        padding-right: 3rem;
    }
    .sm-panel-item::after {
        font-size: 1rem;
    }
    .sm-panel-cta {
        width: 100%;
        min-height: 72px;
        font-size: 1.05rem;
        padding: 1.05rem 1.6rem;
    }
    .sm-socials {
        padding-top: 2.6rem;
        gap: 1rem;
    }
    .sm-socials-title {
        font-size: 0.88rem;
    }
    .sm-socials-link {
        font-size: 1rem;
    }
    .menu-backdrop {
        inset: 0;
    }
    .hero {
        min-height: 760px;
    }
    .hero-grid {
        padding: 8.5rem 1rem 1.5rem;
        overflow: hidden;
    }
    .hero-midline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    [data-lang="hy"] .hero-midline,
    [data-lang="ru"] .hero-midline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .hero-midline {
        align-content: end;
        padding-bottom: 8.5rem;
        max-width: 100%;
    }
    [data-lang="hy"] .hero-side-label,
    [data-lang="ru"] .hero-side-label {
        font-size: clamp(1rem, 4.2vw, 1.4rem);
    }
    .hero-approach-link,
    [data-lang="hy"] .hero-approach-link,
    [data-lang="ru"] .hero-approach-link {
        font-size: clamp(1.05rem, 4.2vw, 1.55rem);
    }
    [data-lang="hy"] .hero-side-copy,
    [data-lang="ru"] .hero-side-copy,
    [data-lang="hy"] .hero-editorial,
    [data-lang="ru"] .hero-editorial,
    [data-lang="hy"] .hero-approach-link,
    [data-lang="ru"] .hero-approach-link {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    [data-lang="hy"] .hero-side-label,
    [data-lang="ru"] .hero-side-label {
        max-width: 11rem;
    }
    [data-lang="ru"] .hero-side-label {
        max-width: none;
        font-size: clamp(0.7rem, 2.6vw, 0.95rem);
        white-space: nowrap;
    }
    .hero-editorial {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding-top: 1rem;
        margin-left: 0;
    }
    .hero-editorial-text {
        max-width: 15ch;
        font-size: clamp(1.8rem, 8.5vw, 3rem);
    }
    .hero-approach-link {
        justify-self: start;
    }
    .hero-bottomline {
        left: 1rem;
        right: 1rem;
        bottom: 1.5rem;
    }
    .hero-display {
        max-width: 6ch;
        font-size: clamp(1.7rem, 8vw, 2.9rem);
        line-height: 0.92;
    }
    [data-lang="hy"] .hero-editorial,
    [data-lang="ru"] .hero-editorial {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding-top: 1rem;
        margin-left: 0;
    }
    [data-lang="hy"] .hero-editorial-text,
    [data-lang="ru"] .hero-editorial-text {
        max-width: 15ch;
        line-height: 1.02;
        letter-spacing: -0.035em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    [data-lang="hy"] .hero-bottomline,
    [data-lang="ru"] .hero-bottomline {
        bottom: 1.5rem;
        max-width: 100%;
    }
    [data-lang="hy"] .hero-display,
    [data-lang="ru"] .hero-display {
        max-width: 7ch;
        line-height: 0.96;
        padding-bottom: 0;
        letter-spacing: -0.03em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    [data-lang="hy"] .hero-display {
        display: inline-block;
        max-width: none;
        width: auto;
        font-size: clamp(1.2rem, 5.4vw, 1.95rem);
        line-height: 0.94;
        white-space: pre-line;
        overflow-wrap: normal;
        word-break: normal;
        letter-spacing: -0.02em;
    }
    .hero-scroll-hint {
        right: 1rem;
        bottom: 1rem;
    }
    .reviews-carousel {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .reviews-nav {
        display: none;
    }
    .review-card {
        flex-basis: min(22rem, calc(100vw - 2.5rem));
        min-height: 28rem;
    }
    .search-grid { grid-template-columns: 1fr; }
    .categories-slider {
        height: auto;
        min-height: 100svh;
    }
    .categories-stage {
        min-height: 100svh;
    }
    .category-card,
    .category-card:nth-child(even) {
        min-height: 100svh;
    }
    .category-copy {
        width: min(100% - 1.5rem, 42rem);
        padding: 2rem 1.25rem 2.5rem;
    }
    .category-card h3 {
        font-size: clamp(2.7rem, 12vw, 4.4rem);
    }
    .category-card p,
    .category-note {
        max-width: 32rem;
    }
    .scroll-stack-end { display: none; }
    .filters-row { flex-wrap: wrap; }
    .results-count { width: 100%; margin-left: 0; margin-top: 0.5rem; }
    .properties-grid { grid-template-columns: 1fr; }
    .properties-grid.list-view .property-card { flex-direction: column; }
    .properties-grid.list-view .property-img { width: 100%; min-height: 200px; }
    .why-parallax {
        min-height: 66vh;
    }
    .why-process-head {
        margin-bottom: 2.75rem;
    }
    .company-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .why-process-timeline {
        padding-bottom: 0;
    }
    .why-process-line {
        left: 50%;
        transform: translateX(-50%);
        width: 3.5rem;
    }
    .why-process-step {
        grid-template-columns: minmax(0, 1fr) 3.5rem minmax(0, 1fr);
        min-height: 11rem;
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }
    .why-process-marker {
        grid-column: 2;
    }
    .why-process-copy {
        max-width: 10rem;
        padding: 0;
    }
    .why-process-step-left .why-process-copy {
        grid-column: 1;
        justify-self: end;
        text-align: right;
    }
    .why-process-step-right .why-process-copy {
        grid-column: 3;
        justify-self: start;
        text-align: left;
    }
    .reviews-head {
        flex-direction: column;
        align-items: stretch;
    }
    .reviews-all-link {
        width: 100%;
    }
    .calculator-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .company-stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-box {
        padding: 1.5rem 1.2rem;
    }
    .category-copy { padding: 1.5rem 1rem 2rem; }
    .category-card h3 {
        font-size: clamp(2.4rem, 13vw, 3.3rem);
    }
    .category-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }
    .category-card p {
        font-size: 0.98rem;
    }
    .category-note {
        font-size: 0.92rem;
    }
    .category-link {
        min-height: 64px;
        font-size: 0.9rem;
    }
    .categories-nav {
        width: 3.15rem;
        height: 3.15rem;
    }
    .categories-nav-prev {
        left: 0.85rem;
    }
    .categories-nav-next {
        right: 0.85rem;
    }
    .hero-btns { flex-direction: column; }
    .btn-hero { width: 100%; }
    .why-section .section-title { font-size: 2.4rem; }
    .why-desc-lead { font-size: 1.05rem; }
    .why-process-section .section-title { font-size: 2.2rem; }
    .why-process-line {
        width: 2.8rem;
    }
    .why-process-step {
        grid-template-columns: minmax(0, 1fr) 2.8rem minmax(0, 1fr);
        min-height: 9.5rem;
        gap: 0.3rem;
    }
    .why-process-copy h3 {
        font-size: 1.25rem;
        margin-bottom: 0.45rem;
    }
    .why-process-copy p {
        font-size: 0.75rem;
        line-height: 1.45;
    }
    .why-process-copy {
        max-width: 8.75rem;
    }
    .why-process-number {
        margin-bottom: 0.45rem;
        font-size: 0.72rem;
    }
    .why-process-dot {
        width: 0.7rem;
        height: 0.7rem;
    }
    .review-card { padding: 1.4rem; }
}
