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

:root {
    --forest: #2D5A3D;
    --forest-light: #3A734F;
    --forest-dark: #1F4229;
    --off-white: #F5F0E8;
    --off-white-light: #FAF7F2;
    --cream: #EDE8DC;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --line: rgba(45, 90, 61, 0.12);
    --line-strong: rgba(45, 90, 61, 0.25);
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Line overlay */
.line-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}

.line--1 { left: 12%; }
.line--2 { left: 38%; }
.line--3 { left: 62%; }
.line--4 { left: 88%; }

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow {
    max-width: 640px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: transform 0.3s ease;
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--forest);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
}

.nav__logo-icon {
    flex-shrink: 0;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--forest);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--forest);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    color: var(--forest);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav__link--cta:hover {
    background: var(--forest);
    color: var(--off-white);
    border-color: var(--forest);
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--forest);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -5px);
    opacity: 0;
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
        z-index: 101;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--off-white);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--line);
        box-shadow: -8px 0 40px rgba(0,0,0,0.08);
    }

    .nav__menu.open {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 0.9rem;
    }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
    z-index: 1;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--forest);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero__headline em {
    font-style: italic;
    color: var(--forest);
}

.hero__subhead {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero__stat-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--forest);
    font-style: italic;
}

.hero__stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero__stat-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
}

/* Hero visual */
.hero__visual {
    position: relative;
    height: 600px;
}

.hero__image {
    position: absolute;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image--main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
}

.hero__image--accent {
    width: 260px;
    height: 195px;
    bottom: 100px;
    right: 0;
    border: 4px solid var(--off-white);
}

.hero__image--small {
    width: 200px;
    height: 150px;
    bottom: 0;
    left: 20px;
    border: 4px solid var(--off-white);
}

.hero__badge {
    position: absolute;
    bottom: 50px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    background: var(--off-white);
    padding: 0.6rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
}

.hero__badge svg {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__visual {
        height: 450px;
        order: -1;
    }

    .hero__image--main {
        width: 260px;
        height: 340px;
    }

    .hero__image--accent {
        width: 180px;
        height: 135px;
    }

    .hero__image--small {
        width: 150px;
        height: 112px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 5rem 0 3rem;
    }

    .hero__visual {
        height: 320px;
    }

    .hero__image--main {
        width: 200px;
        height: 260px;
    }

    .hero__image--accent {
        width: 140px;
        height: 105px;
        bottom: 60px;
    }

    .hero__image--small {
        width: 120px;
        height: 90px;
        bottom: 0;
        left: 10px;
    }

    .hero__badge {
        font-size: 0.55rem;
        padding: 0.4rem 0.7rem;
        bottom: 30px;
        left: 0;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

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

.btn--primary:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--line-strong);
}

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

.btn--full {
    width: 100%;
}

/* Sections */
.section {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.section--thin {
    padding: 5rem 0;
}

.section--dark {
    background: var(--forest);
    color: var(--off-white);
}

.section__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1rem;
}

.section__eyebrow--light {
    color: rgba(245, 240, 232, 0.6);
}

.section__headline {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

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

.section__headline--light {
    color: var(--off-white);
}

.section__headline--light em {
    color: rgba(245, 240, 232, 0.7);
}

.section__headline--left {
    text-align: left;
}

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

/* About */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about__col--right {
    padding-top: 0.5rem;
}

.about__col--right p {
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.about__features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
    color: var(--text-mid);
    letter-spacing: 0.02em;
}

.about__feature-line {
    width: 24px;
    height: 1px;
    background: var(--forest);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Products */
.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 240, 232, 0.25);
}

.product-card__img {
    height: 200px;
    overflow: hidden;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.product-card__body {
    padding: 1.5rem;
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.product-card__desc {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .products__grid {
        grid-template-columns: 1fr;
    }
}

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

.community__text .section__headline {
    margin-top: 1rem;
}

.community__body {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.community__image {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.community__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .community__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .community__image {
        order: -1;
    }
}

/* Visit */
.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 240, 232, 0.15);
}

.visit__detail {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.visit__detail-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
}

.visit__detail-value {
    font-size: 0.95rem;
    color: var(--off-white);
    line-height: 1.7;
}

.visit__detail-link {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.visit__detail-link:hover {
    color: rgba(245, 240, 232, 0.7);
}

.visit__closed {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
}

.visit__map {
    border-radius: 4px;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(245, 240, 232, 0.1);
}

@media (max-width: 768px) {
    .visit__grid {
        grid-template-columns: 1fr;
    }

    .visit__map {
        min-height: 280px;
    }
}

/* Contact Form */
.contact-form {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.contact-form__label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-form__input,
.contact-form__textarea {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.2s ease;
    resize: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: var(--forest);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: var(--text-light);
}

.contact-form__success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(45, 90, 61, 0.08);
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    font-size: 0.85rem;
    color: var(--forest);
    justify-content: center;
}

@media (max-width: 640px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--forest-dark);
    color: var(--off-white);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__logo {
    color: var(--off-white);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--off-white);
}

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

.footer__contact p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7;
}

.footer__contact a {
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__contact a:hover {
    color: var(--off-white);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
