@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --clr-primary: #67B82E;
    --clr-primary-rgb: 103, 184, 46;
    --clr-secondary: #352D8F;
    --clr-secondary-rgb: 53, 45, 143;
    --clr-accent: #D053C5;
    --clr-accent-rgb: 208, 83, 197;
    --clr-bg: #FAF8F5;
    --clr-bg-alt: #F0ECE6;
    --clr-text: #2C2520;
    --clr-text-muted: #6B6055;
    --clr-section-dark: #2C2520;
    --clr-section-accent: #EDE6DD;
    --sidebar-w: 260px;
    --max-w: 1200px;
    --sp-xs: 12px;
    --sp-sm: 24px;
    --sp-md: 36px;
    --sp-lg: 48px;
    --sp-xl: 72px;
    --sp-xxl: 96px;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-xxl: 1.5rem;
    --fs-hero: 2rem;
    --ff-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --ff-secondary: Georgia, 'Times New Roman', serif;
    --radius-sm: 3px;
    --radius-md: 0;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-primary);
    font-size: var(--fs-base);
    line-height: 1.5;
    color: var(--clr-text);
    background: var(--clr-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--clr-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text);
    letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-hero); margin-bottom: var(--sp-sm); }
h2 { font-size: var(--fs-xxl); margin-bottom: var(--sp-xs); }
h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-xs); }
h4 { font-size: var(--fs-lg); margin-bottom: var(--sp-xs); }

p {
    margin-bottom: var(--sp-sm);
    color: var(--clr-text);
}

ul, ol {
    padding-left: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

li {
    margin-bottom: 6px;
}

blockquote {
    border-left: 4px solid var(--clr-secondary);
    padding: var(--sp-sm) var(--sp-md);
    margin: var(--sp-sm) 0;
    font-family: var(--ff-secondary);
    font-style: italic;
    color: var(--clr-text-muted);
    background: var(--clr-bg-alt);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: #fff;
    border-right: 1px solid #e0dcd6;
    padding: var(--sp-md) var(--sp-sm);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.logo {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--clr-text);
    display: block;
    margin-bottom: var(--sp-lg);
    padding-bottom: var(--sp-sm);
    border-bottom: 1px solid #e0dcd6;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--clr-primary);
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.nav-item {
    width: 100%;
}

.nav-link {
    display: block;
    padding: 10px 14px;
    color: var(--clr-text-muted);
    font-size: var(--fs-sm);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-primary);
    background: rgba(103, 184, 46, 0.06);
    border-left-color: var(--clr-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--clr-text);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: fixed;
    top: 16px;
    right: 16px;
}

main {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-sm);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
}

.grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
}

.grid-2 > * {
    flex: 1 1 calc(50% - var(--sp-sm) / 2);
    min-width: 280px;
}

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
}

.grid-3 > * {
    flex: 1 1 calc(33.333% - var(--sp-sm));
    min-width: 260px;
}

.grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
}

.grid-4 > * {
    flex: 1 1 calc(25% - var(--sp-sm));
    min-width: 220px;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-secondary), #4a3fb3 40%, var(--clr-primary));
    background-size: 200% 200%;
    animation: gradientShift 14s ease infinite;
    color: #fff;
    overflow: hidden;
    padding: var(--sp-xl) var(--sp-md);
}

.hero::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--clr-accent-rgb), 0.14) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    z-index: 0;
    animation: float 7s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--clr-primary-rgb), 0.12) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
    z-index: 0;
    animation: float 9s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: var(--sp-md);
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: var(--sp-sm);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-md);
    font-family: var(--ff-secondary);
}

.hero-content .btn {
    margin-top: var(--sp-xs);
}

.header-hero {
    position: relative;
    padding: var(--sp-xl) var(--sp-md) var(--sp-lg);
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.header-hero::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    top: -90px;
    left: -40px;
    animation: float 8s ease-in-out infinite;
}

.header-hero h1 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    position: relative;
    z-index: 1;
}

.header-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--ff-secondary);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: var(--sp-xl) 0;
    border-bottom: 1px solid #e0dcd6;
}

.content-section:last-of-type {
    border-bottom: none;
}

.section-dark {
    background-color: var(--clr-section-dark);
    color: #fff;
    border-bottom-color: transparent;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-dark a {
    color: var(--clr-primary);
}

.section-dark a:hover {
    color: var(--clr-accent);
}

.section-accent {
    background-color: var(--clr-section-accent);
    border-bottom-color: #ddd6cb;
}

.section-header {
    text-align: center;
    margin-bottom: var(--sp-lg);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--sp-xs);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--clr-primary);
}

.section-header p {
    color: var(--clr-text-muted);
    max-width: 560px;
    margin: var(--sp-xs) auto 0;
    font-family: var(--ff-secondary);
}

.card {
    background: #fff;
    border: 1px solid #e0dcd6;
    padding: var(--sp-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--clr-primary);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: var(--sp-sm);
    transition: transform 0.45s ease;
    overflow: hidden;
}

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

.card h3 {
    font-size: var(--fs-lg);
}

.card p {
    color: var(--clr-text-muted);
    font-size: var(--fs-sm);
}

.feature {
    background: #fff;
    border: 1px solid #e0dcd6;
    padding: var(--sp-md) var(--sp-sm);
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}

.feature:hover {
    border-color: var(--clr-primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-sm);
    background: rgba(var(--clr-primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--clr-primary);
    font-size: 1.5rem;
}

.feature h3 {
    font-size: var(--fs-lg);
    margin-bottom: 8px;
}

.feature p {
    color: var(--clr-text-muted);
    font-size: var(--fs-sm);
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e0dcd6;
    border-left: 4px solid var(--clr-accent);
    padding: var(--sp-md);
    position: relative;
    transition: box-shadow var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--ff-secondary);
    font-size: 3.5rem;
    color: var(--clr-accent);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-family: var(--ff-secondary);
    font-style: italic;
    color: var(--clr-text-muted);
    padding-top: var(--sp-sm);
}

.testimonial-card .author {
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: 600;
    color: var(--clr-text);
    font-size: var(--fs-sm);
    margin-top: var(--sp-xs);
    display: block;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e0dcd6;
    padding: var(--sp-md);
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}

.pricing-card:hover {
    border-color: var(--clr-primary);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--clr-primary);
    border-width: 2px;
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 4px 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: var(--fs-xl);
}

.pricing-card .price {
    font-size: var(--fs-hero);
    font-weight: 800;
    color: var(--clr-primary);
    margin: var(--sp-sm) 0;
}

.pricing-card .price span {
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--clr-text-muted);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--sp-sm);
    text-align: left;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0ece6;
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

.pricing-card ul li::before {
    content: '\2713';
    color: var(--clr-primary);
    font-weight: 700;
    margin-right: 8px;
}

.two-col-layout {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-lg);
    align-items: center;
}

.two-col-layout > * {
    flex: 1 1 calc(50% - var(--sp-lg) / 2);
    min-width: 300px;
}

.two-col-layout.reverse {
    flex-direction: row-reverse;
}

.two-col-layout img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #e0dcd6;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), #52a31e);
    color: #fff;
    border-color: var(--clr-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #52a31e, var(--clr-primary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--clr-primary-rgb), 0.35);
}

.btn-secondary {
    background: var(--clr-secondary);
    color: #fff;
    border-color: var(--clr-secondary);
}

.btn-secondary:hover {
    background: #2a2373;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--clr-secondary-rgb), 0.3);
}

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

.btn-outline:hover {
    background: var(--clr-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: var(--fs-base);
}

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

.text-muted {
    color: var(--clr-text-muted);
}

form {
    max-width: 600px;
}

form label {
    display: block;
    font-weight: 500;
    font-size: var(--fs-sm);
    margin-bottom: 6px;
    color: var(--clr-text);
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="url"],
form select,
form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d0cac2;
    background: #fff;
    font-family: var(--ff-primary);
    font-size: var(--fs-base);
    color: var(--clr-text);
    transition: border-color var(--transition), box-shadow var(--transition);
    margin-bottom: var(--sp-sm);
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(var(--clr-primary-rgb), 0.12);
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form button[type="submit"] {
    margin-top: var(--sp-xs);
}

.faq-item {
    border-bottom: 1px solid #e0dcd6;
    padding: var(--sp-sm) 0;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    font-size: var(--fs-lg);
    color: var(--clr-text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--clr-primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .faq-body {
    padding: var(--sp-xs) 0 var(--sp-xs);
    color: var(--clr-text-muted);
    font-family: var(--ff-secondary);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(var(--clr-primary-rgb), 0.1);
    color: var(--clr-primary);
    border: 1px solid rgba(var(--clr-primary-rgb), 0.2);
}

.badge-secondary {
    background: rgba(var(--clr-secondary-rgb), 0.1);
    color: var(--clr-secondary);
    border-color: rgba(var(--clr-secondary-rgb), 0.2);
}

.badge-accent {
    background: rgba(var(--clr-accent-rgb), 0.1);
    color: var(--clr-accent);
    border-color: rgba(var(--clr-accent-rgb), 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--sp-sm);
}

table th,
table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0dcd6;
    font-size: var(--fs-sm);
}

table th {
    font-weight: 600;
    background: var(--clr-bg-alt);
    color: var(--clr-text);
}

table tbody tr:hover {
    background: rgba(var(--clr-primary-rgb), 0.03);
}

.team-member {
    text-align: center;
    padding: var(--sp-sm);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--sp-sm);
    border: 3px solid var(--clr-bg-alt);
}

.team-member h3 {
    font-size: var(--fs-lg);
    margin-bottom: 4px;
}

.team-member .role {
    font-size: var(--fs-sm);
    color: var(--clr-primary);
    font-weight: 500;
}

.team-member p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-top: 8px;
}

.blog-card {
    border: 1px solid #e0dcd6;
    background: #fff;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card .blog-card-body {
    padding: var(--sp-sm);
}

.blog-card .blog-card-body .meta {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.blog-card .blog-card-body h3 {
    font-size: var(--fs-lg);
    margin-bottom: 8px;
}

.blog-card .blog-card-body p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

.event-item {
    display: flex;
    gap: var(--sp-sm);
    padding: var(--sp-sm) 0;
    border-bottom: 1px solid #e0dcd6;
    align-items: flex-start;
}

.event-item .event-date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    background: var(--clr-primary);
    color: #fff;
    padding: 10px 8px;
}

.event-item .event-date .month {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.event-item .event-date .day {
    font-size: var(--fs-xxl);
    font-weight: 800;
    line-height: 1.1;
}

.event-item .event-info h3 {
    font-size: var(--fs-lg);
    margin-bottom: 4px;
}

.event-item .event-info p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

.directory-listing {
    display: flex;
    gap: var(--sp-sm);
    padding: var(--sp-sm);
    border: 1px solid #e0dcd6;
    background: #fff;
    align-items: flex-start;
    transition: border-color var(--transition);
}

.directory-listing:hover {
    border-color: var(--clr-primary);
}

.directory-listing img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.directory-listing h3 {
    font-size: var(--fs-lg);
    margin-bottom: 4px;
}

.directory-listing p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-bottom: 4px;
}

.cta-block {
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    padding: var(--sp-xl) var(--sp-md);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -100px;
    right: -60px;
}

.cta-block h2 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin: var(--sp-xs) auto var(--sp-sm);
    font-family: var(--ff-secondary);
    position: relative;
    z-index: 1;
}

.cta-block .btn {
    position: relative;
    z-index: 1;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    justify-content: center;
    text-align: center;
}

.stats-row .stat {
    flex: 1 1 140px;
    padding: var(--sp-sm);
}

.stats-row .stat .number {
    font-size: var(--fs-hero);
    font-weight: 800;
    color: var(--clr-primary);
    display: block;
    line-height: 1.1;
}

.stats-row .stat .label {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    display: block;
    margin-top: 4px;
}

.section-dark .stats-row .stat .number {
    color: var(--clr-primary);
}

.section-dark .stats-row .stat .label {
    color: rgba(255, 255, 255, 0.7);
}

footer.footer-contact {
    background: var(--clr-section-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--sp-xl) var(--sp-sm) var(--sp-md);
    margin-left: var(--sidebar-w);
}

footer.footer-contact .footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-lg);
    margin-bottom: var(--sp-md);
}

footer.footer-contact .footer-grid > * {
    flex: 1 1 calc(33.333% - var(--sp-lg));
    min-width: 220px;
}

footer.footer-contact h4 {
    color: #fff;
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-sm);
    font-weight: 600;
}

footer.footer-contact p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
    font-size: var(--fs-sm);
}

footer.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--fs-sm);
    display: block;
    margin-bottom: 8px;
    transition: color var(--transition);
    text-decoration: none;
}

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

footer.footer-contact .copyright {
    text-align: center;
    padding-top: var(--sp-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--fs-xs);
}

.section-divider {
    display: block;
    width: 100%;
    height: auto;
    margin: -1px 0;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.section-divider.flip {
    transform: scaleY(-1);
}

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate="fade-in"].visible {
    opacity: 1;
}

[data-animate="slide-left"] {
    transform: translateX(-28px);
}

[data-animate="slide-left"].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(28px);
}

[data-animate="slide-right"].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-stagger] > *.visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(var(--clr-secondary-rgb), 0.97);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-sm);
    opacity: 0;
    transition: opacity 0.35s ease;
}

body.menu-open .mobile-overlay {
    display: flex;
    opacity: 1;
}

.mobile-overlay a {
    color: #fff;
    font-size: var(--fs-xxl);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    transition: color var(--transition);
}

.mobile-overlay a:hover {
    color: var(--clr-primary);
}

body.menu-open {
    overflow: hidden;
}

.breadcrumb {
    padding: var(--sp-xs) 0;
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

.breadcrumb a {
    color: var(--clr-text-muted);
}

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

.breadcrumb span {
    margin: 0 6px;
    color: #d0cac2;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.tag-list li a {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid #e0dcd6;
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

.tag-list li a:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: var(--sp-sm);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.social-icons {
    display: flex;
    gap: var(--sp-xs);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
    font-size: 1rem;
}

.social-icons a:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-xs);
}

.gallery-grid > * {
    flex: 1 1 calc(33.333% - var(--sp-xs));
    min-width: 180px;
    overflow: hidden;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-grid > *:hover img {
    transform: scale(1.06);
}

.alert {
    padding: var(--sp-sm);
    border-left: 4px solid var(--clr-primary);
    background: rgba(var(--clr-primary-rgb), 0.06);
    margin-bottom: var(--sp-sm);
    font-size: var(--fs-sm);
}

.alert-warning {
    border-left-color: #e5a000;
    background: rgba(229, 160, 0, 0.06);
}

.alert-info {
    border-left-color: var(--clr-secondary);
    background: rgba(var(--clr-secondary-rgb), 0.06);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media screen and (max-width: 1024px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: var(--sp-xs) var(--sp-sm);
        border-right: none;
        border-bottom: 1px solid #e0dcd6;
        overflow: visible;
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .logo {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        font-size: var(--fs-lg);
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        position: static;
    }

    main {
        margin-left: 0;
        padding-top: 60px;
    }

    footer.footer-contact {
        margin-left: 0;
    }

    .hero {
        min-height: 65vh;
        padding: var(--sp-lg) var(--sp-sm);
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }

    .header-hero {
        padding: var(--sp-lg) var(--sp-sm) var(--sp-md);
    }

    .content-section {
        padding: var(--sp-lg) 0;
    }

    .two-col-layout,
    .two-col-layout.reverse {
        flex-direction: column;
    }

    .two-col-layout > * {
        min-width: 100%;
    }

    .grid-3 > * {
        flex: 1 1 calc(50% - var(--sp-sm) / 2);
    }

    .grid-4 > * {
        flex: 1 1 calc(50% - var(--sp-sm) / 2);
    }

    .stats-row .stat {
        flex: 1 1 calc(50% - var(--sp-sm));
    }

    .cta-block {
        padding: var(--sp-lg) var(--sp-sm);
    }

    footer.footer-contact .footer-grid > * {
        flex: 1 1 calc(50% - var(--sp-lg) / 2);
    }

    .gallery-grid > * {
        flex: 1 1 calc(50% - var(--sp-xs));
    }
}

@media screen and (max-width: 768px) {
    :root {
        --sp-xl: 56px;
        --sp-xxl: 72px;
    }

    .hero {
        min-height: 55vh;
    }

    .hero::before {
        width: 200px;
        height: 200px;
    }

    .hero::after {
        width: 160px;
        height: 160px;
    }

    .hero-content {
        padding: var(--sp-sm);
    }

    .grid-2 > *,
    .grid-3 > *,
    .grid-4 > * {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .event-item {
        flex-direction: column;
        gap: var(--sp-xs);
    }

    .event-item .event-date {
        width: auto;
        display: flex;
        gap: 8px;
        align-items: baseline;
    }

    .directory-listing {
        flex-direction: column;
    }

    .directory-listing img {
        width: 100%;
        height: 160px;
    }

    footer.footer-contact .footer-grid {
        flex-direction: column;
    }

    footer.footer-contact .footer-grid > * {
        flex: 1 1 100%;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .stats-row .stat {
        flex: 1 1 100%;
    }

    .pricing-card {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --fs-hero: 1.625rem;
        --sp-xl: 48px;
    }

    body {
        font-size: 15px;
    }

    .hero {
        min-height: 50vh;
    }

    .btn-lg {
        padding: 0.85rem 1.75rem;
        font-size: var(--fs-sm);
    }

    .section-header h2 {
        font-size: var(--fs-xl);
    }

    .testimonial-card {
        padding: var(--sp-sm);
    }

    .gallery-grid > * {
        flex: 1 1 100%;
    }

    .tag-list {
        gap: 6px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    [data-stagger] > * {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .navbar,
    .mobile-menu-toggle,
    .mobile-overlay,
    .cta-block {
        display: none;
    }

    main {
        margin-left: 0;
    }

    footer.footer-contact {
        margin-left: 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}
