:root {
    --bg: #101318;
    --bg-soft: #171b22;
    --bg-card: #1d232c;
    --text: #eef1f5;
    --text-muted: #aeb7c2;
    --border: #2d3542;
    --accent: #d6a84f;
    --accent-soft: rgba(214, 168, 79, 0.14);
    --max-width: 1120px;
    --radius: 18px;
}

/* ------------------------------------------------------------
   01 Base / reset
------------------------------------------------------------ */

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at top left, rgba(214, 168, 79, 0.10), transparent 32rem),
        linear-gradient(180deg, #101318 0%, #12161d 100%);
    color: var(--text);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    line-height: 1.6;
}

main {
    flex: 1;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 850px;
    margin-bottom: 1.75rem;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h3 {
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

:focus-visible {
    outline: 3px solid rgba(214, 168, 79, 0.7);
    outline-offset: 4px;
}

/* ------------------------------------------------------------
   02 Layout helpers / typography
------------------------------------------------------------ */

.container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
}

.narrow {
    max-width: 780px;
}

.section {
    padding: 5rem 0;
}

.section-tight {
    padding-top: 0;
    margin-top: -1rem;
}

.section-muted {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading p,
.narrow p,
.value-list p,
.card p {
    color: var(--text-muted);
}

.eyebrow {
    margin: 0 0 0.85rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lead {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.page-lead {
    max-width: 760px;
    color: var(--text-muted);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.highlight {
    color: var(--accent);
    text-shadow: 0 0 28px rgba(214, 168, 79, 0.18);
}

.muted {
    color: var(--text-muted);
}

/* ------------------------------------------------------------
   03 Header / navigation
------------------------------------------------------------ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(16, 19, 24, 0.84);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.brand-mark img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.05rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.site-nav a {
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

/* ------------------------------------------------------------
   04 Buttons / simple links
------------------------------------------------------------ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    font-weight: 750;
    text-decoration: none;
}

.button-primary {
    background: var(--accent);
    color: #15120a;
}

.button-primary:hover,
.button-primary:focus-visible {
    filter: brightness(1.08);
}

.button-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(214, 168, 79, 0.65);
}

.text-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 1.4rem;
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.back-link {
    display: inline-block;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

/* ------------------------------------------------------------
   05 Homepage
------------------------------------------------------------ */

.hero {
    padding: 7rem 0 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
    gap: 3rem;
    align-items: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.status-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(29, 35, 44, 0.78);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.status-card h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    letter-spacing: 0;
}

.status-card ul {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    padding: 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(29, 35, 44, 0.78);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.card::before,
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.card::before {
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.82;
}

.card::after {
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(16, 19, 24, 0.36), rgba(16, 19, 24, 0.78)),
        linear-gradient(180deg, rgba(16, 19, 24, 0.10), rgba(16, 19, 24, 0.62));
}

.card>* {
    position: relative;
    z-index: 2;
}

.card h3 {
    color: var(--text);
}

.card p {
    color: rgba(238, 241, 245, 0.82);
}

.card-dune::before {
    background-image: url("../img/card-dune.webp");
    background-position: center;
    opacity: 0.95;
}

.card-dune::after {
    background:
        linear-gradient(135deg, rgba(16, 19, 24, 0.26), rgba(16, 19, 24, 0.70)),
        linear-gradient(180deg, rgba(16, 19, 24, 0.08), rgba(16, 19, 24, 0.56));
}

.card-valheim::before {
    background-image: url("../img/card-valheim.jpg");
    background-position: center;
}

.card-minecraft::before {
    background-image: url("../img/card-minecraft.jpg");
    background-position: center;
}

.card-minecraft::after {
    background:
        linear-gradient(135deg, rgba(22, 54, 34, 0.42), rgba(16, 19, 24, 0.78)),
        linear-gradient(180deg, rgba(16, 19, 24, 0.12), rgba(16, 19, 24, 0.66));
}

.card-kicker {
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.values-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
}

.value-list {
    display: grid;
    gap: 1.5rem;
}

.value-list article {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.value-list article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

/* ------------------------------------------------------------
   06 Subpage hero
------------------------------------------------------------ */

.subpage-hero {
    position: relative;
    isolation: isolate;
    min-height: 300px;
    padding: 5.5rem 0 1rem;
    overflow: hidden;
}

.subpage-hero::before,
.subpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.subpage-hero::before {
    z-index: -2;
    background-position: center 35%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.46;
}

.subpage-hero::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(16, 19, 24, 0.06) 0%, rgba(16, 19, 24, 0.56) 58%, var(--bg) 100%),
        linear-gradient(90deg, rgba(16, 19, 24, 0.88) 0%, rgba(16, 19, 24, 0.34) 45%, rgba(16, 19, 24, 0.88) 100%);
}

.subpage-hero-inner {
    position: relative;
}

.subpage-hero h1 {
    max-width: 760px;
    margin-bottom: 1.25rem;
    font-size: clamp(3.4rem, 8vw, 7rem);
    line-height: 0.9;
}

.subpage-hero .page-lead {
    max-width: 760px;
}

.subpage-hero-rules+.section {
    padding-top: 2rem;
}

.subpage-hero-rules::before {
    background-image: url("../img/bg-rules.jpg");
}

.subpage-hero-servers::before {
    background-image: url("../img/bg-servers.jpg");
    background-position: center 45%;
    opacity: 0.68;
}

.subpage-hero-servers::after {
    background:
        linear-gradient(180deg, rgba(16, 19, 24, 0.04) 0%, rgba(16, 19, 24, 0.48) 58%, var(--bg) 100%),
        linear-gradient(90deg, rgba(16, 19, 24, 0.82) 0%, rgba(16, 19, 24, 0.28) 45%, rgba(16, 19, 24, 0.82) 100%);
}

.subpage-hero-dune::before {
    background-image: url("../img/card-dune.webp");
    background-position: center;
    opacity: 0.76;
}

.subpage-hero-dune::after {
    background:
        linear-gradient(180deg, rgba(16, 19, 24, 0.08) 0%, rgba(16, 19, 24, 0.54) 58%, var(--bg) 100%),
        linear-gradient(90deg, rgba(16, 19, 24, 0.86) 0%, rgba(16, 19, 24, 0.34) 45%, rgba(16, 19, 24, 0.86) 100%);
}

.subpage-hero-dune .eyebrow,
.subpage-hero-dune h1 {
    color: var(--text);
}

.subpage-hero-valheim::before {
    background-image: url("../img/card-valheim.jpg");
    background-position: center;
    opacity: 0.76;
}

.subpage-hero-minecraft::before {
    background-image: url("../img/card-minecraft.jpg");
    background-position: center;
    opacity: 0.76;
}

.subpage-hero-about h1 span {
    color: var(--accent);
}

.subpage-hero-about::before {
    background-image: url("../img/bg-about.jpg");
    background-position: center 42%;
    opacity: 0.50;
}

.subpage-hero-about::after {
    background:
        linear-gradient(180deg, rgba(16, 19, 24, 0.10) 0%, rgba(16, 19, 24, 0.62) 58%, var(--bg) 100%),
        linear-gradient(90deg, rgba(16, 19, 24, 0.88) 0%, rgba(16, 19, 24, 0.42) 45%, rgba(16, 19, 24, 0.88) 100%);
}

.subpage-hero-contact::before {
    background-image: url("../img/bg-contact.jpg");
    background-position: center 45%;
    opacity: 0.40;
}

/* ------------------------------------------------------------
   About page
------------------------------------------------------------ */

.timeline-list {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(29, 35, 44, 0.58);
}

.timeline-date {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.timeline-item h3 {
    margin-bottom: 0.35rem;
    color: var(--text);
}

.timeline-item p {
    color: var(--text-muted);
}

.memorial-panel {
    position: relative;
    overflow: hidden;
}

.memorial-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg,
            rgba(29, 35, 44, 0.98) 0%,
            rgba(29, 35, 44, 0.88) 55%,
            rgba(29, 35, 44, 0.58) 100%),
        url("../img/bg-darkviking.jpg");
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.95;
    pointer-events: none;
}

.memorial-panel>* {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .timeline-item {
        grid-template-columns: 1fr;
    }
}

.acknowledgement-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1.25rem;
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
}

.acknowledgement-list li {
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(16, 19, 24, 0.32);
    color: var(--text-muted);
}

.acknowledgement-list strong {
    color: var(--text);
}

@media (max-width: 640px) {
    .acknowledgement-list {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------------------
   Memorial pages
------------------------------------------------------------ */

.memorial-page {
    display: flex;
    align-items: center;
}

.memorial-card {
    max-width: 620px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(214, 168, 79, 0.06), rgba(29, 35, 44, 0.72)),
        rgba(29, 35, 44, 0.72);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.memorial-card h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(3rem, 7vw, 5.5rem);
}

.memorial-callsign {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.memorial-callsign strong {
    color: var(--accent);
    letter-spacing: 0.08em;
}

.memorial-years {
    margin: 1.5rem 0;
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 700;
}

.memorial-portrait {
    display: block;
    width: min(100%, 315px);
    height: auto;
    margin: 0 auto 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(214, 168, 79, 0.24);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.memorial-message {
    margin-bottom: 0.35rem;
    color: var(--text);
    font-size: 1.25rem;
}

.memorial-note {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-address {
    display: inline-block;
    margin: 0.5rem 0 1rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(214, 168, 79, 0.28);
    border-radius: 999px;
    background: rgba(214, 168, 79, 0.08);
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* ------------------------------------------------------------
   07 Content / legal / rules pages
------------------------------------------------------------ */

.content-page h1,
.legal-page h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal-page h1 {
    margin-bottom: 2rem;
}

.legal-page p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.legal-page p+p {
    margin-top: 1rem;
}

.updated {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

.rule-summary {
    margin: 0 0 2.75rem;
    padding: 1.35rem 1.6rem;
    border: 1px solid rgba(214, 168, 79, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(214, 168, 79, 0.10), rgba(29, 35, 44, 0.76)),
        rgba(29, 35, 44, 0.76);
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.75;
}

.rule-block {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.rule-block h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.rule-block p {
    color: var(--text-muted);
}

.rule-block p+p {
    margin-top: 1rem;
}

/* ------------------------------------------------------------
   08 Servers hub
------------------------------------------------------------ */

.server-section {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.server-section:first-child {
    border-top: 0;
    padding-top: 0;
}

.server-section-live .section-heading .eyebrow,
.server-section-live .section-heading h2 {
    color: var(--accent);
}

.server-section-planned .section-heading .eyebrow {
    color: #8fb4d8;
}

.server-section-planned .section-heading h2 {
    color: #c8d8ea;
}

.server-section-notes .section-heading .eyebrow {
    color: var(--text-muted);
}

.server-list {
    display: grid;
    gap: 1rem;
}

.server-list-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.server-list-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    overflow: hidden;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(29, 35, 44, 0.82);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20);
}

.server-list-card::before,
.server-list-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.server-list-card::before {
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.55;
}

.server-list-card::after {
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(16, 19, 24, 0.38), rgba(16, 19, 24, 0.86)),
        linear-gradient(180deg, rgba(16, 19, 24, 0.12), rgba(16, 19, 24, 0.72));
}

.server-list-card>* {
    position: relative;
    z-index: 2;
}

.server-card-dune::before {
    background-image: url("../img/card-dune.webp");
    background-position: center;
    opacity: 0.76;
}

.server-card-valheim::before {
    background-image: url("../img/card-valheim.jpg");
    background-position: center;
}

.server-card-minecraft::before {
    background-image: url("../img/card-minecraft.jpg");
    background-position: center;
}

.server-list-card-live {
    min-height: 260px;
    border-color: rgba(214, 168, 79, 0.38);
    background:
        linear-gradient(135deg, rgba(214, 168, 79, 0.14), rgba(29, 35, 44, 0.88)),
        rgba(29, 35, 44, 0.86);
}

.server-list-card h3 {
    margin: 0.45rem 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.server-list-card p {
    color: var(--text-muted);
}

.server-status {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.5rem;
    padding: 0.35rem 0.55rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.server-status-live {
    border-color: rgba(214, 168, 79, 0.55);
    color: var(--accent);
    background: rgba(214, 168, 79, 0.10);
}

.server-status-planned {
    border-color: rgba(143, 180, 216, 0.45);
    color: #c8d8ea;
    background: rgba(143, 180, 216, 0.10);
}

/* ------------------------------------------------------------
   09 Server detail pages
------------------------------------------------------------ */

.server-detail-section {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.server-detail-section:first-child {
    border-top: 0;
    padding-top: 0;
}

.server-detail-section .section-heading .eyebrow {
    color: var(--accent);
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.fact-card {
    padding: 1rem;
    border: 1px solid rgba(214, 168, 79, 0.20);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(214, 168, 79, 0.06), rgba(29, 35, 44, 0.72)),
        rgba(29, 35, 44, 0.72);
}

.fact-card:hover {
    border-color: rgba(214, 168, 79, 0.34);
}

.fact-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fact-card strong {
    color: var(--text);
}

.info-panel,
.steps-list,
.rule-mini-card,
.link-list a {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(29, 35, 44, 0.58);
}

.info-panel {
    padding: 1.35rem;
}

.info-panel p,
.info-panel li,
.steps-list li,
.rule-mini-card p {
    color: var(--text-muted);
}

.info-panel p+p {
    margin-top: 1rem;
}

.info-panel ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.info-panel ul+p {
    margin-top: 1.25rem;
}

.info-panel li+li {
    margin-top: 0.35rem;
}

.info-panel strong,
.steps-list strong,
.rule-mini-card strong {
    color: var(--text);
}

.info-panel li::marker,
.steps-list li::marker {
    color: var(--accent);
}

.steps-list {
    margin: 0;
    padding: 1.35rem 1.35rem 1.35rem 2.6rem;
    background: rgba(29, 35, 44, 0.64);
}

.steps-list li+li {
    margin-top: 0.45rem;
}

.steps-list-dune {
    position: relative;
    overflow: hidden;
}

.steps-list-dune::before,
.steps-list-dune::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.steps-list-dune::before {
    background-image:
        linear-gradient(90deg,
            rgba(29, 35, 44, 1) 0%,
            rgba(29, 35, 44, 0.96) 38%,
            rgba(29, 35, 44, 0.58) 58%,
            rgba(29, 35, 44, 0.30) 100%),
        url("../img/connect-dune.jpg");
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.60;
}

.steps-list-dune::after {
    background:
        linear-gradient(90deg,
            rgba(29, 35, 44, 0.98) 0%,
            rgba(29, 35, 44, 0.90) 42%,
            rgba(29, 35, 44, 0.44) 72%,
            rgba(29, 35, 44, 0.30) 100%);
}

.steps-list-dune li {
    position: relative;
    z-index: 1;
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.rule-mini-card {
    padding: 1.25rem;
}

.rule-mini-card-admin {
    grid-column: 1 / -1;
}

.rule-mini-card h3 {
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-size: 1.25rem;
}

.inline-note {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(214, 168, 79, 0.45);
    color: var(--text-muted);
    font-style: italic;
}

.link-list {
    display: grid;
    gap: 0.8rem;
}

.link-list a {
    display: block;
    padding: 1rem 1.1rem;
    border-color: rgba(214, 168, 79, 0.18);
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.link-list a:hover,
.link-list a:focus-visible {
    border-color: rgba(214, 168, 79, 0.55);
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

/* ------------------------------------------------------------
   10 Footer
------------------------------------------------------------ */

.site-footer {
    padding: 2rem 0;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.footer-inner p {
    margin: 0;
}

.footer-note {
    color: #7f8995;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

/* ------------------------------------------------------------
   11 Responsive
------------------------------------------------------------ */

@media (max-width: 820px) {

    .header-inner,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        flex-wrap: wrap;
    }

    .hero {
        padding: 4.5rem 0 3.5rem;
    }

    .hero-grid,
    .values-grid,
    .cards {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2.75rem, 15vw, 4.4rem);
    }
}

@media (max-width: 760px) {

    .server-list-two,
    .fact-grid,
    .rules-list {
        grid-template-columns: 1fr;
    }

    .rule-mini-card-admin {
        grid-column: auto;
    }
}

/* ------------------------------------------------------------
   12 Reduced motion
------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}