/* ─── Custom Properties ─── */
:root {
    --terracotta: #B8572D;
    --terracotta-dark: #9A4520;
    --terracotta-light: #D4784F;
    --sand: #F5EDE4;
    --sand-dark: #E8DDD2;
    --sand-light: #FAF6F1;
    --neutral-900: #1A1A1A;
    --neutral-700: #333333;
    --neutral-500: #666666;
    --neutral-300: #999999;
    --neutral-100: #F0F0F0;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(26,26,26,.08);
    --shadow-md: 0 4px 16px rgba(26,26,26,.1);
    --shadow-lg: 0 8px 32px rgba(26,26,26,.12);
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--neutral-700);
    background: var(--sand-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
strong { font-weight: 600; color: var(--neutral-900); }

/* ─── Utilities ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Section Shared ─── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-900);
    margin-bottom: 20px;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--neutral-500);
    max-width: 560px;
    line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9rem;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(184,87,45,.3);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    box-shadow: 0 4px 16px rgba(184,87,45,.4);
}
.btn-outline {
    background: transparent;
    color: var(--neutral-700);
    border: 1.5px solid var(--sand-dark);
}
.btn-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,246,241,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--neutral-900);
}
.logo-accent { color: var(--terracotta); }
.logo-text { letter-spacing: -.01em; }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-nav a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--neutral-500);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--neutral-900); background: var(--sand); }

/* Hamburger */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.nav-toggle:hover { background: var(--sand); }
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-6px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--sand-light);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}
.hero-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--neutral-900);
    margin-bottom: 24px;
    letter-spacing: -.02em;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--neutral-500);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-sm);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--neutral-900);
}
.stat-label {
    font-size: .78rem;
    color: var(--neutral-300);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--sand-dark);
    flex-shrink: 0;
}
.hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 640/720;
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--neutral-500);
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-col {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-float {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text-col p {
    color: var(--neutral-500);
    margin-bottom: 16px;
    line-height: 1.75;
}
.about-features {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .95rem;
    color: var(--neutral-700);
}
.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--terracotta);
}

/* ─── Products ─── */
.products {
    padding: 100px 0;
    background: var(--sand-light);
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.product-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    padding: 20px 24px 0;
}
.product-card p {
    font-size: .9rem;
    color: var(--neutral-500);
    line-height: 1.7;
    padding: 10px 24px 24px;
}

/* ─── Community ─── */
.community {
    padding: 100px 0;
    background: var(--white);
}
.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.community-text p {
    color: var(--neutral-500);
    line-height: 1.75;
    margin-bottom: 16px;
}
.community-values {
    margin-top: 40px;
    display: grid;
    gap: 28px;
}
.value-item { position: relative; padding-left: 56px; }
.value-num {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sand-dark);
    line-height: 1;
}
.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 6px;
}
.value-item p {
    font-size: .9rem;
    color: var(--neutral-500);
    margin-bottom: 0;
    line-height: 1.65;
}
.community-image-col { position: relative; }
.community-img-stack {
    position: relative;
    height: 520px;
}
.community-img-stack img {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.community-img-stack img:first-child {
    width: 75%;
    top: 0;
    left: 0;
    z-index: 1;
}
.community-img-stack img:last-child {
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* ─── Visit ─── */
.visit {
    padding: 100px 0;
    background: var(--sand);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: 32px; }
.visit-info .section-title { margin-bottom: 8px; }
.contact-block {
    display: grid;
    gap: 24px;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon { flex-shrink: 0; margin-top: 2px; }
.contact-row strong {
    display: block;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--neutral-300);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-row p {
    font-size: .95rem;
    color: var(--neutral-700);
    line-height: 1.6;
}
.contact-row a {
    color: var(--terracotta);
    font-weight: 600;
    transition: color var(--transition);
}
.contact-row a:hover { color: var(--terracotta-dark); }
.visit-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-md);
}

/* ─── Footer ─── */
.site-footer {
    background: var(--neutral-900);
    color: var(--sand);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: .9rem;
    color: var(--neutral-300);
    line-height: 1.7;
    max-width: 300px;
}
.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--neutral-300);
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-links ul,
.footer-contact ul {
    display: grid;
    gap: 10px;
}
.footer-links a,
.footer-contact a {
    font-size: .9rem;
    color: var(--sand);
    opacity: .75;
    transition: opacity var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover,
.footer-contact a:hover { opacity: 1; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .88rem;
    color: var(--sand);
    opacity: .75;
    line-height: 1.5;
}
.footer-bottom {
    border-top: 1px solid rgba(245,237,228,.1);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: .82rem;
    color: var(--neutral-300);
    opacity: .6;
}
.footer-bottom a {
    color: var(--sand);
    opacity: .6;
    transition: opacity var(--transition);
}
.footer-bottom a:hover { opacity: 1; }

/* ─── Mobile Nav ─── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,246,241,.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--sand-dark);
        padding: 16px 24px 24px;
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s, visibility .3s;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .main-nav a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }
    .main-nav .btn-primary {
        text-align: center;
        margin-top: 8px;
    }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .community-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 40px; }
    .hero-image { order: -1; }
    .hero-img-wrap { aspect-ratio: 4/3; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .stat-divider { display: none; }
    .stat { flex: 0 0 calc(50% - 8px); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-img-float { right: 16px; bottom: -20px; }
    .community-img-stack { height: 360px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .container { padding: 0 18px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
    .community-img-stack { height: 280px; }
    .community-img-stack img:first-child { width: 80%; }
    .community-img-stack img:last-child { width: 65%; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .about-img-float { display: none; }
}
