/* ============================================================
   God Goals Grind — ggg-theme
   Palette: ink #0C0A12 · panel #15111F · ivory #F4F1EA
            purple #8B30FF · volt #C8FF1E
   Type: Anton (display) · Barlow (body) · Barlow Condensed (ui)
   ============================================================ */

:root {
    --ink: #0C0A12;
    --panel: #15111F;
    --ivory: #F4F1EA;
    --purple: #8B30FF;
    --volt: #C8FF1E;
    --ivory-75: rgba(244, 241, 234, 0.75);
    --ivory-65: rgba(244, 241, 234, 0.65);
    --ivory-60: rgba(244, 241, 234, 0.6);
    --ivory-45: rgba(244, 241, 234, 0.45);
    --ivory-35: rgba(244, 241, 234, 0.35);
    --hairline: rgba(244, 241, 234, 0.08);
    --font-display: 'Anton', sans-serif;
    --font-body: 'Barlow', -apple-system, sans-serif;
    --font-ui: 'Barlow Condensed', sans-serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--ink);
}

/* Respect iOS Dynamic Type */
html { font: -apple-system-body; }

body {
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: var(--volt); color: var(--ink); }
input::placeholder { color: rgba(244, 241, 234, 0.4); }

img { max-width: 100%; }
a { color: var(--volt); }

.ggg-wrap { max-width: 1240px; margin: 0 auto; }

/* ---------- animations ---------- */
@keyframes ggg-pulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(139,48,255,0.5)) drop-shadow(0 0 14px rgba(200,255,30,0.18)); }
    50%      { filter: drop-shadow(0 0 14px rgba(139,48,255,0.9)) drop-shadow(0 0 30px rgba(200,255,30,0.55)); }
}
@keyframes ggg-ring {
    0%   { transform: translate(-50%,-50%) scale(0.5); opacity: 0.85; }
    80%  { opacity: 0; }
    100% { transform: translate(-50%,-50%) scale(1.7); opacity: 0; }
}
@keyframes ggg-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ggg-anim, .ggg-marquee-track { animation: none !important; }
}

/* ---------- header ---------- */
.ggg-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px clamp(20px, 4vw, 56px);
    background: rgba(12, 10, 18, 0.88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hairline);
}
.ggg-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ivory);
}
.ggg-brand img {
    height: 46px;
    width: auto;
    flex-shrink: 0;
    animation: ggg-pulse 2.8s ease-in-out infinite;
}
.ggg-brand span {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}
.ggg-brand b { color: var(--purple); font-weight: 400; }
.ggg-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 34px);
    flex-wrap: wrap;
}
.ggg-nav a {
    color: var(--ivory-75);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.ggg-nav a:hover { color: var(--volt); }
.ggg-nav .ggg-btn-subscribe {
    background: var(--volt);
    color: var(--ink);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 4px;
}
.ggg-nav .ggg-btn-subscribe:hover { background: var(--purple); color: var(--ivory); }

/* ---------- hero ---------- */
.ggg-hero {
    position: relative;
    padding: clamp(72px, 11vw, 150px) clamp(20px, 4vw, 56px) clamp(56px, 8vw, 110px);
    background: radial-gradient(ellipse 70% 60% at 70% 10%, rgba(139,48,255,0.22), transparent 65%), var(--ink);
}
.ggg-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.ggg-hero-copy { flex: 1 1 340px; min-width: 0; }
.ggg-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.ggg-kicker::before {
    content: "";
    width: 36px;
    height: 4px;
    background: var(--volt);
    flex-shrink: 0;
}
/* hero kicker gets a matching line on the other side */
.ggg-hero .ggg-kicker::after {
    content: "";
    width: 36px;
    height: 4px;
    background: var(--volt);
    flex-shrink: 0;
}
.ggg-kicker span {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ivory-65);
}
.ggg-hero h1 {
    margin: 0 0 28px;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(3.75rem, 9vw, 8.5rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
}
.ggg-hero h1 span { display: block; }
.ggg-h1-god { color: var(--ivory); }
.ggg-h1-goals { color: rgba(139,48,255,0.18); -webkit-text-stroke: 2px var(--purple); }
.ggg-h1-grind { color: var(--volt); }
.ggg-hero p {
    margin: 0 0 36px;
    max-width: 480px;
    font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
    line-height: 1.55;
    color: rgba(244,241,234,0.78);
    text-wrap: pretty;
}
.ggg-hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ggg-btn-primary {
    display: inline-block;
    background: var(--purple);
    color: var(--ivory);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 38px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(139,48,255,0.4);
}
.ggg-btn-primary:hover {
    background: var(--volt);
    color: var(--ink);
    box-shadow: 0 8px 32px rgba(200,255,30,0.35);
}
.ggg-link-underline {
    color: rgba(244,241,234,0.7);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--volt);
    padding-bottom: 3px;
}
.ggg-link-underline:hover { color: var(--volt); }

.ggg-hero-art { flex: 1 1 220px; display: flex; justify-content: center; }
.ggg-hero-copy { display: flex; flex-direction: column; }
.ggg-hero-copy .ggg-kicker { order: -1; }   /* desktop: kicker above headline */
.ggg-headrow { display: flex; align-items: center; gap: 18px; }
.ggg-emblem-mobile { display: none; }
.ggg-emblem-stage {
    position: relative;
    width: clamp(240px, 100%, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ggg-emblem-glow {
    position: absolute;
    inset: -6%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,48,255,0.4) 0%, rgba(139,48,255,0.12) 48%, transparent 70%);
}
/* rings are anchored to the emblem wrapper, so they can never drift */
.ggg-emblem-wrap {
    position: relative;
    width: 86%;
}
.ggg-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88%;
    height: auto;
    transform: translate(-50%,-50%);
    animation: ggg-ring 3s ease-out infinite;
}
.ggg-ring-2 { animation-delay: 1s; }
.ggg-ring-3 { animation-delay: 2s; opacity: 0.55; }
.ggg-emblem {
    display: block;
    position: relative;
    width: 100%;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.55));
}

/* ---------- marquee ---------- */
.ggg-marquee {
    background: var(--volt);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--ink);
}
.ggg-marquee-track {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    animation: ggg-marquee 28s linear infinite;
}

/* ---------- sections ---------- */
.ggg-section {
    padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 56px);
    background: var(--ink);
}
.ggg-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: clamp(32px, 5vw, 56px);
}
.ggg-section-head h2, .ggg-section-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1;
}
.ggg-accent-purple { color: var(--purple); }
.ggg-accent-volt { color: var(--volt); }
.ggg-section-head .ggg-more {
    color: var(--volt);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.ggg-section-head .ggg-more:hover { color: var(--ivory); }

/* ---------- post grid + cards ---------- */
.ggg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: clamp(20px, 2.5vw, 32px);
}
.ggg-card {
    display: flex;
    flex-direction: column;
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.ggg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139,48,255,0.6);
}
.ggg-card-media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1D1430 0%, #2A1747 55%, #3A1C66 100%);
    text-decoration: none;
}
.ggg-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ggg-card-media .ggg-card-mono {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: 0.06em;
    color: rgba(139,48,255,0.35);
}
.ggg-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--volt);
    color: var(--ink);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}
.ggg-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 22px 26px;
    flex: 1;
}
.ggg-card-body h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.4375rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
}
.ggg-card-body h3 a { color: var(--ivory); text-decoration: none; }
.ggg-card-body h3 a:hover { color: var(--volt); }
.ggg-card-excerpt {
    margin: 0;
    font-size: 0.96875rem;
    line-height: 1.55;
    color: var(--ivory-65);
    text-wrap: pretty;
}
.ggg-card-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory-45);
}
.ggg-card-meta .ggg-dot { color: var(--purple); }

/* ---------- about strip ---------- */
.ggg-about {
    padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 56px);
    background: var(--panel);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}
.ggg-about-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.ggg-about-photo { display: flex; justify-content: center; }
.ggg-about-photo-frame { position: relative; width: min(300px, 70vw); }
.ggg-about-photo-frame img {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(244,241,234,0.12);
}
.ggg-about-badge {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: var(--purple);
    color: var(--ivory);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 4px;
    transform: rotate(-3deg);
}
.ggg-about h2 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.02;
}
.ggg-about p {
    margin: 0 0 26px;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.65;
    color: var(--ivory-75);
    text-wrap: pretty;
}
.ggg-about .ggg-kicker { margin-bottom: 18px; }

/* ---------- merch ---------- */
.ggg-merch-card {
    display: flex;
    flex-direction: column;
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.ggg-merch-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200,255,30,0.5);
}
.ggg-merch-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: #1A1526;
}
.ggg-merch-media img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    border-radius: 6px;
}
.ggg-merch-media .ggg-merch-mono {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 0.06em;
    color: rgba(244,241,234,0.14);
    text-transform: uppercase;
}
.ggg-merch-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-top: 1px solid var(--hairline);
}
.ggg-merch-name {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1.1875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory);
}
.ggg-merch-price {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--volt);
}

/* ---------- merch coming soon ---------- */
.ggg-merch-soon {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    flex-wrap: wrap;
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: clamp(28px, 4vw, 48px);
}
.ggg-merch-soon img {
    width: min(220px, 50vw);
    border-radius: 8px;
    flex-shrink: 0;
}
.ggg-merch-soon > div { flex: 1 1 300px; }
.ggg-merch-soon h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--volt);
}
.ggg-merch-soon p {
    margin: 0 0 20px;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--ivory-75);
    max-width: 520px;
}

/* ---------- newsletter ---------- */
.ggg-newsletter {
    background: var(--volt);
    padding: clamp(64px, 9vw, 110px) clamp(20px, 4vw, 56px);
}
.ggg-newsletter-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.ggg-newsletter h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    line-height: 0.98;
    color: var(--ink);
}
.ggg-newsletter p {
    margin: 0 auto 36px;
    max-width: 460px;
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    line-height: 1.55;
    color: rgba(12,10,18,0.75);
    font-weight: 500;
    text-wrap: pretty;
}
.ggg-newsletter form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.ggg-newsletter input[type="email"] {
    flex: 1 1 280px;
    max-width: 420px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: var(--ivory);
    background: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 4px;
    outline: none;
}
.ggg-newsletter input[type="email"]:focus { border-color: var(--purple); }
.ggg-newsletter button {
    padding: 16px 36px;
    background: var(--ink);
    color: var(--volt);
    border: 2px solid var(--ink);
    border-radius: 4px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1.1875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}
.ggg-newsletter button:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--ivory);
}
.ggg-newsletter .ggg-fineprint {
    margin: 18px 0 0;
    font-size: 0.875rem;
    color: rgba(12,10,18,0.55);
    font-weight: 500;
}
/* members form feedback */
.ggg-newsletter form.success .ggg-form-fields,
.ggg-newsletter form.error .ggg-form-msg-error { display: none; }
.ggg-form-msg { display: none; font-weight: 600; color: var(--ink); font-size: 1.125rem; margin: 8px 0 0; }
.ggg-newsletter form.success .ggg-form-msg-success { display: block; }
.ggg-newsletter form.error .ggg-form-msg-err { display: block; }

/* ---------- footer ---------- */
.ggg-footer {
    background: var(--ink);
    border-top: 1px solid var(--hairline);
    padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 56px) 32px;
}
.ggg-footer-inner { max-width: 1240px; margin: 0 auto; }
.ggg-footer-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.ggg-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ivory);
}
.ggg-footer-brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 40%;
}
.ggg-footer-brand span {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.ggg-footer-brand b { color: var(--purple); font-weight: 400; }
.ggg-footer-nav, .ggg-footer-social { display: flex; gap: clamp(18px, 3vw, 36px); flex-wrap: wrap; }
.ggg-footer-social { gap: 20px; }
.ggg-footer a:not(.ggg-footer-brand) {
    color: var(--ivory-60);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.ggg-footer a:not(.ggg-footer-brand):hover { color: var(--volt); }
.ggg-footer-legal {
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(244,241,234,0.06);
    font-size: 0.875rem;
    color: var(--ivory-35);
    text-align: center;
}
.ggg-builtby { font-size: 0.8125rem; display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; }
.ggg-builtby img { height: 18px; width: 18px; border-radius: 4px; }
.ggg-builtby a { color: inherit; text-decoration: underline; font-family: inherit; letter-spacing: normal; text-transform: none; }
.ggg-builtby a:hover { color: var(--volt); }

/* ---------- post page ---------- */
.ggg-article { padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 56px); }
.ggg-article-inner { max-width: 760px; margin: 0 auto; }
.ggg-article-header { margin-bottom: 36px; }
.ggg-article-header .ggg-card-tag { position: static; display: inline-block; margin-bottom: 18px; }
.ggg-article h1 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.02;
}
.ggg-article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory-45);
}
.ggg-article-feature { margin: 36px 0; }
.ggg-article-feature img { width: 100%; border-radius: 10px; }

.ggg-content {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(244,241,234,0.85);
}
.ggg-content h2, .ggg-content h3 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--ivory);
    margin: 2em 0 0.6em;
}
.ggg-content h2 { font-size: 1.75rem; }
.ggg-content h3 { font-size: 1.375rem; }
.ggg-content a { color: var(--volt); }
.ggg-content blockquote {
    margin: 1.6em 0;
    padding: 4px 0 4px 22px;
    border-left: 4px solid var(--purple);
    font-style: italic;
    color: var(--ivory-75);
}
.ggg-content img { border-radius: 8px; }
.ggg-content .kg-embed-card { margin: 1.6em 0; }
.ggg-content .kg-embed-card iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}
.ggg-content figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--ivory-45);
    margin-top: 8px;
}
.ggg-content hr {
    border: none;
    border-top: 1px solid var(--hairline);
    margin: 2.4em 0;
}
.ggg-content pre {
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 16px 20px;
    overflow-x: auto;
    font-size: 0.9375rem;
}

/* Koenig editor width cards */
.ggg-content .kg-width-wide {
    position: relative;
    width: min(85vw, 1100px);
    margin-left: calc(50% - min(42.5vw, 550px));
}
.ggg-content .kg-width-full {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* ---------- pagination ---------- */
.ggg-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: clamp(36px, 5vw, 56px);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.ggg-pagination a { color: var(--volt); text-decoration: none; }
.ggg-pagination a:hover { color: var(--ivory); }
.ggg-pagination .ggg-page-num { color: var(--ivory-45); }

/* ---------- page hero (index/tag/page) ---------- */
.ggg-page-hero {
    padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 56px) clamp(24px, 4vw, 48px);
    background: radial-gradient(ellipse 70% 60% at 70% 0%, rgba(139,48,255,0.18), transparent 65%), var(--ink);
}

/* ---------- mobile ---------- */
@media (max-width: 700px) {
    .ggg-header {
        padding-top: 10px;
        padding-bottom: 10px;
        justify-content: center;
        text-align: center;
    }
    .ggg-brand img { height: 36px; }
    .ggg-brand span { font-size: 1rem; }
    .ggg-nav {
        width: 100%;
        justify-content: center;
        gap: 18px;
    }
    .ggg-nav a { font-size: 0.9375rem; letter-spacing: 0.1em; }
    .ggg-nav .ggg-btn-subscribe { padding: 8px 16px; }

    .ggg-hero { padding-top: 44px; padding-bottom: 44px; }
    .ggg-hero h1 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
    .ggg-hero p { font-size: 1.0625rem; }

    /* emblem sits right of the headline; kicker drops below the pair */
    .ggg-hero-art { display: none; }
    .ggg-emblem-mobile { display: block; flex-shrink: 0; order: 2; align-self: flex-start; margin-top: -2px; margin-left: 30px; }
    .ggg-emblem-mobile .ggg-emblem-stage { width: min(96px, 26vw); }
    .ggg-hero-copy .ggg-kicker { order: 0; margin: 20px 0 24px; justify-content: center; }
    .ggg-hero-copy > p { display: none; }
    .ggg-hero-ctas { justify-content: center; }
    .ggg-btn-primary { padding: 14px 28px; font-size: 1.125rem; }

    .ggg-kicker span { font-size: 0.875rem; letter-spacing: 0.2em; }
    .ggg-marquee-track { font-size: 0.9375rem; }

    .ggg-section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
    .ggg-card-body { padding: 18px 18px 22px; }
    .ggg-card-body h3 { font-size: 1.25rem; }

    .ggg-about-badge { right: 0; bottom: -12px; font-size: 0.8125rem; padding: 8px 12px; }
    .ggg-merch-soon { padding: 24px; }
    .ggg-merch-soon img { width: min(160px, 60vw); margin: 0 auto; }

    .ggg-newsletter input[type="email"],
    .ggg-newsletter button { width: 100%; max-width: none; flex: 1 1 100%; }

    .ggg-footer-row { flex-direction: column; align-items: center; gap: 22px; }
    .ggg-footer-nav, .ggg-footer-social { justify-content: center; }
    .ggg-footer-legal { text-align: center; }

    .ggg-article h1 { font-size: 2rem; }
    .ggg-content { font-size: 1.0625rem; }
}
