/* Havenlywood Design Tokens - Warm Luxurious Theme */
:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-rose: #b8860b;
    --accent-rose-hover: #d4a017;
    --accent-gold: #c9a962;
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --text-grey: #a0a0a0;
    --bg-cream: #faf8f5;
    --bg-warm: #f5f0e8;
    --bg-dark: #1a1a1a;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px -15px rgba(26, 26, 26, 0.7);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --font-main: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
.body-main {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--primary-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.heading-h1 {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.heading-h2 {
    font-family: var(--font-main);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.heading-h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.text-p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-bold {
    font-weight: 700;
}

/* Navigation */
.nav-header {
    background: var(--bg-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo-span {
    color: var(--accent-rose);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-rose);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-rose);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-rose);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--accent-rose);
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: var(--accent-rose-hover);
    border-color: var(--accent-rose-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.btn-accent {
    display: inline-block;
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-accent:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    flex: 1;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-rose);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: var(--shadow-soft);
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

/* Features / Content Grid */
.section-padding {
    padding: 100px 0;
}

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

.card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

/* Specs Table */
.table-container {
    overflow-x: auto;
    margin: 40px 0;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
}

.table-th {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
}

.table-td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comp-table tbody tr:hover {
    background: var(--bg-warm);
}

/* Disclosure Bar */
.disclosure-bar {
    background: var(--bg-warm);
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.disclosure-bar .text-p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* Footer */
.footer-main {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-heading {
    font-family: var(--font-main);
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

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

.footer-item {
    margin-bottom: 14px;
}

.footer-link {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--accent-rose);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-image-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .nav-list .btn-accent {
        display: none;
    }

    .heading-h1 {
        font-size: 2.2rem;
    }

    .heading-h2 {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .card {
        padding: 30px;
    }

    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .table-th, .table-td {
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn-primary, .btn-accent {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
    }

    .hero-flex {
        gap: 30px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* FAQ Styles */
.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--accent-rose);
}

.testimonial-card .text-p {
    font-style: italic;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-section .heading-h2,
.cta-section .text-p {
    color: var(--text-white);
}

.cta-section .text-p {
    color: var(--text-grey);
}