/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    background: #FAF8F5;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
.label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #047857;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.body {
    font-size: 0.938rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 16px;
}
.body-lg {
    font-size: 1.063rem;
    color: #3a3a3a;
    line-height: 1.85;
    margin-bottom: 20px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.btn--primary {
    background: #047857;
    color: #fff;
    border: 1.5px solid #047857;
}
.btn--primary:hover {
    background: #065f46;
    border-color: #065f46;
    transform: translateY(-1px);
}
.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}
.btn--outline {
    background: transparent;
    color: #047857;
    border: 1.5px solid #047857;
}
.btn--outline:hover {
    background: #047857;
    color: #fff;
}
.btn--full { width: 100%; }

/* ── Top decorative line ──────────────────────────── */
.nav-line {
    height: 2px;
    background: linear-gradient(90deg, #047857 0%, #34d399 50%, #047857 100%);
}

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: sticky;
    top: 2px;
    z-index: 100;
    background: rgba(250,248,245,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(4,120,87,0.08);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.01em;
}
.nav-logo-icon {
    width: 26px;
    height: 26px;
    color: #047857;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4a4a4a;
    transition: color 0.25s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #047857;
    transition: width 0.3s ease;
}
.nav-link:hover { color: #047857; }
.nav-link:hover::after { width: 100%; }
.nav-link--cta {
    padding: 8px 20px;
    border: 1px solid #047857;
    color: #047857;
    transition: all 0.25s ease;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
    background: #047857;
    color: #fff;
}

/* Mobile menu button */
.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}
.nav-menu-btn span {
    display: block;
    height: 1.5px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-menu-btn.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    top: 66px;
    background: rgba(250,248,245,0.98);
    backdrop-filter: blur(16px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}
.mobile-link:hover { color: #047857; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    overflow: hidden;
    background: linear-gradient(160deg, #022c22 0%, #047857 35%, #059669 60%, #34d399 85%, #a7f3d0 100%);
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(2,44,34,0.25) 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}
.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
}
.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.08;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}
.hero-headline--accent {
    font-style: italic;
    font-weight: 300;
    color: #a7f3d0;
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section Dividers ─────────────────────────────── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}
.section-divider svg {
    color: #047857;
    opacity: 0.35;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 100px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}
.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 40%;
    border: 1px solid rgba(4,120,87,0.2);
    border-radius: 2px;
    z-index: -1;
}

/* ── Products ─────────────────────────────────────── */
.products {
    padding: 80px 0 100px;
    background: #fff;
}
.products-header {
    text-align: center;
    margin-bottom: 64px;
}
.products-header .section-title { margin-bottom: 12px; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.product-card {
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(4,120,87,0.08);
}
.product-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img {
    transform: scale(1.03);
}
.product-card-image {
    overflow: hidden;
}
.product-card-body {
    padding: 28px 4px;
}
.product-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
.product-card-desc {
    font-size: 0.875rem;
    color: #6a6a6a;
    line-height: 1.75;
}

/* ── Visit ────────────────────────────────────────── */
.visit {
    padding: 100px 0;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.visit-details {
    margin: 32px 0;
}
.visit-detail {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}
.visit-detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #047857;
    margin-bottom: 6px;
}
.visit-detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
}
.visit-link {
    transition: color 0.25s ease;
    border-bottom: 1px solid transparent;
}
.visit-link:hover {
    color: #047857;
    border-bottom-color: #047857;
}
.visit-divider {
    height: 1px;
    background: rgba(4,120,87,0.12);
}
.visit-hours {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(4,120,87,0.12);
}
.visit-hours-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #047857;
    margin-bottom: 10px;
}
.visit-hours-body {
    font-size: 0.938rem;
    color: #4a4a4a;
    line-height: 1.8;
}
.visit-map {
    border-radius: 2px;
    overflow: hidden;
    min-height: 400px;
}
.visit-map-placeholder {
    background: #ecfdf5;
    border: 1px solid rgba(4,120,87,0.15);
    border-radius: 2px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    height: 100%;
    min-height: 400px;
    justify-content: center;
}
.visit-map-placeholder svg {
    color: #047857;
    opacity: 0.5;
}
.visit-map-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 80px 0 100px;
    background: #fff;
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-text { padding-top: 8px; }
.contact-form { margin-top: 8px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #047857;
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 12px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #1a1a1a;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(4,120,87,0.2);
    outline: none;
    transition: border-color 0.25s ease;
    border-radius: 0;
    -webkit-appearance: none;
}
.form-input::placeholder { color: #aaa; }
.form-input:focus { border-bottom-color: #047857; }
.form-select {
    cursor: pointer;
    color: #6a6a6a;
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}
.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #047857;
    font-weight: 400;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────── */
.footer {
    padding: 64px 0 0;
    background: #022c22;
    color: rgba(255,255,255,0.7);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-logo-icon {
    width: 24px;
    height: 24px;
    color: #34d399;
}
.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-link {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.25s ease;
    letter-spacing: 0.04em;
}
.footer-link:hover { color: #34d399; }
.footer-contact {
    font-size: 0.85rem;
    line-height: 1.8;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

/* ── Animations ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
    .about-grid,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-image img { height: 400px; }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }
    .hero { min-height: 85vh; padding: 60px 20px 50px; }
    .hero-headline { font-size: clamp(2.2rem, 8vw, 3.4rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; text-align: center; }
    .products-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-image-accent { display: none; }
}
