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

:root {
    --green-900: #0f2518;
    --green-800: #1a3a2a;
    --green-700: #244d37;
    --green-600: #2d6047;
    --green-500: #3d7a5a;
    --green-400: #5a9a76;
    --green-300: #8fb89a;
    --green-200: #bdd5be;
    --green-100: #dcecdE;
    --green-50:  #eef6f1;
    
    --cream-900: #2a2520;
    --cream-800: #3d3630;
    --cream-700: #5a5048;
    --cream-600: #7a6e64;
    --cream-500: #9a8e84;
    --cream-400: #b8aa9e;
    --cream-300: #d4c8bc;
    --cream-200: #e8dfd4;
    --cream-100: #f2ece4;
    --cream-50:  #f8f4ef;
    --cream-25:  #fbf8f5;
    --cream-0:   #fdfcfa;
    
    --white: #ffffff;
    --black: #0a0a0a;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--cream-900);
    background: var(--cream-0);
    line-height: 1.7;
    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: 1000;
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 58, 42, 0.08);
    transition: background 0.4s var(--ease-smooth);
}

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

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--green-800);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-700);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-600);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: var(--green-700);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--green-800);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

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

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-900);
}

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

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

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 37, 24, 0.88) 0%,
        rgba(26, 58, 42, 0.75) 50%,
        rgba(15, 37, 24, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: 28px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream-50);
    max-width: 720px;
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: var(--green-300);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--cream-300);
    max-width: 480px;
    margin-bottom: 44px;
}

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.btn-primary {
    background: var(--green-600);
    color: var(--cream-50);
    border: 1px solid var(--green-600);
}

.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 58, 42, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--cream-200);
    border: 1px solid rgba(200, 180, 154, 0.3);
}

.btn-ghost:hover {
    border-color: var(--cream-300);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* ─── Stat Cards ─── */
.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 24px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card {
    background: rgba(253, 252, 250, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 180, 154, 0.15);
    padding: 20px 24px;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream-100);
    margin-bottom: 4px;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--cream-400);
    line-height: 1.5;
}

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

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

.section-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--green-800);
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--cream-600);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ─── About ─── */
.about {
    background: var(--cream-0);
}

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

.about-text p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--cream-700);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-text p:first-of-type {
    font-size: 1.1rem;
    color: var(--cream-800);
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ─── Collection ─── */
.collection {
    background: var(--cream-50);
}

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

.collection-card {
    background: var(--cream-0);
    border: 1px solid var(--cream-200);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 58, 42, 0.08);
    border-color: var(--green-200);
}

.collection-card-img {
    overflow: hidden;
    height: 280px;
}

.collection-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

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

.collection-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--green-800);
    margin-bottom: 8px;
}

.collection-card-body p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--cream-600);
    line-height: 1.7;
}

/* ─── Philosophy ─── */
.philosophy {
    background: var(--green-800);
    padding: 100px 0;
}

.philosophy-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.philosophy blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--cream-100);
    margin-bottom: 24px;
}

.philosophy cite {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-400);
}

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

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

.visit-info .section-eyebrow {
    text-align: left;
}

.visit-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.visit-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--cream-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.visit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.visit-detail dt {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 6px;
}

.visit-detail dd {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--cream-800);
    line-height: 1.6;
}

.visit-detail dd a {
    color: var(--green-700);
    border-bottom: 1px solid var(--green-200);
    transition: border-color 0.3s;
}

.visit-detail dd a:hover {
    border-color: var(--green-600);
}

.visit-map {
    height: 480px;
    border: 1px solid var(--cream-200);
    overflow: hidden;
}

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

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--cream-600);
    line-height: 1.75;
    margin-bottom: 48px;
}

.contact-form {
    text-align: left;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--cream-900);
    background: var(--cream-0);
    border: 1px solid var(--cream-300);
    outline: none;
    transition: border-color 0.3s var(--ease-smooth);
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--cream-400);
}

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

.form-success {
    display: none;
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--green-700);
    padding: 16px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
}

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

/* ─── Footer ─── */
.footer {
    background: var(--green-900);
    padding: 64px 0 40px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream-200);
    letter-spacing: 0.02em;
}

.footer-brand p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--cream-500);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--cream-400);
    border-bottom: 1px solid rgba(200, 180, 154, 0.2);
    transition: color 0.3s, border-color 0.3s;
}

.footer-links a:hover {
    color: var(--cream-200);
    border-color: var(--cream-400);
}

.footer-copy p {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--cream-600);
    letter-spacing: 0.04em;
}

/* ─── Reveal Animations ─── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Default state for reduced motion or no-JS: always visible */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 48px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hero-content {
        padding-bottom: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 252, 250, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
        border-bottom: 1px solid transparent;
    }
    
    .nav-menu.open {
        max-height: 300px;
        padding: 24px 0;
        border-bottom: 1px solid rgba(26, 58, 42, 0.08);
    }
    
    .nav-menu li {
        padding: 12px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 360px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .visit-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }
    
    .stat-card {
        min-width: auto;
        width: 100%;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero-content {
        padding-bottom: 160px;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
