/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #0B3D2E;
    --green-800: #145A3D;
    --green-700: #1A6B4A;
    --green-600: #22845A;
    --green-500: #2D9B6A;
    --green-400: #4DB88A;
    --green-300: #7ECFA8;
    --green-200: #B8E8D0;
    --green-100: #D9F5E8;
    --green-50:  #EFFAF4;

    --cream-50:  #FAFAF7;
    --cream-100: #F5F5F0;
    --cream-200: #EDEDE6;
    --cream-300: #E0E0D8;

    --text-dark:  #1A1A18;
    --text-mid:   #3D3D38;
    --text-light: #6B6B64;
    --text-muted: #94948C;

    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans:  'Lato', 'Segoe UI', system-ui, sans-serif;

    --shadow-sm:  0 1px 3px rgba(11, 61, 46, 0.06);
    --shadow-md:  0 4px 16px rgba(11, 61, 46, 0.08);
    --shadow-lg:  0 12px 40px rgba(11, 61, 46, 0.10);
    --shadow-xl:  0 24px 60px rgba(11, 61, 46, 0.12);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--green-800);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(11, 61, 46, 0.07);
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo__mark {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-700);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green-700);
    border-radius: 50%;
}
.logo__text {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--green-900);
    letter-spacing: 0.01em;
}
.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav__link {
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.nav__link:hover {
    color: var(--green-700);
    background: var(--green-50);
}
.nav__link--cta {
    background: var(--green-700);
    color: #fff !important;
    margin-left: 0.5rem;
}
.nav__link--cta:hover {
    background: var(--green-800);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    .nav__list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 247, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid rgba(11, 61, 46, 0.07);
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        pointer-events: none;
    }
    .nav__list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav__link {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        text-transform: none;
        letter-spacing: 0.01em;
    }
    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--green-900);
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(20, 90, 61, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(45, 155, 106, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(11, 61, 46, 0.9) 0%, transparent 50%),
        linear-gradient(160deg, #071F17 0%, #0B3D2E 30%, #145A3D 55%, #1A6B4A 75%, #22845A 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 8rem 1.5rem 6rem;
}
.hero__eyebrow {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: 1.5rem;
}
.hero__headline {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.hero__headline em {
    font-style: italic;
    color: var(--green-200);
}
.hero__sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 2.5rem;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.btn--primary {
    background: #fff;
    color: var(--green-900);
}
.btn--primary:hover {
    background: var(--green-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}
.btn--full {
    width: 100%;
}

.hero__trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero__trust span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.hero__scroll:hover { color: rgba(255, 255, 255, 0.7); }
.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--green-900);
    margin-bottom: 1rem;
}
.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--green-600), var(--green-300));
    border-radius: 2px;
}

/* ===== SERVICES ===== */
.services {
    padding: 7rem 0;
    background: var(--cream-50);
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    border: 1px solid var(--cream-200);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}
.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-sm);
    color: var(--green-700);
    margin-bottom: 1.25rem;
    transition: background var(--transition);
}
.service-card:hover .service-card__icon {
    background: var(--green-100);
}
.service-card__title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--green-900);
    margin-bottom: 0.75rem;
}
.service-card__desc {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .services__grid { grid-template-columns: 1fr; }
    .services { padding: 5rem 0; }
}

/* ===== ABOUT ===== */
.about {
    padding: 7rem 0;
    background: #fff;
}
.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about__image-col {
    position: relative;
}
.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--green-200);
    border-radius: var(--radius-md);
    z-index: -1;
}
.about__text-col {
    padding: 1rem 0;
}
.about__body {
    font-size: 1.025rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.about__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-200);
}
.about__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.about__stat-number {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--green-700);
    line-height: 1;
}
.about__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .about__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about__image-col { order: -1; }
    .about { padding: 5rem 0; }
}

/* ===== GALLERY ===== */
.gallery {
    padding: 7rem 0;
    background: var(--cream-50);
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}
.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item:hover img {
    transform: scale(1.05);
}
.gallery__item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}
.gallery__item--tall {
    grid-row: 1 / 3;
}
@media (max-width: 700px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery__item--large { grid-column: 1 / 3; }
    .gallery__item--tall { grid-row: auto; }
}
@media (max-width: 480px) {
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--large { grid-column: 1; }
}

/* ===== VISIT ===== */
.visit {
    padding: 7rem 0;
    background: #fff;
}
.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--cream-200);
}
.visit__info {
    padding: 3.5rem;
}
.visit__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.visit__details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.visit__details-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-sm);
    color: var(--green-700);
}
.visit__details div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.visit__details strong {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-900);
}
.visit__details span,
.visit__details a {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.6;
}
.visit__details a:hover {
    color: var(--green-700);
    text-decoration: underline;
}
.visit__map {
    min-height: 400px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    overflow: hidden;
}
@media (max-width: 900px) {
    .visit__inner { grid-template-columns: 1fr; }
    .visit__map { min-height: 300px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
    .visit { padding: 5rem 0; }
}

/* ===== CONTACT ===== */
.contact {
    padding: 7rem 0;
    background: var(--green-900);
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact__text .section-eyebrow { color: var(--green-400); }
.contact__text .section-title { color: #fff; }
.contact__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-top: 1rem;
}
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.form-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: #fff;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.form-input:focus {
    border-color: var(--green-400);
    background: rgba(255, 255, 255, 0.1);
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    text-align: center;
    padding: 1rem;
    background: rgba(45, 155, 106, 0.15);
    border: 1px solid rgba(45, 155, 106, 0.3);
    border-radius: var(--radius-sm);
    color: var(--green-200);
    font-size: 0.95rem;
}
@media (max-width: 900px) {
    .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
    .contact { padding: 5rem 0; }
}

/* ===== FOOTER ===== */
.footer {
    background: #071F17;
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand .logo__text { color: #fff; }
.footer__tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.75rem;
    line-height: 1.6;
}
.footer__nav strong,
.footer__contact strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}
.footer__nav ul,
.footer__contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer__nav a,
.footer__contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}
.footer__nav a:hover,
.footer__contact a:hover {
    color: var(--green-300);
}
.footer__contact li {
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 700px) {
    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; text-align: center; }
}
