/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50:  #f5f0e8;
    --cream-100: #ede5d4;
    --cream-200: #e8dfc8;
    --cream-300: #d4c9b4;
    --charcoal:  #1a1a1a;
    --charcoal-light: #2d2d2d;
    --text-dark: #1a1a1a;
    --text-muted: #5c5c5c;
    --text-light: #f5f0e8;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(6,78,59,0.08);
    --shadow-md: 0 4px 20px rgba(6,78,59,0.1);
    --shadow-lg: 0 10px 40px rgba(6,78,59,0.12);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-50);
    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;
    transition: color var(--transition);
}

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

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--emerald-900);
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-top: 16px;
    line-height: 1.8;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--emerald-800);
    color: var(--cream-50);
    border-color: var(--emerald-800);
}

.btn-primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--cream-50);
    border-color: rgba(245,240,232,0.6);
}

.btn-outline:hover {
    background: var(--cream-50);
    color: var(--emerald-900);
    border-color: var(--cream-50);
}

.btn-full {
    width: 100%;
}

/* ── Header ─────────────────────────────────────────────── */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition);
}

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

#main-header.scrolled {
    background: rgba(6,78,59,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

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

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream-50);
    letter-spacing: 0.02em;
}

#main-header.scrolled .logo-text,
#footer .logo-text {
    color: var(--cream-50);
}

/* ── Navigation ─────────────────────────────────────────── */
#main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

#main-nav a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.8);
    position: relative;
    padding: 4px 0;
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cream-50);
    transition: width var(--transition);
}

#main-nav a:hover,
#main-nav a:focus {
    color: var(--cream-50);
}

#main-nav a:hover::after,
#main-nav a:focus::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid rgba(245,240,232,0.4) !important;
    padding: 8px 20px !important;
    border-radius: 2px;
    transition: all var(--transition) !important;
}

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

.nav-cta:hover {
    background: var(--cream-50);
    color: var(--emerald-900) !important;
    border-color: var(--cream-50) !important;
}

/* ── Mobile Menu Toggle ─────────────────────────────────── */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream-50);
    transition: all var(--transition);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ── Mobile Menu ────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--emerald-900);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--cream-50);
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--cream-200);
}

.mobile-cta {
    margin-top: 16px;
    display: inline-block;
    border: 1px solid rgba(245,240,232,0.5);
    padding: 12px 32px;
    font-family: var(--font-sans) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Hero ───────────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6,78,59,0.72) 0%,
        rgba(6,78,59,0.55) 50%,
        rgba(6,30,20,0.80) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.7);
    margin-bottom: 20px;
}

.hero-content h1 {
    color: var(--cream-50);
    margin-bottom: 24px;
    font-weight: 300;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(245,240,232,0.85);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245,240,232,0.5);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section Base ───────────────────────────────────────── */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

/* ── About ──────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

.about-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--emerald-600);
    border-radius: 2px;
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--emerald-700);
    margin: 24px 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-200);
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-item svg {
    flex-shrink: 0;
    color: var(--emerald-700);
    margin-top: 2px;
}

.value-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 2px;
}

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

/* ── Products ───────────────────────────────────────────── */
.products {
    background: var(--cream-100);
}

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

.product-card {
    background: var(--cream-50);
    border-radius: 2px;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.product-img {
    overflow: hidden;
}

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

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

.product-card h3 {
    padding: 24px 28px 8px;
    font-family: var(--font-serif);
}

.product-card p {
    padding: 0 28px 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.products-cta {
    text-align: center;
}

.products-cta .btn {
    margin-bottom: 16px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Gallery ────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ── Visit ──────────────────────────────────────────────── */
.visit {
    background: var(--cream-100);
}

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

.visit-info h2 {
    margin-bottom: 20px;
}

.visit-description {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.visit-details {
    list-style: none;
    margin-bottom: 36px;
}

.detail-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.detail-row svg {
    color: var(--emerald-700);
    flex-shrink: 0;
    margin-top: 3px;
}

.detail-row strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 2px;
}

.detail-row span,
.detail-row a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.detail-row a:hover {
    color: var(--emerald-700);
}

.visit-map {
    border-radius: 2px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-md);
}

/* ── Contact ────────────────────────────────────────────── */
.contact {
    background: var(--emerald-900);
    color: var(--cream-50);
}

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

.contact .section-eyebrow {
    color: var(--cream-200);
}

.contact h2 {
    color: var(--cream-50);
    margin-bottom: 20px;
}

.contact-text p {
    color: rgba(245,240,232,0.75);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-direct {
    margin-top: 20px !important;
}

.contact-direct a {
    color: var(--cream-200);
    border-bottom: 1px solid rgba(245,240,232,0.3);
    transition: all var(--transition);
}

.contact-direct a:hover {
    color: var(--cream-50);
    border-bottom-color: var(--cream-50);
}

.contact-form {
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 2px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.6);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(245,240,232,0.08);
    border: 1px solid rgba(245,240,232,0.15);
    border-radius: 2px;
    color: var(--cream-50);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245,240,232,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(245,240,232,0.4);
    background: rgba(245,240,232,0.12);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(245,240,232,0.1);
    border: 1px solid rgba(245,240,232,0.2);
    border-radius: 2px;
    margin-top: 16px;
    color: var(--cream-50);
    font-size: 0.95rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
    color: #34d399;
}

/* ── Footer ─────────────────────────────────────────────── */
#footer {
    background: var(--charcoal);
    color: rgba(245,240,232,0.6);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-300);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(245,240,232,0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--cream-50);
}

.footer-contact address {
    font-style: normal;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-contact a {
    color: rgba(245,240,232,0.5);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(245,240,232,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(245,240,232,0.35);
}

/* ── Scroll Animations ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s 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) {
    .about-grid,
    .visit-grid,
    .contact-inner {
        gap: 48px;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .menu-toggle {
        display: block;
    }

    #main-nav {
        display: none;
    }

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

    .about-image-wrap img {
        height: 360px;
    }

    .about-accent {
        top: -12px;
        left: -12px;
    }

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

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

    .gallery-item img {
        height: 200px;
    }

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

    .visit-map {
        min-height: 300px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

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

    .section {
        padding: 64px 0;
    }

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

    .gallery-item img {
        height: 220px;
    }

    .contact-form {
        padding: 20px;
    }
}
