/* Global Styles & Variables */
:root {
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --accent: #74c69d;
    --accent-vibrant: #b7e4c7;
    --bg-light: #f8f9fa;
    --text-dark: #1b4332;
    --text-muted: #52796f;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.underline-hand {
    position: relative;
    white-space: nowrap;
}

.underline-hand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 50% 20% 50% 20%;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Nav */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5rem 0;
    transition: var(--transition);
}

.header.scrolled {
    position: fixed;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
    font-weight: 700;
}

.header.scrolled .logo {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
}

.header.scrolled .nav-links a {
    color: var(--text-dark);
    opacity: 1;
}

.nav-cta {
    background: var(--white);
    color: var(--text-dark) !important;
    padding: 0.6rem 1.8rem;
    border-radius: 5px;
    font-weight: 700;
}

.header.scrolled .nav-cta {
    background: var(--text-dark);
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #1b4332;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.4rem;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Owner Note Section */
.owner-note {
    padding: 10rem 0;
    background: var(--white);
}

.note-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.note-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.note-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.signature {
    margin-top: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
}

.note-image img {
    width: 100%;
    border-radius: 40px 0 40px 0;
    box-shadow: 20px 20px 0 var(--accent-vibrant);
}

/* Services Asynchronous Grid */
.services {
    padding: 10rem 0;
    background: var(--bg-light);
}

.align-left {
    text-align: left;
    margin-bottom: 6rem;
}

.align-left h2 {
    font-size: 3.5rem;
}

.services-grid-asym {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.service-box {
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    transition: var(--transition);
}

.service-box:nth-child(even) {
    margin-top: 4rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.service-box h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

/* Location Story */
.location-story {
    padding: 10rem 0;
}

.location-card {
    background: var(--primary);
    color: var(--white);
    padding: 6rem;
    border-radius: 50px;
    text-align: center;
}

.location-card h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.contact-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* New Contact Style */
.contact-flex {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-header h2 {
    font-size: 4rem;
}

.contact-form-minimal {
    width: 100%;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-minimal input,
.contact-form-minimal textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 1.5rem 0.5rem;
    transition: var(--transition);
}

.contact-form-minimal input:focus,
.contact-form-minimal textarea:focus {
    border-color: var(--primary);
}

/* Featured Work Collage */
.featured-work {
    padding: 10rem 0;
    overflow: hidden;
}

.container-wide {
    max-width: 1440px;
}

.work-intro {
    margin-bottom: 4rem;
}

.work-intro h2 {
    font-size: 4rem;
}

.work-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

.collage-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.collage-tall {
    grid-row: span 2;
    height: 820px;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collage-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.collage-item:hover img {
    transform: scale(1.05);
}

.collage-item:hover .collage-info {
    opacity: 1;
    transform: translateY(0);
}

.collage-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.collage-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Generic Button Tweak */
.btn {
    border-radius: 5px;
    padding: 1.2rem 3rem;
}

/* Footer Simple */
.footer-simple {
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
}

/* Animations */
@keyframes underline {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 968px) {

    .note-grid,
    .services-grid-asym,
    .input-row {
        grid-template-columns: 1fr;
    }

    .service-box:nth-child(even) {
        margin-top: 0;
    }

    .location-card {
        padding: 3rem;
        border-radius: 20px;
    }

    .contact-strip {
        flex-direction: column;
        gap: 1rem;
    }
}