/* ============================================
   Leatherwood Grocery — Editorial Style
   Burgundy + Blush Palette
   ============================================ */

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

:root {
    --burgundy: #781F2A;
    --burgundy-deep: #5C1A21;
    --burgundy-light: #9E2B3A;
    --blush: #F5E6D3;
    --blush-light: #FBF5EE;
    --blush-warm: #E8CDB5;
    --cream: #FDF8F3;
    --white: #FFFFFF;
    --text-dark: #1A1210;
    --text-body: #3D2B28;
    --text-muted: #7A6560;
    --text-light: #A8908A;
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* ============================================
   Typography
   ============================================ */

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 32px;
}

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

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background-color: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(120, 31, 42, 0.25);
}

.btn--ghost {
    background-color: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--blush-warm);
}

.btn--ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn--nav {
    background-color: var(--burgundy);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.btn--nav:hover {
    background-color: var(--burgundy-deep);
}

/* ============================================
   Header
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(120, 31, 42, 0.08);
    transition: all 0.4s var(--ease-smooth);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(26, 18, 16, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--burgundy);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 6px;
    right: 6px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    box-shadow: 0 4px 0 var(--white);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.logo-dot {
    color: var(--burgundy);
    font-weight: 700;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a:not(.btn) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.25s var(--ease-smooth);
    position: relative;
}

.nav-desktop a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--burgundy);
    transition: width 0.3s var(--ease-out);
}

.nav-desktop a:not(.btn):hover {
    color: var(--burgundy);
}

.nav-desktop a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.nav-toggle:hover {
    background: rgba(120, 31, 42, 0.06);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease-out);
}

.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }

.hamburger::middle {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1.5px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease-out);
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::middle {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ============================================
   Mobile Menu
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 12px 24px;
    transition: color 0.25s;
    border-radius: 4px;
}

.mobile-link:hover {
    color: var(--burgundy);
}

.mobile-link--cta {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--burgundy);
    margin-top: 16px;
    padding: 14px 32px;
    border: 1.5px solid var(--burgundy);
    border-radius: 4px;
}

/* ============================================
   Hero
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 72px;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(245, 230, 211, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(120, 31, 42, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--burgundy);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 18, 16, 0.12);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(26, 18, 16, 0.1);
    border: 1px solid rgba(245, 230, 211, 0.8);
}

.floating-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.floating-hours {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   Section Divider
   ============================================ */

.section-divider {
    padding: 0 24px;
}

.divider-line {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--blush-warm), transparent);
}

/* ============================================
   About
   ============================================ */

.about {
    padding: 120px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-body {
    margin-bottom: 48px;
}

.about-body p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 20px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--blush-warm);
}

.stat {
    flex: 1;
    padding: 24px 0;
    text-align: center;
}

.stat:not(:last-child) {
    border-right: 1px solid var(--blush-warm);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-images {
    position: relative;
    padding-top: 40px;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 18, 16, 0.1);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/620;
}

.about-img-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 18, 16, 0.12);
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 400/300;
}

/* ============================================
   Offerings
   ============================================ */

.offerings {
    padding: 120px 0;
    background: var(--white);
}

.offerings-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 72px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.offering-card {
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid rgba(245, 230, 211, 0.6);
    background: var(--cream);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 18, 16, 0.08);
    border-color: transparent;
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(120, 31, 42, 0.08);
    color: var(--burgundy);
    margin-bottom: 24px;
    transition: all 0.3s var(--ease-smooth);
}

.offering-card:hover .offering-icon {
    background: var(--burgundy);
    color: var(--white);
}

.offering-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.offering-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ============================================
   Community
   ============================================ */

.community {
    padding: 120px 0;
    background: var(--burgundy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 100%, rgba(245, 230, 211, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.community .container {
    position: relative;
    z-index: 1;
}

.community-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 580/700;
}

.community .section-eyebrow {
    color: var(--blush);
}

.community .section-headline {
    color: var(--white);
}

.community .section-headline .text-accent {
    color: var(--blush);
}

.community-body {
    margin-bottom: 40px;
}

.community-body p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.community-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.value-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
}

/* ============================================
   Visit
   ============================================ */

.visit {
    padding: 120px 0;
    background: var(--cream);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--blush-warm);
}

.detail-item:first-child {
    padding-top: 0;
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(120, 31, 42, 0.08);
    color: var(--burgundy);
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.detail-value {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-link {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: var(--burgundy);
    transition: color 0.2s;
}

.detail-link:hover {
    color: var(--burgundy-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.visit-map {
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    background: var(--blush);
    border-radius: 8px;
    padding: 64px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 400px;
    justify-content: center;
    border: 1px solid rgba(232, 205, 181, 0.6);
}

.map-icon {
    color: var(--burgundy);
    margin-bottom: 8px;
}

.map-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.map-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.map-btn {
    margin-top: 16px;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-tagline {
    margin-top: 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

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

.footer-phone {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--blush);
    transition: color 0.2s;
}

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

.footer-address {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-hours {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-hours-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
}

.footer-closed {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.3) !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Scroll Animations
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .about-layout,
    .community-layout,
    .visit-layout {
        gap: 48px;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

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

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

    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -16px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-images {
        order: -1;
        padding-top: 0;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-stats {
        flex-direction: column;
        gap: 0;
    }

    .stat {
        border-right: none !important;
        border-bottom: 1px solid var(--blush-warm);
        padding: 16px 0;
    }

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

    .offerings-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .community-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .community-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .community-values {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .section-headline {
        margin-bottom: 24px;
    }

    .about,
    .offerings,
    .community,
    .visit {
        padding: 80px 0;
    }
}

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

    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .offering-card {
        padding: 28px 24px;
    }

    .map-placeholder {
        padding: 40px 24px;
    }
}
