:root {
    --green: #5B9B3A;
    --green-dark: #3D7A24;
    --green-light: #8BC06A;
    --teal: #1DA0A0;
    --teal-dark: #147878;
    --yellow: #F2D024;
    --yellow-light: #FFF3B0;
    --orange: #E8A850;
    --dark: #1C2B1A;
    --dark-soft: #2E3D2C;
    --cream: #FAFAF5;
    --cream-warm: #F5F0E8;
    --text: #333;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
}

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

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

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(91, 155, 58, 0.1);
    transition: box-shadow 0.3s ease;
}

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

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dark);
}

.nav-logo img {
    height: 46px;
    width: auto;
}

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

.nav-logo-text strong {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.nav-logo-text small {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    color: var(--text-light);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-warm) 40%, rgba(91,155,58,0.06) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,155,58,0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,160,160,0.06) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.hero-content h1 span {
    color: var(--green);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--teal);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-content p.hero-lead {
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(91,155,58,0.3);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91,155,58,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green);
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-wrapper .shape-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper .shape-2 {
    position: absolute;
    bottom: 30px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.2;
    animation: float 7s ease-in-out infinite reverse;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    background: linear-gradient(135deg, var(--green-light), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
    color: white;
    text-align: center;
    padding: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* ========== SECTION COMMON ========== */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.8;
}

/* ========== ABOUT ========== */
.about {
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-light), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(91,155,58,0.1), rgba(29,160,160,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-light);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.4;
}

.about-image-placeholder {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 2rem;
    text-align: center;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.highlight-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-soft);
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 300;
    line-height: 1.5;
}

/* ========== SERVICES ========== */
.services {
    background: var(--cream);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-header .section-desc {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(91,155,58,0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card:nth-child(1) .service-icon { background: rgba(91,155,58,0.12); }
.service-card:nth-child(2) .service-icon { background: rgba(29,160,160,0.12); }
.service-card:nth-child(3) .service-icon { background: rgba(91,155,58,0.12); }
.service-card:nth-child(4) .service-icon { background: rgba(29,160,160,0.12); }
.service-card:nth-child(5) .service-icon { background: rgba(242,208,36,0.2); }
.service-card:nth-child(6) .service-icon { background: rgba(232,168,80,0.15); }
.service-card:nth-child(7) .service-icon { background: rgba(91,155,58,0.12); }
.service-card:nth-child(8) .service-icon { background: rgba(29,160,160,0.12); }

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

.service-price {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.85rem;
    color: var(--green-dark);
    font-weight: 700;
}

.service-price .note {
    font-weight: 300;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* ========== TEAM ========== */
.team {
    background: var(--white);
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.team-header .section-desc {
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card--dog .team-role {
    color: var(--teal);
}

.team-card {
    text-align: center;
    position: relative;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(91,155,58,0.08), rgba(29,160,160,0.08));
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.02);
}

.team-photo-placeholder {
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 1.5rem;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
}

.team-group-photo {
    margin: 4rem auto 0;
    max-width: 1100px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.team-group-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== CONTACT ========== */
.contact {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,155,58,0.08) 0%, transparent 70%);
}

.contact .section-label { color: var(--green-light); }
.contact .section-title { color: var(--white); }
.contact .section-desc { color: rgba(255,255,255,0.6); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

.contact-map {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(91,155,58,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.contact-item-value a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-value a:hover { color: var(--green-light); }

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-access-photo {
    margin: 0;
}

.contact-form-wrapper--full {
    margin-top: 3rem;
}

.contact-access-photo img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}

.contact-access-photo figcaption {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* ===== Google Maps Consent ===== */
.map-consent {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.map-consent-inner {
    text-align: center;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.map-consent-icon {
    font-size: 2rem;
    opacity: 0.6;
}

.map-consent-address {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.map-consent-notice {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.map-consent-notice a {
    color: rgba(255,255,255,0.6);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.map-consent-notice a:hover { color: var(--green-light); }

.btn-map-consent {
    background: var(--green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Nunito Sans', sans-serif;
}

.btn-map-consent:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.map-consent-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.map-consent-link:hover { color: var(--green-light); }

/* ========== FOOTER ========== */
footer {
    background: var(--dark-soft);
    padding: 2rem;
    text-align: center;
}

footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover { color: var(--green-light); }

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .section-title { font-size: 2.3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .jobs-lists { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250,250,245,0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(91,155,58,0.1);
        box-shadow: var(--shadow-md);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
        gap: 2rem;
    }

    .hero-content h1 { font-size: 2.6rem; }
    .hero-visual { order: -1; }
    .hero-image-wrapper { max-width: 300px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .jobs-lists { grid-template-columns: 1fr; }

    section { padding: 4rem 1.5rem; }
}

/* ========== FAQ ========== */
.faq {
    background: var(--cream-warm);
    position: relative;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.faq-header-text {
    flex: 1 1 auto;
    min-width: 0;
}

.faq-header-photo {
    flex: 0 0 auto;
    width: 300px;
    max-width: 34%;
    margin: 0;
}

.faq-header-photo img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .faq-header-photo { display: none; }
}

.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(91,155,58,0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    gap: 1rem;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--green-dark); }

.faq-question[aria-expanded="true"] { color: var(--green-dark); }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--green);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child { margin-bottom: 0; }

/* ========== FAQ TEAMWORK BLOCK ========== */
.faq-teamwork {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(91,155,58,0.15);
}

.faq-teamwork-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.faq-teamwork-desc {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* ========== JOBS ========== */
.jobs {
    background: var(--white);
    position: relative;
}

.jobs-intro {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.jobs-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.jobs-intro p:last-child {
    margin-bottom: 0;
}

.jobs-cta {
    text-align: center;
    margin-top: 3rem;
}

.jobs-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.jobs-list-card {
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
}

.jobs-list-card--like {
    background: rgba(91,155,58,0.07);
    border: 1px solid rgba(91,155,58,0.2);
}

.jobs-list-card--dislike {
    background: rgba(232,168,80,0.08);
    border: 1px solid rgba(232,168,80,0.25);
}

.jobs-list-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.jobs-list-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.jobs-list-card ul li {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.jobs-list-card--like ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.jobs-list-card--dislike ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

@media (max-width: 768px) {
    .jobs-lists { grid-template-columns: 1fr; }
}

/* ========== CONTACT FORM ========== */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.form-notice {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.form-notice--warn {
    background: rgba(232,168,80,0.12);
    border-left: 3px solid var(--orange);
    color: rgba(255,255,255,0.92);
    padding: 0.75rem 1rem;
    border-radius: 6px;
}

.form-notice--warn strong {
    color: #fff;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0.5rem 0 1.25rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

.form-consent input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--green);
    flex-shrink: 0;
    cursor: pointer;
}

.form-consent label {
    cursor: pointer;
}

.form-consent a {
    color: var(--cream);
    text-decoration: underline;
}

.form-consent a:hover {
    color: #fff;
}

.contact-form .btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.form-hint {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.75rem;
}

/* Honeypot — für Mensch + Screenreader unsichtbar */
.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin-top: 1rem;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-status:empty {
    display: none;
}

.form-status--success {
    color: #b9e8a8;
    background: rgba(91,155,58,0.18);
    border-left: 3px solid var(--green);
    padding: 0.75rem 1rem;
    border-radius: 6px;
}

.form-status--error {
    color: #ffd5b3;
    background: rgba(232,168,80,0.18);
    border-left: 3px solid var(--orange);
    padding: 0.75rem 1rem;
    border-radius: 6px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.3s, background 0.3s;
    width: 100%;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-light);
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ========== GALERIE ========== */
.galerie {
    background: var(--white);
    position: relative;
}

.galerie-grid {
    margin-top: 3rem;
    columns: 4;
    column-gap: 0.6rem;
}

.galerie-item {
    break-inside: avoid;
    margin: 0 0 0.6rem 0;
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--cream);
}

.galerie-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.galerie-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(28,43,26,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-sm);
}

.galerie-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.9);
}

.galerie-item:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .galerie-grid { columns: 3; }
}

@media (max-width: 768px) {
    .galerie-grid { columns: 2; }
}

@media (max-width: 480px) {
    .galerie-grid { columns: 1; }
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 10, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    cursor: zoom-out;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.8rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}
