/* =============================================================
   DMTB Muay Thai – Main CSS
   Betűtípus: Barlow Condensed (display) + Barlow (body)
   ============================================================= */

:root {
    --red:      #ce1126;
    --red-dark: #a50d1e;
    --dark:     #0a0f1e;
    --dark-2:   #111827;
    --dark-3:   #1f2937;
    --light:    #f8f7f4;
    --gray:     #6b7280;
    --gray-2:   #9ca3af;
    --white:    #ffffff;
    --gold:     #c9a84c;
    --radius:   1.25rem;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3, h4, .display {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ── NAVIGATION ── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 15, 30, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-logo {
    height: 48px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.nav-brand-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    line-height: 1.2;
}

.nav-brand-text span { color: var(--red); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--red-dark) !important; }

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

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 1.5rem;
}

.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.75);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.mobile-menu a:last-child { border-bottom: none; color: var(--red); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding-top: 76px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1552072092-7f9b8d63efcb?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,15,30,0.4) 0%, rgba(10,15,30,0.85) 70%, var(--dark) 100%);
}

/* Diagonal red accent */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: -5%;
    width: 110%;
    height: 120px;
    background: var(--light);
    clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem 1.5rem 8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(206,17,38,0.5);
    border-radius: 50px;
    color: var(--red);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    background: rgba(206,17,38,0.08);
}

.hero-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 9rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-title .accent { color: var(--red); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 8px 32px rgba(206,17,38,0.3); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(206,17,38,0.4); }
.btn-secondary { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

/* ── SECTION COMMONS ── */
section { padding: 6rem 0; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    font-style: italic;
    margin-bottom: 1rem;
}

.section-rule {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 0 auto;
    border-radius: 2px;
}

/* ── ABOUT ── */
.about { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -1.5rem; left: -1.5rem;
    width: 60%;
    height: 60%;
    background: rgba(206,17,38,0.12);
    border-radius: var(--radius);
    z-index: 0;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -1rem; right: -1rem;
    width: 40%;
    height: 40%;
    border: 3px solid var(--red);
    border-radius: var(--radius);
    z-index: 0;
    opacity: 0.4;
}

.about-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: grayscale(30%);
    transition: filter 0.7s;
}

.about-img:hover { filter: grayscale(0); }

.trainer-badge {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    z-index: 2;
    background: var(--red);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(206,17,38,0.35);
}

.trainer-badge strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; }
.trainer-badge span   { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; font-weight: 600; }

.about-content .section-header { text-align: left; margin-bottom: 1.5rem; }
.about-content .section-rule   { margin: 0 0 2rem; }

.about-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark-3);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--red);
    line-height: 1.55;
}

.about-text p { color: var(--gray); margin-bottom: 1rem; line-height: 1.75; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.stat-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--red);
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-2);
    display: block;
    margin-top: 0.25rem;
}

/* ── TRAININGS ── */
.trainings { background: var(--light); }

.trainings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

/* empty state */
.trainings-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem;
    color: var(--gray);
}

.training-card {
    border-radius: 1.75rem;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.training-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.training-card.light {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.training-card.dark {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.training-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--red);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 0 1.75rem 0 0.75rem;
}

.training-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.training-card.light .training-icon { background: rgba(206,17,38,0.08); }
.training-card.dark  .training-icon { background: rgba(255,255,255,0.08); }

.training-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.training-subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

.training-card.light .training-subtitle { color: var(--gray); }
.training-card.dark  .training-subtitle { color: rgba(255,255,255,0.5); }

.schedule-list { border-radius: 0.85rem; overflow: hidden; }
.training-card.light .schedule-list { background: var(--light); }
.training-card.dark  .schedule-list { background: rgba(255,255,255,0.06); }

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.training-card.dark .schedule-row { border-color: rgba(255,255,255,0.06); }
.schedule-row:last-child { border-bottom: none; }

.schedule-day  { font-weight: 400; }
.training-card.light .schedule-day { color: var(--gray); }
.training-card.dark  .schedule-day { color: rgba(255,255,255,0.4); }

.training-card.dark .schedule-time { color: var(--red); }

.no-trainings {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
    background: var(--white);
    border-radius: var(--radius);
    grid-column: 1 / -1;
}

/* ── ACHIEVEMENTS ── */
.achievements-section {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* subtle background pattern */
.achievements-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(206,17,38,0.08) 0%, transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(206,17,38,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.achievements-section .section-title { color: var(--white); }
.achievements-section .section-tag   { color: var(--red); }

/* Summary bar */
.ach-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.ach-sum-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.ach-sum-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.ach-sum-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
}

.ach-sum-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    margin: 0 1rem;
    flex-shrink: 0;
}

/* Timeline */
.ach-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* vertical line running down */
.ach-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(206,17,38,0.5) 5%, rgba(206,17,38,0.3) 90%, transparent);
}

.ach-year-group {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Year marker */
.ach-year-marker {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 0.65rem;
    position: relative;
}

.ach-year-marker::after {
    content: '';
    position: absolute;
    right: -2.45rem;
    top: 1.1rem;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--red);
    border: 2px solid var(--dark);
    box-shadow: 0 0 0 3px rgba(206,17,38,0.3);
    flex-shrink: 0;
}

.ach-year-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.02em;
    line-height: 1;
}

/* Cards column */
.ach-cards {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-bottom: 0.75rem;
}

.ach-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.85rem;
    padding: 0.9rem 1.1rem;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.ach-card:hover {
    border-color: rgba(206,17,38,0.35);
    background: rgba(206,17,38,0.06);
    transform: translateX(4px);
}

.ach-card--gold {
    border-color: rgba(201,168,76,0.25);
    background: rgba(201,168,76,0.05);
}

.ach-card--gold:hover {
    border-color: rgba(201,168,76,0.45);
    background: rgba(201,168,76,0.1);
}

.ach-card-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.ach-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.ach-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.ach-badge,
.ach-org,
.ach-weight {
    display: inline-flex;
    align-items: center;
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    white-space: nowrap;
}

.ach-badge  { background: rgba(206,17,38,0.2);  color: #f87171; border: 1px solid rgba(206,17,38,0.3); }
.ach-org    { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1); }
.ach-weight { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1); }

/* responsive */
@media (max-width: 640px) {
    .ach-timeline::before { left: 56px; }
    .ach-year-group { grid-template-columns: 56px 1fr; gap: 0 1.25rem; }
    .ach-year-marker::after { right: -1.75rem; }
    .ach-year-label { font-size: 1rem; }
    .ach-sum-divider { display: none; }
    .ach-summary { gap: 1rem; }
    .ach-sum-item { min-width: 100px; }
    .ach-sum-num { font-size: 2rem; }
}

/* ── ACHIEVEMENTS / EREDMÉNYEK ── */
.achievements-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: -20%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(206,17,38,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.achievements-section .section-tag   { color: var(--gold); }
.achievements-section .section-title { color: var(--white); }
.achievements-section .section-rule  { background: var(--gold); }

/* ── Summary bar ── */
.ach-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.ach-sum-item {
    text-align: center;
    flex: 1;
    min-width: 130px;
    padding: 0.5rem 1rem;
}

.ach-sum-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.ach-sum-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.ach-sum-divider {
    width: 1px; height: 44px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ══════════════════════════════
   HORIZONTAL TIMELINE SLIDER
══════════════════════════════ */
.ach-slider {
    position: relative;
    /* space for arrows on sides */
    padding: 0 2rem;
}

/* ── Arrows (left / right of viewport) ── */
.ach-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-70%); /* aligns with card area, above timeline */
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.ach-arrow:hover  { background: var(--red); border-color: var(--red); transform: translateY(-70%) scale(1.08); }
.ach-arrow:disabled { opacity: 0.2; pointer-events: none; }
.ach-arrow--prev  { left: -0.5rem; }
.ach-arrow--next  { right: -0.5rem; }

/* ── Viewport: clips overflow ── */
.ach-viewport {
    overflow: hidden;
}

/* ── Track: all columns in a row ── */
.ach-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: flex-end; /* cards top-align, timeline at bottom */
}

/* ── Each column: card on top, timeline connector on bottom ── */
.ach-col {
    /* width controlled by JS via CSS var */
    flex: 0 0 var(--ach-col-w, 25%);
    box-sizing: border-box;
    padding: 0 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Card ── */
.ach-card {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: calc(var(--radius) - 4px);
    padding: 1.1rem 1rem 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    position: relative;
    /* pointer-down indicator */
}

/* small triangle pointing down toward the dot */
.ach-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255,255,255,0.09);
}

.ach-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
}

.ach-card--gold {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.22);
}

.ach-card--gold::after {
    border-top-color: rgba(201,168,76,0.22);
}

.ach-card--gold:hover {
    background: rgba(201,168,76,0.14);
    border-color: rgba(201,168,76,0.35);
}

.ach-card--world {
    background: rgba(201,168,76,0.11);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 0 24px rgba(201,168,76,0.07);
}

.ach-card-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.ach-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.ach-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.ach-badge {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    background: rgba(206,17,38,0.18);
    color: #f87171;
    border: 1px solid rgba(206,17,38,0.2);
    white-space: nowrap;
}

.ach-card--gold .ach-badge {
    background: rgba(201,168,76,0.14);
    color: var(--gold);
    border-color: rgba(201,168,76,0.28);
}

.ach-org, .ach-weight {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
}

/* ── Timeline connector row ── */
.ach-timeline-connector {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ach-line-segment {
    width: 100%;
    display: flex;
    align-items: center;
    height: 20px;
}

/* the horizontal line halves */
.ach-line {
    flex: 1;
    height: 2px;
    background: rgba(206,17,38,0.5);
}

.ach-line--hidden {
    background: transparent;
}

/* The dot on the timeline */
.ach-dot-marker {
    flex-shrink: 0;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--red);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 2;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.ach-dot-marker--gold {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}

.ach-dot-inner {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--red);
    transition: background var(--transition);
}

.ach-dot-marker--gold .ach-dot-inner {
    background: var(--gold);
}

/* Year label below the dot */
.ach-year-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-top: 0.45rem;
    text-align: center;
}

.ach-year-label--gold {
    color: var(--gold);
}

/* ── Progress bar ── */
.ach-progress-wrap {
    height: 2px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.ach-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0%;
}

.ach-counter-row {
    text-align: center;
    margin-top: 0.6rem;
}

.ach-counter {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.28);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .ach-slider   { padding: 0 1.5rem; }
    .ach-arrow--prev { left: -0.75rem; }
    .ach-arrow--next { right: -0.75rem; }
    .ach-arrow    { width: 36px; height: 36px; }
    .ach-sum-divider { display: none; }
    .ach-sum-item { min-width: 100px; }
}

/* ── GALLERY SLIDER ── */
.gallery-section { background: var(--white); }

.gal-slider {
    position: relative;
    user-select: none;
}

/* Viewport – clips the track */
.gal-viewport {
    overflow: hidden;
    border-radius: var(--radius);
}

/* Track – slides sit side by side */
.gal-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each slide – width controlled by JS via CSS var */
.gal-slide {
    flex: 0 0 var(--slide-w, 25%);
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.gal-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: calc(var(--radius) - 2px);
    overflow: hidden;
    position: relative;
    background: var(--dark-3);
}

.gal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gal-thumb:hover img { transform: scale(1.07); }

.gal-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(10,15,30,0.78) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem 1rem;
    opacity: 0;
    transition: opacity var(--transition);
    color: var(--white);
    gap: 0.4rem;
}

.gal-thumb:hover .gal-thumb-overlay,
.gal-thumb:focus-visible .gal-thumb-overlay { opacity: 1; }

.gal-thumb-overlay svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }

.gal-thumb-overlay span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Nav arrows */
.gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--dark);
    transition: background var(--transition), color var(--transition), transform var(--transition), opacity var(--transition);
    opacity: 0.92;
}

.gal-arrow:hover { background: var(--red); color: var(--white); transform: translateY(-50%) scale(1.08); opacity: 1; }
.gal-arrow:disabled { opacity: 0.25; pointer-events: none; }
.gal-arrow--prev { left: -1.5rem; }
.gal-arrow--next { right: -1.5rem; }

/* Dots */
.gal-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.gal-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition), width var(--transition);
}

.gal-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}

/* Counter */
.gal-counter {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.05em;
}

/* ── LIGHTBOX ── */
.gal-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-lightbox[hidden] { display: none; }

.gal-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 18, 0.96);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.gal-lb-stage {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(92vw, 1100px);
    width: 100%;
    padding: 0 4rem;
}

.gal-lb-img-wrap {
    width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius);
}

.gal-lb-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.gal-lb-img-wrap img.loading {
    opacity: 0;
    transform: scale(0.97);
}

.gal-lb-caption {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1.1rem;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gal-lb-counter {
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-top: 0.4rem;
    text-align: center;
}

/* Lightbox close */
.gal-lb-close {
    position: fixed;
    top: 1.25rem; right: 1.25rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background var(--transition);
}

.gal-lb-close:hover { background: var(--red); border-color: var(--red); }

/* Lightbox arrows */
.gal-lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background var(--transition), border-color var(--transition);
}

.gal-lb-arrow:hover { background: var(--red); border-color: var(--red); }
.gal-lb-arrow--prev { left: 1rem; }
.gal-lb-arrow--next { right: 1rem; }
.gal-lb-arrow:disabled { opacity: 0.2; pointer-events: none; }

/* Touch swipe hint on mobile */
@media (max-width: 600px) {
    .gal-lb-stage { padding: 0 0.5rem; }
    .gal-lb-arrow--prev { left: 0.25rem; }
    .gal-lb-arrow--next { right: 0.25rem; }
    .gal-lb-arrow { width: 40px; height: 40px; }
    .gal-arrow--prev { left: -0.75rem; }
    .gal-arrow--next { right: -0.75rem; }
    .gal-arrow { width: 38px; height: 38px; }
}

/* ── FAQ ── */
.faq-section { background: var(--light); }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition);
    gap: 1rem;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: 'Barlow', sans-serif;
    color: var(--dark);
}

.faq-question:hover { background: rgba(0,0,0,0.02); }

.faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--red);
    color: var(--white);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--gray);
    line-height: 1.75;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer { display: block; }

/* ── CONTACT ── */
.contact-section { background: var(--white); }

.contact-card {
    background: var(--dark);
    border-radius: 2.5rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.contact-info {
    padding: 4rem;
    color: var(--white);
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-icon {
    width: 44px; height: 44px;
    border-radius: 0.75rem;
    background: rgba(206,17,38,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-item-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.2rem;
}

.contact-item-value {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.social-link:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.contact-map {
    position: relative;
    background: var(--dark-3);
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) contrast(1.1) brightness(0.85);
}

/* ── FOOTER ── */
.site-footer {
    background: var(--dark-2);
    color: rgba(255,255,255,0.5);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin: 0 auto 1.25rem;
    opacity: 0.35;
    filter: grayscale(1);
    border-radius: 4px;
}

.footer-text { font-size: 0.9rem; margin-bottom: 1.5rem; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
}

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

.footer-copy { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-card { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-info { padding: 2.5rem; }
}

@media (max-width: 500px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}
