/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* ===== CSS VARIABLES ===== */
:root {
    --burgundy: #7B2D3B;
    --burgundy-light: #A84556;
    --burgundy-dark: #632430;
    --blush: #F5E6E0;
    --blush-light: #FDF8F6;
    --cream: #FDF6F0;
    --sand: #F5EDE5;
    --warm: #EDE3DA;
    --white: #FFFFFF;
    --text-dark: #43181F;
    --text-mid: #7B2D3B;
    --text-light: #A84556;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
    --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.10);
    --shadow-lg: 0 20px 60px rgba(123, 45, 59, 0.14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== NAVIGATION ===== */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: var(--transition);
}

.nav-fixed.scrolled {
    background: rgba(253, 246, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--burgundy);
    transition: var(--transition-fast);
}

.nav-logo:hover {
    color: var(--burgundy-dark);
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: 100px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    background: rgba(123, 45, 59, 0.08);
    color: var(--burgundy);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--burgundy);
    color: var(--blush-light) !important;
    margin-left: 8px;
}

.nav-phone:hover {
    background: var(--burgundy-dark) !important;
    color: var(--white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(123, 45, 59, 0.08);
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(67, 24, 31, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(123, 45, 59, 0.1);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    transition: var(--transition);
}

.mobile-overlay.active .mobile-menu {
    transform: translateY(0);
}

.mobile-menu-link {
    padding: 14px 16px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-menu-link:hover {
    background: rgba(123, 45, 59, 0.08);
    color: var(--burgundy);
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(123, 45, 59, 0.1);
    margin: 8px 0;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--burgundy);
    border-radius: var(--radius-sm);
    background: var(--burgundy);
    color: var(--blush-light);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245, 230, 224, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(237, 227, 218, 0.5) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid rgba(123, 45, 59, 0.12);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--burgundy);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    color: var(--burgundy);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--burgundy);
    border-color: rgba(123, 45, 59, 0.2);
}

.btn-secondary:hover {
    border-color: var(--burgundy);
    background: var(--blush-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 640px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-main {
    width: 380px;
    height: 480px;
    right: 0;
    top: 40px;
    z-index: 2;
}

.hero-img-accent {
    width: 220px;
    height: 220px;
    left: 0;
    bottom: 80px;
    z-index: 3;
    border-radius: var(--radius-md);
    border: 6px solid var(--cream);
}

.hero-img-float {
    width: 260px;
    height: 200px;
    right: 20px;
    bottom: 0;
    z-index: 1;
    border-radius: var(--radius-md);
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--burgundy);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--blush-light);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 24px;
}

.marquee-dot {
    color: var(--blush);
    font-size: 0.6rem;
    opacity: 0.6;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS COMMON ===== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--burgundy);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(123, 45, 59, 0.08);
    border-radius: 100px;
}

.section-heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-heading-accent {
    color: var(--burgundy);
    font-style: italic;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 24px;
    background: var(--white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
    height: 480px;
}

.about-img-main {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-col {
    max-width: 520px;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 32px;
    opacity: 0.85;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--blush);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--text-mid);
    opacity: 0.8;
    line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products {
    padding: 120px 24px;
    background: var(--cream);
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.products-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-mid);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(123, 45, 59, 0.06);
}

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

.product-card-img {
    height: 240px;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-body {
    padding: 28px;
}

.product-card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
    opacity: 0.85;
}

/* ===== COMMUNITY ===== */
.community {
    padding: 120px 24px;
    background: var(--white);
}

.community-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-content {
    max-width: 520px;
}

.community-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
    opacity: 0.85;
}

.community-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* ===== VISIT ===== */
.visit {
    padding: 120px 24px;
    background: var(--cream);
}

.visit-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-info {
    max-width: 480px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.visit-detail strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--burgundy);
    font-weight: 500;
    transition: var(--transition-fast);
}

.visit-detail a:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

.hours-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visit-map-inner {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.visit-map iframe {
    width: 100%;
    height: 480px;
    display: block;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 24px;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245, 230, 224, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 80%, rgba(245, 230, 224, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blush);
    margin-bottom: 20px;
}

.cta-heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-body {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--blush);
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--blush);
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 230, 224, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    color: var(--blush-light);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--blush);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--blush);
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blush-light);
    transition: var(--transition-fast);
}

.footer-phone:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subheadline {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image-stack {
        height: 480px;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-img-main {
        width: 300px;
        height: 380px;
    }

    .hero-img-accent {
        width: 180px;
        height: 180px;
    }

    .hero-img-float {
        width: 220px;
        height: 170px;
    }

    .about-container,
    .community-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-col {
        height: 360px;
        max-width: 560px;
        margin: 0 auto;
    }

    .about-text-col,
    .community-content {
        max-width: 100%;
    }

    .visit-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .visit-info {
        max-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-image-stack {
        height: 380px;
    }

    .hero-img-main {
        width: 240px;
        height: 300px;
    }

    .hero-img-accent {
        width: 140px;
        height: 140px;
        right: 0;
        bottom: 40px;
    }

    .hero-img-float {
        width: 180px;
        height: 140px;
        right: 10px;
        bottom: 0;
    }

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

    .about-img-float {
        right: -10px;
        width: 160px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 16px 50px;
    }

    .hero-image-stack {
        height: 320px;
    }

    .hero-img-main {
        width: 200px;
        height: 260px;
    }

    .hero-img-accent {
        width: 120px;
        height: 120px;
    }

    .hero-img-float {
        width: 160px;
        height: 120px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .about,
    .products,
    .community,
    .visit {
        padding: 80px 16px;
    }

    .about-image-col {
        height: 280px;
    }

    .about-img-main {
        height: 280px;
    }

    .about-img-float {
        width: 130px;
        right: -5px;
    }
}
