@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

[hidden] {
    display: none !important;
}

:root {
    --white: #FFFFFF;
    --black: #050505;
    --ink: #14110d;
    --cream: #f4eee4;
    --cream-dark: #ded2bf;
    --gold: #b98a3a;
    --gold-light: #ddb86b;
    --gold-pale: #efd9a0;
    --text: #333333;
    --text-light: #777777;
    --text-muted: #999999;
    --border-light: #e0ddd6;
    --footer-bg: #050505;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: #f7f1e8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
button { font-family: 'Montserrat', sans-serif; }

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #030303;
    border-bottom: 1px solid rgba(185, 138, 58, 0.28);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.72rem;
}

.logo-svg {
    width: 50px;
    height: 42px;
    background: url('../assets/logo/aknestates-mark.svg') center / contain no-repeat;
    filter: drop-shadow(0 0 8px rgba(221, 184, 107, 0.18));
}

.logo-svg > * {
    display: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-akn {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: 1.48rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 4px;
}

.logo-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.44rem;
    letter-spacing: 3.8px;
    color: #d7b46a;
    font-weight: 500;
    text-transform: uppercase;
}

.nav {
    display: flex;
    list-style: none;
    gap: 1.45rem;
}

.nav a {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.86);
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--gold);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(185,138,58,0.75);
    border-radius: 0;
    padding: 0.72rem 1.28rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--gold);
    color: #050505;
}

.cta-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--gold-light);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050505;
    z-index: 999;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(185,138,58,0.24);
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* ============ HERO ============ */
.hero {
    margin-top: 60px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 286px;
    min-height: 405px;
    background: #f8f2e9;
}

.hero-main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 48px 30px;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 64%;
    height: 100%;
    object-fit: cover;
    object-position: center 54%;
    filter: brightness(0.78) contrast(1.03) saturate(0.92);
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, #fbf7ef 0%, #fbf7ef 32%, rgba(251,247,239,0.78) 45%, rgba(251,247,239,0.18) 63%, transparent 100%),
        linear-gradient(180deg, rgba(5,5,5,0.02), rgba(185,138,58,0.04));
    z-index: 1;
}

.hero-bg-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 34%;
    background: linear-gradient(0deg, rgba(251,247,239,0.94) 0%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 560px;
}

.hero-tag {
    font-size: 0.62rem;
    letter-spacing: 2.2px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.05rem, 4.15vw, 3.75rem);
    font-weight: 500;
    line-height: 0.96;
    color: #050505;
    margin-bottom: 1.12rem;
    letter-spacing: 0;
}

.hero-title span {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

.hero-desc {
    font-size: 0.84rem;
    color: #1f1b16;
    line-height: 1.75;
    margin-bottom: 1.35rem;
    max-width: 430px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-gold {
    padding: 0.82rem 1.5rem;
    background: #050505;
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gold:hover {
    background: var(--gold);
    color: #050505;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.66rem;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.play-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.btn-video:hover .play-circle {
    border-color: var(--gold);
    background: rgba(201,168,76,0.1);
}

.btn-outline-light,
.btn-outline-dark {
    padding: 0.78rem 1.35rem;
    border: 1px solid rgba(185,138,58,0.75);
    color: #f5ead7;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.btn-outline-dark {
    color: var(--black);
}

.btn-outline-light:hover,
.btn-outline-dark:hover {
    background: var(--gold);
    color: #050505;
}

/* ============ HERO SIDEBAR ============ */
.hero-sidebar {
    background: #050505;
    border-left: 1px solid rgba(185,138,58,0.28);
    padding: 22px 26px 20px;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    text-align: left;
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(185,138,58,0.38);
}

.sidebar-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.46rem;
    font-weight: 500;
    color: #f5ead7;
    letter-spacing: 1.1px;
}

.sidebar-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: #f5ead7;
    font-weight: 600;
    text-transform: uppercase;
}

.sidebar-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.78rem;
}

.sidebar-feature {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.sidebar-feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-light);
    fill: none;
    stroke-width: 1.5;
}

.sidebar-feature h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}

.sidebar-feature p {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.4;
}

.sidebar-cta {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(185,138,58,0.34);
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 0.72rem;
    border: 1.5px solid var(--gold);
    color: #f5ead7;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background: var(--gold);
    color: #050505;
}

/* ============ STATS BAR ============ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f1e7d8;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

/* ============ BRAND STRATEGY SECTIONS ============ */
.brand-section,
.proof-section,
.testimonials-section {
    background: #fbf7ef;
    border-bottom: 1px solid var(--border-light);
}

.brand-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 4.5rem 3rem;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
}

.brand-copy p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.96rem;
}

.brand-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.proof-section {
    background: #050505;
    color: #f5ead7;
    padding: 4.5rem 3rem;
}

.proof-header {
    max-width: 880px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.proof-section .section-title,
.testimonials-section .section-title {
    margin-bottom: 0;
}

.proof-section .section-title {
    color: #f5ead7;
}

.proof-grid,
.testimonial-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.proof-item {
    border: 1px solid rgba(185,138,58,0.35);
    padding: 1.4rem;
    min-height: 150px;
}

.proof-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1.05;
    margin-bottom: 0.8rem;
}

.proof-item span {
    color: rgba(255,255,255,0.72);
    font-size: 0.78rem;
    line-height: 1.6;
}

.testimonials-section {
    padding: 4.5rem 3rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 1.6rem;
}

.testimonial-card p {
    font-family: 'Cormorant Garamond', serif;
    color: var(--black);
    font-size: 1.12rem;
    line-height: 1.45;
    margin-bottom: 1.2rem;
}

.testimonial-card span {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.founder-quote {
    border-left: 2px solid var(--gold);
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    line-height: 1.25;
    color: var(--black);
}

.signature-gold {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.6rem;
    font-style: italic;
    margin-top: 1rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    display: block;
}

.stat {
    padding: 1.45rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-right: 1px solid var(--border-light);
}

.stat:last-child {
    border-right: none;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

/* ============ MAIN 3-COLUMN SECTION ============ */
.main-3col {
    display: grid;
    grid-template-columns: 260px 1fr 280px;
    border-bottom: 1px solid var(--border-light);
    min-height: 600px;
}

/* SERVICES COLUMN */
.col-services {
    background: var(--white);
    border-right: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
}

.section-tag {
    font-size: 0.58rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1.35;
    margin-bottom: 2rem;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    padding-left: 0.5rem;
}

.service-item-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.service-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.service-item-content {
    flex: 1;
}

.service-item h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.15rem;
}

.service-item p {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.service-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 2px;
}

.service-item:hover .service-arrow {
    opacity: 1;
    color: var(--gold);
}

/* PROPERTIES COLUMN */
.col-properties {
    background: #fbf7ef;
    padding: 2.5rem 2.5rem;
}

.prop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.prop-header .section-title {
    margin-bottom: 0;
}

.view-all {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.view-all:hover {
    text-decoration: underline;
}

.prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.prop-card {
    background: #fbf7ef;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.prop-card-link {
    color: inherit;
    display: block;
    flex: 1;
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: var(--gold);
}

.prop-img {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.prop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.prop-badges {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    right: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    z-index: 2;
}

.prop-badge {
    background: var(--gold);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 3px;
}

.prop-badge:nth-child(2n) {
    background: rgba(5, 5, 5, 0.82);
    border: 1px solid rgba(255,255,255,0.2);
}

.prop-meta {
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.prop-body {
    padding: 1rem;
}

.prop-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    letter-spacing: 0.3px;
}

.prop-loc {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.prop-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.prop-spec {
    color: var(--text-light);
    font-size: 0.72rem;
}

.prop-price {
    color: var(--black);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.prop-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-light);
}

.prop-action {
    padding: 0.85rem 0.8rem;
    text-align: center;
    color: var(--black);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.prop-action + .prop-action {
    border-left: 1px solid var(--border-light);
}

.prop-action:hover,
.prop-action-whatsapp {
    background: var(--black);
    color: var(--gold-light);
}

.properties-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.properties-count {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: -1rem;
}

.filters {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.filter-btn {
    padding: 0.6rem 1.1rem;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.advanced-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.2rem;
    border: 1px solid var(--border-light);
    background: #fbf7ef;
}

.advanced-filters label {
    display: grid;
    gap: 0.45rem;
}

.advanced-filters span {
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.advanced-filters input {
    border: 1px solid var(--border-light);
    background: var(--white);
    padding: 0.85rem 1rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
}

.biens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.empty-properties {
    grid-column: 1 / -1;
    padding: 3rem;
    border: 1px solid var(--border-light);
    background: #fbf7ef;
    color: var(--text-light);
    text-align: center;
    line-height: 1.7;
}

/* NEWSLETTER COLUMN */
.col-newsletter {
    background: var(--cream);
    border-left: 1px solid var(--cream-dark);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.col-newsletter h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.col-newsletter > p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nl-form {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
}

.nl-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--cream-dark);
    background: #fbf7ef;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--text);
    border-radius: 3px 0 0 3px;
    transition: border-color 0.3s ease;
}

.nl-form input::placeholder {
    color: var(--text-muted);
}

.nl-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.nl-form button {
    padding: 0.8rem 1.2rem;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
    transition: background 0.3s ease;
}

.nl-form button:hover {
    background: var(--gold);
}

.nl-logo {
    margin-top: auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
}

.nl-logo-akn {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
    line-height: 1;
}

.nl-logo-estates {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 4px;
    font-weight: 400;
}

.nl-follow {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin: 1.2rem 0 0.8rem;
}

.nl-socials {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.nl-socials a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.nl-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--footer-bg);
    padding: 0 3rem;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.f-col {
    padding: 1.8rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.f-col:last-child {
    border-right: none;
}

.f-col-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.f-col-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.f-col-value {
    font-size: 0.82rem;
    color: var(--white);
    font-weight: 500;
}

.f-col-value a {
    color: var(--white);
}

.f-col-value a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255,255,255,0.62);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-credit {
    color: rgba(255,255,255,0.52);
    margin-top: 0.35rem;
}

.footer-credit a {
    color: var(--gold-light);
}

/* ============ PAGE HERO (INTERNAL PAGES) ============ */
.page-hero {
    margin-top: 60px;
    padding: 5rem 3rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.page-hero .section-tag {
    margin-bottom: 0.8rem;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============ GENERIC SECTIONS ============ */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-alt {
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* CARDS */
.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.2;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============ BLOG ============ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
    color: inherit;
    display: grid;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.blog-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-body {
    padding: 1.6rem;
}

.blog-tag,
.article-kicker {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.7rem;
    line-height: 1.25;
}

.blog-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
}

.article-hero {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 430px;
    background: #050505;
}

.article-hero-copy {
    padding: 4.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1;
    color: #f5ead7;
    margin-bottom: 1rem;
}

.article-hero p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    max-width: 560px;
}

.article-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    max-width: 840px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.article-meta {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.article-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin: 2.2rem 0 0.8rem;
}

.article-content p,
.article-content li {
    color: var(--text);
    line-height: 1.9;
    font-size: 0.96rem;
}

.article-content ul {
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 1.5rem 1.2rem;
}

.article-quote {
    margin: 2.2rem 0;
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
    background: #fbf7ef;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    line-height: 1.35;
    color: var(--black);
}

/* CTA BANNER */
.cta-banner {
    background: var(--gold);
    padding: 3.5rem 3rem;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.cta-banner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.btn-white {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============ ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ PROPERTY DETAIL ============ */
.property-detail {
    background: #fbf7ef;
    margin-top: 60px;
}

.property-detail-hero {
    padding: 4rem 3rem 2.5rem;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, #fbf7ef 0%, var(--cream) 100%);
}

.property-detail-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1;
    color: var(--black);
    margin: 0.5rem 0;
}

.property-detail-hero p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.property-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.2rem;
}

.property-detail-badges span,
.property-detail-type {
    border: 1px solid rgba(185,138,58,0.35);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.45rem 0.75rem;
}

.property-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 380px;
    gap: 2rem;
    padding: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.property-detail-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid var(--border-light);
}

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

.property-gallery-item {
    border: 1px solid var(--border-light);
    background: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.72;
    transition: all 0.25s ease;
}

.property-gallery-item.active,
.property-gallery-item:hover {
    opacity: 1;
    border-color: var(--gold);
}

.property-gallery img,
.property-gallery-item img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    display: block;
}

.property-media-block {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
}

.property-media-block h2,
.property-similar-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1rem;
}

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

.property-detail-panel {
    background: #050505;
    color: rgba(255,255,255,0.78);
    border: 1px solid rgba(185,138,58,0.35);
    padding: 2rem;
    align-self: start;
    position: sticky;
    top: 84px;
}

.property-detail-type {
    display: inline-block;
    color: var(--gold-light);
    border-color: rgba(185,138,58,0.45);
    margin-bottom: 1rem;
}

.property-detail-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.property-detail-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

.property-detail-specs span {
    border: 1px solid rgba(185,138,58,0.3);
    padding: 0.7rem;
    text-align: center;
    color: #f5ead7;
    font-size: 0.78rem;
}

.property-detail-panel p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.property-detail-panel h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.property-feature-list {
    display: grid;
    gap: 0.45rem;
    margin: 0 0 1.6rem 1rem;
    font-size: 0.86rem;
}

.property-secondary-link {
    display: block;
    margin-top: 1rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.76rem;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.property-similar-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
}

.similar-properties {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.similar-property {
    display: grid;
    gap: 0.7rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    padding-bottom: 1rem;
    color: var(--black);
}

.similar-property img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
}

.similar-property span,
.similar-property strong {
    padding: 0 1rem;
}

.similar-property span {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.similar-property strong {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

/* ============ ADMIN ============ */
.admin-body {
    background: #0a0908;
    color: #f5ead7;
}

.admin-shell {
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, #050505 0%, #18130c 100%);
}

.admin-login,
.admin-dashboard {
    max-width: 1180px;
    margin: 0 auto;
}

.admin-login {
    width: min(440px, 100%);
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admin-card,
.admin-login {
    background: #fbf7ef;
    color: var(--text);
    border: 1px solid rgba(185,138,58,0.38);
    padding: 2rem;
}

.admin-login h1,
.admin-topbar h1,
.admin-card h2,
.admin-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.admin-login h1 {
    color: var(--black);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.admin-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.admin-field label {
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    width: 100%;
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    padding: 0.8rem 0.9rem;
}

.admin-field textarea {
    min-height: 120px;
    resize: vertical;
}

.admin-checks {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0.8rem 0 1.2rem;
}

.admin-checks label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
}

.admin-button,
.admin-secondary,
.admin-danger {
    border: 1px solid var(--gold);
    background: #050505;
    color: #fff;
    padding: 0.8rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-secondary {
    background: transparent;
    color: var(--black);
}

.admin-danger {
    border-color: #9e3d32;
    background: #9e3d32;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-topbar h1 {
    color: #f5ead7;
    font-size: 2.4rem;
}

.admin-tabs {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.admin-tabs button {
    border: 1px solid rgba(185,138,58,0.55);
    background: transparent;
    color: #f5ead7;
    padding: 0.75rem 1rem;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1px;
}

.admin-tabs button.active {
    background: var(--gold);
    color: #050505;
}

.admin-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 1.5rem;
}

.admin-list {
    display: grid;
    gap: 0.7rem;
}

.admin-list-item {
    border: 1px solid var(--border-light);
    background: #fff;
    padding: 0.85rem;
    cursor: pointer;
}

.admin-list-item strong {
    display: block;
    color: var(--black);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.admin-list-item span {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.admin-form-grid .full {
    grid-column: 1 / -1;
}

.admin-message {
    min-height: 1.2rem;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.82rem;
}

.admin-config-warning {
    background: rgba(185,138,58,0.12);
    border: 1px solid rgba(185,138,58,0.36);
    padding: 1rem;
    margin-bottom: 1rem;
    color: #5f421a;
    font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-sidebar {
        display: none;
    }
    
    .main-3col {
        grid-template-columns: 1fr;
    }
    
    .col-services {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    
    .col-newsletter {
        border-left: none;
        border-top: 1px solid var(--cream-dark);
    }
    
    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 1.5rem;
    }
    
    .nav {
        display: none;
    }

    .header .cta-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .page-hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-main {
        padding: 3rem 1.5rem 4rem;
    }

    .hero-bg-img {
        width: 100%;
        opacity: 0.34;
    }

    .hero-bg-gradient {
        background: linear-gradient(90deg, rgba(251,247,239,0.98) 0%, rgba(251,247,239,0.88) 58%, rgba(251,247,239,0.52) 100%);
    }
    
    .hero-title {
        font-size: 2.45rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat {
        padding: 1.5rem 1rem;
        border-bottom: 1px solid var(--border-light);
        border-right: none;
    }
    
    .stats-bar .stat:nth-child(2n) {
        border-right: none;
    }
    
    .prop-grid {
        grid-template-columns: 1fr;
    }

    .biens-grid,
    .blog-grid,
    .similar-properties,
    .advanced-filters {
        grid-template-columns: 1fr;
    }

    .article-hero {
        grid-template-columns: 1fr;
    }

    .article-hero-copy {
        padding: 3rem 1.5rem;
    }

    .article-hero-img {
        min-height: 260px;
    }

    .properties-toolbar {
        flex-direction: column;
    }

    .filters {
        justify-content: flex-start;
    }

    .property-detail-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .property-detail-layout,
    .admin-grid,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .property-detail-layout {
        padding: 1.5rem;
    }

    .property-detail-panel {
        position: static;
    }

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

    .property-media-block,
    .property-similar-section {
        padding: 1.5rem;
    }

    .admin-shell {
        padding: 1rem;
    }
    
    .col-properties {
        padding: 2rem 1.5rem;
    }
    
    .col-services, .col-newsletter {
        padding: 2rem 1.5rem;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand-inner,
    .proof-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .brand-inner,
    .proof-section,
    .testimonials-section {
        padding: 3.5rem 1.5rem;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }
    
    .footer-cols {
        grid-template-columns: 1fr;
    }
    
    .f-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    .footer {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 3.5rem 1.5rem;
    }
}
