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

:root {
    --emerald: #064E3B;
    --emerald-light: #065F46;
    --emerald-dark: #022C22;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #E8DFD0;
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --text-light: #999999;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --max-width: 1200px;
    --gutter: 24px;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--cream-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ─── Line Accent ─── */
.line-accent {
    position: fixed;
    top: 0;
    left: 60px;
    width: 1px;
    height: 100vh;
    background: var(--cream-dark);
    z-index: 100;
    pointer-events: none;
}

@media (max-width: 767px) {
    .line-accent {
        left: 24px;
    }
}

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

.site-header.scrolled {
    box-shadow: 0 1px 0 var(--cream-dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-mark {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--emerald);
    letter-spacing: 0.02em;
    width: 36px;
    height: 36px;
    border: 1px solid var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--emerald-dark);
    letter-spacing: 0.04em;
}

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

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

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

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

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

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

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.hamburger {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text);
    transition: transform 0.3s ease;
}

.hamburger::before { top: -5px; }
.hamburger::after { top: 5px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        background: var(--cream-light);
        border-top: 1px solid var(--cream-dark);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-list.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 15px;
    }
}

/* ─── Hero ─── */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

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

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

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.text-emerald {
    color: var(--emerald);
    font-style: italic;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--emerald);
    transition: all 0.3s ease;
}

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

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

.btn-ghost {
    background: transparent;
    color: var(--emerald);
}

.btn-ghost:hover {
    background: var(--emerald);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.02);
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--cream-dark);
    pointer-events: none;
}

.image-caption {
    margin-top: 12px;
    font-size: 12px;
    font-style: italic;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .image-frame img {
        height: 480px;
    }
}

@media (max-width: 480px) {
    .image-frame img {
        height: 360px;
    }
}

/* ─── Divider ─── */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cream-dark);
}

/* ─── Section Shared ─── */
.section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.section-title--center {
    text-align: center;
}

/* ─── About ─── */
.about {
    padding: 80px 0;
}

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

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid var(--cream-dark);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 300px;
    }
}

/* ─── Offerings ─── */
.offerings {
    padding: 80px 0;
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 56px;
}

.offering-card {
    position: relative;
}

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

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

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

.offering-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 380px;
}

.offering-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border: 1px solid var(--cream-dark);
    transition: transform 0.5s ease;
}

.offering-card:hover img {
    transform: scale(1.015);
}

@media (max-width: 767px) {
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ─── Community ─── */
.community {
    padding: 80px 0;
    background: var(--cream);
}

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

.community-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.values-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 500;
    color: var(--emerald);
    letter-spacing: 0.05em;
    padding-top: 3px;
    min-width: 24px;
}

.value-item h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0;
}

.community-image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border: 1px solid var(--cream-dark);
}

@media (max-width: 900px) {
    .community-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-image img {
        height: 400px;
    }
}

/* ─── Visit ─── */
.visit {
    padding: 80px 0;
}

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

.contact-details {
    font-style: normal;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
}

.contact-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    min-width: 60px;
}

.contact-value {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.contact-link {
    font-size: 15px;
    color: var(--emerald);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.contact-link:hover {
    border-color: var(--emerald);
}

.hours {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-dark);
}

.hours h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
}

.hours p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Form */
.visit-form-wrap {
    position: relative;
}

.form-deco {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    color: var(--emerald);
    opacity: 0.1;
    pointer-events: none;
}

.form-deco svg {
    width: 100%;
    height: 100%;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--cream-dark);
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

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

.form-input:focus {
    border-color: var(--emerald);
}

.form-textarea {
    line-height: 1.6;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 16px 0;
    font-size: 14px;
    color: var(--emerald);
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-deco {
        display: none;
    }
}

/* ─── Footer ─── */
.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--cream-dark);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-mark {
    width: 32px;
    height: 32px;
    font-size: 15px;
}

.footer-brand .logo-text {
    font-size: 17px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-note {
    font-size: 13px;
    color: var(--text-light);
}

.footer-note a {
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.footer-note a:hover {
    color: var(--emerald);
}

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

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
