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

:root {
    --emerald: #065f46;
    --emerald-light: #047857;
    --emerald-dark: #044d38;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    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;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.938rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

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

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

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

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-small {
    padding: 10px 22px;
    font-size: 0.875rem;
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--emerald-dark);
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.813rem;
    font-weight: 400;
    transition: color var(--transition);
}

.top-bar-link:hover {
    color: var(--cream);
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-nav {
    position: relative;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links li a {
    padding: 8px 16px;
    font-size: 0.938rem;
    font-weight: 400;
    color: var(--text-mid);
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-links li a:hover {
    color: var(--emerald);
    background: rgba(6, 95, 70, 0.06);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--cream-light);
    overflow: hidden;
    padding: 80px 0;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.eyebrow-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--emerald);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-emerald {
    color: var(--emerald);
}

.text-cream {
    color: var(--cream);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.813rem;
    color: var(--text-light);
    font-weight: 400;
}

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

.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--emerald);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 2s ease-in-out infinite;
}

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

/* ===== DIVIDER ===== */
.section-divider {
    padding: 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cream-dark), transparent);
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--emerald);
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--cream-light);
}

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

.about-image-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img, .about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img, .about-image-secondary:hover img {
    transform: scale(1.03);
}

.about-image-secondary {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.about-content .section-headline {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.credential-icon {
    color: var(--emerald);
    flex-shrink: 0;
}

.credential span:last-child {
    font-size: 0.938rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.services-header .section-headline {
    margin-bottom: 16px;
}

.services-lead {
    color: var(--text-mid);
    font-size: 1.063rem;
}

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

.service-card {
    padding: 36px 28px;
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--white);
    border-color: rgba(6, 95, 70, 0.12);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 95, 70, 0.08);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--emerald);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ===== APPROACH ===== */
.approach {
    padding: 100px 0;
    background: var(--emerald);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 90%, rgba(255,255,255,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 90% 10%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.approach-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.approach-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(245, 240, 232, 0.2);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.approach-point h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px;
}

.approach-point p {
    font-size: 0.938rem;
    line-height: 1.7;
}

.approach-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.approach-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(4, 77, 56, 0.95) 0%, transparent 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.approach-quote {
    position: relative;
}

.approach-quote p {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin: 12px 0 8px;
}

.approach-quote span {
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-style: normal;
    color: rgba(245, 240, 232, 0.7);
}

/* ===== LOCATION ===== */
.location {
    padding: 100px 0;
    background: var(--cream-light);
}

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

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.location-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 95, 70, 0.08);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.detail-value {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.detail-link {
    font-size: 1rem;
    color: var(--emerald);
    font-weight: 500;
    transition: color var(--transition);
}

.detail-link:hover {
    color: var(--emerald-light);
    text-decoration: underline;
}

.location-map {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-visual {
    position: relative;
}

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

.loc-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.loc-img-1 {
    top: 0;
    left: 0;
    width: 75%;
    height: 65%;
}

.loc-img-2 {
    bottom: 0;
    right: 0;
    width: 65%;
    height: 45%;
}

.location-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 2;
}

.location-badge svg {
    color: var(--emerald);
}

.location-badge span {
    font-family: var(--font-serif);
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: var(--white);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-description {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-top: 20px;
}

.cta-form {
    background: var(--cream-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.938rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1);
}

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

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

.form-success {
    text-align: center;
    padding: 48px 40px;
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 95, 70, 0.08);
    border-radius: 50%;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-mid);
    font-size: 0.938rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: 64px 0 0;
}

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

.footer-tagline {
    font-size: 0.938rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a,
.footer-contact li a {
    font-size: 0.938rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover,
.footer-contact li a:hover {
    color: var(--cream);
}

.footer-contact li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact svg {
    color: var(--emerald-light);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(245, 240, 232, 0.4);
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 480px;
    text-align: right;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .approach-grid,
    .location-grid,
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .location-image-stack {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
        gap: 12px;
    }

    .top-bar-link span.top-bar-text {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 100;
    }

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

    .nav-links li a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
    }

    .nav-links li a.btn {
        text-align: center;
        margin-top: 8px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 90;
    }

    .nav-overlay.active {
        display: block;
    }

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

    .hero-stats {
        gap: 20px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
    }

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

    .location-image-stack {
        height: 300px;
    }

    .loc-img-1 {
        width: 85%;
        height: 70%;
    }

    .loc-img-2 {
        width: 70%;
        height: 50%;
    }

    .approach-image {
        max-height: 400px;
    }
}

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

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

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .about-image-col {
        grid-template-rows: auto;
    }

    .about-image-secondary {
        display: none;
    }
}
