/* ============================================================
   CLARITY SPORTS — Ghost Theme Stylesheet
   ============================================================ */

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #8B6914;
  --black:       #0A0A0A;
  --black-2:     #111111;
  --black-3:     #1A1A1A;
  --black-4:     #242424;
  --white:       #F5F0E8;
  --gray:        #888880;
  --gray-light:  #BBBBAA;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── UTILS ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.sec-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: 46px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
}

.sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 34px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 34px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── TAGS / DATES ── */
.post-tag {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 3px 9px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.post-tag:hover { background: var(--gold); color: var(--black); }

.post-date, .post-reading-time {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,10,0.94);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 72px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand { text-decoration: none; display: flex; flex-direction: column; }

.nav-logo { height: 36px; width: auto; }

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.nav-brand-sub {
  font-family: var(--font-cond);
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gray);
  text-transform: uppercase;
  display: block;
}

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

.nav-links a {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-x-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-x-btn:hover { background: var(--gold); color: var(--black); }
.nav-x-btn svg { width: 12px; height: 12px; }

.nav-subscribe-btn {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-subscribe-btn:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 75% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 90%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Featured Card */
.featured-card {
  display: block;
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.22);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.featured-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-3px);
}

.featured-badge {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  z-index: 2;
}

.featured-img {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #100d00 0%, #1e1800 100%);
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-card:hover .featured-img img { transform: scale(1.03); }

.featured-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #100d00, #1e1800);
}
.featured-img-placeholder span {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 4px;
  color: rgba(201,168,76,0.15);
}

.featured-body { padding: 28px 30px 32px; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.featured-title {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--white);
}

.featured-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.read-more {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.featured-card:hover .read-more { gap: 14px; }

/* ── TICKER ── */
.ticker {
  background: var(--gold);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}
.ticker-sep { color: rgba(0,0,0,0.25); padding: 0 4px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── POSTS GRID ── */
.posts-section {
  background: var(--black-2);
  padding: 100px 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ── POST CARD ── */
.post-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.post-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
}

.post-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-img {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #100d00, #1a1500);
  position: relative;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-img img { transform: scale(1.04); }

.post-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0a00, #1a1200);
}
.post-card-img-placeholder .placeholder-tag {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  color: rgba(201,168,76,0.12);
}

.post-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-meta { margin-bottom: 12px; }

.post-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 10px;
  flex: 1;
  color: var(--white);
}

.post-card-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.post-read-more {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.post-card:hover .post-read-more { gap: 12px; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.pagination-btn {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.pagination-btn:hover { opacity: 0.7; }
.pagination-info {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

/* ── X CTA ── */
.x-cta-section {
  background: var(--black);
  padding: 80px 0;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.x-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 40px;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.03);
}
.x-cta-label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 4px;
}
.x-cta-handle {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  display: block;
}
.btn-x-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-x-follow:hover { background: var(--gold); transform: translateY(-2px); }
.btn-x-follow svg { width: 15px; height: 15px; }

/* ── POST FULL ── */
.post-full { padding-top: 72px; }

.post-header {
  background: var(--black-2);
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.post-header-inner { max-width: 760px; }
.post-header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 1.5px;
  line-height: 0.95;
  margin-bottom: 20px;
  color: var(--white);
}

.post-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-light);
  margin-bottom: 24px;
  font-style: italic;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
}
.author-name {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
}

.post-feature-image {
  max-height: 520px;
  overflow: hidden;
  background: var(--black-3);
}
.post-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-image-caption {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray);
  text-align: center;
  padding: 10px 24px;
  background: var(--black-3);
}

.post-content-wrap {
  padding: 72px 0 80px;
}

/* Ghost Content Styles */
.gh-content {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-light);
}
.gh-content > * + * { margin-top: 1.5em; }
.gh-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 1.5px;
  line-height: 1;
  color: var(--white);
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.gh-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 1.8em;
  margin-bottom: 0.4em;
}
.gh-content h4 {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.6em;
}
.gh-content p { color: var(--gray-light); }
.gh-content strong { color: var(--white); font-weight: 600; }
.gh-content em { color: var(--gray-light); }
.gh-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.gh-content a:hover { color: var(--gold-light); }
.gh-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  background: rgba(201,168,76,0.05);
  margin: 2em 0;
  font-style: italic;
  font-size: 19px;
  color: var(--white);
}
.gh-content ul, .gh-content ol {
  padding-left: 24px;
  color: var(--gray-light);
}
.gh-content li { margin-bottom: 6px; }
.gh-content hr {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.2);
  margin: 3em 0;
}
.gh-content figure { margin: 2em 0; }
.gh-content figcaption {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}

/* Required Ghost card width classes */
.kg-width-wide {
  margin-left: calc(50% - 50vw + 32px);
  margin-right: calc(50% - 50vw + 32px);
  max-width: none;
}
.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
}
.kg-card { margin: 2em 0; }
.kg-image { max-width: 100%; height: auto; }
.kg-image-card img { width: 100%; }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; gap: 8px; margin-bottom: 8px; }
.kg-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.kg-video-card video { width: 100%; }
.kg-embed-card { display: flex; flex-direction: column; align-items: center; }
.kg-embed-card iframe { max-width: 100%; }
.kg-bookmark-card {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 20px;
  text-decoration: none;
  display: block;
  color: var(--white);
}
.kg-bookmark-title { font-family: var(--font-cond); font-weight: 700; font-size: 16px; letter-spacing: 1px; }
.kg-bookmark-description { font-size: 13px; color: var(--gray-light); margin-top: 6px; }
.kg-callout-card {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
  margin: 2em 0;
}
.kg-callout-text { font-size: 16px; line-height: 1.6; color: var(--gray-light); }
.kg-toggle-card { border: 1px solid rgba(255,255,255,0.08); padding: 16px 20px; }
.kg-toggle-heading { font-family: var(--font-cond); font-weight: 700; font-size: 16px; letter-spacing: 1px; cursor: pointer; }
.kg-toggle-content { margin-top: 12px; font-size: 15px; color: var(--gray-light); }
.kg-product-card { border: 1px solid rgba(201,168,76,0.15); padding: 24px; }
.kg-product-card-title { font-family: var(--font-display); font-size: 28px; letter-spacing: 1px; }
.kg-hr { border: none; border-top: 1px solid rgba(201,168,76,0.2); margin: 3em 0; }

.post-footer { margin-top: 60px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.post-tags-list { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── AUTHOR BIO ── */
.author-bio-section {
  background: var(--black-2);
  padding: 60px 0;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.author-bio-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
  flex-shrink: 0;
}
.author-bio-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.author-bio-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 10px;
}
.author-bio-x {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-decoration: none;
}
.author-bio-x:hover { text-decoration: underline; }

/* ── RELATED POSTS ── */
.related-posts {
  background: var(--black);
  padding: 80px 0;
  border-top: 1px solid rgba(201,168,76,0.08);
}

/* ── TAG PAGE ── */
.tag-header {
  background: var(--black-2);
  padding: 120px 0 60px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.tag-cover {
  margin-bottom: 32px;
  max-height: 280px;
  overflow: hidden;
}
.tag-cover img { width: 100%; height: 100%; object-fit: cover; }
.tag-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-light);
  max-width: 560px;
  margin-top: 14px;
}
.tag-count {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── PAGE ── */
.page-full { padding-top: 72px; }
.page-header {
  background: var(--black-2);
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

/* ── ERROR ── */
.error-page { padding: 160px 0; text-align: center; }
.error-code {
  font-family: var(--font-display);
  font-size: 140px;
  letter-spacing: 8px;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.error-title {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 16px;
}
.error-desc {
  font-size: 16px;
  color: var(--gray-light);
  margin-bottom: 40px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 60px 0 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 5px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.footer-links a {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gray);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MEMBERS PAGE ── */
.members-page { padding: 160px 0; text-align: center; }
.members-inner { max-width: 540px; margin: 0 auto; }
.members-title {
  font-family: var(--font-display);
  font-size: 58px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
}
.members-title span { color: var(--gold); }
.members-desc { font-size: 16px; line-height: 1.7; color: var(--gray-light); margin-bottom: 36px; }
.members-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.password-form { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 360px; margin: 0 auto; }
.password-input {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: 2px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.password-input:focus { border-color: var(--gold); }
.password-input::placeholder { color: var(--gray); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .footer-bottom { padding: 24px 20px 0; flex-direction: column; text-align: center; }
  .x-cta-inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .sec-title { font-size: 36px; }
  .post-title { font-size: 38px; }
  section, .posts-section { padding: 64px 0; }
}
