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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: #292524;
    background-color: #FAF8F5;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ─── Skip Link ─── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: #064E3B;
    color: #FAF8F5;
    font-size: 0.875rem;
    z-index: 100;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ─── Navigation ─── */
#navbar {
    color: #064E3B;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(5, 150, 105, 0.08);
}

.nav-link {
    position: relative;
    color: #064E3B;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #059669;
    transition: width 0.3s;
}

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

.nav-link:hover {
    color: #059669;
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #064E3B;
    color: #FAF8F5;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid #064E3B;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #059669;
    border-color: #059669;
    color: #FAF8F5;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #064E3B;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid #064E3B;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #064E3B;
    color: #FAF8F5;
}

/* ─── Mobile Menu Toggle ─── */
#menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #064E3B;
    padding: 0.5rem;
}

#menu-toggle .line-top,
#menu-toggle .line-bottom {
    display: block;
    background: currentColor;
    transition: transform 0.3s, opacity 0.3s;
}

#menu-toggle[aria-expanded="true"] .line-top {
    transform: translateY(6px) rotate(45deg);
}

#menu-toggle[aria-expanded="true"] .line-bottom {
    transform: translateY(-6px) rotate(-45deg);
    opacity: 0;
}

/* ─── Mobile Menu ─── */
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    transition: color 0.3s;
}

.mobile-menu-link:hover {
    color: #059669;
}

/* ─── Hero ─── */
.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
}

.hero-image {
    opacity: 0;
    animation: heroImageIn 1s ease forwards 0.3s;
}

@keyframes heroImageIn {
    to { opacity: 1; }
}

.hero-accent {
    animation: accentFloat 6s ease-in-out infinite;
}

@keyframes accentFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -8px); }
}

.scroll-indicator {
    color: #059669;
}

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Section Titles ─── */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: #064E3B;
}

.section-line {
    width: 48px;
    height: 1px;
    background: #059669;
}

/* ─── Service Cards ─── */
.service-card {
    position: relative;
}

.service-icon {
    color: #059669;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
}

/* ─── Gallery ─── */
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item.col-span-2 {
    aspect-ratio: auto;
}

/* ─── Form Inputs ─── */
.input-field {
    width: 100%;
    padding: 0.75rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: #292524;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d1d5db;
    outline: none;
    transition: border-color 0.3s;
}

.input-field::placeholder {
    color: #a8a29e;
}

.input-field:focus {
    border-bottom-color: #059669;
}

.input-field option {
    background: #FAF8F5;
    color: #292524;
}

/* ─── Scroll Reveal ─── */
.reveal-section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* ─── Responsive ─── */
@media (max-width: 767px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-headline {
        font-size: 4.5rem;
    }
}
