@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-primary: #D4AF37;
    --color-gold: #C9A961;
    --color-dark: #1a1a1a;
    --color-dark-light: #2a2a2a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-cream: #FAF8F3;
    --color-border: #E5E5E5;
    --color-orange: #FF8C42;

    --font-display: "Inter", sans-serif;
    --font-body: "Inter", sans-serif;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 300 !important;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 24px 0;
    background: transparent;
}

.header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-backdrop.show {
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            background-color: rgba(15, 23, 42, 0.35);
        }
.header .nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header .nav-icon {
    background: transparent;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.header .nav-icon i {
    font-size: 1.3rem;
    position: relative;
    top: 3px;
}

.header .menu-btn {
    border-radius: 10px;
    border: none;
    background: #302e2d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    cursor: pointer;
    color: white;
    font-size: 2rem;
    line-height: 0;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    background: #f9f9f9;
}

.hero-cta-icon {
    font-size: 1.15rem;
    display: inline-block;
    transform: translateY(1px);
}

/* Welcome section */

.welcome {
    padding: 80px 0 90px;
    background: #f7f5f2;
}

.welcome-header {
    margin-bottom: 48px;
}

.welcome-title {
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: 0.02em;
    color: #222;
}

.welcome-description {
    font-size: 16px;
    line-height: 1.7;
    color: #4b4b4b;
    max-width: 520px;
    margin-left: auto;
}

/* Properties */
.property-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 15px;
}

.property-body {
    padding: 22px 0;
}

.property-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #222;
}

.property-meta {
    font-size: 13px;
    color: #7a7a7a;
    margin-bottom: 18px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.meta-label {
    font-weight: 400;
}

.meta-value {
    font-weight: 500;
    color: #373737;
}

.property-price-block {
    margin-top: 12px;
    font-size: 13px;
    color: #7a7a7a;
}

.price-label {
    display: block;
    margin-bottom: 4px;
}

.price-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* Responsive */

@media (max-width: 991.98px) {
    .welcome-title {
        font-size: 40px;
    }

    .welcome-properties {
        padding: 24px;
    }

    .property-image img {
        height: 230px;
    }
}

@media (max-width: 767.98px) {
    .welcome {
        padding: 56px 0 64px;
    }

    .welcome-header {
        text-align: left;
    }

    .welcome-title {
        font-size: 34px;
    }

    .welcome-description {
        margin-top: 16px;
        margin-left: 0;
    }

    .welcome-properties {
        padding: 20px;
        border-radius: 24px;
    }

    .property-card {
        margin-bottom: 18px;
    }
}

/* Pinnacle */

.pinnacle {
    padding: 90px 0 110px;
    background: #f7f5f2;
}

.pinnacle-slider {
    position: relative;
    display: grid;
}

.pinnacle-slide {
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.pinnacle-slide.is-active {
    opacity: 1;
}

.pinnacle-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pinnacle-text {
    flex: 1;
}

.pinnacle-text .section-title {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 500;
    color: #232323;
    margin-bottom: 28px;
}

.pinnacle-description {
    font-size: 16px;
    line-height: 1.7;
    color: #494949;
    max-width: 530px;
    margin-bottom: 36px;
}

.pinnacle-btn {
    display: inline-flex;
    align-items: center;
    background: #232323;
    padding: 14px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.pinnacle-btn:hover {
    opacity: 0.86;
}

.pinnacle-btn .btn-arrow {
    margin-left: 10px;
    font-size: 18px;
}

.pinnacle-image {
    flex: 1;
}

.pinnacle-image img {
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
}

/* Pagination */

.pinnacle-pagination {
    display: flex;
    align-items: center;
    margin-top: 55px;
    gap: 26px;
}

.pagination-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #444444;
}

.pagination-line {
    flex: 1;
    height: 1px;
    background: #444444;
    opacity: 0.35;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 22px;
}

.pagination-controls button {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #222222;
    transition: opacity 0.25s ease;
}

.pagination-controls button:hover {
    opacity: 0.6;
}

/* Responsive */

@media screen and (max-width: 992px) {
    .pinnacle-content {
        flex-direction: column;
        gap: 40px;
    }

    .pinnacle-text .section-title {
        font-size: 38px;
    }

    .pinnacle-pagination {
        margin-top: 40px;
    }
}

@media screen and (max-width: 576px) {
    .pinnacle {
        padding: 65px 0 80px;
    }

    .pinnacle-text .section-title {
        font-size: 32px;
    }
}

/* layout de duas colunas */

.amenities-inner {
    display: grid;
    padding: 120px 0;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: 80px;
    align-items: center;
}

/* coluna esquerda */

.amenities-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.amenities-header {
    margin-bottom: 40px;
}

.amenities-subtitle {
    margin-top: 8px;
    font-size: 18px;
    color: #777777;
}

/* coluna direita */

.amenities-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

/* curva e nós */

.amenities-curve {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.amenity-node {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.amenity-node-image {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
}

.amenity-node.amenity-node-next {
    margin-top: 30px;
    right: -30px;
}

.amenity-node.amenity-node-prev {
    right: -30px;
}

.amenity-node-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-node-image-main {
    width: 260px;
    height: 260px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.amenity-node-label {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    color: #555555;
}

/* texto da direita */

.amenities-detail-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.amenities-detail-subtitle {
    font-size: 16px;
    color: #8b8b8b;
    margin-bottom: 16px;
}

.amenities-detail-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    max-width: 480px;
    margin-bottom: 24px;
}

.amenities-detail-link {
    font-size: 16px;
    text-decoration: none;
    color: #f59c3b;
}

/* paginação */

.amenities-pagination {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    margin-top: 40px;
}

.amenities-pagination .prev-btn,
.amenities-pagination .next-btn {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

.amenities-pagination .current,
.amenities-pagination .total {
    font-feature-settings: "tnum" 1, "lnum" 1;
    letter-spacing: 0.12em;
}

.amenities-pagination .divider {
    opacity: 0.5;
}

/* responsive */

@media (max-width: 992px) {
    .amenities-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .amenities-showcase {
        grid-template-columns: 1fr;
    }



    .amenity-node-image-main {
        width: 210px;
        height: 210px;
    }
}

/* CTA */

.cta {
    position: relative;
    padding: 96px 0 80px;
    color: #111111;
    background-image: url("../img/cta-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.cta-quote {
    font-size: 44px;
    line-height: 1.25;
    font-weight: 500;
    margin: 0 0 32px;
}

.cta-author {
    margin-bottom: 40px;
}

.author-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #777777;
    margin: 0;
}

/* form */

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}

/* top row  Telegram  WhatsApp */

.cta-form-top {
    display: flex;
    justify-content: start;
    gap: 16px;
}

.checkbox-label {
    cursor: pointer;
    position: relative;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-size: 14px;
}

.pill-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    position: relative;
    top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* state */

.checkbox-label input:checked+.checkbox-pill {
    background: #111111;
    color: #ffffff;
}

/* main row  name  phone  button */

.cta-form-main {
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    padding: 18px 34px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.field-group {
    flex: 1;
    text-align: left;
}

.form-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 8px 0 4px;
    border-bottom: 1px solid #dddddd;
}

.form-input::placeholder {
    color: #999999;
}

.btn.btn-submit,
.btn.btn-submit:hover {
    border-radius: 999px;
    padding: 14px 40px;
    border: none;
    font-size: 16px;
    background: #111111;
    color: #ffffff;
    white-space: nowrap;
}

/* legal text */

.cta-legal {
    margin-top: 10px;
    font-size: 12px;
    color: #777777;
}

.cta-legal-link {
    color: inherit;
    text-decoration: underline;
}

/* responsive */

@media (max-width: 992px) {
    .cta {
        padding: 72px 0 64px;
    }

    .cta-quote {
        font-size: 34px;
    }

    .cta-form-main {
        flex-direction: column;
        align-items: stretch;
        border-radius: 32px;
    }

    .btn-submit {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cta-quote {
        font-size: 28px;
    }

    .cta-form-top {
        flex-direction: column;
        align-items: start;
    }
}

/* Publications */

.publications {
    padding: 96px 0;
    background: #faf6f0;
}

.publications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.publications-header .section-title {
    margin: 0;
}

.publications-header .btn-orange {
    border-radius: 999px;
    padding: 10px 28px;
    font-size: 15px;
    border: none;
    background: #f59c3b;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.publications-header .btn-orange::after {
    content: "→";
    font-size: 16px;
}

/* cards */

.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.publication-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.publication-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* content */

.publication-content {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.publication-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: #777777;
}

.publication-meta-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.publication-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #f59c3b;
    display: inline-block;
}

.publication-category {
    font-size: 14px;
}

.publication-date {
    font-size: 14px;
    color: #999999;
}

.publication-title {
    font-size: 20px;
    margin: 4px 0 2px;
}

.publication-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* pagination */

.publications-pagination {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.publications-pagination .pagination-left {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.publications-pagination .current,
.publications-pagination .total {
    font-feature-settings: "tnum" 1, "lnum" 1;
    letter-spacing: 0.14em;
}

.publications-pagination .divider {
    opacity: 0.4;
}

.publications-pagination .pagination-line {
    flex: 1;
    height: 1px;
    background: #dddddd;
}

.publications-pagination .pagination-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.publications-pagination .prev-btn,
.publications-pagination .next-btn {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

/* responsive */

@media (max-width: 992px) {
    .publications {
        padding: 72px 0;
    }

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

@media (max-width: 768px) {
    .publications-grid {
        grid-template-columns: 1fr;
    }

    .publications-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .publications-pagination {
        margin-top: 24px;
    }
}

/* Footer */

.footer {
    background: #181818;
    color: #f5f5f5;
    padding: 40px 0 28px;
    font-size: 14px;
}

.footer a {
    color: #f5f5f5;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-newsletter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    max-width: 520px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: flex-end;
}

.newsletter-field {
    flex: 1;
}

.newsletter-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #666666;
    padding: 8px 0;
    color: #ffffff;
    outline: none;
}

.newsletter-input::placeholder {
    color: #b3b3b3;
}

.btn.btn-subscribe,
.btn.btn-subscribe:hover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 26px;
    border: none;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    white-space: nowrap;
}

.btn.btn-subscribe .btn-arrow {
    font-size: 16px;
}

/* divider line */

.footer-divider {
    height: 1px;
    background: #333333;
    margin: 12px 0 14px;
}

/* bottom info row */

.footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-column {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-column-center a {
    margin-right: 16px;
}

.footer-column-center a:last-child {
    margin-right: 0;
}

.footer-column-right a {
    margin-left: 20px;
}

.footer-column-right a:first-child {
    margin-left: 0;
}

/* responsive */

@media (max-width: 992px) {
    .footer-newsletter-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
        justify-content: flex-start;
    }

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

    .footer-column-right a {
        margin-left: 0;
        margin-right: 16px;
    }
}

/* Header menu button */

.menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 0;
}

.menu-btn-label {
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.menu-btn-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.menu-btn-icon span {
    display: block;
    width: 18px;
    height: 1px;
    background: #111111;
}

/* Menu overlay */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.bg-gray {
    background: #f7f4ee;
}

.menu-overlay-inner {
    background: #f7f4ee;
    height: 100%;
    padding: 24px 12px 20px;
    display: flex;
    flex-direction: column;
}

.menu-overlay-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Close button */

.menu-close {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 8px 20px;
    border: none;
    background: #302e2d;
    cursor: pointer;
    font-size: 14px;
    color: #f7f4ee;
}

.menu-close-label {
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.menu-close-icon {
    position: relative;
    width: 14px;
    height: 14px;
    color: #f7f4ee;
}

.menu-close-icon span {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #f7f4ee;
}

.menu-close-icon span:first-child {
    transform: translateY(-50%) rotate(45deg);
}

.menu-close-icon span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

/* Main layout */

.menu-overlay-main {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: flex-start;
    flex: 1;
}

/* Left column nav */

.menu-overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
}

.menu-overlay-nav a {
    text-decoration: none;
    color: #111111;
}

.menu-overlay-nav a:hover {
    text-decoration: underline;
}

/* Right column content */

.menu-overlay-kicker {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #7f766b;
}

.menu-overlay-title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.menu-overlay-text {
    font-size: 15px;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 24px;
}

.menu-overlay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-outline-light {
    border-radius: 999px;
    padding: 10px 22px;
    border: 1px solid #c8c0b5;
    background: transparent;
    color: #111111;
    font-size: 14px;
    text-decoration: none;
}

.btn-solid-light {
    border-radius: 999px;
    padding: 10px 24px;
    border: none;
    background: #f59c3b;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-solid-light .btn-arrow {
    font-size: 16px;
}

/* Visible state */

.menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* .menu-overlay-properties {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
} */

.menu-property-title {
    font-size: 18px;
    font-style: italic;
    margin: 0 0 10px;
}

.menu-property-image {
    border-radius: 14px;
    overflow: hidden;
}

.menu-property-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */

@media (max-width: 1024px) {
    .menu-overlay-inner {
        padding: 24px 20px 32px;
    }

    .menu-overlay-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-overlay-properties {
        margin-top: 32px;
        grid-template-columns: 1fr;
    }

    .menu-property-image img {
        height: 200px;
    }
}

/* Language selector */

.nav-lang {
    position: relative;
}

.nav-lang-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-lang-label {
    font-size: 12px;
    letter-spacing: 0.14em;
}

/* Modal */

.lang-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lang-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lang-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}

 .text-dark {
    color: #111111!important;
 }
.lang-modal-dialog {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 28px 22px;
    min-width: 260px;
    /* max-width: 320px; */
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    z-index: 1;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: #111111;
    border-color: #111111;
}
.lang-modal-title {
    font-size: 16px;
    margin: 0 0 14px;
}

.lang-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

.lang-modal-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-modal-item+.lang-modal-item {
    margin-top: 8px;
}

.lang-modal-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    text-decoration: none;
    color: #111111;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
}

.lang-modal-link:hover {
    border-color: #e0ded9;
    background: #faf6f0;
}

.lang-modal-item.is-current .lang-modal-link,
.is-current-label {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.height100 {
    height: 100px;
}
.height50 {
    height: 50px;
}
.height30 {
    height: 30px;
}

.about-hero-media video {
    height: 508px;
    width: 100%;
    object-fit: cover;
}

.about-hero {
    padding-bottom: 96px;
}

.about-hero img,
.about-hero video {
    border-radius: 26px;
    object-fit: cover;
}

/* Principles section */

.principles {
    padding: 80px 0 100px;
    background: #f7f5f2;
}

.principles-slider {
    position: relative;
}

.principles-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.principles-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.principles-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
    align-items: stretch;
    gap: 40px;
}

.principles-text {
    padding: 40px 40px 60px 40px;
}

.principles-kicker {
    font-size: 18px;
    margin-bottom: 36px;
    color: #222222;
}

.principles-title {
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 28px;
    color: #1f1f1f;
    font-weight: 400;
}

.principles-description {
    font-size: 16px;
    line-height: 1.9;
    color: #555555;
    max-width: 520px;
}

.principles-image {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #e4dfd7;
}

.principles-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* Footer controls */

.principles-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding: 0 40px;
}

.principles-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333333;
}

.principles-current,
.principles-total {
    font-feature-settings: "tnum" 1, "lnum" 1;
    letter-spacing: 0.16em;
}

.principles-separator {
    font-size: 16px;
    color: #999999;
}

.principles-progress {
    position: relative;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.principles-progress-fill {
    position: absolute;
    inset: 0;
    width: 33.33%;
    background: #222222;
    transform-origin: left center;
    transition: transform 0.4s ease;
}

.principles-arrows {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.principles-arrow {
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 4px;
    line-height: 1;
    color: #333333;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.principles-arrow:hover {
    opacity: 0.6;
    transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 992px) {
    .principles {
        padding: 64px 0 80px;
    }

    .principles-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .principles-text {
        padding: 10px 0 20px 0;
    }

    .principles-footer {
        padding: 0;
        margin-top: 32px;
    }

    .principles-image img {
        max-height: 420px;
    }
}

@media (max-width: 576px) {
    .principles-title {
        font-size: 30px;
    }

    .principles-kicker {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .principles-footer {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .principles-progress {
        width: 100%;
    }

    .principles-arrows {
        justify-content: flex-end;
    }
}

.principles-slide {
    display: none;
}

.principles-slide.is-active {
    display: block;
}

.history {
    padding: 100px 0 120px;
    background: #fff;
}

.history-header {
    margin-bottom: 56px;
}

.history-header h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    color: #1f1f1f;
}

.history-years {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 24px;
    font-size: 1rem;
}

.history-year {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    color: #6b6b6b;
    transition: color 0.25s ease;
}

.history-year.is-active {
    color: #c56a43;
}

.history-divider {
    height: 1px;
    background: #2a2a2a;
    margin-bottom: 40px;
}

.history-body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.history-image {
    border-radius: 24px;
    overflow: hidden;
    background: #e4dfd7;
}

.history-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
}

.history-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
}

.history-year-label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #c56a43;
}

.history-description {
    margin: 0;
}

@media (max-width: 992px) {
    .history {
        padding: 80px 0 96px;
    }

    .history-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .history-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .history-years {
        gap: 32px;
    }

    .history-header h2 {
        font-size: 28px;
    }
}

.contact-block {
    padding: 100px 0 120px;
    background: #f7f5f2;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: stretch;
}

.contact-left {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 18px;
    color: #1f1f1f;
}

.contact-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555555;
}

.contact-form-group {
    margin-bottom: 28px;
}

.contact-label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: #777777;
}

.contact-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    background: transparent;
    padding: 10px 0 12px;
    font-size: 16px;
    outline: none;
}

.contact-input:focus {
    border-bottom-color: #000000;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 999px;
    border: none;
    background: #262626;
    color: #ffffff;
    font-size: 16px;
    margin-top: 8px;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-button:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.contact-consent {
    margin-top: 18px;
    font-size: 12px;
    color: #888888;
}

.contact-consent a {
    color: inherit;
    text-decoration: underline;
}

.contact-messengers {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.contact-messenger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    color: #333333;
}

.contact-messenger-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0px solid rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-messenger-icon i {
    position: relative;
    top: 2px;
}

.contact-right {
    border-radius: 26px;
    overflow: hidden;
    background: #e4dfd7;
}

.contact-right img,
.contact-right video {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .contact-block {
        padding: 80px 0 96px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-left {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 30px;
    }

    .contact-messengers {
        flex-wrap: wrap;
    }
}

.herovillas:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.getbefore:before {
    content: "";
    border-radius: 14px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.border-pill {
    border-radius: 100px!important;
}
.flatpickr-calendar.inline {
    box-shadow: none!important;
}
.modal-dialog-centered {
    min-height: inherit!important;
}