/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    color: #2a1f22;
    background: #FDFBF8;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.2; color: #2a1f22; }
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 14px;
}
.section-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}
.section-sub { font-size: 1.05rem; color: #6b5b60; max-width: 480px; }
.section-header { margin-bottom: 64px; }

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background: #7B2D3B;
    color: #FDFBF8;
    border-color: #7B2D3B;
}
.btn-primary:hover { background: #5e212c; border-color: #5e212c; }
.btn-ghost {
    background: transparent;
    color: #7B2D3B;
    border-color: #7B2D3B;
}
.btn-ghost:hover { background: #7B2D3B; color: #FDFBF8; }
.btn-sm {
    padding: 9px 20px;
    font-size: 0.72rem;
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s ease;
    background: transparent;
}
.nav.scrolled {
    background: rgba(253, 251, 248, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #2a1f22;
}
.nav.scrolled .nav-logo { color: #2a1f22; }
.hero .nav-logo { color: #FDFBF8; }
.nav.scrolled .hero .nav-logo { color: #2a1f22; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(42, 31, 34, 0.7);
    transition: color 0.3s;
    position: relative;
}
.hero .nav-links a { color: rgba(253, 251, 248, 0.8); }
.nav-links a:hover { color: #7B2D3B; }
.nav.scrolled .nav-links a:hover { color: #7B2D3B; }
.nav-cta {
    border: 1px solid rgba(123, 45, 59, 0.4);
    padding: 9px 22px;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-cta:hover { background: #7B2D3B; color: #FDFBF8 !important; border-color: #7B2D3B; }
.nav.scrolled .nav-cta { border-color: #7B2D3B; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: #2a1f22;
    transition: all 0.3s;
}
.hero .nav-toggle span { background: #FDFBF8; }
.nav.scrolled .nav-toggle span { background: #2a1f22; }

/* ── Hero ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #2a1f22 0%, #4a2030 50%, #7B2D3B 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 30%, #F5E6E8 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, #F5E6E8 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, #F5E6E8 0.5px, transparent 0.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-greeting {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.hero-greeting-line {
    width: 40px;
    height: 1px;
    background: #F5E6E8;
}
.hero-greeting p {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 230, 232, 0.7);
}
.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    color: #FDFBF8;
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.1;
}
.hero-headline em {
    font-style: italic;
    color: #F5C0C8;
}
.hero-subheadline {
    font-size: 1.05rem;
    color: rgba(245, 230, 232, 0.7);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-ghost { border-color: rgba(245, 230, 232, 0.4); color: #FDFBF8; }
.hero-actions .btn-ghost:hover { background: #FDFBF8; color: #7B2D3B; border-color: #FDFBF8; }

/* Stat cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    background: rgba(253, 251, 248, 0.07);
    border: 1px solid rgba(245, 230, 232, 0.1);
    border-radius: 4px;
    padding: 28px 24px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.stat-card:hover {
    background: rgba(253, 251, 248, 0.12);
    transform: translateY(-3px);
}
.stat-card--1 { grid-column: 1; grid-row: 1; }
.stat-card--2 { grid-column: 2; grid-row: 1; }
.stat-card--3 { grid-column: 1; grid-row: 2; }
.stat-card--4 { grid-column: 2; grid-row: 2; }
.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: #F5C0C8;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 230, 232, 0.55);
}
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 230, 232, 0.4);
    z-index: 1;
}
.hero-scroll svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ── About ──────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: #FDFBF8;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image-wrap img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 2px;
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(123, 45, 59, 0.15);
    border-radius: 2px;
    z-index: -1;
}
.about-content { padding: 20px 0; }
.about-content p {
    color: #5a4a4f;
    margin-bottom: 20px;
    font-size: 0.98rem;
}
.about-features {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #2a1f22;
}
.about-feature svg { flex-shrink: 0; }

/* ── Services ───────────────────────────────────── */
.services {
    padding: 120px 0;
    background: #FAF5F5;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #FDFBF8;
    border: 1px solid rgba(123, 45, 59, 0.08);
    border-radius: 4px;
    padding: 44px 36px;
    transition: all 0.3s ease;
}
.service-card:hover {
    border-color: rgba(123, 45, 59, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.06);
}
.service-icon {
    margin-bottom: 24px;
}
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}
.service-card p {
    font-size: 0.9rem;
    color: #6b5b60;
    line-height: 1.75;
}

/* ── Listings ───────────────────────────────────── */
.listings {
    padding: 120px 0;
    background: #FDFBF8;
}
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}
.listing-card {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(123, 45, 59, 0.07);
    transition: all 0.3s ease;
    background: #fff;
}
.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(123, 45, 59, 0.08);
}
.listing-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.listing-card:hover .listing-image img { transform: scale(1.04); }
.listing-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #7B2D3B;
    color: #FDFBF8;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
}
.listing-info { padding: 28px 24px; }
.listing-meta {
    font-size: 0.78rem;
    color: #7B2D3B;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.listing-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.listing-address {
    font-size: 0.85rem;
    color: #8a7a7f;
    margin-bottom: 20px;
}
.listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.listing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #2a1f22;
}
.listings-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.listings-cta p { font-size: 0.95rem; color: #6b5b60; }

/* ── Why Us ─────────────────────────────────────── */
.why-us {
    padding: 120px 0;
    background: #2a1f22;
    color: #FDFBF8;
}
.why-us .section-label { color: #F5C0C8; }
.why-us .section-heading { color: #FDFBF8; }
.why-us .section-sub { color: rgba(245, 230, 232, 0.6); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.why-intro {
    font-size: 1.05rem;
    color: rgba(245, 230, 232, 0.65);
    max-width: 380px;
    line-height: 1.8;
}
.why-features { display: flex; flex-direction: column; gap: 40px; }
.why-feature { position: relative; }
.why-feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(245, 192, 200, 0.2);
    line-height: 1;
    margin-bottom: 8px;
}
.why-feature h4 {
    font-size: 1.25rem;
    color: #FDFBF8;
    margin-bottom: 10px;
}
.why-feature p {
    font-size: 0.9rem;
    color: rgba(245, 230, 232, 0.55);
    line-height: 1.75;
}

/* ── Testimonials ───────────────────────────────── */
.testimonials {
    padding: 120px 0;
    background: #FAF5F5;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #FDFBF8;
    border: 1px solid rgba(123, 45, 59, 0.07);
    border-radius: 4px;
    padding: 44px 36px;
    position: relative;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: rgba(123, 45, 59, 0.15);
    transform: translateY(-3px);
}
.testimonial-quote {
    position: absolute;
    top: 28px;
    right: 32px;
    opacity: 0.5;
}
.testimonial-text {
    font-size: 0.95rem;
    color: #5a4a4f;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author {
    font-size: 0.82rem;
    color: #7B2D3B;
    letter-spacing: 0.04em;
}

/* ── Contact ────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: #FDFBF8;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info p {
    font-size: 0.98rem;
    color: #5a4a4f;
    margin-bottom: 40px;
    line-height: 1.8;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-detail svg { flex-shrink: 0; margin-top: 2px; }
.contact-detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
    font-size: 0.95rem;
    color: #2a1f22;
}
.contact-detail a:hover { color: #7B2D3B; }
.contact-form-wrap {
    background: #fff;
    border: 1px solid rgba(123, 45, 59, 0.08);
    border-radius: 4px;
    padding: 48px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a4a4f;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(123, 45, 59, 0.15);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #2a1f22;
    background: #FDFBF8;
    transition: border-color 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #7B2D3B;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(123, 45, 59, 0.05);
    border: 1px solid rgba(123, 45, 59, 0.12);
    border-radius: 2px;
    font-size: 0.88rem;
    color: #5a4a4f;
}
.form-success.show { display: flex; }

/* ── Map Strip ──────────────────────────────────── */
.map-strip { height: 280px; filter: grayscale(0.4) contrast(0.95); }

/* ── Footer ─────────────────────────────────────── */
.footer {
    background: #1e1618;
    color: rgba(245, 230, 232, 0.6);
    padding: 80px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 230, 232, 0.08);
}
.footer-brand p {
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 300px;
    line-height: 1.75;
    color: rgba(245, 230, 232, 0.45);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 230, 232, 0.4);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    font-size: 0.88rem;
    color: rgba(245, 230, 232, 0.55);
    transition: color 0.3s;
}
.footer-col a:hover { color: #F5C0C8; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.8rem;
    color: rgba(245, 230, 232, 0.3);
}

/* ── Animations ─────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-cards { max-width: 400px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap img { height: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .listings-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FDFBF8;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: #2a1f22 !important; font-size: 0.9rem; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 24px 60px; }
    .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .hero-cards { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .hero-cards { grid-template-columns: 1fr; }
    .stat-card { padding: 22px 20px; }
    .stat-number { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
