/* ============================================
   Praxis am Zoo 2026 - Pure CSS Theme
   No Tailwind dependency
   ============================================ */

/* CSS Custom Properties */
:root {
    --color-primary: #79a35e;
    --color-secondary: #2d382f;
    --color-cta-orange: #ff8c42;
    --color-background-light: #fcfaf7;
    --color-background-dark: #1a1c1a;
    --color-accent: #d4dbcf;
    --color-white: #ffffff;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --font-display: var(--font-sans);
    --font-sans: 'Inter', sans-serif;
    --max-width: 80rem;
    --transition: 150ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background-light);
    color: var(--color-slate-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   LAYOUT: Unified Container Padding
   ============================================ */
.container,
.container-narrow,
.nav-container {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {

    .container,
    .container-narrow,
    .nav-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {

    .container,
    .container-narrow,
    .nav-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: relative;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--color-slate-200);
}

@media (min-width: 1140px) {
    .site-nav {
        position: sticky;
        top: 0;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    transition: height 0.3s ease;
}

@media (min-width: 1140px) {
    .nav-container {
        height: 6rem;
    }

    .nav-container.scrolled {
        height: 4rem;
    }
}

.nav-logo {
    height: 3.5rem;
    width: auto;
    transition: height 0.3s ease;
}

@media (min-width: 1140px) {
    .nav-logo {
        height: 5rem;
    }

    .nav-logo.scrolled {
        height: 3rem;
    }
}

.nav-menu {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
}

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

.nav-cta {
    background-color: var(--color-cta-orange);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-cta:hover {
    opacity: 0.9 !important;
    color: white !important;
}

.nav-mobile-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-slate-600);
}

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

    .nav-mobile-toggle {
        display: none;
    }
}

/* Mobile Overlay Menu */
.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: #fcfaf7;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Floating Blobs Background */
.nav-mobile-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background-color: #fcfaf7;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    /* mix-blend-mode removed for cleaner, more vibrant colors */
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #a3c191;
    /* Lighter, cleaner version of primary */
    top: -50px;
    left: -50px;
    animation: blobMove1 6s infinite alternate ease-in-out;
    /* Sped up from 15s */
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #d4dbcf;
    /* Lighter accent color instead of dark secondary */
    bottom: -100px;
    right: -50px;
    animation: blobMove2 8s infinite alternate ease-in-out;
    /* Sped up from 20s */
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: #e2eadd;
    /* Very fresh, clean light green */
    top: 40%;
    left: 40%;
    animation: blobMove3 7s infinite alternate ease-in-out;
    /* Sped up from 18s */
}

@keyframes blobMove1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(150px, 200px) scale(1.4);
    }

    /* Increased range */
}

@keyframes blobMove2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-200px, -150px) scale(1.3);
    }

    /* Increased range */
}

@keyframes blobMove3 {
    0% {
        transform: translate(0, 0) scale(1.1);
    }

    100% {
        transform: translate(100px, -200px) scale(1.5);
    }

    /* Increased range */
}

.nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vh;
}

.nav-mobile-close {
    background: white;
    border: none;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: var(--color-secondary);
}

.nav-mobile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.nav-mobile-content a:not(.nav-mobile-cta) {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vh, 2rem);
    color: var(--color-secondary);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.nav-mobile-content a:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-mobile-content a:nth-child(2) {
    transition-delay: 0.15s;
}

.nav-mobile-content a:nth-child(3) {
    transition-delay: 0.2s;
}

.nav-mobile-content a:nth-child(4) {
    transition-delay: 0.25s;
}

.nav-mobile-content a:nth-child(5) {
    transition-delay: 0.3s;
}


.nav-mobile-cta {
    display: inline-block;
    background-color: var(--color-cta-orange);
    color: white !important;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.25);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.45s;
    margin-top: 2rem;
    margin-bottom: 2vh;
}

.nav-mobile-cta:hover {
    transform: scale(1.05) translateY(0);
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.35);
}

.nav-mobile-overlay.active .nav-mobile-content a {
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile-footer {
    margin-top: auto;
    text-align: center;
    padding-bottom: 2rem;
}

.body-lock {
    overflow: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 60%,
            var(--color-background-light) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 56rem;
}

.hero-label-h1 {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    padding: 0.4rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    text-shadow: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background-color: var(--color-cta-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition);
}

.btn-primary:hover {
    transform: scale(1.05);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all var(--transition);
}

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

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 3.5rem 1rem;
}

.section-tp {
    padding: 1.5rem 0;
}

.section-light {
    background-color: white;
}

.section-muted {
    background-color: var(--color-background-light);
}

.section-dark {
    background-color: var(--color-slate-900);
    color: var(--color-slate-300);
}

/* ============================================
   HOME-SPECIFIC REFINEMENTS (Scoped)
   ============================================ */
.home .section {
    padding: 4rem 1rem;
}

@media (min-width: 1024px) {
    .home .section {
        padding: 6.5rem 1rem;
    }
}

.home .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 3.5rem;
}

.home .event-title {
    font-size: 1.125rem;
    font-weight: 500;
}

.home .hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    margin-bottom: 2rem;
}

.home .hero-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            var(--color-background-light) 100%);
}

.home .philosophy-quote {
    font-size: clamp(1.5rem, 2.5vw, 2.125rem);
    margin-bottom: 1.5rem;
}

.home .services-grid {
    margin-top: 3rem;
}

.home .team-header {
    margin-bottom: 5rem;
}

.home #home-contact .kontaktbereich h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.container-narrow {
    max-width: 56rem;
    margin: 0 auto;
}

.section-label {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.section-title-light {
    color: var(--color-slate-100);
}

.text-center {
    text-align: center;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.01em;
    color: var(--color-secondary);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-wrap: balance;
}

.philosophy-text {
    font-size: 1.125rem;
    color: var(--color-slate-600);
    line-height: 1.7;
    max-width: 42rem;
    margin: 0 auto;
}

.philosophy-text p+p {
    margin-top: 1.5rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    gap: 2rem;
}

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

.service-card {
    background-color: rgba(121, 163, 94, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(121, 163, 94, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-0.5rem);
    background-color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}


.service-icon {
    width: 4.5rem;
    height: 4.5rem;
    background-color: white;
    color: var(--color-primary);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow:
        0 8px 20px rgba(121, 163, 94, 0.08),
        inset 0 0 0 1px rgba(121, 163, 94, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0.6rem;
    background-color: rgba(121, 163, 94, 0.08);
    border-radius: 1.1rem;
    transition: background-color 0.3s ease;
}

.service-icon span {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(121, 163, 94, 0.12);
}

.service-card:hover .service-icon::before {
    background-color: rgba(121, 163, 94, 0.12);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--color-slate-600);
    margin-bottom: 2rem;
    line-height: 1.7;
    flex: 1;
}

.service-link {
    color: var(--color-cta-orange);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Removed desktop flex-row to keep everything centered and stacked for better rhythm */

.team-link {
    color: var(--color-primary);
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.25rem;
}

.team-link:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

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

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

.team-member {
    text-align: center;
}

.team-photo {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-accent);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    .team-photo {
        width: 14rem;
        height: 14rem;
    }
}

.team-placeholder {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: var(--color-slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-accent);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .team-placeholder {
        width: 14rem;
        height: 14rem;
    }
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
}

.team-member-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-member-link:hover .team-photo {
    transform: scale(1.05);
    border-color: var(--color-primary);
}

.team-member-link:hover .team-name {
    color: var(--color-primary);
}

/* Team Grid - Responsive */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

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

.team-member {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member .team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
    .team-member .team-photo {
        width: 160px;
        height: 160px;
    }
}

@media (min-width: 1024px) {
    .team-member .team-photo {
        width: 180px;
        height: 180px;
    }
}

.team-member:hover .team-photo {
    transform: scale(1.05);
    border-color: var(--color-primary);
}

.team-member .team-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--color-slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 4px solid var(--color-accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 3rem;
    color: var(--color-slate-400);
}

@media (min-width: 768px) {
    .team-member .team-placeholder {
        width: 160px;
        height: 160px;
    }
}

@media (min-width: 1024px) {
    .team-member .team-placeholder {
        width: 180px;
        height: 180px;
    }
}

.team-member:hover .team-name {
    color: var(--color-primary);
}

/* ============================================
   TEAM PAGE - Full Width Layout
   ============================================ */
.page-team {
    background: var(--color-background-light);
}

.container-xwide {
    max-width: 100rem;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.container-wide {
    max-width: 90rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-wide {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-wide {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.team-page-section {
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .team-page-section {
        padding: 3rem 0;
    }
}

/* Team Filter Buttons - Minimalist Tabs */
.team-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    padding: 0.5rem;
    background: var(--color-slate-100);
    border-radius: 1rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}





.team-filter-btn {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.team-filter-btn:hover {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.5);
}

.team-filter-btn.active {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Full-width Team Grid */
.team-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .team-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .team-grid-full {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

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

.team-grid-full .team-member {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-slate-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-grid-full .team-member.hidden {
    display: none;
}

.team-grid-full .team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.team-grid-full .team-member .team-photo,
.team-grid-full .team-member .team-placeholder {
    width: 120px;
    height: 120px;
}

@media (min-width: 640px) {

    .team-grid-full .team-member .team-photo,
    .team-grid-full .team-member .team-placeholder {
        width: 140px;
        height: 140px;
    }
}

@media (min-width: 1024px) {

    .team-grid-full .team-member .team-photo,
    .team-grid-full .team-member .team-placeholder {
        width: 160px;
        height: 160px;
    }
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-grid {
    display: grid;
    gap: 2rem;
}

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

.event-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-slate-100);
}

@media (min-width: 768px) {
    .event-card {
        display: grid;
        grid-template-columns: 200px 1fr;
        flex-direction: row;
    }

    .event-thumbnail {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
    }

    .event-date {
        width: 100%;
    }
}

.event-card-excerpt {
    display: block;
    /* Lighten the card appearance */
}

.event-date {
    background-color: transparent;
    border-right: 1px solid var(--color-slate-100);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-day {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
}

.event-month {
    color: var(--color-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}


.event-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.event-thumbnail:hover img {
    transform: scale(1.05);
}

.event-content a {
    text-decoration: none;
    color: inherit;
}

.event-content a:hover .event-title {
    color: var(--color-primary);
}

.event-placeholder {
    background-color: var(--color-slate-50);
    border: 2px dashed var(--color-slate-200);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--color-slate-400);
    grid-column: 1 / -1;
}

/* ============================================
   EVENTS PAGE
   ============================================ */
.events-grid-full {
    display: grid;
    gap: 3rem;
}

.event-card-full {
    display: grid;
    gap: 2rem;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-slate-100);
    transition: transform var(--transition), box-shadow var(--transition);
}

.event-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .event-card-full {
        grid-template-columns: 350px 1fr;
    }
}

.event-card-image {
    background-color: white;
    /* Clean look like the start page cards */
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .event-card-image {
        height: 100%;
        /* No min-height here, height is determined by the grid/content side */
    }
}

.event-card-image img {
    width: 100%;
    height: auto;
    /* Replicate the front-page "top-crop" behavior */
    display: block;
    position: relative;
    z-index: 2;
    transition: transform var(--transition);
}

.event-card-full:hover .event-card-image img {
    transform: scale(1.03);
}

.event-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.event-card-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-card-date,
.event-card-cost,
.event-card-registration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.event-card-date {
    background: transparent;
    color: var(--color-primary);
    padding: 0;
}

.event-card-cost {
    background: var(--color-slate-100);
    color: var(--color-secondary);
}

.event-card-registration.req {
    background: #FEF3C7;
    color: #92400E;
}

.event-card-registration.none {
    background: #ECFDF5;
    color: #065F46;
}

.event-card-date .material-icons-outlined,
.event-card-cost .material-icons-outlined,
.event-card-registration .material-icons-outlined {
    font-size: 1rem;
}

.event-card-date .material-icons-outlined {
    color: var(--color-primary);
}

.event-card-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.event-card-title a:hover {
    color: var(--color-primary);
}

.event-card-excerpt {
    color: var(--color-slate-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.event-card-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-slate-100);
    margin-top: auto;
}

.event-card-author {
    font-size: 0.875rem;
    color: var(--color-slate-500);
}

.author-label {
    margin-right: 0.25rem;
}

.event-card-author a {
    color: var(--color-secondary);
    font-weight: 600;
}

.event-card-author a:hover {
    color: var(--color-primary);
}

.event-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cta-orange) !important;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.event-card-link:hover {
    gap: 0.75rem;
}



.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

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

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

.contact-icon {
    background-color: rgba(212, 219, 207, 0.5);
    padding: 0.75rem;
    border-radius: 50%;
    color: var(--color-primary);
}

.contact-label {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--color-slate-600);
}

/* WYSIWYG Content Specifics for Home Contact */
#home-contact .kontaktbereich h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.1;
    margin-bottom: 2rem;
}

#home-contact .kontaktbereich p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-slate-600);
    margin-bottom: 1.25rem;
}

#home-contact .kontaktbereich strong {
    color: var(--color-secondary);
    font-weight: 700;
}

#home-contact .kontaktbereich a {
    color: var(--color-primary);
    font-weight: 600;
    transition: color var(--transition);
}

#home-contact .kontaktbereich a:hover {
    color: var(--color-secondary);
}

.contact-map {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    background-color: var(--color-slate-100);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
}

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

@media (min-width: 1024px) {
    .contact-map iframe {
        height: 100%;
        min-height: 450px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: #131a14;
    color: var(--color-slate-400);
    padding: 6rem 1rem 4rem;
    border-top: 1px solid rgba(121, 163, 94, 0.1);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.footer-address {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--color-slate-400);
}

.footer-email {
    color: var(--color-primary) !important;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-email:hover {
    opacity: 0.8;
}

.footer-brand p {
    max-width: 24rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-slate-400);
}

.footer-nav-title {
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.875rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-slate-700);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-slate-500);
}

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

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

.footer-social a:hover {
    color: var(--color-primary);
}

/* ============================================
   UTILITIES
   ============================================ */
.empty-message {
    color: var(--color-slate-500);
    text-align: center;
    grid-column: 1 / -1;
}

/* Material Icons */
.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   PAGE TEMPLATE - Hero Banner
   ============================================ */
.container-narrow {
    max-width: 800px;
}

.page-hero {
    position: relative;
    padding: 6rem 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 8rem 2rem;
        min-height: 55vh;
    }
}

.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

.page-hero-content {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.page-breadcrumb {
    display: none;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
}

@media (min-width: 768px) {
    .page-breadcrumb {
        display: inline-flex;
    }
}

.page-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
    color: var(--color-primary);
}

.page-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
}

.page-breadcrumb-current {
    color: #cadfb7;
    font-weight: 500;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
    margin: 0 0 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: clamp(2.5rem, 4vw, 3.25rem);
    }
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--color-slate-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb-separator {
    color: var(--color-slate-400);
}

.breadcrumb-current {
    color: var(--color-primary);
    font-weight: 500;
}

/* Page Body Typography */
.page-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-slate-700);
}

.page-body h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 2.5rem 0 1rem;
}

.page-body h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 2rem 0 0.75rem;
}

.page-body p {
    margin-bottom: 1.25rem;
}

.page-body a {
    color: var(--color-primary);
    font-weight: 600;
}

.page-body a:hover {
    color: var(--color-primary-dark);
}

.page-body ul,
.page-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.page-body blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--color-slate-600);
}

/* ============================================
   EVENT SINGLE PAGE
   ============================================ */
.event-single-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-single-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
    font-weight: 500;
    font-size: 1.125rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.event-single-meta-item .material-icons-outlined {
    color: white !important;
    font-size: 1.25rem;
    opacity: 0.95;
}

.event-content-image-wrapper {
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 1rem;
    border: 1px solid var(--color-slate-100);
}

.event-content-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

.event-author-box {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-slate-100);
    color: var(--color-slate-600);
    font-size: 0.95rem;
}

.event-author-link {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.event-author-link:hover {
    border-color: var(--color-primary);
}

/* ============================================
   TEAM SINGLE PAGE
   ============================================ */

/* Hero Card Section */
.team-single-hero {
    background-color: var(--color-background-light);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.team-single-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.team-single-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 40px -1px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(121, 163, 94, 0.1);
}

@media (min-width: 768px) {
    .team-single-card {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
        gap: 3rem;
    }
}

/* Photo */
.team-single-photo-wrapper {
    flex-shrink: 0;
}

.team-single-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .team-single-photo {
        width: 200px;
        height: 200px;
    }
}

.team-single-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-slate-100) 0%, var(--color-slate-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--color-accent);
}

.team-single-placeholder .material-icons-outlined {
    font-size: 4rem;
    color: var(--color-slate-400);
}

@media (min-width: 768px) {
    .team-single-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* Info Section */
.team-single-info {
    flex: 1;
    min-width: 0;
}

.team-single-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-slate-500);
    margin-bottom: 0.75rem;
}

.team-single-breadcrumb a {
    color: var(--color-slate-500);
    text-decoration: none;
    transition: color 0.2s;
}

.team-single-breadcrumb a:hover {
    color: var(--color-primary);
}

.team-single-breadcrumb-current {
    color: var(--color-primary);
    font-weight: 500;
}

.team-single-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .team-single-name {
        font-size: 2.25rem;
    }
}

.team-single-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .team-single-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Contact Links */
.team-single-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

@media (min-width: 600px) {
    .team-single-contact {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (min-width: 1024px) {
    .team-single-contact {
        display: flex;
        flex-wrap: wrap;
        width: auto;
    }
}

.team-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: var(--color-slate-50);
    border-radius: 0.875rem;
    font-size: 0.875rem;
    color: var(--color-slate-700);
    text-decoration: none;
    border: 1px solid var(--color-slate-200);
    transition: all 0.2s ease;
    text-align: center;
}

.team-contact-item:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.team-contact-item .material-icons-outlined {
    font-size: 1rem;
    color: var(--color-primary);
    transition: color 0.2s;
}

.team-contact-item:hover .material-icons-outlined {
    color: white;
}

/* CTA Button */
.team-contact-cta {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    font-weight: 600;
}

.team-contact-cta .material-icons-outlined {
    color: white;
}

.team-contact-cta:hover {
    background: var(--color-primary-dark, #2d8a4e);
    border-color: var(--color-primary-dark, #2d8a4e);
    color: white;
}

/* Social Links */
.team-single-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .team-single-social {
        padding-left: 1.5rem;
        border-left: 1px solid var(--color-slate-200);
    }
}

.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: var(--color-slate-50);
    color: var(--color-slate-600);
    border: 1px solid var(--color-slate-200);
    transition: all 0.2s ease;
}

.team-social-link:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.team-social-link .material-icons-outlined {
    font-size: 1.125rem;
}

.team-social-link svg {
    width: 16px;
    height: 16px;
}

.team-single-content {
    padding: 2.5rem 0 4rem;
}

@media (min-width: 768px) {
    .team-single-content {
        padding: 3rem 0 4rem;
    }
}

.team-single-content .container-narrow {
    max-width: 720px;
}

/* User Events Compact Section */
.team-events-section {
    background: var(--color-slate-50);
    padding: 0 0 4rem;
}

.team-events-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.team-event-compact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-event-compact-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: white;
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    border: 1px solid var(--color-slate-100);
    transition: all 0.2s ease;
}

.team-event-compact-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary);
}

.team-event-compact-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
}

.team-event-compact-date .material-icons-outlined {
    font-size: 1.125rem;
    color: var(--color-primary);
}

.team-event-compact-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    flex: 1;
    min-width: 200px;
}

.team-event-compact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.team-event-compact-link:hover {
    gap: 0.75rem;
}

.team-event-compact-link .material-icons-outlined {
    font-size: 1.125rem;
}

/* Team Navigation Section */
.team-single-nav-section {
    background: white;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-slate-100);
}

.team-single-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.team-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--color-slate-50);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--color-slate-700);
    transition: all 0.2s ease;
    flex: 1;
    max-width: 280px;
}

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

.team-nav-link:hover .team-nav-label {
    color: rgba(255, 255, 255, 0.8);
}

.team-nav-link:hover .material-icons-outlined {
    color: white;
}

.team-nav-link .material-icons-outlined {
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: color 0.2s;
}

.team-nav-prev {
    justify-content: flex-start;
}

.team-nav-next {
    justify-content: flex-end;
    text-align: right;
}

.team-nav-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.team-nav-label {
    font-size: 0.75rem;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.team-nav-name {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    color: var(--color-slate-500);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    flex-shrink: 0;
}

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

.team-nav-center .material-icons-outlined {
    font-size: 1.5rem;
}

/* Hide name on mobile, show only arrows */
@media (max-width: 640px) {
    .team-nav-info {
        display: none;
    }

    .team-nav-link {
        padding: 0.75rem;
        flex: 0;
        max-width: none;
    }

    .team-nav-center span:last-child {
        display: none;
    }
}

/* Button utility */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: white;
}

.btn-outline .material-icons-outlined {
    font-size: 1.125rem;
}

/* Internal Page CTA */
.page-cta-box {
    background: rgba(212, 219, 207, 0.3);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.page-cta-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.page-cta-text {
    color: var(--color-slate-600);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   WP GALLERY STYLING
   ============================================ */
.gallery {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

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

/* Clear default WordPress gallery styles */
.gallery:after,
.gallery br {
    display: none;
}

.gallery-item {
    margin: 0 !important;
    text-align: center;
    width: 100% !important;
}

.gallery-icon {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: transparent;
    aspect-ratio: 1/1;
    /* Square for a cleaner grid */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 !important;
}

.gallery-icon a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border: none !important;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover .gallery-icon img {
    transform: scale(1.08);
}

.gallery-caption {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--color-slate-500);
    line-height: 1.4;
    font-style: italic;
    padding: 0 0.5rem;
}




/* ============================================
   ROOM RENTAL V3 (Architectural Separation)
   ============================================ */
.page-rooms {
    scroll-behavior: smooth;
    background-color: white;
}

/* Nav Bar */
.room-nav-bar {
    background: white;
    border-bottom: 1px solid var(--color-slate-100);
    position: sticky;
    top: 80px;
    z-index: 100;
    padding: 0.5rem 0;
}

.room-nav-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-nav-links a {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.2s;
}

.room-nav-links a:hover {
    color: var(--color-primary);
}

/* Room Intro Harmonization */
.room-chapter {
    padding: 4rem 0;
    /* Restored generous padding */
}

/* Special Tight Intro for Room Page (below sticky nav) */
.room-intro-compact {
    padding-top: 1.5rem !important;
    padding-bottom: 0 !important;
}

.room-intro-compact .section-intro {
    margin-bottom: 2rem;
}

.room-intro-compact .section-title {
    margin-top: 2rem;
}

.amenities-strip {
    margin-top: 1.5rem;
    display: inline-block;
}

.amenity-item {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    background: #f8faf7;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(121, 163, 163, 0.1);
}

/* Room Chapters */
.room-chapter.bg-accent-soft {
    background-color: #f9fbf8;
}

.chapter-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chapter-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin: 0;
    white-space: nowrap;
}

.chapter-line {
    flex-grow: 1;
    height: 1px;
    background: var(--color-slate-100);
}

.room-chapter-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .room-chapter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .layout-flipped .room-chapter-visuals {
        order: 2;
    }

    .layout-flipped .room-chapter-details {
        order: 1;
    }
}

/* Visuals */
.room-img-frame {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.room-img-main {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.room-img-frame.is-portrait {
    max-width: 75%;
    margin: 0 auto;
    aspect-ratio: 3/4;
}

.room-img-frame.is-portrait .room-img-main {
    aspect-ratio: 3/4;
}

.room-gallery-thumbs-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.thumb-box-mini {
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.thumb-box-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Details - Standardized by parent .intro-text */
.room-description-mini p {
    margin-bottom: 1.5rem;
}

.info-block-refined {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(121, 163, 163, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    margin: 1.5rem 0;
}

.info-block-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-block-list li {
    font-size: 0.9375rem;
    color: var(--color-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.info-block-list li::before {
    content: 'check';
    font-family: 'Material Icons Outlined';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-primary);
    font-size: 1rem;
}

.info-block-list li strong {
    font-weight: 700;
}

.info-block-list li small {
    display: block;
    color: var(--color-slate-400);
    line-height: 1.3;
}

.contact-line {
    font-size: 0.8125rem;
    color: var(--color-slate-400);
}

.contact-line a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Integrated CTA Box */
.room-final-cta {
    padding: 4rem 0;
    border-top: 1px solid var(--color-slate-100);
    background: #f8faf7;
}

.integrated-cta-box {
    text-align: center;
}

.integrated-cta-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.integrated-cta-text {
    font-size: 1rem;
    color: var(--color-slate-500);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .room-nav-links {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .room-chapter {
        padding: 2.5rem 0;
    }

    .chapter-header {
        margin-bottom: 1.5rem;
    }

    .room-img-frame.is-portrait {
        max-width: 100%;
    }
}

.room-nav-bar {
    background: white;
    border-bottom: 1px solid var(--color-slate-100);
    position: sticky;
    top: 80px;
    z-index: 100;
    padding: 0.75rem 0;
}

.room-nav-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-slate-500);
    text-decoration: none;
    transition: all 0.2s;
}

.room-nav-links a:hover {
    color: var(--color-primary);
}

/* Room Entries */
.room-entry {
    padding: 4rem 0;
    /* Tightened vertical spacing */
    border-bottom: 1px solid var(--color-slate-50);
}

.room-entry.bg-light {
    background-color: #f9fbf8;
}

.room-grid-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
    /* TOP ALIGNED - No floating text */
}

@media (min-width: 1024px) {
    .room-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .layout-reversed .room-visuals {
        order: 2;
    }

    .layout-reversed .room-details {
        order: 1;
    }
}

/* Image Handling */
.room-img-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #eee;
}

.room-img-main {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* PORTRAIT MODE */
.room-img-wrapper.is-portrait {
    max-width: 80%;
    /* Don't let it take full width if vertical */
    margin: 0 auto;
    aspect-ratio: 3/4;
}

.room-img-wrapper.is-portrait .room-img-main {
    aspect-ratio: 3/4;
}

/* Gallery Thumbs */
.room-gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.thumb-box {
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.room-entry-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-secondary);
    margin: 0 0 1.25rem;
}

.room-entry-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-slate-600);
    margin-bottom: 1.5rem;
}

/* Options Box - Compact & Clean */
.options-box {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(121, 163, 94, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    margin: 1.5rem 0;
}

.options-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.options-list li {
    font-size: 0.9375rem;
    color: var(--color-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.options-list li::before {
    content: 'check';
    font-family: 'Material Icons Outlined';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-primary);
    font-size: 1rem;
}

.options-list li small {
    display: block;
    color: var(--color-slate-400);
    line-height: 1.3;
}

.contact-small {
    font-size: 0.8125rem;
    color: var(--color-slate-400);
}

.contact-small a {
    color: var(--color-primary);
    font-weight: 600;
}

.cta-banner {
    padding: 3rem;
    background: #f4f6f2;
    border-radius: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .room-entry {
        padding: 3rem 0;
    }

    .room-img-wrapper.is-portrait {
        max-width: 100%;
    }
}

/* Local Navigation Bar */
.room-nav-bar {
    background: white;
    border-bottom: 1px solid var(--color-slate-100);
    position: sticky;
    top: 80px;
    /* Assuming header height */
    z-index: 90;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.room-nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-nav-links a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-slate-600);
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.5rem 0;
    position: relative;
}

.room-nav-links a:hover {
    color: var(--color-primary);
}

/* Intro Section Refinement */
.page-rooms .intro-section {
    padding: 5rem 0;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.amenities-box {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: #f4f6f2;
    border-radius: 1rem;
    display: inline-block;
}

/* Room Section Redesign */
.room-section {
    padding: 5rem 0;
}

.section-alt-bg {
    background-color: #f9fbf8;
    border-top: 1px solid var(--color-slate-50);
    border-bottom: 1px solid var(--color-slate-50);
}

.room-layout {
    display: grid;
    gap: 3rem;
    align-items: start;
    /* TOP ALIGNED */
}

@media (min-width: 1024px) {
    .room-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
    }

    .layout-reverse .room-gallery-side {
        order: 2;
    }

    .layout-reverse .room-content-side {
        order: 1;
    }
}

/* Gallery Side Stylings */
.room-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-image-main {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.room-img-display {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.room-image-secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.secondary-box {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.secondary-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Side Stylings */
.room-name-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--color-secondary);
    margin: 0 0 1.5rem;
    line-height: 1.1;
}

.room-description-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-slate-600);
    margin-bottom: 2rem;
}

/* Availability Card Refined */
.availability-card-refined {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(121, 163, 163, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    margin: 2rem 0;
}

.avail-title {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.avail-list-refined {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.avail-list-refined li {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 1.75rem;
}

.avail-list-refined li::before {
    content: 'check_circle';
    font-family: 'Material Icons Outlined';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.avail-list-refined li strong {
    font-size: 0.9375rem;
    color: var(--color-secondary);
    line-height: 1.4;
}

.avail-list-refined li small {
    font-size: 0.875rem;
    color: var(--color-slate-500);
}

.contact-hint {
    font-size: 0.875rem;
    color: var(--color-slate-400);
    margin-top: 1.5rem;
}

.contact-hint a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(121, 163, 94, 0.2);
    transition: all 0.2s;
}

.contact-hint a:hover {
    border-color: var(--color-primary);
}

.page-cta-box.compact {
    padding: 3rem;
}

@media (max-width: 768px) {
    .room-nav-bar {
        top: 60px;
    }

    .room-nav-links {
        gap: 1rem;
        font-size: 0.8125rem;
    }

    .room-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .page-rooms .section {
        padding: 8rem 0;
    }
}

.intro-section {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-slate-100);
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.amenities-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-slate-100);
    border-radius: 1.5rem;
    display: inline-block;
}

.room-section {
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .room-section {
        padding: 9rem 0;
    }
}

.room-section-even {
    background-color: #f9fbf8;
    /* Very subtle light green/white hint */
}

.room-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .room-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .room-grid-reverse .room-gallery {
        order: 2;
    }

    .room-grid-reverse .room-info {
        order: 1;
    }
}

/* Gallery / Image Handling */
.room-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-image-featured {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.room-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* For vertical images - contained or aspect ratio */
.room-image-featured.vertical {
    aspect-ratio: 3/4;
}

.room-image-featured.vertical .room-img {
    height: 100%;
    object-fit: cover;
}

.room-section:hover .room-img {
    transform: scale(1.04);
}

.room-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.room-thumb {
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.room-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Styling */
.room-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-secondary);
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: -0.01em;
}

.room-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-slate-600);
    margin-bottom: 2rem;
}

/* Availability Card */
.availability-card {
    background: white;
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(121, 163, 94, 0.15);
    box-shadow: 0 10px 30px rgba(121, 163, 94, 0.05);
    margin: 2.5rem 0;
}

.availability-card h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.availability-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.availability-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1.75rem;
    position: relative;
}

.availability-list li::before {
    content: "event_available";
    font-family: 'Material Icons Outlined';
    position: absolute;
    left: 0;
    top: 0.125rem;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.availability-list li strong {
    color: var(--color-secondary);
    font-size: 1rem;
}

.availability-list li span {
    color: var(--color-slate-500);
    font-size: 0.9375rem;
}

.room-contact-note {
    font-size: 0.875rem;
    color: var(--color-slate-500);
}

.room-contact-note a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 768px) {
    .room-grid {
        gap: 3rem;
    }

    .availability-card {
        padding: 1.5rem;
    }
}

/* Global CTA Utilities */
.section-footer-cta {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.text-link {
    color: var(--color-primary);
    font-weight: 600;
    transition: color var(--transition);
}

.text-link:hover {
    color: var(--color-secondary);
}

/* Surgical Spacing Utilities for Section Intros */
.header-with-intro {
    margin-bottom: 1.5rem !important;
}

.section-intro {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.section-header .section-title {
    margin-bottom: 0 !important;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-slate-600);
}

.intro-text p {
    margin-bottom: 2rem;
}

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

.section-footer-cta {
    margin-top: 3.5rem;
    text-align: center;
    color: var(--color-slate-600);
}

/* Inquiry Button */
.btn-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-primary);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-inquiry:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 163, 94, 0.2);
}