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

:root {
    --emerald: #064e3b;
    --emerald-deep: #022c22;
    --emerald-light: #065f46;
    --emerald-muted: #d1fae5;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --cream-warm: #e8e0d4;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--sans);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography ─── */
.section__eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 16px 32px;
    border-radius: 0;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

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

.btn--primary:hover {
    background: var(--emerald-deep);
    border-color: var(--emerald-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
}

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

.btn--outline:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.nav__logo {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--emerald);
    letter-spacing: -0.02em;
}

.nav__logo-accent {
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--emerald);
    transition: width var(--transition);
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--emerald);
    border: 1.5px solid var(--emerald);
    padding: 10px 20px;
    transition: all var(--transition);
}

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

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

.nav__toggle-bar {
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    transition: all var(--transition);
}

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

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__eyebrow::before {
    content: '';
    width: 40px;
    height: 1.5px;
    background: var(--emerald);
}

.hero__headline {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero__headline-accent {
    display: block;
    font-style: italic;
    color: var(--emerald);
    font-weight: 400;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    gap: 32px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-mid);
}

.hero__trust-item svg {
    color: var(--emerald);
    flex-shrink: 0;
}

.hero__image-wrapper {
    position: relative;
}

.hero__image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
}

.hero__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--emerald);
    z-index: -1;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Services ─── */
.services {
    padding: 120px 0;
    background: var(--white);
}

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

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

.service-card {
    padding: 40px 32px;
    background: var(--cream);
    border: 1px solid transparent;
    transition: all var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--emerald);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--emerald-muted);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--emerald);
    margin-bottom: 24px;
    color: var(--emerald);
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--emerald);
    color: var(--white);
}

.service-card__title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-mid);
}

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

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

.about__image-stack {
    position: relative;
    height: 600px;
}

.about__image-main {
    width: 75%;
    height: 480px;
    position: absolute;
    top: 0;
    left: 0;
}

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

.about__image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 280px;
    border: 6px solid var(--cream);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.about__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    bottom: 120px;
    left: -24px;
    background: var(--emerald);
    color: var(--white);
    padding: 24px 28px;
    text-align: center;
    z-index: 2;
}

.about__badge-number {
    display: block;
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.about__badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}

.about__content-col {
    max-width: 520px;
}

.about__divider {
    width: 60px;
    height: 2px;
    background: var(--emerald);
    margin-bottom: 32px;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.about__stat-number {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 8px;
}

.about__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.about__stat-divider {
    width: 1px;
    height: 48px;
    background: var(--cream-dark);
}

/* ─── Marquee ─── */
.marquee {
    padding: 40px 0;
    background: var(--emerald);
    overflow: hidden;
}

.marquee__track {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee__item {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee__item::after {
    content: '✦';
    margin-left: 48px;
    font-style: normal;
    font-size: 0.625rem;
    vertical-align: middle;
    opacity: 0.5;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Gallery ─── */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery__item {
    overflow: hidden;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--large {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.gallery__item--wide {
    grid-column: 7 / 13;
}

/* ─── CTA / Contact ─── */
.cta {
    padding: 120px 0;
    background: var(--emerald);
    color: var(--white);
}

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

.cta .section__eyebrow {
    color: rgba(255, 255, 255, 0.6);
}

.cta .section__title {
    color: var(--white);
}

.cta .section__title em {
    color: var(--cream);
}

.cta__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
    max-width: 440px;
}

.cta__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cta__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta__info-item svg {
    color: var(--cream);
    flex-shrink: 0;
    margin-top: 2px;
}

.cta__info-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.cta__info-item span,
.cta__info-item a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cta__info-item a:hover {
    color: var(--white);
}

/* ─── Form ─── */
.cta__form {
    background: var(--white);
    padding: 48px;
    border-radius: 0;
}

.cta__form-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--cream-dark);
    outline: none;
    transition: border-color var(--transition);
    border-radius: 0;
    -webkit-appearance: none;
}

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

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--emerald-muted);
    color: var(--emerald);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ─── Footer ─── */
.footer {
    background: var(--emerald-deep);
    color: var(--white);
    padding: 80px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
}

.footer__logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer__logo-accent {
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
}

.footer__heading {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

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

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    gap: 16px;
}

.footer__address {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-style: normal;
    margin-bottom: 12px;
}

.footer__address a {
    color: rgba(255, 255, 255, 0.75);
}

.footer__address a:hover {
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

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

    .about__inner {
        gap: 48px;
    }

    .cta__inner {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform var(--transition);
    }

    .nav__menu.open {
        transform: translateX(0);
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
    }

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

    .hero__image-wrapper img {
        height: 400px;
    }

    .hero__image-accent {
        display: none;
    }

    .hero__scroll {
        display: none;
    }

    .services {
        padding: 80px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about {
        padding: 80px 0;
    }

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

    .about__image-stack {
        height: 400px;
    }

    .about__badge {
        left: 0;
    }

    .gallery {
        padding: 80px 0;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery__item--wide {
        grid-column: 1 / -1;
    }

    .gallery__item {
        height: 240px;
    }

    .gallery__item--large img {
        height: 320px;
    }

    .cta {
        padding: 80px 0;
    }

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

    .cta__form {
        padding: 32px 24px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__trust {
        flex-direction: column;
        gap: 16px;
    }

    .about__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .about__stat-divider {
        display: none;
    }

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

    .gallery__item--large {
        grid-column: auto;
    }

    .gallery__item--wide {
        grid-column: auto;
    }
}
