/* ============================================
   Talking and Exploring - Shared Styles
   Modern Workaway-inspired design
   ============================================ */

:root {
    --primary: #1a6b8a;
    --primary-dark: #0d3d50;
    --primary-light: #2a8fb5;
    --accent: #7ec8c8;
    --accent-light: #dff0f0;
    --text-dark: #0b0c0c;
    --text-body: #2c3e50;
    --text-muted: #555555;
    --bg-light: #f8faf9;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 50px;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ============================================
   Sticky Navigation
   ============================================ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transition: box-shadow var(--transition);
    border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1em;
    color: var(--primary);
}

.nav-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    padding: 8px 16px;
    font-size: 0.9em;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

.nav-menu a.active {
    color: var(--primary);
    background: var(--accent-light);
    font-weight: 600;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-muted);
    transition: all var(--transition);
}

.nav-social a:hover {
    color: var(--primary);
    background: var(--accent-light);
}

.nav-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 0 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-social {
        display: none;
    }

    .nav-menu .mobile-social {
        display: flex;
        gap: 12px;
        padding: 12px 16px;
        border-top: 1px solid var(--border);
        margin-top: 8px;
    }
}

@media (min-width: 769px) {
    .nav-menu .mobile-social {
        display: none;
    }
}

/* ============================================
   Section Layout
   ============================================ */
.section {
    padding: 80px 40px;
}

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

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-dark);
}

.section-link {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition);
}

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

@media (max-width: 768px) {
    .section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 1.5em;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 24px;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95em;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: #a5dede;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.btn-green {
    background: var(--primary);
    color: white;
}

.btn-green:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85em;
}

/* ============================================
   Cards
   ============================================ */
.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

/* ============================================
   Badges / Pills
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-pill);
    background: var(--accent);
    color: var(--primary-dark);
}

.badge-dark {
    background: var(--primary);
    color: white;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(27,67,50,0.75));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 2;
}

.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid rgba(255,255,255,0.5);
}

.hero h1 {
    font-size: 3em;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.3em;
    color: rgba(255,255,255,1);
    margin-bottom: 30px;
    max-width: 600px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 0;
        aspect-ratio: 9/16;
        max-height: 70vh;
    }

    .hero-overlay {
        padding: 60px 20px 24px;
        justify-content: flex-end;
    }

    .hero-logo {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 1.6em;
        margin-bottom: 6px;
    }

    .hero-tagline {
        font-size: 0.85em;
        margin-bottom: 14px;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 8px;
    }

    .hero-buttons .btn {
        padding: 9px 16px;
        font-size: 0.78em;
        border-radius: 30px;
    }

    .hero-dots {
        margin-top: 12px;
    }

    .hero-dot {
        width: 7px;
        height: 7px;
        padding: 18px;
        background-clip: content-box;
    }

    .hero-dot.active {
        background-clip: content-box;
    }
}

/* ============================================
   Event Highlight
   ============================================ */
.event-highlight {
    background: var(--accent-light);
}

.event-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.event-card-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.event-card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.event-card-body h3 {
    font-size: 1.5em;
    color: var(--primary-dark);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.event-meta .badge {
    font-size: 0.8em;
    padding: 6px 14px;
}

.event-card-body p {
    color: var(--text-body);
    font-size: 0.95em;
    line-height: 1.6;
}

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

    .event-card-img {
        min-height: 200px;
        max-height: 250px;
    }

    .event-card-body {
        padding: 24px;
    }
}

/* ============================================
   Featured Stories (3-card grid)
   ============================================ */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    position: relative;
}

.featured-card .card-img {
    aspect-ratio: 4/3;
}

.featured-card .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.featured-card .card-date {
    font-size: 0.8em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.featured-card .card-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card .card-excerpt {
    font-size: 0.9em;
    color: var(--text-body);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.featured-card .card-link {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--primary);
}

.featured-card .card-link:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   Stories Feed
   ============================================ */
.stories-section {
    background: var(--bg-light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.story {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.story:hover {
    box-shadow: var(--shadow-md);
}

.story-header {
    margin-bottom: 12px;
}

.story-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.story-date {
    font-size: 0.8em;
    color: var(--text-muted);
}

.story-title {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

.story-content {
    font-size: 0.9em;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.story-content a {
    word-break: break-all;
    color: var(--primary);
}

.story-images {
    margin-top: 15px;
    column-count: 2;
    column-gap: 4px;
}

.story-images.single-image {
    column-count: 1;
}

.story-images.single-image .image-wrapper img {
    height: auto;
    max-height: none;
    border-radius: var(--radius-sm);
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 4px;
    break-inside: avoid;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.image-wrapper img:hover {
    opacity: 0.9;
}

.image-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.image-more-overlay:hover {
    background: rgba(0,0,0,0.8);
}

.image-wrapper.hidden {
    display: none;
}

.story-links {
    margin-top: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.story-link-btn {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-pill);
    font-size: 0.8em;
    font-weight: 600;
    transition: all var(--transition);
}

.story-link-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.pagination {
    text-align: center;
    padding: 30px 10px;
    margin-top: 30px;
}

.pagination button {
    display: inline-block;
    padding: 10px 14px;
    margin: 0 3px;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    font-family: inherit;
    min-width: 42px;
}

.pagination button:hover:not(:disabled) {
    background: var(--primary);
    color: white;
}

.pagination button.active {
    background: var(--primary);
    color: white;
}

.pagination button:disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
}

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

    .pagination button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ============================================
   Gallery Teaser
   ============================================ */
.gallery-teaser {
    background: var(--primary-dark);
    color: white;
}

.gallery-teaser .section-title {
    color: white;
}

.gallery-teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-teaser-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

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

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

@media (max-width: 768px) {
    .gallery-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
    padding: 10px 0;
}

.stat-icon {
    font-size: 2em;
    margin-bottom: 8px;
    color: var(--primary);
}

.stat-number {
    font-size: 1.5em;
    font-weight: 800;
    color: var(--primary-dark);
    display: block;
}

.stat-label {
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--primary);
    color: white;
    padding: 60px 40px 30px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
    margin-top: 12px;
    line-height: 1.6;
}

.footer-brand .nav-brand {
    color: white;
    font-size: 1.2em;
}

.footer-heading {
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all var(--transition);
}

.footer-social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.footer-social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85em;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s ease;
    background: none;
    border: none;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* ============================================
   Page-specific: Content Sections
   ============================================ */
.content-section {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
}

.content-section h1,
.content-section h2 {
    color: var(--primary-dark);
    font-size: 1.6em;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 10px;
}

.content-section h3 {
    color: var(--primary-dark);
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section p {
    color: var(--text-body);
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    color: var(--text-body);
    margin-bottom: 8px;
}

.highlight-box {
    background: var(--primary);
    padding: 24px;
    margin: 20px 0;
    border-radius: var(--radius-sm);
}

.highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: white;
}

/* Social link buttons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9em;
    transition: all var(--transition);
}

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

/* ============================================
   Page-specific: Events / Walks
   ============================================ */
.page-intro {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.page-intro h1,
.page-intro h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.event-item {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.event-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.event-item h3 {
    color: var(--primary-dark);
    font-size: 1.2em;
    margin-bottom: 8px;
}

.event-item .event-details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 0.85em;
    color: var(--text-muted);
}

.event-item .event-desc {
    color: var(--text-body);
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-item .event-logo {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

.event-item .card-body {
    padding: 24px;
}

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

/* ============================================
   Page-specific: Gallery
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto 40px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
}

/* ============================================
   Page-specific: Contact
   ============================================ */
.contact-methods {
    margin: 30px 0;
    overflow-x: auto;
}

.contact-methods table {
    width: 100%;
    border-collapse: collapse;
}

.contact-methods th {
    background: var(--primary);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.contact-methods td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.contact-methods tr:last-child td {
    border-bottom: none;
}

.contact-methods td:first-child {
    color: var(--primary);
    font-weight: 600;
    width: 150px;
}

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

.contact-methods td a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .contact-methods table,
    .contact-methods thead,
    .contact-methods tbody,
    .contact-methods th,
    .contact-methods td,
    .contact-methods tr {
        display: block;
    }

    .contact-methods thead {
        display: none;
    }

    .contact-methods tr {
        margin-bottom: 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        overflow: hidden;
    }

    .contact-methods td:first-child {
        background: var(--primary);
        color: white;
        width: 100%;
    }
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95em;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   Utilities
   ============================================ */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

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

/* ============================================
   Mobile Enhancements
   ============================================ */
@media (max-width: 480px) {
    .hero {
        max-height: 65vh;
    }

    .hero-overlay {
        padding: 40px 16px 20px;
    }

    .hero h1 {
        font-size: 1.4em;
        margin-bottom: 4px;
    }

    .hero-tagline {
        font-size: 0.8em;
        padding: 0 5px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero-logo {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .hero-buttons .btn {
        padding: 7px 12px;
        font-size: 0.72em;
    }

    .hero-dots {
        margin-top: 10px;
    }

    .section {
        padding: 35px 16px;
    }

    .section-title {
        font-size: 1.3em;
    }

    .nav-brand {
        font-size: 0.95em;
    }

    .nav-brand img {
        width: 32px;
        height: 32px;
    }

    .story {
        padding: 16px;
    }

    .story-title {
        font-size: 1em;
    }

    .story-content {
        font-size: 0.85em;
    }

    .story-images {
        column-count: 1;
    }

    .featured-card .card-body {
        padding: 14px;
    }

    .featured-card .card-title {
        font-size: 0.95em;
    }

    .featured-card .card-excerpt {
        font-size: 0.8em;
    }

    .event-card-body {
        padding: 16px;
    }

    .event-card-body h3 {
        font-size: 1.2em;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-icon {
        font-size: 1.5em;
    }

    .stat-number {
        font-size: 1.2em;
    }

    .footer-inner {
        gap: 24px;
    }

    .content-section {
        padding: 20px 16px;
    }

    .content-section h1,
    .content-section h2 {
        font-size: 1.3em;
    }

    .gallery-teaser-grid {
        gap: 8px;
    }

    .pagination button {
        padding: 8px 10px;
        font-size: 13px;
        min-width: 36px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}
