/* ========================================
   TRCYI Official Corporate Design
   Institutional Style - Clean & Authoritative
   ======================================== */

:root {
    --forest: #1a472a;
    --forest-dark: #0f2e1b;
    --forest-light: #2d6a4f;
    --emerald: #40916c;
    --sage: #74c69d;
    --gold: #c8a030;
    --gold-light: #e0c060;
    --terracotta: #a65d3c;
    --cream: #faf9f6;
    --stone: #f0efeb;
    --charcoal: #1a1a1a;
    --graphite: #4a4a4a;
    --ash: #8a8a8a;
    --border: #e0ddd5;
    --white: #ffffff;
    --font-heading: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 4px;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.1);
}

[data-theme="dark"] {
    --forest: #2d6a4f;
    --forest-dark: #0c1a10;
    --forest-light: #40916c;
    --gold: #d4b050;
    --cream: #0f1f15;
    --stone: #1a2e20;
    --charcoal: #f0f0f0;
    --graphite: #c0c0c0;
    --ash: #888;
    --border: #2a3a30;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Utilities */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.skip-link {
    position: fixed; top: -60px; left: 0; background: var(--forest);
    color: #fff; padding: 10px 20px; font-weight: 600; z-index: 99999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-muted { color: var(--ash); }

/* Top Bar */
.top-bar {
    background: var(--forest-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.top-bar-left { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-left a {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.top-bar-left a:hover { color: var(--gold-light); }
.top-bar-right { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: color 0.2s;
}
.top-bar-link:hover { color: var(--gold-light); }
.theme-toggle-top {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    width: 28px; height: 28px;
    border-radius: var(--radius);
    display: grid; place-items: center;
    cursor: pointer;
    transition: all 0.2s;
}
.theme-toggle-top:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { width: 52px; height: 52px; border-radius: var(--radius); object-fit: cover; }
.logo-text strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--forest);
    display: block;
    line-height: 1.2;
}
.logo-text span {
    font-size: 0.78rem;
    color: var(--ash);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Navigation */
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu { display: flex; list-style: none; gap: 0; }
.nav-menu a {
    display: block;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--graphite);
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--forest);
    border-bottom-color: var(--gold);
}
.nav-menu .has-dropdown { position: relative; }
.nav-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s;
    z-index: 1001;
}
.nav-menu .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-menu .dropdown a {
    border: none;
    padding: 10px 18px;
    font-size: 0.88rem;
}
.nav-menu .dropdown a:hover {
    background: var(--cream);
    color: var(--forest);
}

/* Search */
.nav-search {
    display: flex;
    align-items: center;
    position: relative;
}
.nav-search input {
    width: 200px;
    padding: 8px 36px 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    background: var(--cream);
    transition: width 0.3s, border-color 0.2s;
}
.nav-search input:focus {
    outline: none;
    border-color: var(--forest);
    width: 260px;
    background: var(--white);
}
.nav-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--forest);
    cursor: pointer;
    padding: 4px;
    display: grid;
    place-items: center;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero */
.hero {
    position: relative;
    min-height: 65vh;
    max-height: 700px;
    display: flex;
    align-items: center;
    background: var(--forest-dark);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,46,27,0.92) 0%, rgba(15,46,27,0.6) 60%, rgba(15,46,27,0.3) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 640px;
    padding: 3rem 0;
}
.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold);
    color: var(--forest-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}
.hero-lead {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--gold);
    color: var(--forest-dark);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-solid {
    background: var(--forest);
    color: #fff;
}
.btn-solid:hover { background: var(--forest-light); }
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}
.section-subtitle {
    color: var(--graphite);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* Cards */
.cards-grid {
    display: grid;
    gap: 1.5rem;
}
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.card-image { width: 100%; height: 200px; object-fit: cover; }
.card-image.placeholder { background: linear-gradient(135deg, var(--stone), var(--border)); }
.card-body { padding: 1.5rem; }
.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.card-title a:hover { color: var(--forest); }
.card-text { color: var(--graphite); font-size: 0.9rem; line-height: 1.65; }
.card-meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.5rem; flex-wrap: wrap; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--forest);
}
.card-link:hover { color: var(--forest-light); }

/* Feature Cards */
.feature-card { padding: 2rem; text-align: center; }
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--forest);
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* Service Cards */
.service-card { padding: 2rem; border-radius: var(--radius); }
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--terracotta);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    border-top: 4px solid var(--gold);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label { color: var(--graphite); font-size: 0.9rem; font-weight: 500; }

/* Testimonials */
.testimonial-card { padding: 2rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); }
.testimonial-text { font-size: 1rem; line-height: 1.7; color: var(--charcoal); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--stone); }
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--ash); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.faq-question svg { transition: transform 0.3s; flex-shrink: 0; color: var(--forest); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.4s; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.25rem; }
.faq-answer p { color: var(--graphite); line-height: 1.7; font-size: 0.95rem; }

/* CTA */
.cta-section { background: var(--forest); color: #fff; text-align: center; padding: 5rem 0; }
.cta-section .section-title { color: #fff; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.8); }

/* Page Header */
.page-header {
    position: relative;
    background: var(--forest-dark);
    color: #fff;
    padding: 7rem 0 3rem;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,46,27,0.95) 0%, rgba(15,46,27,0.7) 100%);
    z-index: 2;
}
.page-header .container { position: relative; z-index: 3; }
.page-header h1 { color: #fff; margin-bottom: 0.5rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.88rem; opacity: 0.8; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb li:not(:last-child)::after { content: '>'; margin-left: 0.5rem; opacity: 0.5; }

/* Article */
.article-hero-image { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); margin-bottom: 1.5rem; }
.article-meta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.25rem; color: var(--ash); font-size: 0.88rem; }
.prose h2, .prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; color: var(--charcoal); }
.prose p { margin-bottom: 0.75rem; color: var(--graphite); }
.prose ul, .prose ol { margin: 0 0 1rem 1.5rem; }
.prose ul li { list-style: disc; margin-bottom: 0.35rem; color: var(--graphite); }
.prose ol li { list-style: decimal; margin-bottom: 0.35rem; color: var(--graphite); }
.prose a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

/* Share */
.share-bar { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--border); display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.share-bar a { padding: 6px 14px; border-radius: var(--radius); background: var(--cream); color: var(--graphite); font-size: 0.82rem; font-weight: 500; transition: all 0.2s; }
.share-bar a:hover { background: var(--forest); color: #fff; }

/* Tags */
.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--graphite);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.tag:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.tag.active { background: var(--forest); color: #fff; }

/* Badges */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-status { background: rgba(45,106,79,0.1); color: var(--forest); }
.badge-category { background: var(--forest); color: #fff; }

/* Sidebar */
.row-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; }
.sidebar-block { padding: 1.25rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); margin-bottom: 1.25rem; }
.sidebar-block h4 { font-size: 0.95rem; margin-bottom: 0.75rem; font-weight: 600; }
.sidebar-search { display: flex; gap: 0.35rem; }
.sidebar-search input { flex: 1; border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 12px; font-size: 0.85rem; }
.sidebar-search input:focus { outline: 2px solid var(--forest); outline-offset: 2px; }
.sidebar-list li { border-bottom: 1px solid var(--border); }
.sidebar-list a { display: flex; justify-content: space-between; padding: 0.5rem 0; color: var(--graphite); font-size: 0.88rem; transition: color 0.2s; }
.sidebar-list a:hover, .sidebar-list a.active { color: var(--forest); }
.sidebar-list .count { font-size: 0.78rem; color: var(--ash); }

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.82rem; margin-bottom: 0.35rem; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px;
    background: var(--white);
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.error { color: #c0392b; font-size: 0.82rem; margin-top: 0.25rem; display: block; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.9rem; }
.alert-success { background: rgba(45,106,79,0.08); color: var(--forest); border: 1px solid rgba(45,106,79,0.15); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { color: var(--graphite); margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--forest);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-detail p { color: var(--graphite); font-size: 0.88rem; }
.contact-detail a { color: var(--forest); }
.contact-detail a:hover { text-decoration: underline; }
.contact-form-card { padding: 2rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow); }

/* Footer */
.site-footer { background: var(--forest-dark); color: #9aaa9f; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text span { color: #6b8a70; }
.footer-about { max-width: 280px; line-height: 1.65; margin: 0.75rem 0 1.25rem; font-size: 0.88rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.06);
    color: #8fa897;
    display: grid;
    place-items: center;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--forest-dark); }
.footer-links h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; font-weight: 600; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #8fa897; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-newsletter h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.5rem; font-weight: 600; }
.footer-newsletter p { font-size: 0.85rem; margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.4rem; }
.newsletter-form input {
    flex: 1;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: var(--radius);
    padding: 8px 12px;
    font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: #5a7a62; }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; color: #5a7a62; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #5a7a62; font-size: 0.8rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }

/* Team */
.team-card { text-align: center; padding: 1.5rem; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid var(--white); box-shadow: var(--shadow); }
.team-photo.placeholder { background: var(--stone); }
.team-card h3 { margin-bottom: 0.25rem; font-size: 1rem; }
.team-card p { color: var(--ash); font-size: 0.85rem; }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-dot {
    position: absolute;
    left: -26px;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--forest);
    box-shadow: 0 0 0 3px var(--white);
}
.timeline-content h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.timeline-content p { color: var(--graphite); font-size: 0.9rem; }

/* Pagination */
.pagination-wrap { margin-top: 2.5rem; }
.pagination { display: flex; gap: 0.35rem; list-style: none; }
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--graphite);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}
.pagination a:hover { background: var(--cream); border-color: var(--forest); color: var(--forest); }
.pagination .active span { background: var(--forest); color: #fff; border-color: var(--forest); }

/* Animations - minimal, professional */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Admin */
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--forest-dark); color: #8fa897; padding: 1.5rem; }
.admin-sidebar a { color: #8fa897; display: block; padding: 0.5rem; border-radius: var(--radius); transition: all 0.2s; font-size: 0.88rem; }
.admin-sidebar a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.admin-main { padding: 1.5rem; background: var(--stone); }

/* Responsive */
@media (max-width: 1024px) {
    .cols-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .row-sidebar { grid-template-columns: 1fr; }
    .hero-content { text-align: center; margin: 0 auto; }
    .hero-lead { margin: 0 auto 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .top-bar-inner { justify-content: center; }
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 1.5rem 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s;
        overflow-y: auto;
        align-items: flex-start;
        gap: 0;
        z-index: 999;
    }
    .site-nav.open { transform: translateX(0); }
    .nav-menu { flex-direction: column; width: 100%; }
    .nav-menu a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
    .nav-menu .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 1rem; display: none; border-top: 2px solid var(--gold); }
    .nav-menu .has-dropdown.open .dropdown { display: block; }
    .nav-search { display: none; }
    .cols-3, .cols-4 { grid-template-columns: 1fr; }
    .cols-2 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { justify-content: center; }
    .section { padding: 3rem 0; }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 4rem 0; }
    .hero-title { font-size: 1.8rem; }
}
