:root {
    --bg: #07111f;
    --bg-elevated: #0d1a2d;
    --bg-soft: #12233a;
    --line: rgba(232, 196, 120, 0.16);
    --text: #eef3fb;
    --muted: #9fb0c7;
    --copper: #d68a2a;
    --copper-bright: #f0b14a;
    --signal: #3ecfb2;
    --danger: #ff6b6b;
    --radius: 18px;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --font-display: "Syne", sans-serif;
    --font-body: "Outfit", sans-serif;
    --container: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(214, 138, 42, 0.18), transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 0%, rgba(62, 207, 178, 0.1), transparent 45%),
        linear-gradient(180deg, #091525 0%, var(--bg) 40%, #050d18 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    opacity: 0.04;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
    width: min(var(--container), calc(100% - 2.5rem));
    margin-inline: auto;
}

a {
    color: var(--copper-bright);
    text-decoration: none;
}

a:hover {
    color: #ffd27a;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(7, 17, 31, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--text);
}

.brand:hover {
    color: var(--text);
}

.brand-mark {
    width: 42px;
    height: 42px;
    color: var(--copper-bright);
    animation: pulse-wave 3.5s ease-in-out infinite;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.brand-mark.has-logo {
    animation: none;
    width: auto;
    height: 44px;
}

.brand-logo {
    height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 400;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.site-nav > a,
.nav-dropdown-toggle {
    color: var(--muted);
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    font-family: inherit;
    background: transparent;
    border: none;
    cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active,
.nav-dropdown.is-active > .nav-dropdown-toggle {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-caret {
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-caret,
.nav-dropdown:hover .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    min-width: 200px;
    padding: 0.45rem;
    border-radius: 14px;
    background: rgba(10, 18, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown-menu a {
    color: var(--muted);
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
    color: var(--text);
    background: rgba(214, 138, 42, 0.12);
}

.site-nav .nav-cta {
    margin-left: 0.35rem;
    background: linear-gradient(135deg, var(--copper), #b56a16);
    color: #1a1005 !important;
    font-weight: 600;
}

.site-nav .nav-cta-donate {
    margin-left: 0.35rem;
    background: linear-gradient(135deg, #3ecfb2, #2aa88f);
    color: #06241d !important;
}

.site-nav .nav-cta:hover {
    filter: brightness(1.08);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

/* Hero slider */
.hero-slider {
    position: relative;
    height: clamp(460px, 58vh, 580px);
    overflow: hidden;
    isolation: isolate;
    background: #050d18;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6.5s ease;
    z-index: 0;
}

.hero-slide.is-active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-bg-fallback {
    background:
        radial-gradient(circle at 70% 40%, rgba(214, 138, 42, 0.25), transparent 40%),
        linear-gradient(135deg, #0b1c33, #07111f 60%, #0a1f2e);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 13, 24, 0.88) 0%, rgba(5, 13, 24, 0.55) 48%, rgba(5, 13, 24, 0.35) 100%),
        linear-gradient(180deg, rgba(5, 13, 24, 0.25) 0%, rgba(5, 13, 24, 0.75) 100%);
}

.hero-slide-overlay.is-image-only {
    background:
        linear-gradient(180deg, rgba(5, 13, 24, 0.12) 0%, rgba(5, 13, 24, 0.28) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 0 4rem;
    max-width: 760px;
    width: 100%;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--signal);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-slide.is-active .hero-kicker,
.hero-slide.is-active h1,
.hero-slide.is-active .hero-lead,
.hero-slide.is-active .hero-actions {
    animation: fade-up 0.85s ease both;
}

.hero-slide.is-active h1 { animation-delay: 0.12s; }
.hero-slide.is-active .hero-lead { animation-delay: 0.22s; }
.hero-slide.is-active .hero-actions { animation-delay: 0.32s; }

.hero-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 0 rgba(62, 207, 178, 0.5);
    animation: ping 2s infinite;
}

.hero-slide h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6.5vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    max-width: 14ch;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #d5deeb;
    max-width: 36rem;
    margin: 0 0 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-slider-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    pointer-events: none;
}

.hero-nav-btn,
.hero-dot {
    pointer-events: auto;
}

.hero-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(7, 17, 31, 0.55);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.hero-nav-btn:hover {
    border-color: var(--copper-bright);
    color: var(--copper-bright);
}

.hero-dots {
    display: flex;
    gap: 0.45rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
}

.hero-dot.is-active {
    background: var(--copper-bright);
    width: 28px;
    border-radius: 999px;
}

.emergency-band {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    background: linear-gradient(90deg, rgba(214, 138, 42, 0.1), transparent 55%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.emergency-band-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.emergency-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    margin: 0.25rem 0 0.75rem;
}

.emergency-band p {
    color: var(--muted);
    margin: 0;
    max-width: 36rem;
}

.emergency-points {
    display: grid;
    gap: 0.85rem;
}

.emergency-points div {
    padding: 0.95rem 1.1rem;
    border-left: 3px solid var(--copper);
    background: linear-gradient(90deg, rgba(214, 138, 42, 0.08), transparent);
}

.emergency-points strong {
    display: block;
    color: var(--copper-bright);
    margin-bottom: 0.2rem;
}

.emergency-points span {
    color: var(--muted);
    font-size: 0.95rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s, background 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--copper-bright), var(--copper));
    color: #1a1005;
}

.btn-ghost {
    border-color: var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-head h2,
.page-hero h1,
.content-block h2,
.content-block h3 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0.2rem 0 0;
}

.section-label {
    color: var(--copper-bright);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-head p,
.page-hero p {
    color: var(--muted);
    margin: 0.5rem 0 0;
    max-width: 36rem;
}

.page-hero {
    padding: 3.5rem 0 1.5rem;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin: 0.3rem 0 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.intro-copy p {
    color: var(--muted);
    font-size: 1.08rem;
}

.stat-stack {
    display: grid;
    gap: 1rem;
}

.stat {
    padding: 1.25rem 1.4rem;
    border-left: 3px solid var(--copper);
    background: linear-gradient(90deg, rgba(214, 138, 42, 0.08), transparent);
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--copper-bright);
}

.stat span {
    color: var(--muted);
    font-size: 0.95rem;
}

.news-list,
.event-list {
    display: grid;
    gap: 1.25rem;
}

.news-item,
.event-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: inherit;
    transition: opacity 0.2s;
}

.news-item:hover,
.event-item:hover {
    opacity: 0.88;
    color: inherit;
}

.news-item:first-child,
.event-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.news-meta,
.event-meta {
    color: var(--copper-bright);
    font-size: 0.85rem;
    font-weight: 600;
}

.news-item h3,
.event-item h3 {
    margin: 0.25rem 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.news-item p,
.event-item p {
    margin: 0;
    color: var(--muted);
}

.news-thumb,
.event-date-box {
    width: 120px;
    min-height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-soft);
    display: grid;
    place-items: center;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 90px;
}

.event-date-box {
    text-align: center;
    border: 1px solid var(--line);
}

.event-date-box strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
    color: var(--copper-bright);
}

.event-date-box span {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    font-size: 0.95rem;
}

.content-block {
    max-width: 720px;
}

.content-block p,
.content-block li {
    color: var(--muted);
    font-size: 1.05rem;
}

.content-block h3 {
    margin-top: 2rem;
}

.form-panel {
    max-width: 640px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: rgba(13, 26, 45, 0.7);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text);
    font: inherit;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 2px solid rgba(214, 138, 42, 0.45);
    border-color: transparent;
}

.alert {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(62, 207, 178, 0.12);
    color: #8ef0d8;
    border: 1px solid rgba(62, 207, 178, 0.3);
}

.alert-error {
    background: rgba(255, 107, 107, 0.12);
    color: #ffb4b4;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.empty-state {
    padding: 2.5rem;
    text-align: center;
    color: var(--muted);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 0 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.footer-logo {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    font-size: 0.9rem;
}

.footer-brand p,
.site-footer li,
.site-footer a {
    color: var(--muted);
}

.site-footer h4 {
    margin: 0 0 0.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--copper-bright);
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 0.45rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 0.9rem;
}

.callsign {
    color: var(--signal) !important;
    font-weight: 600;
}

.article {
    max-width: 760px;
}

.article-meta {
    color: var(--copper-bright);
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-body {
    color: var(--muted);
    font-size: 1.08rem;
}

.article-body img {
    border-radius: 14px;
    margin: 1.5rem 0;
}

.membership-box {
    white-space: pre-wrap;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.freq-group {
    margin-bottom: 2.5rem;
}

.freq-group-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 0 0 1rem;
    color: var(--copper-bright);
}

.freq-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(13, 26, 45, 0.55);
}

.freq-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.freq-table th,
.freq-table td {
    padding: 0.95rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

.freq-table th {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.freq-table tr:last-child td {
    border-bottom: none;
}

.freq-table td strong {
    display: block;
    color: var(--text);
}

.freq-table td small {
    display: block;
    color: var(--muted);
    margin-top: 0.35rem;
    font-size: 0.88rem;
}

.freq-call {
    display: inline-block;
    margin-top: 0.25rem;
    color: var(--signal);
    font-size: 0.85rem;
    font-weight: 600;
}

.freq-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--copper-bright) !important;
    white-space: nowrap;
}

.freq-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.freq-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.freq-home-item {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(214, 138, 42, 0.08), rgba(13, 26, 45, 0.4));
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.freq-home-type {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--signal);
    font-weight: 600;
}

.freq-home-mhz {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--copper-bright);
    line-height: 1.1;
}

.freq-home-title {
    color: var(--text);
    font-weight: 500;
}

.freq-home-item small {
    color: var(--muted);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.board-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(13, 26, 45, 0.55);
    align-items: start;
}

.board-photo {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(214, 138, 42, 0.25), rgba(62, 207, 178, 0.12));
    display: grid;
    place-items: center;
}

.board-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-photo span {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--copper-bright);
}

.board-position {
    margin: 0;
    color: var(--signal);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.board-info h2 {
    margin: 0.25rem 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.board-call {
    margin: 0;
    color: var(--copper-bright);
    font-weight: 600;
    font-size: 0.95rem;
}

.board-bio {
    margin: 0.6rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.board-contact {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9rem;
}

.board-contact span {
    color: var(--muted);
}

.tuzuk-content h3 {
    margin-top: 1.75rem;
    color: var(--copper-bright);
}

.docs-group {
    margin-bottom: 2.5rem;
}

.docs-group-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 1rem;
    color: var(--copper-bright);
}

.docs-list {
    display: grid;
    gap: 0.85rem;
}

.doc-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(13, 26, 45, 0.55);
}

.doc-ext {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1a1005;
    background: linear-gradient(135deg, var(--copper-bright), var(--copper));
}

.doc-body h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.doc-body p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.doc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.doc-download {
    white-space: nowrap;
}

.inv-group {
    margin-bottom: 2.5rem;
}

.inv-group-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 1rem;
    color: var(--copper-bright);
}

.inv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.inv-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(13, 26, 45, 0.55);
}

.inv-photo {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(214, 138, 42, 0.2), rgba(62, 207, 178, 0.1));
    display: grid;
    place-items: center;
}

.inv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inv-photo span {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--copper-bright);
}

.inv-top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: start;
}

.inv-top h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.inv-qty {
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--signal);
}

.inv-model {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.inv-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.inv-status {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
}

.inv-status-calisir {
    background: rgba(62, 207, 178, 0.15);
    color: #8ef0d8;
}

.inv-status-bakimda {
    background: rgba(240, 177, 74, 0.15);
    color: #f0b14a;
}

.inv-status-arizali,
.inv-status-hurda {
    background: rgba(255, 107, 107, 0.15);
    color: #ffb4b4;
}

.inv-desc {
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.project-list {
    display: grid;
    gap: 1rem;
}

.project-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.25rem;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(13, 26, 45, 0.55);
    color: inherit;
    transition: opacity 0.2s, border-color 0.2s;
}

.project-item:hover {
    opacity: 0.92;
    color: inherit;
    border-color: rgba(214, 138, 42, 0.35);
}

.project-thumb {
    width: 140px;
    min-height: 100px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(214, 138, 42, 0.2), rgba(62, 207, 178, 0.1));
    display: grid;
    place-items: center;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100px;
}

.project-thumb span {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--copper-bright);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    margin-bottom: 0.4rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.project-item h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.project-item p {
    margin: 0;
    color: var(--muted);
}

.project-status {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-status-devam {
    background: rgba(62, 207, 178, 0.15);
    color: #8ef0d8;
}

.project-status-planlandi {
    background: rgba(240, 177, 74, 0.15);
    color: #f0b14a;
}

.project-status-tamamlandi {
    background: rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.project-status-askida {
    background: rgba(255, 107, 107, 0.15);
    color: #ffb4b4;
}

.donate-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: start;
}

.donate-card,
.donate-side {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(13, 26, 45, 0.6);
}

.donate-card h2,
.donate-side h3 {
    font-family: var(--font-display);
    margin: 0 0 1.1rem;
}

.donate-rows {
    display: grid;
    gap: 1rem;
}

.donate-row span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.donate-row strong {
    color: var(--text);
    font-size: 1.05rem;
    word-break: break-word;
}

.iban-copy {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.iban-copy strong {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 1.05rem;
    color: var(--copper-bright);
    letter-spacing: 0.03em;
}

.btn-copy {
    padding: 0.55rem 0.95rem;
    font-size: 0.88rem;
}

.donate-note {
    margin: 1.25rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.donate-side ul {
    margin: 0 0 1.25rem;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
}

.donate-thanks {
    color: var(--signal);
    font-weight: 600;
    margin: 0 0 1rem;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-wave {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.85; }
}

@keyframes wave-expand {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.08); opacity: 0.5; }
}

@keyframes ping {
    0% { box-shadow: 0 0 0 0 rgba(62, 207, 178, 0.55); }
    70% { box-shadow: 0 0 0 12px rgba(62, 207, 178, 0); }
    100% { box-shadow: 0 0 0 0 rgba(62, 207, 178, 0); }
}

@media (max-width: 1100px) {
    .freq-home-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero-slider {
        height: auto;
        min-height: 420px;
    }

    .hero-slide {
        position: relative;
        inset: auto;
        display: none;
        min-height: 420px;
    }

    .hero-slide.is-active {
        display: flex;
    }

    .nav-toggle { display: inline-block; }
    .site-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: rgba(7, 17, 31, 0.96);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .site-nav.is-open { display: flex; }
    .site-nav .nav-cta { margin-left: 0; text-align: center; }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        border-radius: 12px;
    }
    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0.35rem;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: none;
    }
    .nav-dropdown.is-open .nav-dropdown-menu {
        display: flex;
    }
    .intro-grid,
    .footer-grid,
    .gallery-grid,
    .freq-home-grid,
    .board-grid,
    .emergency-band-inner,
    .donate-layout { grid-template-columns: 1fr; }
    .board-card { grid-template-columns: 88px 1fr; }
    .board-photo { width: 88px; height: 88px; }
    .doc-item { grid-template-columns: 52px 1fr; }
    .doc-ext { width: 52px; height: 52px; font-size: 0.75rem; }
    .doc-download { grid-column: 1 / -1; justify-self: start; }
    .inv-grid { grid-template-columns: 1fr; }
    .inv-card { grid-template-columns: 72px 1fr; }
    .inv-photo { width: 72px; height: 72px; }
    .project-item { grid-template-columns: 88px 1fr; }
    .project-thumb { width: 88px; min-height: 72px; }
    .news-item,
    .event-item { grid-template-columns: 88px 1fr; }
    .news-thumb,
    .event-date-box { width: 88px; min-height: 72px; }
    .section-head { flex-direction: column; align-items: start; }
    .footer-bottom { flex-direction: column; }
}
