/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    background-color: #fdfcf8;
    color: #064e3b;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #047857;
    margin-bottom: 1rem;
}
.eyebrow--light { color: #6ee7b7; }

.headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #064e3b;
    letter-spacing: -0.01em;
}
.headline--light { color: #fdf6e3; }

.body-lg {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #065f46;
}
.body {
    font-size: 1rem;
    line-height: 1.75;
    color: #065f46;
}
.body--light { color: #d1fae5; }
.body--muted { color: #a7f3d0; }

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(6, 78, 59, 0.08); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav__logo { display: flex; flex-direction: column; }
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #065f46;
    transition: color 0.2s ease;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #059669;
    transition: width 0.25s ease;
}
.nav__link:hover { color: #047857; }
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
    background: #065f46;
    color: #fdf6e3 !important;
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.15s ease;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: #047857; transform: translateY(-1px); }

.nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav__mobile {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(253, 252, 248, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    padding: 1rem 0;
}
.nav__mobile.hidden { display: none; }
.nav__mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: #065f46;
    padding: 0.75rem 0;
    display: block;
    text-align: center;
    transition: color 0.2s ease;
}
.nav__mobile-link:hover { color: #047857; }
.nav__mobile-link--cta {
    display: inline-block;
    margin-top: 0.5rem;
    background: #065f46;
    color: #fdf6e3 !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
}

/* ─── 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__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 44, 34, 0.72) 0%,
        rgba(6, 78, 59, 0.68) 50%,
        rgba(2, 44, 34, 0.80) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}
.hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #6ee7b7;
    margin-bottom: 1.5rem;
}
.hero__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fdf6e3;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
}
.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: #d1fae5;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    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.9375rem;
    font-weight: 500;
    padding: 0.8rem 1.75rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn--primary {
    background: #065f46;
    color: #fdf6e3;
}
.btn--primary:hover { background: #047857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25); }
.btn--ghost {
    background: transparent;
    color: #fdf6e3;
    border: 1.5px solid rgba(253, 246, 227, 0.4);
}
.btn--ghost:hover { border-color: #fdf6e3; background: rgba(253, 246, 227, 0.08); }
.btn--ghost-light {
    background: transparent;
    color: #d1fae5;
    border: 1.5px solid rgba(110, 231, 183, 0.4);
}
.btn--ghost-light:hover { border-color: #6ee7b7; background: rgba(110, 231, 183, 0.08); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ─── SECTIONS ─── */
.section {
    padding: 7rem 0;
}
.section--light { background: #fdf6e3; }
.section--dark { background: #064e3b; }
.section--cream { background: #fdfcf8; }

/* ─── ABOUT ─── */
.about__image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(6, 78, 59, 0.12);
}
.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── CARDS ─── */
.card {
    background: rgba(253, 246, 227, 0.06);
    border: 1px solid rgba(253, 246, 227, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2); }
.card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(110, 231, 183, 0.12);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #6ee7b7;
}
.card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #fdf6e3;
    margin-bottom: 0.75rem;
}
.card__desc { color: #a7f3d0; line-height: 1.7; }

/* ─── VISIT ─── */
.visit__item { display: flex; flex-direction: column; }
.visit__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 0.375rem;
}
.visit__link {
    color: #065f46;
    text-decoration: underline;
    text-decoration-color: rgba(6, 95, 70, 0.2);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s ease;
}
.visit__link:hover { text-decoration-color: #059669; }

.visit__map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(6, 78, 59, 0.12);
}
.visit__map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.visit__map-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 78, 59, 0.9);
    backdrop-filter: blur(8px);
    color: #d1fae5;
    padding: 0.6rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* ─── CTA BANNER ─── */
.cta-banner {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    padding: 6rem 0;
}
.cta-banner__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fdf6e3;
    letter-spacing: -0.01em;
}

/* ─── CONTACT FORM ─── */
.contact-form {
    background: #fdf6e3;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 24px 64px rgba(6, 78, 59, 0.08);
}
.form__group { display: flex; flex-direction: column; }
.form__label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #065f46;
    margin-bottom: 0.5rem;
}
.form__input,
.form__textarea {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    color: #064e3b;
    background: #fdfcf8;
    border: 1.5px solid rgba(6, 95, 70, 0.15);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
}
.form__input:focus,
.form__textarea:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}
.form__input::placeholder,
.form__textarea::placeholder { color: #a7f3d0; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: #d1fae5;
    border-radius: 10px;
    color: #064e3b;
    font-weight: 500;
}
.form__success svg { flex-shrink: 0; color: #059669; }

/* ─── FOOTER ─── */
.footer {
    background: #022c22;
    color: #d1fae5;
}

/* ─── REVEAL ANIMATIONS (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Default: always visible (no-JS fallback) */
.reveal { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    .contact-form { padding: 2rem 1.5rem; }
    .hero__actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
}
