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

:root {
    --green-dark: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #52B788;
    --green-pale: #95D5B2;
    --cream: #F8F6F0;
    --cream-light: #FDFCFA;
    --cream-warm: #F2EFE7;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --line: rgba(27, 67, 50, 0.12);
    --line-strong: rgba(27, 67, 50, 0.25);
    --font-body: 'Instrument Sans', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream-light);
    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;
}

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

/* ── Navigation ──────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-dark);
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
}

.nav-logo-text {
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-light);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--green-dark);
}

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

.nav-cta {
    color: var(--green-dark) !important;
    border: 1px solid var(--line-strong);
    padding: 8px 20px;
    border-radius: 100px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

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

.nav-cta:hover {
    background: var(--green-dark);
    color: white !important;
    border-color: var(--green-dark);
}

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--green-dark);
    padding: 4px;
}

/* ── Mobile Menu ─────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--cream-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--green-dark);
    padding: 4px;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 16px 0;
    transition: color 0.25s ease;
}

.mobile-menu-link:hover {
    color: var(--green-mid);
}

.mobile-menu-cta {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 16px;
    padding: 12px 28px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: var(--cream-light);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 20% 30%, var(--green-dark) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--green-dark) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--green-light);
}

.hero-eyebrow-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--green-dark);
    margin-bottom: 32px;
}

.headline-line {
    display: block;
}

.headline-accent {
    color: var(--green-light);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1.0625rem, 2vw, 1.3125rem);
    font-weight: 300;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 48px;
}

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

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--green-dark);
    color: white;
    border-color: var(--green-dark);
}

.btn-primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.2);
}

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

.btn-ghost:hover {
    border-color: var(--green-dark);
    background: rgba(27, 67, 50, 0.04);
}

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

/* ── Floating Stat Cards ──────────────────────────── */
.hero-stats {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
    pointer-events: none;
}

.stat-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 180px;
    box-shadow: 0 4px 24px rgba(27, 67, 50, 0.06);
    opacity: 0;
    transform: translateX(20px);
    animation: cardFloat 0.6s ease forwards;
    animation-delay: var(--delay, 0ms);
    pointer-events: all;
}

.stat-card:nth-child(1) { --delay: 0.8s; }
.stat-card:nth-child(2) { --delay: 1.0s; }
.stat-card:nth-child(3) { --delay: 1.2s; }
.stat-card:nth-child(4) { --delay: 1.4s; }

.stat-card-accent {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: var(--green-light);
    margin-bottom: 12px;
}

.stat-card:nth-child(2) .stat-card-accent { background: var(--green-mid); }
.stat-card:nth-child(3) .stat-card-accent { background: #b7e4c7; }
.stat-card:nth-child(4) .stat-card-accent { background: var(--green-dark); }

.stat-card-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.stat-card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.stat-card-detail {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
}

@keyframes cardFloat {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Section Shared ───────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 20px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 540px;
    line-height: 1.7;
}

/* ── Collection ───────────────────────────────────── */
.collection {
    padding: 120px 24px;
    background: var(--cream);
}

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

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

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collection-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.1);
}

.collection-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.collection-card:hover .collection-card-overlay {
    opacity: 1;
}

.collection-card-overlay svg {
    color: white;
    transform: scale(0.8);
    transition: transform 0.35s ease;
}

.collection-card:hover .collection-card-overlay svg {
    transform: scale(1);
}

.collection-card-body {
    padding: 28px;
}

.collection-card-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.collection-card-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 120px 24px;
    background: var(--cream-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--green-light);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.4;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-body p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-dark);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cream);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Community ────────────────────────────────────── */
.community {
    padding: 120px 24px;
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 30% 20%, white 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, white 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px;
    pointer-events: none;
}

.community .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.community-content .section-eyebrow {
    color: var(--green-pale);
}

.community-content .section-eyebrow::before {
    background: var(--green-pale);
}

.community-content .section-title {
    color: white;
}

.community-content .section-sub {
    color: rgba(255, 255, 255, 0.65);
}

.community-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.community-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.community-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.community-card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 16px;
}

.community-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.community-card-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* ── Visit ────────────────────────────────────────── */
.visit {
    padding: 120px 24px;
    background: var(--cream);
}

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

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-dark);
}

.visit-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.visit-detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.visit-link {
    color: var(--green-mid);
    transition: color 0.25s ease;
}

.visit-link:hover {
    color: var(--green-dark);
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 120px 24px;
    background: var(--cream-light);
}

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

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

.contact-text {
    padding-top: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-input {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-dark);
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.12);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%237A7A7A' stroke-width='1.5'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(82, 183, 136, 0.08);
    border: 1px solid rgba(82, 183, 136, 0.25);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--green-mid);
}

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

/* ── Footer ───────────────────────────────────────── */
.footer {
    padding: 64px 24px 32px;
    background: var(--green-dark);
    color: white;
}

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

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
}

.footer-tagline {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
}

.footer-link {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.25s ease;
}

.footer-link:hover {
    color: var(--green-pale);
}

.footer-bottom {
    padding-top: 24px;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

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

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

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 64px;
        max-width: 600px;
    }

    .stat-card {
        min-width: 150px;
    }

    .about-container,
    .community-inner,
    .visit-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        max-width: 500px;
    }

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

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

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

    .hero {
        padding: 100px 24px 80px;
    }

    .hero-headline {
        font-size: clamp(2.75rem, 12vw, 4.5rem);
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 48px;
    }

    .stat-card {
        width: 100%;
        max-width: 280px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .collection,
    .about,
    .community,
    .visit,
    .contact {
        padding: 80px 24px;
    }

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

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

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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