/* ============================================
   General Store Selkirk — Static Website
   Mobile-first responsive design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #9BA089;
    --color-primary-light: #3d6b1e;
    --color-primary-dark: #1e3a0e;
    --color-accent: #D4A843;
    --color-accent-light: #e4c06a;
    --color-accent-dark: #b8912e;
    --color-bg: #FAF7F2;
    --color-bg-alt: #F0EDE5;
    --color-bg-card: #FFFFFF;
    --color-text: #2C2C2C;
    --color-text-light: #5A5A5A;
    --color-text-muted: #8A8A7A;
    --color-border: #E0DDD5;
    --color-hero-overlay: rgba(30, 58, 14, 0.72);

    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1100px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav-logo span {
    color: var(--color-primary-dark);
}

.nav-links {
    display: none;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    display: block;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--color-primary);
    color: #fff;
}

.nav-phone {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 6px 14px;
    border: 2px solid var(--color-primary);
    border-radius: 100px;
    transition: all var(--transition);
}

.nav-phone:hover {
    background: var(--color-primary);
    color: #fff;
}

.nav-phone svg {
    width: 14px;
    height: 14px;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    padding: 24px 20px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

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

.mobile-menu .mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Desktop nav */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-phone {
        display: flex;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: #9BA089;
    /*background:
        radial-gradient(ellipse at 20% 80%, rgba(45, 80, 22, 0.95) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(61, 107, 30, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 58, 14, 0.9) 0%, transparent 70%),
        linear-gradient(145deg, #1a3d0c 0%, #2D5016 30%, #3d6b1e 60%, #2a4a14 100%);*/
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.012) 2px,
            rgba(255, 255, 255, 0.012) 4px);
    opacity: 0.6;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 168, 67, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(100, 85, 35, 0.349);
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content img {
    margin: 0 auto 24px;
    max-width: 320px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--color-primary-dark);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.12em;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description a {
    color: var(--color-primary-light);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--color-accent-light);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.35);
}

.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: rgba(255, 255, 255, 0.7);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--color-primary-dark);
    color: #fff;
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 12px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent-light);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

/* ============================================
   SECTIONS (General)
   ============================================ */
section {
    padding: 64px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    section {
        padding: 96px 0;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    max-width: 740px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.about-content p:first-of-type {
    font-size: 1.15rem;
    color: var(--color-text);
    font-weight: 500;
}

.about-highlight {
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 28px 0;
    font-weight: 500;
    color: var(--color-text);
}

/* ============================================
   STORE SECTION
   ============================================ */
.store-section {
    background: var(--color-bg-alt);
}

.store-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.store-tab {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.store-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.store-tab.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.store-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.store-panel.active {
    display: block;
}

.store-content {
    display: grid;
    gap: 32px;
}

.store-text h3 {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
}

.store-address {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 16px !important;
}

.store-text p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.store-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.category-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--color-bg);
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    /*box-shadow: var(--shadow-sm);*/
}

.category-icon {
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .store-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 48px;
    }

    .store-categories {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Donation tab & table --- */
.store-tabs-secondary {
    margin-top: -20px;
    margin-bottom: 32px;
}

.store-tab-donate {
    border-color: var(--color-accent) !important;
    color: var(--color-accent-dark) !important;
}

.store-tab-donate:hover {
    background: var(--color-accent) !important;
    color: var(--color-primary-dark) !important;
    border-color: var(--color-accent) !important;
}

.store-tab-donate.active {
    background: var(--color-accent) !important;
    color: var(--color-primary-dark) !important;
    border-color: var(--color-accent) !important;
}

.store-content-single {
    display: block;
}

.donation-table-wrapper {
    margin-top: 28px;
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.donation-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 0.95rem;
}

.donation-table thead th {
    background: var(--color-primary);
    color: #fff;
    text-align: left;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.donation-table thead th:last-child {
    background: #b03a2e;
}

.donation-table tbody td {
    padding: 11px 20px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-light);
    vertical-align: top;
}

.donation-table tbody tr:nth-child(even) td {
    background: var(--color-bg);
}

.donation-table tbody tr:last-child td {
    border-bottom: none;
}

.donation-table tbody td:first-child {
    color: var(--color-text);
    font-weight: 500;
}

.donation-table tbody td:last-child:empty {
    background: transparent;
}

@media (max-width: 600px) {

    .donation-table thead th,
    .donation-table tbody td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* ============================================
   REPAIRS SECTION
   ============================================ */
.repairs-grid {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.repair-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.repair-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.repair-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.repair-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.repair-card h3 {
    font-size: 1rem;
    color: var(--color-primary-dark);
}

.repair-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

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

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section {
    background: var(--color-bg-alt);
}

.project-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.project-tab {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

.project-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.project-tab.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.project-panel {
    display: none;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    max-width: 740px;
    margin: 0 auto;
    animation: fadeIn 0.3s ease;
}

.project-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.project-panel p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 14px;
    line-height: 1.7;
}

.project-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.project-detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 2px;
}

.project-detail h4 {
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.project-detail p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   CONTACT / FOOTER
   ============================================ */
.contact-section {
    background: var(--color-primary-dark);
    color: #fff;
    padding: 64px 0 0;
}

.contact-grid {
    display: grid;
    gap: 40px;
}

.contact-info h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    color: var(--color-accent-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.contact-detail-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-detail-text a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-detail-text a:hover {
    color: var(--color-accent-light);
}

/* Hours table */
.hours-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.hours-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 16px;
    text-align: center;
}

.hours-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
}

.hours-tab {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.hours-tab:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hours-tab.active {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

.hours-panel {
    display: none;
    animation: fadeIn 0.25s ease;
}

.hours-panel.active {
    display: block;
}

.hours-table {
    width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: rgba(255, 255, 255, 0.7);
}

.hours-time {
    color: var(--color-accent-light);
    font-weight: 600;
}

.hours-row.today {
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin: 0 -12px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
}

/* Supporter logos */
.supporter-logos {
    margin-top: 48px;
    padding: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.supporter-heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.supporter-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.supporter-grid a,
.oscr-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    transition: all var(--transition);
    margin-bottom: 24px;
}

.supporter-grid a {
    display: flex;
    margin-bottom: 0;
}

.supporter-grid a:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.supporter-grid img,
.oscr-badge img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 600px) {
    .supporter-grid img {
        height: 30px;
    }

    .supporter-grid a {
        padding: 10px 14px;
    }

    .supporter-grid {
        gap: 12px;
    }
}

/* Footer bar */
.footer-bar {
    margin-top: 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bar p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent-light);
}

/* External links bar */
.external-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.ext-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

.ext-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

    .site-header,
    .hamburger,
    .mobile-menu,
    .hero-bg,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    section {
        page-break-inside: avoid;
        padding: 24px 0;
    }
}