*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-deep: #1A3A28;
    --green: #2D5A3D;
    --green-light: #3D7A52;
    --green-muted: #4A8B60;
    --cream: #F5F2EB;
    --cream-light: #FAF8F4;
    --cream-dark: #EDE8DD;
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --text-light: #999;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

::selection {
    background: var(--green);
    color: var(--cream);
}

/* Edge Lines */
.line-left,
.line-right {
    position: fixed;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--cream-dark);
    z-index: 100;
    pointer-events: none;
}
.line-left { left: max(1rem, calc((100vw - 1400px) / 2)); }
.line-right { right: max(1rem, calc((100vw - 1400px) / 2)); }

@media (max-width: 1440px) {
    .line-left { left: 2rem; }
    .line-right { right: 2rem; }
}
@media (max-width: 768px) {
    .line-left, .line-right { display: none; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 max(1rem, calc((100vw - 1400px) / 2));
    transition: background 0.4s var(--ease), padding 0.3s var(--ease);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-dark);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--green-deep);
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--green);
    line-height: 1;
    border: 1.5px solid var(--green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease);
    position: relative;
}

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

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

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

.nav-cta {
    font-size: 0.8125rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: var(--green) !important;
    border: 1px solid var(--green);
    padding: 8px 18px;
    border-radius: 2px;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--green) !important;
    color: var(--cream) !important;
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(4px, -5px);
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.5s var(--ease-out);
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 0.1em;
        color: var(--text);
    }

    .nav-cta {
        border: 1px solid var(--green) !important;
        padding: 12px 28px !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--green);
    color: var(--cream);
    border: 1.5px solid var(--green);
}

.btn-primary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--cream-dark);
}

.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn-full { width: 100%; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px max(1rem, calc((100vw - 1400px) / 2)) 80px;
    background: var(--cream-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(45, 90, 61, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    padding-right: 2rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--green-deep);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--green);
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.hero-meta a {
    color: var(--green-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.hero-meta a:hover { color: var(--green); }

.meta-sep { color: var(--cream-dark); }

.hero-image {
    position: relative;
}

.hero-image-inner {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image-inner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.02);
}

.hero-image-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(26, 58, 40, 0.08));
    pointer-events: none;
}

.hero-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--green-muted);
    letter-spacing: 0.04em;
}

.accent-line {
    width: 48px;
    height: 1px;
    background: var(--green-muted);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content { padding-right: 0; order: 2; }
    .hero-image { order: 1; max-width: 500px; margin: 0 auto; width: 100%; }
    .hero-accent { left: 0; bottom: -1rem; }
}

@media (max-width: 600px) {
    .hero { padding: 100px 1.5rem 60px; min-height: auto; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
}

/* Divider Section */
.divider-section {
    padding: 8rem 2rem;
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.divider-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.divider-content p {
    font-family: var(--font-serif);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--green);
}

/* Section Shared */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--green-deep);
    letter-spacing: -0.01em;
}

/* About */
.about {
    padding: 8rem max(1rem, calc((100vw - 1400px) / 2));
    background: var(--cream-light);
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-left {
    padding-top: 0.5rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-dark);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.stat-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--green);
}

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

/* Services */
.services {
    padding: 8rem max(1rem, calc((100vw - 1400px) / 2));
    background: var(--green-deep);
    color: var(--cream);
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.services-header .section-title { color: var(--cream); }

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.service-card {
    background: var(--green-deep);
    padding: 3rem 2rem;
    transition: background 0.4s var(--ease);
    position: relative;
}

.service-card:hover {
    background: rgba(255,255,255,0.04);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.6);
    font-weight: 300;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1.5rem; }
}

/* Gallery */
.gallery {
    padding: 8rem max(1rem, calc((100vw - 1400px) / 2));
    background: var(--cream-light);
}

.gallery-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 300px 260px;
    gap: 1rem;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gallery-item--large {
    grid-row: 1 / 3;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
    filter: saturate(0.88);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large { grid-row: auto; }
    .gallery-item { height: 260px; }
}

/* CTA / Contact */
.cta-section {
    padding: 8rem max(1rem, calc((100vw - 1400px) / 2));
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
}

.cta-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.cta-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-detail svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 3px;
}

.cta-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.cta-detail-value {
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
}

.cta-detail a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s;
}

.cta-detail a:hover { color: var(--green-deep); }

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group { display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-input,
.form-textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    padding: 14px 16px;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    outline: none;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--green-muted);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.25rem;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success svg {
    color: var(--green);
    margin-bottom: 1.25rem;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--green-deep);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 300;
}

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

/* Footer */
.footer {
    padding: 3rem max(1rem, calc((100vw - 1400px) / 2));
    background: var(--green-deep);
    color: rgba(245, 242, 235, 0.5);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
}

.footer-copy {
    font-size: 0.8125rem;
    font-weight: 300;
}

.footer-address {
    font-size: 0.8125rem;
    font-weight: 300;
}

.footer-address a {
    color: rgba(245, 242, 235, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-address a:hover { color: var(--cream); }

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-out);
}

.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; }
