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

:root {
    --forest: #2D5A3D;
    --forest-light: #3A7249;
    --forest-dark: #1E3F2A;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #EDE6D8;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --line: rgba(45, 90, 61, 0.12);
    --line-strong: rgba(45, 90, 61, 0.25);
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

/* ── Typography ── */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    background: none;
}

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

.btn-primary:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
}

.btn-outline {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

.btn-outline:hover {
    background: var(--forest);
    color: var(--white);
}

.btn-small {
    padding: 10px 24px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

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

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--forest);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--forest);
    border-radius: 50%;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

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

.nav-toggle-line {
    width: 22px;
    height: 1px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--text-dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    width: 80%;
    text-align: center;
    transition: color 0.3s ease;
}

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

/* ── Hero ── */
.hero {
    padding-top: 72px;
    background: var(--cream-light);
    min-height: 100vh;
    min-height: 100dvh;
}

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

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.hero-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 440px;
}

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

.hero-image-col {
    position: relative;
    min-height: 560px;
}

.hero-img-main {
    width: 100%;
    height: 560px;
    overflow: hidden;
}

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

.hero-img-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 260px;
    height: 170px;
    overflow: hidden;
    border: 6px solid var(--cream-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

.hero-divider::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--line-strong);
}

.hero-meta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.hero-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--forest);
    flex-shrink: 0;
}

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

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

.about-text .section-title {
    margin-bottom: 32px;
}

.about-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-image {
    height: 640px;
    overflow: hidden;
}

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

/* ── Offerings ── */
.offerings {
    background: var(--cream);
}

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

.section-header .section-title {
    margin-bottom: 16px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.offering-card {
    padding: 48px 40px;
    border: 1px solid var(--line);
    margin: -0.5px;
    transition: all 0.5s var(--ease-out);
}

.offering-card:hover {
    background: var(--white);
    border-color: var(--forest);
}

.offering-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    color: var(--forest);
}

.offering-icon svg {
    width: 100%;
    height: 100%;
}

.offering-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.offering-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ── Image Band ── */
.image-band {
    overflow: hidden;
}

.image-band-inner {
    width: 100%;
    height: 500px;
}

.image-band-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Visit ── */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-details {
    margin-top: 48px;
    display: grid;
    gap: 32px;
}

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

.visit-detail-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    padding-top: 4px;
}

.visit-detail-value {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-mid);
}

.visit-detail-value a {
    color: var(--text-mid);
    border-bottom: 1px solid var(--line-strong);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.visit-detail-value a:hover {
    color: var(--forest);
    border-color: var(--forest);
}

.visit-map {
    height: 480px;
    background: var(--cream);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-placeholder {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--forest);
}

.map-placeholder p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact .section-eyebrow {
    color: rgba(255, 255, 255, 0.6);
}

.contact .section-title {
    color: var(--white);
}

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

.contact-body {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px;
}

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

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

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success svg {
    width: 48px;
    height: 48px;
    color: var(--forest-light);
    margin-bottom: 20px;
}

.form-success p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: var(--cream-light);
    border-top: 1px solid var(--line);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--forest);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--forest);
    border-radius: 50%;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-light);
    max-width: 240px;
}

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

.footer-links a {
    font-size: 13px;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--forest);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.footer-contact a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--forest);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .about-grid {
        gap: 48px;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit-grid,
    .contact-grid {
        gap: 48px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 60px 24px 40px;
    }

    .hero-image-col {
        min-height: 400px;
        order: -1;
    }

    .hero-img-main {
        height: 400px;
    }

    .hero-img-accent {
        left: -20px;
        bottom: -20px;
        width: 200px;
        height: 130px;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-bottom: 60px;
    }

    .hero-meta-dot {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

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

    .about-image {
        height: 400px;
        order: -1;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .image-band-inner {
        height: 300px;
    }

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

    .visit-map {
        height: 320px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

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

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

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

    .hero-img-accent {
        display: none;
    }
}
