/* Jericho Villas: Organic Modernism Web Design */
:root {
    --primary: #C19A6B; /* Desert Bronze */
    --primary-gold: #D4AF37; /* Luxury Gold */
    --secondary: #F9A825; 
    --surface: #F9F9F7; /* Warm Alabaster */
    --surface-variant: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #8E8E93;
    --border: #E0E0E0;
    --max-width: 1200px;
    --glass: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--surface);
    -webkit-font-smoothing: antialiased;
}

/* --- Layout --- */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

/* --- Header & Navigation --- */
header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(193, 154, 107, 0.1);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.brand-legal {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-top: -4px;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    margin-left: 40px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* --- Hero: Cinematic Luxury --- */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero h1 span {
    background: linear-gradient(to right, var(--primary), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    color: white;
    font-weight: 300;
    margin-bottom: 50px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gold) 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.6);
}

/* --- Product Showcase --- */
.showcase {
    background-color: var(--surface);
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-head h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-head p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.villa-card {
    background: var(--surface-variant);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s;
}

.villa-card:hover {
    transform: translateY(-10px);
}

.villa-img {
    height: 240px;
    background: #ddd center/cover;
    position: relative;
}

.villa-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.villa-content {
    padding: 30px;
}

.villa-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.villa-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.villa-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

/* --- Concierge Contact --- */
.concierge {
    background-color: var(--text-primary);
    color: white;
}

.concierge h2 {
    color: white;
    margin-bottom: 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.info-block h4 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.info-block p {
    font-size: 1.25rem;
    font-weight: 300;
}

/* --- Footer --- */
footer {
    background-color: var(--text-primary);
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: white;
    text-align: center;
}

.legal-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
}

.legal-links a:hover {
    color: white;
}

.copyright {
    margin-top: 60px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 600px) {
    header { height: 70px; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    nav { display: none; }
}
