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

:root {
    --forest: #2D4A3E;
    --forest-deep: #1E3529;
    --forest-light: #3D6B58;
    --cream: #F5F2EB;
    --cream-light: #FAF8F4;
    --cream-dark: #E8E4D9;
    --text-dark: #1A1A1A;
    --text-mid: #3A3A3A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s 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: var(--cream-light);
    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;
}

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

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    border-bottom-color: var(--cream-dark);
    box-shadow: 0 1px 20px rgba(45, 74, 62, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: -0.02em;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    position: relative;
    transition: color var(--transition);
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle-line {
    width: 100%;
    height: 1.5px;
    background: var(--forest);
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:first-child {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:last-child {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream-light);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--forest);
    letter-spacing: -0.01em;
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--forest-light);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream-light);
    padding: 72px 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(45, 74, 62, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(45, 74, 62, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-left {
    padding-right: 1rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--forest);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--forest-deep);
    border-color: var(--forest-deep);
}

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

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

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

.btn-light:hover {
    background: var(--white);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Hero Image Stack */
.hero-right {
    position: relative;
}

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

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 2px;
}

.hero-img-main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
}

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

.hero-img-accent {
    width: 260px;
    height: 180px;
    bottom: 40px;
    left: 0;
    border: 4px solid var(--cream-light);
}

.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 260px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(45, 74, 62, 0.1);
}

.hero-badge-line {
    width: 32px;
    height: 1.5px;
    background: var(--forest);
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--forest), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Divider ─── */
.divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--cream-dark);
}

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

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

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

.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: 2px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

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

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--forest);
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

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

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

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

.services-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--cream-light);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    border: 1px solid var(--cream-dark);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--forest-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 74, 62, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ─── Areas ─── */
.areas {
    padding: 8rem 2rem;
    background: var(--cream-light);
}

.areas-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.areas-content {
    order: 1;
}

.areas-image {
    order: 2;
    overflow: hidden;
    border-radius: 2px;
}

.areas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.areas-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
}

.areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}

.areas-list li {
    font-size: 0.95rem;
    color: var(--text-mid);
    padding-left: 1rem;
    position: relative;
}

.areas-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--forest);
    opacity: 0.5;
}

/* ─── CTA ─── */
.cta {
    padding: 8rem 2rem;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    color: rgba(232, 228, 217, 0.6);
    margin-bottom: 1.25rem;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--cream-light);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232, 228, 217, 0.7);
    margin-bottom: 2.5rem;
}

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

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

.contact-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    color: var(--forest);
    flex-shrink: 0;
}

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

.contact-detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--text-dark);
    transition: color var(--transition);
}

.contact-detail-value a:hover {
    color: var(--forest);
}

/* ─── Form ─── */
.contact-form-wrap {
    background: var(--cream);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid var(--cream-dark);
}

.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.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-input {
    width: 100%;
    padding: 0.85rem 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dark);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--cream-dark);
    outline: none;
    transition: border-color var(--transition);
    border-radius: 0;
}

.form-input::placeholder {
    color: var(--cream-dark);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(45, 74, 62, 0.08);
    border-radius: 2px;
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 400;
}

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

/* ─── Footer ─── */
.footer {
    background: var(--forest-deep);
    padding: 5rem 2rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(232, 228, 217, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .nav-logo-mark {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream-light);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(232, 228, 217, 0.5);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(232, 228, 217, 0.6);
    transition: color var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    font-size: 0.85rem;
    color: rgba(232, 228, 217, 0.6);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    gap: 1rem;
}

.footer-bottom span {
    font-size: 0.75rem;
    color: rgba(232, 228, 217, 0.35);
}

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
    html { scroll-behavior: auto; }
    .hero-scroll-line { animation: none; opacity: 0.5; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 3rem;
    }
    
    .hero-image-stack {
        height: 480px;
    }
    
    .hero-img-main {
        width: 300px;
        height: 400px;
    }
    
    .hero-img-accent {
        width: 200px;
        height: 140px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 72px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        padding-right: 0;
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-image-stack {
        height: 360px;
    }
    
    .hero-img-main {
        width: 220px;
        height: 300px;
        right: 0;
    }
    
    .hero-img-accent {
        width: 160px;
        height: 110px;
        bottom: 20px;
        left: 0;
    }
    
    .hero-badge {
        bottom: 180px;
        left: -10px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .about-grid,
    .areas-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .areas-content { order: 1; }
    .areas-image { order: 2; }
    
    .about-image {
        height: 360px;
    }
    
    .about-image img,
    .areas-image img {
        height: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrap {
        padding: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
    }
}
