:root {
    --primary: #50df20;
    --background-light: #fdfcf8;
    --background-dark: #152111;
    --earth: #7a826e;
    --sage: #d4e2d4;
    --sand: #f1ede4;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --font-display: "sanserata", sans-serif;
    --font-serif: "sanserata", serif;
    --font-brand: "sanserata", sans-serif;
}

strong {
    font-weight: 900;
}

.brand-logo-img {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

.hero-logo-img {
    height: 2.5rem;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    margin-right: 0.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background-light);
    color: var(--slate-900);
    font-family: var(--font-display);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

input,
textarea,
select {
    font-family: inherit;
    outline: none;
}

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

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media(min-width: 1024px) {
    .container {
        padding: 0 5rem;
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    margin: 1rem 1.5rem 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
}

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 50;
    position: relative;
}

.header-logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.header-title {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--slate-900);
}

.header-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
    z-index: 50;
}

@media(min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 50;
    position: relative;
}

.btn-primary {
    background: var(--primary);
    color: var(--background-dark);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(80, 223, 32, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: rgba(80, 223, 32, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(80, 223, 32, 0.3);
}

.btn-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--slate-200);
    transition: background 0.3s;
}

.btn-mobile-menu:hover {
    background: #fff;
}

@media(min-width: 768px) {
    .btn-mobile-menu {
        display: none;
    }
}

.btn-desktop-only {
    display: none;
}

@media(min-width: 640px) {
    .btn-desktop-only {
        display: inline-flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.menu-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--slate-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.mobile-menu-close:hover {
    background: var(--slate-200);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 0 1.5rem;
}

.mobile-nav-logo {
    height: 3rem;
    opacity: 0.5;
    margin-bottom: 1rem;
    object-fit: contain;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--slate-900);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-menu.menu-active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.menu-active .btn-primary-mobile {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary-mobile {
    background: var(--primary);
    color: var(--background-dark);
    padding: 1rem 2rem;
    width: 100%;
    max-width: 17.5rem;
    text-align: center;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 2rem;
    transition: all 0.5s;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 20px 25px -5px rgba(80, 223, 32, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 1.5rem;
}

@media(min-width: 1024px) {
    .hero {
        padding: 6rem 5rem;
    }
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media(min-width: 1024px) {
    .hero-container {
        flex-direction: row;
    }
}

.hero-content {
    flex: 1;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(80, 223, 32, 0.1);
    color: var(--earth);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.1;
    color: var(--slate-900);
}

.hero-title span {
    font-style: italic;
    color: var(--primary);
}

@media(min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-text {
    font-size: 1.125rem;
    color: var(--earth);
    line-height: 1.625;
    max-width: 36rem;
    font-weight: 300;
}

.hero-text span {
    font-weight: 700;
    color: var(--slate-900);
}

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

.btn-dark {
    background: var(--slate-900);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-dark:hover {
    transform: scale(1.05);
}

.btn-outline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    border: 1px solid var(--slate-200);
    transition: background 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 32rem;
    aspect-ratio: 1/1;
}

.organic-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.organic-blob-alt {
    border-radius: 30% 70% 70% 30% / 50% 30% 70% 50%;
}

.hero-blob-1 {
    position: absolute;
    inset: 0;
    background: var(--sage);
    opacity: 0.5;
    transform: rotate(12deg) scale(1.1);
}

.hero-blob-2 {
    position: absolute;
    inset: 0;
    background: rgba(80, 223, 32, 0.2);
    transform: rotate(-6deg) scale(1.05);
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    filter: grayscale(30%);
    transition: filter 0.7s;
}

.hero-image-container:hover {
    filter: grayscale(0%);
}

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

.hero-floating-badge {
    position: absolute;
    bottom: 2.5rem;
    left: -2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 15rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-floating-badge .icon-wrap {
    background: rgba(80, 223, 32, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--primary);
    display: flex;
}

.hero-floating-badge p {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.25;
}

/* Services Section */
.services-section {
    padding: 6rem 1.5rem;
    background-image: linear-gradient(to right top, #ecdacb, #efe0d4, #f3e6dc, #f6ede5, #f9f3ee);
    position: relative;
}

@media(min-width: 1024px) {
    .services-section {
        padding: 6rem 5rem;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media(min-width: 768px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

@media(min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-desc {
    color: var(--earth);
    font-size: 1.125rem;
    line-height: 1.625;
    max-width: 42rem;
}

.services-blob {
    width: 6rem;
    height: 6rem;
    background: rgba(80, 223, 32, 0.2);
    display: none;
}

@media(min-width: 768px) {
    .services-blob {
        display: block;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

@media(min-width: 768px) {
    .service-card.offset {
        margin-top: 2rem;
    }
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(212, 226, 212, 0.5);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: background 0.3s, color 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--background-dark);
}

.service-icon span {
    font-size: 1.875rem;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.service-card p {
    color: var(--slate-600);
    font-size: 0.875rem;
    line-height: 1.625;
}

/* Locations Section */
.locations-section {
    padding: 6rem 1.5rem;
    overflow: hidden;
}

@media(min-width: 1024px) {
    .locations-section {
        padding: 6rem 5rem;
    }
}

.locations-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}

@media(min-width: 1024px) {
    .locations-container {
        flex-direction: row;
    }
}

.locations-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.location-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.location-icon {
    background: rgba(80, 223, 32, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.location-item h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--slate-900);
}

.location-item p {
    color: var(--slate-600);
}

.location-item .hours {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-style: italic;
    margin-top: 0.5rem;
}

.locations-image-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
}

.locations-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.locations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.locations-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 33, 17, 0.4), transparent);
}

.locations-blob {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: var(--sage);
    opacity: 0.5;
    z-index: -1;
}

/* Contact Section */
.contact-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(to left bottom, #dde4dd, #d9e4d0, #dbe3c0, #e4e0ae, #f1db9e);
}

@media(min-width: 1024px) {
    .contact-section {
        padding: 6rem 5rem;
    }
}

.contact-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

@media(min-width: 1024px) {
    .contact-container {
        flex-direction: row;
    }
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 2rem;
    color: var(--slate-900);
}

@media(min-width: 1024px) {
    .contact-info h2 {
        font-size: 3rem;
    }
}

.contact-info h2 span {
    font-style: italic;
    color: var(--primary);
}

.contact-desc {
    font-size: 1.125rem;
    color: var(--earth);
    line-height: 1.625;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
}

.contact-method:hover .contact-method-icon {
    background: var(--primary);
    color: var(--background-dark);
}

.contact-method-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(80, 223, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-900);
    transition: all 0.3s;
}

.contact-method p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--earth);
    margin-bottom: 0.25rem;
}

.contact-method span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--slate-900);
}

.contact-form-wrapper {
    flex: 2;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media(min-width: 1024px) {
    .contact-form-wrapper {
        padding: 3rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-700);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--slate-200);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s;
    color: var(--slate-900);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(80, 223, 32, 0.2);
}

textarea.form-control {
    min-height: 10rem;
    resize: vertical;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background-image: linear-gradient(to right top, #797264, #888173, #968f82, #a69f91, #b5aea1);
    color: #fff;
    padding: 1.25rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.btn-submit:hover {
    transform: scale(1.02);
}

.btn-submit:active {
    transform: scale(0.98);
}

.spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}

/* Success Box */
.success-box {
    margin-top: 2rem;
    padding: 2.5rem;
    background: rgba(80, 223, 32, 0.1);
    border: 2px dashed rgba(80, 223, 32, 0.3);
    border-radius: 2.5rem;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: var(--primary);
    color: var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(80, 223, 32, 0.2);
}

.success-icon span {
    font-size: 2.5rem;
}

.success-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.success-box p {
    color: var(--slate-600);
}

/* Footer */
.site-footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--slate-200);
}

@media(min-width: 1024px) {
    .site-footer {
        padding: 3rem 5rem;
    }
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media(min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

.footer-logo img {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.footer-logo h2 {
    font-family: var(--font-brand);
    font-size: 2rem;
    font-weight: 400;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--earth);
    font-weight: 500;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--slate-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--earth);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: var(--background-dark);
}

/* Background Elements */
.bg-decorators {
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    overflow: hidden;
}

.bg-blob-1 {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(120px);
}

.bg-blob-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(212, 226, 212, 0.3);
    border-radius: 50%;
    filter: blur(100px);
}

.bg-blob-3 {
    position: absolute;
    top: 40%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(241, 237, 228, 0.4);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(80px);
}

/* Custom Overrides */
#tarteaucitronIcon,
.tarteaucitronIcon {
    transform: scale(0.7);
    transform-origin: bottom right;
}