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

:root {
    --color-forest: #1B4332;
    --color-forest-light: #2D6A4F;
    --color-forest-pale: #52B788;
    --color-offwhite: #FAF9F6;
    --color-cream: #F5F3EE;
    --color-warm: #EDE8DF;
    --color-text: #1A1A1A;
    --color-text-muted: #5C5C5C;
    --color-text-light: #8A8A8A;
    --color-line: #E0DCD5;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-offwhite);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--color-forest);
    color: var(--color-offwhite);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-line);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(27, 67, 50, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--color-forest);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.logo-text {
    font-style: italic;
}

.logo-mark {
    color: var(--color-forest);
    flex-shrink: 0;
}

/* ─── NAV ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-forest);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-forest);
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--color-forest);
}

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

.nav-cta {
    background: var(--color-forest);
    color: var(--color-offwhite) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.04em;
    transition: background var(--transition) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-forest-light) !important;
}

/* ─── HERO ─── */
.hero {
    padding-top: calc(80px + var(--space-xl));
    padding-bottom: var(--space-xl);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-forest-pale);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--color-forest-light);
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--color-forest);
    color: var(--color-offwhite);
    border-color: var(--color-forest);
}

.btn-primary:hover {
    background: var(--color-forest-light);
    border-color: var(--color-forest-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--color-forest);
    border-color: var(--color-forest);
}

.btn-ghost:hover {
    background: var(--color-forest);
    color: var(--color-offwhite);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-line);
}

.hero-stat {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-stat strong {
    color: var(--color-forest);
    font-weight: 500;
}

.hero-divider {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-line);
}

.hero-image-col {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.hero-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.1);
}

.hero-image--main {
    aspect-ratio: 3 / 4;
}

.hero-image--accent {
    position: absolute;
    bottom: -2rem;
    right: -1.5rem;
    width: 55%;
    aspect-ratio: 4 / 3;
    border: 4px solid var(--color-offwhite);
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.15);
}

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

.hero-image:hover img {
    transform: scale(1.03);
}

/* ─── DIVIDER ─── */
.section-divider {
    padding: 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-line), transparent);
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-forest-pale);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

/* ─── ABOUT ─── */
.about {
    padding: var(--space-xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image-col img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.08);
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.about-values {
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.value-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.value-item:hover {
    background: var(--color-cream);
}

.value-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-forest-pale);
    line-height: 1;
    min-width: 2.5rem;
}

.value-item strong {
    display: block;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 0.25rem;
}

.value-item span {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ─── PRODUCTS ─── */
.products {
    padding: var(--space-xl) 0;
    background: var(--color-cream);
}

.products-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.product-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-offwhite);
    box-shadow: 0 2px 16px rgba(27, 67, 50, 0.06);
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 67, 50, 0.12);
}

.product-image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

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

.product-info {
    padding: var(--space-md);
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-forest);
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
    padding: var(--space-2xl) 0;
    background: var(--color-forest);
    color: var(--color-offwhite);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy .section-eyebrow {
    color: var(--color-forest-pale);
}

.philosophy-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-offwhite);
    margin-bottom: var(--space-md);
    position: relative;
    padding: var(--space-md) 0;
}

.philosophy-quote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--color-forest-pale);
    opacity: 0.4;
    font-family: var(--font-display);
    line-height: 1;
}

.philosophy-body {
    font-size: 1.0625rem;
    color: rgba(250, 249, 246, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.philosophy-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(250, 249, 246, 0.15);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-forest-pale);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.6);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(250, 249, 246, 0.15);
}

/* ─── VISIT ─── */
.visit {
    padding: var(--space-2xl) 0;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.visit-details {
    font-style: normal;
    margin: var(--space-md) 0;
}

.visit-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--color-text-muted);
}

.visit-icon {
    color: var(--color-forest);
    flex-shrink: 0;
}

.visit-row a {
    color: var(--color-forest-light);
    transition: color var(--transition);
}

.visit-row a:hover {
    color: var(--color-forest);
    text-decoration: underline;
}

.visit-hours {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-line);
}

.visit-hours h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

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

.visit-hours td {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-line);
}

.visit-hours td:first-child {
    font-weight: 400;
    color: var(--color-text);
}

.visit-hours td:last-child {
    text-align: right;
}

.visit-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.08);
    aspect-ratio: 4 / 3;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--color-forest);
    color: var(--color-offwhite);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(250, 249, 246, 0.12);
}

.logo--footer {
    color: var(--color-offwhite);
    margin-bottom: var(--space-sm);
}

.logo--footer .logo-mark {
    color: var(--color-forest-pale);
}

.footer-brand p {
    color: rgba(250, 249, 246, 0.65);
    font-size: 0.9375rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--color-offwhite);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(250, 249, 246, 0.65);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-forest-pale);
}

.footer-contact p {
    color: rgba(250, 249, 246, 0.65);
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--color-forest-pale);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-offwhite);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 249, 246, 0.4);
}

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

.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; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero-image-col {
        max-width: 560px;
    }

    .hero-image--accent {
        right: 0;
        bottom: -1.5rem;
    }

    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about-image-col {
        order: -1;
    }

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

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--color-offwhite);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem var(--space-md) var(--space-md);
        gap: 0;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-line);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: var(--space-sm) 0;
        font-size: 0.9375rem;
    }

    .nav-cta {
        text-align: center;
        margin-top: var(--space-sm);
    }

    .hero {
        min-height: auto;
        padding-top: calc(80px + var(--space-md));
    }

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

    .hero-image--accent {
        display: none;
    }

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

    .philosophy-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

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

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .hero-divider {
        display: none;
    }
}
