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

:root {
    --forest: #0f3d3e;
    --forest-light: #1a5c5d;
    --forest-dark: #0a2a2b;
    --cream: #f5f2eb;
    --cream-light: #faf8f4;
    --sand: #d4c5a9;
    --sand-light: #e8dfc8;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --line: rgba(15, 61, 62, 0.12);
    --line-strong: rgba(15, 61, 62, 0.3);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.line-marker {
    position: fixed;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100vh;
    background: var(--line);
    pointer-events: none;
    z-index: 1;
    transform: translateX(-50%);
}

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

/* Typography */
.section-label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1.25rem;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.25;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.97);
    box-shadow: 0 1px 0 var(--line);
}

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

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.nav-logo-text {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--forest);
}

.nav-logo-sub {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

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

.nav-link {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

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

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

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

.nav-phone {
    color: var(--forest);
    font-weight: 400;
    letter-spacing: 0.08em;
}

.nav-phone::after {
    display: none;
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--forest);
    transition: all 0.3s var(--ease-smooth);
}

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

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

/* Hero */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 72px;
    background: var(--cream-light);
    position: relative;
    overflow: hidden;
}

.hero-left {
    padding: 4rem 4rem 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    height: 100%;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 600/780;
    overflow: hidden;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--sand);
    z-index: -1;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--sand);
}

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.2;
    color: var(--forest);
    margin-bottom: 1.75rem;
    max-width: 560px;
}

.hero-description {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

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

/* Buttons */
.btn {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--forest);
    color: var(--cream-light);
}

.btn-primary:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 61, 62, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
    border-color: var(--forest);
    background: rgba(15, 61, 62, 0.04);
}

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

/* About */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-text p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-mid);
}

.about-image {
    width: 100%;
    aspect-ratio: 500/620;
    overflow: hidden;
}

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

/* Services */
.services {
    padding: 8rem 0;
    background: var(--cream-light);
}

.services-header {
    margin-bottom: 4rem;
    max-width: 640px;
}

.services-intro {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-mid);
}

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

.service-card {
    padding: 2.5rem;
    border: 1px solid var(--line);
    margin: -0.5px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.service-card:hover {
    background: var(--cream);
    border-color: var(--line-strong);
}

.service-card:hover .service-line {
    width: 100%;
}

.service-line {
    width: 0;
    height: 1px;
    background: var(--forest);
    transition: width 0.5s var(--ease-out);
    margin-bottom: 1.25rem;
}

.service-card:hover .service-line {
    width: 100%;
}

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

.service-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--text-mid);
}

/* Approach */
.approach {
    padding: 8rem 0;
    background: var(--forest);
    color: var(--cream-light);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.approach-text .section-label {
    color: var(--sand);
}

.approach-text .section-title {
    color: var(--cream-light);
}

.approach-text > p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.85;
    color: rgba(245, 242, 235, 0.7);
    margin-bottom: 0.5rem;
}

.approach-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.approach-list li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.25rem;
    align-items: start;
}

.approach-num {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--sand);
    padding-top: 0.2rem;
}

.approach-item-title {
    display: block;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--cream-light);
    margin-bottom: 0.3rem;
    letter-spacing: 0.04em;
}

.approach-item-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.55);
}

.approach-image {
    width: 100%;
    aspect-ratio: 520/680;
    overflow: hidden;
    border: 1px solid rgba(212, 197, 169, 0.2);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
}

/* Contact */
.contact {
    padding: 8rem 0;
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 0.5rem;
}

.contact-intro {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-mid);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-detail-label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-detail-value {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-link {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

.contact-link:hover {
    color: var(--forest-light);
    text-decoration: underline;
    text-underline-offset: 4px;
}

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

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

.form-label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-input {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1px solid var(--line-strong);
    padding: 0.9rem 1rem;
    outline: none;
    transition: border-color 0.3s var(--ease-smooth);
    resize: none;
}

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

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

.form-textarea {
    min-height: 120px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.form-success.show {
    display: flex;
}

.form-success p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

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

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-name {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-right a {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

.footer-right a:hover {
    color: var(--forest-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="delay-1"] { transition-delay: 0.1s; }
[data-animate="delay-2"] { transition-delay: 0.2s; }
[data-animate="delay-3"] { transition-delay: 0.3s; }
[data-animate="delay-4"] { transition-delay: 0.4s; }

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-overlay.open {
    display: flex;
}

.nav-overlay a {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.75rem;
    color: var(--forest);
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-overlay a:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 72px;
    }

    .hero-left {
        padding: 4rem 2rem;
        order: 2;
    }

    .hero-right {
        padding: 0 2rem 3rem;
        order: 1;
    }

    .hero-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .about-content,
    .approach-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image,
    .approach-image {
        max-width: 480px;
        margin: 0 auto;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero-left {
        padding: 3rem 1.5rem;
    }

    .hero-right {
        padding: 0 1.5rem 2rem;
    }

    .hero-eyebrow {
        margin-bottom: 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

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

    .container {
        padding: 0 1.5rem;
    }

    .about,
    .services,
    .approach,
    .contact {
        padding: 5rem 0;
    }

    .approach-list li {
        grid-template-columns: 2.5rem 1fr;
        gap: 0.75rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-image-wrap {
        max-width: 100%;
        aspect-ratio: 4/5;
    }

    .hero-image-wrap::before {
        display: none;
    }

    .about-image,
    .approach-image {
        max-width: 100%;
    }
}
