:root {
    --bone: #fafaf7;
    --forest: #166534;
    --deep: #0f172a;
    --muted: #64748b;
    --gold: #f59e0b;
    --white: #ffffff;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Crimson Pro', serif;
    --font-hand: 'Reenie Beanie', cursive;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body {
    background-color: var(--bone);
    color: var(--deep);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--forest);
}

.handwritten-label {
    font-family: var(--font-hand);
    font-size: 2rem;
    color: var(--forest);
    display: block;
    margin-bottom: 0.5rem;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--deep);
}

.location-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--forest);
    letter-spacing: 0.05em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--deep);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Layout Parts */
.btn-sm {
    background: var(--forest);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: 0.2s;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: radial-gradient(circle at top right, rgba(22, 101, 52, 0.03), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--deep);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.call-now span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
}

.phone-link {
    color: var(--deep);
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--forest);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    width: 100%;
}

.main-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #f1f5f9;
    /* Placeholder color if image fails */
    box-shadow: 24px 24px 0 var(--forest);
}

.main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-sticker {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--deep);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(12deg);
    font-family: var(--font-hand);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--deep);
    color: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.card-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--forest);
    opacity: 0.5;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.highlight-card {
    background: rgba(22, 101, 52, 0.1);
    border-color: var(--forest);
}

/* Founder Section */
.founder-section {
    padding: 8rem 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: flex-start;
}

.tag {
    display: inline-block;
    color: var(--forest);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

blockquote {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.sig-name {
    display: block;
    font-family: var(--font-hand);
    font-size: 2.5rem;
    color: var(--forest);
}

.sig-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
}

.meta-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-wrap {
    background: var(--white);
    padding: 5rem;
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05);
}

.contact-header {
    margin-bottom: 3rem;
}

.clean-form input,
.clean-form textarea {
    width: 100%;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-form {
    width: 100%;
    padding: 1.25rem;
    background: var(--forest);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-form:hover {
    background: #15803d;
}

/* Footer */
.site-footer {
    padding: 4rem 0;
    background: var(--bone);
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .hero-grid,
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-container {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-wrap {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hero {
        padding: 3rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}