/* ── _starter Luxury Dark Theme ── */
:root {
    --primary: #d4a953;
    --primary-dark: #b8920e;
    --primary-glow: rgba(212, 169, 83, .22);
    --accent: #f0c75e;
    --accent-soft: #e8b730;
    --panel: #080d15;
    --card: #0e1520;
    --card-hover: #131b28;
    --text: #e9e4dc;
    --text-secondary: #948e82;
    --text-muted: #5e5a52;
    --border: #1c2536;
    --border-glow: #2a3548;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow: 0 2px 8px rgba(0, 0, 0, .40);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .55);
    --shadow-gold: 0 0 24px var(--primary-glow);
    --container: 1160px;
    --grad-hero: linear-gradient(175deg, #0c1422 0%, #0a101b 40%, #080e18 100%);
    --grad-section: linear-gradient(180deg, #0a101c 0%, #0e1624 100%);
    --grad-card: linear-gradient(160deg, #11192a 0%, #0e1521 100%);
    --grad-gold: linear-gradient(135deg, #d4a953 0%, #f0c75e 50%, #c9972d 100%);
    --grad-gold-subtle: linear-gradient(135deg, rgba(212,169,83,.08) 0%, rgba(240,199,94,.05) 100%);
    --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    background: var(--panel);
    color: var(--text);
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.06; margin-bottom: 16px; font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); line-height: 1.22; margin-bottom: 14px; font-weight: 700; }
h3 { font-size: 1.08rem; margin-bottom: 8px; font-weight: 700; }
p { margin-bottom: 14px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.content-narrow { max-width: 800px; }
.section { padding: 56px 0; }
.section-soft { background: var(--grad-section); }
.section-heading { max-width: 700px; margin-bottom: 26px; }
.section-heading h2 {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.text-muted {
    color: var(--text-secondary);
    font-size: .92rem;
}

/* ── Eyebrow ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad-gold);
    box-shadow: 0 0 8px var(--primary-glow);
}

.meta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.meta-inline span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(212,169,83,.06);
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(8, 13, 21, .94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -.01em;
}
.brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--border);
    box-shadow: 0 0 12px var(--primary-glow);
}
.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.site-nav a {
    color: var(--text-secondary);
    font-size: .92rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    transition: all .2s;
}
.site-nav a:hover {
    text-decoration: none;
    background: rgba(212, 169, 83, .10);
    color: var(--primary);
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
}
.hero::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,169,83,.10) 0%, transparent 70%);
    pointer-events: none;
}
.hero::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,199,94,.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 760px) {
    .hero-grid { grid-template-columns: minmax(0, 1.8fr) auto; }
}
.hero-logo {
    width: 136px;
    height: 136px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 0 40px rgba(212, 169, 83, .25), 0 8px 40px rgba(0,0,0,.4);
    background: var(--card);
    padding: 8px;
    border: 2px solid var(--border-glow);
}
.hero h1 {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.hero-pills a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    color: var(--text-secondary);
    font-size: .86rem;
    font-weight: 700;
    transition: all .2s;
}
.hero-pills a:hover {
    text-decoration: none;
    color: var(--primary);
    border-color: rgba(212,169,83,.35);
    background: rgba(212,169,83,.08);
}

.actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-weight: 700;
    font-size: .94rem;
    transition: all .25s;
    cursor: pointer;
    letter-spacing: .01em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
    background: var(--grad-gold);
    color: #0a0e17;
    border: none;
    box-shadow: 0 4px 18px rgba(212, 169, 83, .30);
}
.btn-primary:hover {
    box-shadow: 0 6px 28px rgba(212, 169, 83, .45);
    transform: translateY(-2px);
    color: #0a0e17;
}
.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-glow);
    color: var(--text);
}
.btn-secondary:hover {
    border-color: rgba(212,169,83,.35);
    background: rgba(212,169,83,.06);
    color: var(--primary);
}

.grid { display: grid; gap: 20px; align-items: stretch; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); }
.card, .content-card {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.card { padding: 20px; }
.media-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.media-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.hub-card {
    height: 100%;
    transition: all .3s;
    position: relative;
}
.hub-card:hover {
    text-decoration: none;
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(212,169,83,.06);
    transform: translateY(-2px);
}
.hub-card h3 { color: var(--text); margin-bottom: 8px; }
.hub-card p { color: var(--text-secondary); margin-bottom: 0; flex: 1 1 auto; }
.hub-card-kicker {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(212,169,83,.10);
    color: var(--primary);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 16px;
}
.support-card {
    display: grid;
    gap: 8px;
    min-height: 140px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--grad-card);
    box-shadow: var(--shadow);
    color: var(--text);
    transition: all .3s;
}
.support-card:hover {
    text-decoration: none;
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), 0 0 16px rgba(212,169,83,.05);
    transform: translateY(-2px);
}
.support-card strong { font-size: 1rem; color: var(--primary); }
.support-card span { color: var(--text-secondary); font-size: .92rem; line-height: 1.6; }
.support-card-muted {
    background: var(--grad-gold-subtle);
    border-color: rgba(212,169,83,.12);
}
.support-footnote { margin-top: 18px; }

.content-card {
    padding: clamp(24px, 4vw, 36px);
    border-radius: var(--radius-lg);
}
.content-card ul, .content-card ol { padding-left: 24px; color: var(--text-secondary); }
.content-card ul li, .content-card ol li { margin-bottom: 6px; }
.content-card img { max-width: 100%; border-radius: var(--radius); }
.content-card h2 { margin-top: 32px; color: var(--text); }

.content-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 14px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}
.content-nav a, .related-items a {
    display: block;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(212,169,83,.04);
    color: var(--text);
    font-weight: 600;
    transition: all .2s;
}
.content-nav a:hover, .related-items a:hover {
    border-color: var(--border-glow);
    background: rgba(212,169,83,.08);
    text-decoration: none;
    color: var(--primary);
}
.content-nav a[href="#"] { opacity: .6; }
.related-items { margin-top: 20px; }
.related-items ul { list-style: none; padding-left: 0; display: grid; gap: 10px; }
.related-items:empty { display: none; }

.latest-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    align-items: stretch;
}
.latest-panel {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}
.latest-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.latest-panel-head h3 { margin: 0; font-size: 1.02rem; }
.latest-panel-head a { color: var(--text-secondary); font-size: .88rem; font-weight: 600; }
.latest-panel-head a:hover { color: var(--primary); }
.content-latest-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; align-content: start; }
.content-latest-item { min-width: 0; }
.content-latest-link {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(212,169,83,.02);
    color: var(--text);
    transition: all .25s;
    min-height: 102px;
}
.content-latest-link:hover {
    text-decoration: none;
    border-color: var(--border-glow);
    background: rgba(212,169,83,.06);
    box-shadow: 0 4px 18px rgba(0,0,0,.2);
}
.content-latest-thumb {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--card);
    flex: 0 0 76px;
}
.content-latest-thumb-fallback {
    display: block;
    background: var(--grad-gold-subtle);
}
.content-latest-body { min-width: 0; display: grid; gap: 6px; align-content: start; }
.content-latest-meta { color: var(--text-muted); font-size: .76rem; font-weight: 600; }
.content-latest-title {
    color: var(--text);
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.empty-state {
    padding: 16px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.02);
    color: var(--text-muted);
    font-size: .9rem;
    text-align: center;
}

.archive-hero-section { padding-bottom: 28px; }
.archive-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--grad-card);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.archive-hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,169,83,.06) 0%, transparent 70%);
    pointer-events: none;
}
.archive-hero-copy { max-width: 740px; position: relative; z-index: 1; }
.archive-hero-copy .lead { margin-bottom: 0; }
.archive-hero-card h1 { margin-bottom: 10px; }
.archive-hero-meta {
    display: grid;
    gap: 10px;
    justify-items: end;
    position: relative;
    z-index: 1;
}
.archive-hero-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    background: rgba(212,169,83,.06);
    color: var(--primary);
    font-size: .84rem;
    font-weight: 700;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    align-items: stretch;
}
.archive-card { padding: 0; overflow: hidden; height: 100%; }
.archive-card-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    color: var(--text);
    height: 100%;
    transition: all .3s;
}
.archive-card-link:hover {
    text-decoration: none;
    border-color: var(--border-glow);
    box-shadow: 0 8px 30px rgba(0,0,0,.3), 0 0 20px rgba(212,169,83,.04);
}
.archive-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: var(--grad-gold-subtle);
}
.archive-card-thumb-fallback {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--grad-gold-subtle);
    border-bottom: 1px solid var(--border);
}
.archive-card-body {
    display: grid;
    gap: 8px;
    padding: 18px;
    min-width: 0;
    align-content: start;
    min-height: 180px;
}
.archive-card-meta { color: var(--text-muted); font-size: .76rem; font-weight: 600; }
.archive-card-title {
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.archive-card-summary {
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.archive-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}
.archive-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    color: var(--text-secondary);
    font-weight: 700;
    transition: all .2s;
}
.archive-page-link:hover {
    text-decoration: none;
    border-color: var(--border-glow);
    background: rgba(212,169,83,.08);
    color: var(--primary);
}
.archive-page-link.is-current {
    background: var(--grad-gold);
    border-color: transparent;
    color: #0a0e17;
    box-shadow: 0 2px 12px rgba(212,169,83,.25);
}

.breadcrumbs, .kp-breadcrumb ol {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-muted);
    font-size: .88rem;
    font-weight: 600;
}
.breadcrumbs a, .kp-breadcrumb a { color: var(--text-muted); }
.breadcrumbs a:hover, .kp-breadcrumb a:hover { color: var(--primary); }
.breadcrumbs .current { color: var(--primary); }

.faq-list { display: grid; gap: 10px; margin-top: 18px; }
.faq-list details {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    transition: all .2s;
}
.faq-list details:hover { border-color: var(--border-glow); }
.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
    font-size: .95rem;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { color: var(--text-secondary); margin: 12px 0 0; font-size: .92rem; }

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
    gap: 28px;
    align-items: stretch;
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(22px, 4vw, 32px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.hero-shell::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,169,83,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-shell-article { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.45fr); }
.hero-shell-media { min-width: 0; }
.hero-shell-media-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.hero-shell-body { min-width: 0; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.hero-shell-body > *:last-child { margin-bottom: 0; }
.hero-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--border);
}
.hero-logo-image {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    object-fit: cover;
    border: 2px solid var(--border-glow);
    background: var(--card);
    box-shadow: 0 0 32px rgba(212, 169, 83, .15), var(--shadow-lg);
}

.info-grid { display: grid; gap: 14px; margin-bottom: 26px; }
.info-grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); }
.info-item {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(212,169,83,.04);
    transition: all .2s;
}
.info-item strong { display: block; margin-bottom: 8px; color: var(--primary); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.info-item p { margin: 0; color: var(--text); font-weight: 600; }
.info-item p:empty::before { content: "—"; color: var(--text-muted); }

.notice-strip {
    margin-bottom: 20px;
    padding: 16px 18px;
    border: 1px solid rgba(212,169,83,.18);
    border-radius: var(--radius-sm);
    background: rgba(212,169,83,.06);
    color: var(--primary);
    font-weight: 600;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 18px;
}
.screenshot-card {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow);
    transition: all .3s;
}
.screenshot-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 20px rgba(212,169,83,.08);
    transform: scale(1.02);
}
.screenshot-card[style*="display: none"] { display: none !important; }

.content-actions {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--border);
}

.prose { color: var(--text); }
.prose h2 {
    margin-top: 30px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
    font-size: 1.22rem;
    color: var(--text);
}
.prose a { color: var(--primary); }
.prose ul, .prose ol { padding-left: 24px; color: var(--text-secondary); }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); }

.error-wrap {
    min-height: 55vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 56px 0;
}
.error-code {
    font-size: clamp(4.5rem, 18vw, 9rem);
    font-weight: 900;
    line-height: 1;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    letter-spacing: -.03em;
}
.error-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }

.site-footer {
    margin-top: 48px;
    padding: 36px 0;
    background: var(--grad-hero);
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
@media (min-width: 760px) {
    .footer-grid { grid-template-columns: 1fr auto; align-items: start; }
}
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-grid a { color: var(--text-muted); font-weight: 600; font-size: .9rem; }
.footer-grid a:hover { color: var(--primary); }
.footer-grid strong { color: var(--text); }

.contact-card {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    padding: 28px 20px;
    transition: all .3s;
}
.contact-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 24px rgba(212,169,83,.06);
}
.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--grad-gold-subtle);
    border: 1px solid rgba(212,169,83,.15);
    font-size: 1.5rem;
    margin-bottom: 6px;
    transition: all .3s;
}
.contact-card:hover .contact-card-icon {
    box-shadow: 0 0 20px rgba(212,169,83,.12);
}
.contact-card-title { font-size: 1.05rem; color: var(--text); }
.contact-card-desc { color: var(--text-secondary); font-size: .9rem; margin: 0; }
.contact-card-address {
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}
.contact-card .btn { width: 100%; }

@media (max-width: 680px) {
    .header-inner { align-items: flex-start; flex-direction: column; }
    .site-nav { justify-content: flex-start; }
    .hero { padding: 48px 0; }
    .hero-shell, .hero-shell-article { grid-template-columns: 1fr; }
    .hero-shell-media-logo { justify-content: flex-start; }
    .hero-logo-image { width: 92px; height: 92px; border-radius: 20px; }
    .section { padding: 34px 0; }
    .content-card { padding: 20px; }
    .meta-inline { gap: 8px; }
    .meta-inline span { width: 100%; justify-content: center; }
    .actions-row { flex-direction: column; }
    .actions-row .btn { width: 100%; }
    .hero-pills a { width: 100%; justify-content: center; }
    .content-nav { grid-template-columns: 1fr; }
    .section-heading { margin-bottom: 18px; }
    .screenshot-grid { grid-template-columns: 1fr; }
    .latest-panel { padding: 18px; }
    .latest-panel-head { align-items: flex-start; flex-direction: column; }
    .content-latest-link { grid-template-columns: 64px minmax(0, 1fr); }
    .content-latest-thumb { width: 64px; height: 64px; }
    .archive-hero-card { grid-template-columns: 1fr; padding: 22px; }
    .archive-hero-meta { justify-items: start; }
}
