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

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

body {
    line-height: 1.6;
    color: #212f23;
    background-color: #faf9f6;
}

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

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

/* ── Typography ── */
.label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #527550;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: #212f23;
    letter-spacing: -0.01em;
}

.body-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: #3d5a3d;
    max-width: 52ch;
}

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

/* ── Nav ── */
.nav {
    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 rgba(33, 47, 35, 0.08);
    transition: background 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #212f23;
    letter-spacing: -0.01em;
}

.nav-logo-icon {
    color: #527550;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #3d5a3d;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #527550;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #212f23;
}

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

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #212f23;
    padding: 0.5rem;
}

/* ── Mobile Menu ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 300;
    color: #212f23;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: #527550;
}

/* ── Hero ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    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 top,
        rgba(17, 24, 18, 0.82) 0%,
        rgba(17, 24, 18, 0.55) 45%,
        rgba(17, 24, 18, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-bottom: 5rem;
    width: 100%;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.7);
    margin-bottom: 1.75rem;
}

.hero-tag-line {
    width: 40px;
    height: 1px;
    background: rgba(250, 249, 246, 0.4);
}

.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #faf9f6;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-headline em {
    font-style: italic;
    font-weight: 300;
}

.hero-sub {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.75);
    max-width: 44ch;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #527550;
    color: #faf9f6;
    border: 1px solid #527550;
}

.btn-primary:hover {
    background: #3d5a3d;
    border-color: #3d5a3d;
}

.btn-ghost {
    background: transparent;
    color: #faf9f6;
    border: 1px solid rgba(250, 249, 246, 0.35);
}

.btn-ghost:hover {
    border-color: rgba(250, 249, 246, 0.7);
    background: rgba(250, 249, 246, 0.08);
}

.btn-full {
    width: 100%;
}

/* ── Hero Scroll ── */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.45);
    animation: float 2.5s ease-in-out infinite;
}

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

/* ── Section ── */
.section {
    padding: 7rem 0;
}

/* ── Thin Divider ── */
.thin-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: #212f23;
}

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

.about-text .section-title {
    margin-bottom: 1.75rem;
}

.about-text .body-text {
    margin-bottom: 1.25rem;
}

.about-image {
    overflow: hidden;
}

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

/* ── Products ── */
.products {
    background: #f2f5f0;
}

.products .section-title {
    margin-bottom: 3.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: #faf9f6;
    border: 1px solid rgba(33, 47, 35, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(33, 47, 35, 0.08);
    transform: translateY(-4px);
}

.product-card-img {
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-body {
    padding: 1.75rem;
}

.product-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #212f23;
    margin-bottom: 0.625rem;
}

.product-card-desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    color: #3d5a3d;
}

/* ── Visit ── */
.visit .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    max-width: 100%;
}

.visit-content {
    padding: 7rem 4rem;
    background: #212f23;
}

.visit-content .label {
    color: #9bb796;
}

.visit-content .section-title {
    color: #faf9f6;
    margin-bottom: 3rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit-icon {
    color: #527550;
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9bb796;
    margin-bottom: 0.375rem;
}

.visit-detail-value {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #faf9f6;
    line-height: 1.6;
}

.link-green {
    color: #9bb796;
    transition: color 0.2s ease;
}

.link-green:hover {
    color: #c6d7c0;
}

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

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    filter: grayscale(0.4) contrast(1.05);
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text .section-title {
    margin-bottom: 1.25rem;
}

/* ── Form ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3d5a3d;
}

.form-input {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #212f23;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(33, 47, 35, 0.2);
    padding: 0.75rem 0;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-input::placeholder {
    color: #9bb796;
}

.form-input:focus {
    border-bottom-color: #527550;
}

.form-textarea {
    line-height: 1.7;
}

.form-success {
    display: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #527550;
    text-align: center;
    padding: 1rem;
    margin-top: 0.5rem;
}

.form-success.visible {
    display: block;
}

/* ── Footer ── */
.footer {
    background: #111812;
    padding: 4rem 0 2rem;
    color: #faf9f6;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 249, 246, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #faf9f6;
}

.footer-logo-icon {
    color: #527550;
}

.footer-tagline {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.4);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.6);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #faf9f6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.6);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #9bb796;
}

.footer-address {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.4);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.25);
}

/* ── Reveal Animations (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        gap: 3rem;
    }

    .visit-content {
        padding: 5rem 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

    .nav-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding-bottom: 4rem;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section {
        padding: 5rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 320px;
    }

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

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

    .visit-content {
        padding: 4rem 1.5rem;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        text-align: left;
    }
}

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

    .nav-inner {
        padding: 0 1.25rem;
    }

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

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
}
