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

:root {
    --primary: #2d5a3d;
    --primary-light: #4a7c59;
    --primary-dark: #1e3d28;
    --secondary: #8b7355;
    --accent: #e8b86d;
    --bg: #fafafa;
    --bg-alt: #f5f5f5;
    --surface: #ffffff;
    --text: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-light);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 30, 15, 0.55) 0%,
        rgba(10, 30, 15, 0.45) 60%,
        rgba(10, 30, 15, 0.75) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 24px;
}

.hero h1 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

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

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(5px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
}

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

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

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: transparent;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlight Section */
.highlight {
    background: var(--bg-alt);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-text h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.highlight-text p {
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.highlight-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mountain-illustration {
    font-size: 12rem;
    opacity: 0.15;
}

/* Activity List */
.activity-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.activity-item {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.activity-item:hover {
    border-color: var(--primary-light);
}

.activity-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.activity-item h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.activity-item p {
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
    text-align: center;
}

.page-header h1 {
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: var(--bg-alt);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.content-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.content-text ul {
    list-style: none;
    margin-top: 20px;
}

.content-text li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
}

.content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.visual-placeholder {
    font-size: 8rem;
    opacity: 0.2;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding: 20px 0;
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--surface);
}

.timeline-year {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
}

/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.member-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.member-card:hover {
    box-shadow: 0 8px 30px var(--shadow);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.member-card h4 {
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.member-role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

/* GPS Tracks */
.tracks-list {
    max-width: 800px;
    margin: 0 auto;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.track-item:hover {
    border-color: var(--primary-light);
}

.track-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.track-info {
    flex: 1;
}

.track-info h4 {
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.track-meta {
    display: flex;
    gap: 16px;
    color: var(--text-lighter);
    font-size: 0.85rem;
}

.track-download {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    flex-shrink: 0;
}

.track-download:hover {
    background: var(--primary-dark);
}

/* Member Featured (Ion Trandafir) */
.member-featured {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    border-left: 4px solid var(--primary);
}

.member-featured-avatar {
    font-size: 4rem;
    flex-shrink: 0;
    line-height: 1;
}

.member-featured-avatar.photo {
    font-size: unset;
    line-height: unset;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

.member-featured-avatar.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.member-featured-body h3 {
    color: var(--primary-dark);
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.member-featured-body p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.member-credentials span {
    background: var(--bg-alt);
    color: var(--primary-dark);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
}

/* Athlete Grid */
.athlete-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.athlete-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.athlete-card:hover {
    box-shadow: 0 8px 30px var(--shadow);
    border-color: var(--primary-light);
}

.athlete-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.athlete-body h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.athlete-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.athlete-results {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.result-badge {
    background: var(--primary);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* FWT Note */
.fwt-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    border-radius: var(--radius);
    padding: 24px 28px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fwt-note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.fwt-note strong {
    color: var(--accent);
}

/* Masiv Block */
.masiv-block {
    margin-bottom: 40px;
}

.masiv-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.masiv-icon {
    font-size: 1.75rem;
}

.masiv-header h3 {
    color: var(--primary-dark);
    font-size: 1.35rem;
    margin: 0;
}

/* Buton Obține Traseu */
.btn-obtine {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-obtine:hover {
    background: var(--primary-dark);
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 48px 40px 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-lighter);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.modal-close:hover {
    color: var(--text);
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.modal h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-traseu-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 8px 14px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.modal p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.modal-hint {
    font-size: 0.88rem !important;
    color: var(--text-lighter) !important;
}

.modal-btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Story Section */
.story-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 30, 15, 0.85) 0%,
        rgba(10, 30, 15, 0.6) 60%,
        rgba(10, 30, 15, 0.3) 100%
    );
}

.story-content {
    position: relative;
    z-index: 1;
}

.story-text {
    max-width: 560px;
}

.story-text h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.story-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Members Highlights */
.members-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.member-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.member-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow);
    border-color: var(--primary-light);
}

.member-hl-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.member-hl-info h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.member-hl-info p {
    font-size: 0.88rem;
    color: var(--text-lighter);
    margin: 0;
}

/* Photo Page Header */
.photo-header {
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 30, 15, 0.6) 0%,
        rgba(10, 30, 15, 0.5) 100%
    );
}

.photo-header .container {
    position: relative;
    z-index: 1;
}

.photo-header h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.photo-header p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Footer Mountain */
.footer-mountain {
    background-color: var(--primary-dark);
    background-image:
        linear-gradient(to bottom, rgba(20, 45, 28, 0.97) 0%, rgba(15, 35, 20, 0.98) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cpath d='M0 200 L0 120 L80 60 L160 100 L260 20 L360 80 L440 40 L520 90 L600 10 L680 70 L760 30 L840 85 L920 45 L1000 95 L1080 50 L1160 80 L1200 60 L1200 200 Z' fill='%23ffffff' fill-opacity='0.04'/%3E%3Cpath d='M0 200 L0 150 L100 100 L200 130 L300 70 L400 110 L480 80 L560 120 L660 50 L740 100 L820 65 L900 105 L980 75 L1060 115 L1140 85 L1200 100 L1200 200 Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto, 100% 200px;
}

/* Footer Logo */
.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Footer Routes */
.footer-routes {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    margin-bottom: 32px;
}

.footer-routes h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
}

.routes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.routes-list span {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    transition: var(--transition);
}

.routes-list span:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .highlight-content,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mountain-illustration {
        font-size: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .track-item {
        flex-direction: column;
        text-align: center;
    }
    
    .track-meta {
        justify-content: center;
    }

    .hero {
        background-attachment: scroll;
        padding: 100px 20px 80px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .story-section {
        background-attachment: scroll;
    }

    .story-text {
        max-width: 100%;
    }

    .story-text h2 {
        font-size: 1.9rem;
    }

    .members-highlights {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 38px;
    }

    .member-featured {
        flex-direction: column;
        gap: 20px;
    }

    .athlete-grid {
        grid-template-columns: 1fr;
    }

    .athlete-card {
        flex-direction: column;
        gap: 16px;
    }

    .fwt-note {
        flex-direction: column;
        gap: 12px;
    }

    .footer-logo {
        height: 40px;
    }

    .routes-list {
        gap: 8px;
    }
}
