/* ─── RESET & ROOT ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   rgba(201,168,76,0.12);
  --gold-mid:   rgba(201,168,76,0.3);
  --black:      #090909;
  --surface:    #111111;
  --surface2:   #181818;
  --surface3:   #1e1e1e;
  --border:     rgba(255,255,255,0.07);
  --text:       #E0DFDB;
  --muted:      #707068;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Outfit', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

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

/* ─── NAV ───────────────────────────────────────────────── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; justify-content: space-between; align-items: center;
padding: 0 48px;
height: 64px;
background: rgba(9,9,9,0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
}
.nav-logo {
font-family: var(--serif);
font-size: 18px; font-weight: 700;
color: #fff; text-decoration: none;
display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--gold); }
.nav-logo .badge {
background: var(--gold); color: #000;
font-family: var(--sans); font-size: 10px; font-weight: 700;
padding: 2px 8px; letter-spacing: 0.1em;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
text-transform: uppercase; color: var(--muted);
text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
text-transform: uppercase; color: #000;
background: var(--gold); padding: 8px 20px;
text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: 0.3s; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
position: relative; min-height: 100vh;
display: flex; align-items: center;
background: #090906;
overflow: hidden; padding-top: 64px;
}
.hero-bg-num {
position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
font-family: var(--serif); font-size: clamp(280px, 35vw, 480px);
font-weight: 700; color: var(--gold); opacity: 0.04;
line-height: 1; user-select: none; z-index: 0;
}
.hero-photo-wrap {
position: absolute; right: 0; bottom: 0;
width: 55%; height: 100%;
}
.hero-photo-wrap img {
width: 100%; height: 100%;
object-fit: cover; object-position: center top;
opacity: 0.65;
mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 30%, transparent 75%),
linear-gradient(to top, rgba(9,9,6,1) 0%, transparent 20%);
-webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 30%, transparent 75%),
linear-gradient(to top, rgba(9,9,6,1) 0%, transparent 20%);
mask-composite: intersect;
-webkit-mask-composite: source-in;
}
.hero-gradient {
position: absolute; inset: 0; z-index: 1;
background:
linear-gradient(to right, #090906 38%, transparent 62%),
linear-gradient(to top, #090906 0%, transparent 18%);
}
.hero-content {
position: relative; z-index: 2;
padding: 80px 48px 80px;
max-width: 600px;
}
.hero-eyebrow {
display: flex; align-items: center; gap: 12px;
margin-bottom: 24px;
}
.hero-eyebrow .line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
text-transform: uppercase; color: var(--gold);
}
.hero-name {
font-family: var(--serif);
font-size: clamp(52px, 8vw, 96px);
font-weight: 700; line-height: 0.95;
color: #fff; margin-bottom: 8px;
}
.hero-name .last { color: var(--gold); display: block; }
.hero-position {
font-size: 13px; font-weight: 500; letter-spacing: 0.2em;
text-transform: uppercase; color: var(--muted);
margin-bottom: 28px;
}
.hero-desc {
font-size: 16px; color: #999;
max-width: 400px; line-height: 1.7;
margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
display: inline-block; padding: 14px 32px;
background: var(--gold); color: #000;
font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
text-transform: uppercase; text-decoration: none;
transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
display: inline-block; padding: 14px 32px;
border: 1px solid var(--gold-mid); color: var(--gold);
font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
text-transform: uppercase; text-decoration: none;
transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); }
.hero-stats {
position: absolute; bottom: 48px; left: 48px; z-index: 2;
display: flex; gap: 40px;
}
.hero-stat .val {
font-family: var(--serif); font-size: 36px; font-weight: 700;
color: var(--gold); line-height: 1;
}
.hero-stat .lbl {
font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
text-transform: uppercase; color: var(--muted); margin-top: 4px;
}
.hero-scroll {
position: absolute; bottom: 48px; right: 48px; z-index: 2;
display: flex; flex-direction: column; align-items: center; gap: 8px;
animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; }
.hero-scroll .arr { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold)); }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ─── SECTION COMMONS ──────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 100px 48px; }
.section-head { margin-bottom: 56px; }
.section-eyebrow {
font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-title {
font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
font-weight: 700; color: #fff; line-height: 1.1;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 520px; margin-top: 14px; line-height: 1.65; }

/* ─── ABOUT ─────────────────────────────────────────────── */
#about { background: var(--surface); }
.about-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap {
position: relative;
}
.about-img-wrap img {
width: 100%; aspect-ratio: 3/4;
object-fit: cover; object-position: center top;
display: block;
}
.about-img-badge {
position: absolute; bottom: -20px; right: -20px;
width: 100px; height: 100px;
background: var(--gold);
display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-img-badge .b-num { font-family: var(--serif); font-size: 36px; font-weight: 700; color: #000; line-height: 1; }
.about-img-badge .b-txt { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #000; }
.about-text p { font-size: 15px; color: #999; line-height: 1.8; margin-bottom: 20px; }
.about-text p strong { color: var(--text); font-weight: 500; }
.about-traits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.trait {
background: var(--surface2);
border-left: 2px solid var(--gold);
padding: 14px 16px;
}
.trait .t-label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.trait .t-val { font-size: 13px; color: #bbb; }

/* ─── STATS ─────────────────────────────────────────────── */
#stats { background: var(--black); }
.stats-ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: var(--surface);
  position: relative;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  width: max-content;
  animation: tickerScroll 35s linear infinite;
}

.ticker-item {
  padding: 0 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.ticker-item span {
  color: var(--gold);
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}z
.ticker-item span { color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.stats-grid {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.stat-card {
background: var(--surface);
padding: 36px 28px;
position: relative; overflow: hidden;
transition: background 0.3s;
}
.stat-card:hover { background: var(--surface2); }
.stat-card::before {
content: ''; position: absolute; top: 0; left: 0;
width: 100%; height: 2px;
background: var(--gold); transform: scaleX(0);
transform-origin: left; transition: transform 0.3s;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card .s-num {
font-family: var(--serif); font-size: 52px; font-weight: 700;
color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-card .s-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.stat-card .s-note { font-size: 12px; color: #555; margin-top: 6px; }

/* ─── NIL / BRANDS ──────────────────────────────────────── */
#nil { background: var(--surface); }
.nil-intro {
background: linear-gradient(135deg, #141410, #1a1a0a);
border: 1px solid var(--gold-mid); border-left: 4px solid var(--gold);
padding: 28px 32px; margin-bottom: 56px;
display: flex; gap: 20px; align-items: flex-start;
}
.nil-intro .ni-icon {
font-family: var(--serif); font-size: 40px; font-weight: 700;
color: var(--gold); line-height: 1; flex-shrink: 0;
}
.nil-intro .ni-text { font-size: 14px; color: #bbb; line-height: 1.7; }
.nil-intro .ni-text strong { color: #e0e0d0; font-weight: 500; }
.nil-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.nil-tier {
background: var(--surface2);
padding: 32px 28px;
border-top: 2px solid transparent;
transition: border-color 0.3s;
}
.nil-tier:hover { border-top-color: var(--gold); }
.nil-tier.featured {
background: linear-gradient(160deg, #161610, #1c1c0c);
border-top-color: var(--gold);
position: relative;
}
.nil-tier.featured::after {
content: 'BEST FIT';
position: absolute; top: -1px; right: 20px;
background: var(--gold); color: #000;
font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
padding: 3px 10px;
}
.nil-tier .nt-icon { font-size: 28px; margin-bottom: 14px; }
.nil-tier .nt-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.nil-tier .nt-desc { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 20px; }
.nil-tier .nt-examples { display: flex; flex-wrap: wrap; gap: 6px; }
.nil-tier .nt-tag {
font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
color: var(--gold); background: var(--gold-dim); padding: 3px 10px;
}

/* ─── HIGHLIGHTS / VIDEO ────────────────────────────────── */
#highlights { background: var(--black); }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.highlight-card {
position: relative; overflow: hidden;
background: var(--surface); aspect-ratio: 16/9;
cursor: pointer;
}
.highlight-card .hc-thumb {
width: 100%; height: 100%;
background: linear-gradient(135deg, #141414 0%, #1a1a10 100%);
display: flex; align-items: center; justify-content: center;
transition: transform 0.4s;
}
.highlight-card:hover .hc-thumb { transform: scale(1.03); }
.hc-play {
width: 52px; height: 52px;
border: 2px solid var(--gold); border-radius: 50%;
display: flex; align-items: center; justify-content: center;
transition: background 0.2s;
}
.highlight-card:hover .hc-play { background: var(--gold); }
.hc-play svg { width: 18px; height: 18px; fill: var(--gold); margin-left: 3px; }
.highlight-card:hover .hc-play svg { fill: #000; }
.hc-info {
position: absolute; bottom: 0; left: 0; right: 0;
padding: 16px 20px;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.hc-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.hc-meta { font-size: 11px; color: var(--gold); letter-spacing: 0.08em; }
.hc-num {
position: absolute; top: 16px; left: 16px;
font-family: var(--serif); font-size: 32px; font-weight: 700;
color: var(--gold); opacity: 0.2; line-height: 1;
}

/* ─── SOCIAL ────────────────────────────────────────────── */
#social { background: var(--surface); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 56px; }
.social-card {
background: var(--surface2);
padding: 32px 28px;
display: flex; flex-direction: column; align-items: flex-start;
gap: 16px; text-decoration: none;
border-bottom: 2px solid transparent;
transition: border-color 0.2s, background 0.2s;
}
.social-card:hover { border-bottom-color: var(--gold); background: var(--surface3); }
.sc-icon {
width: 44px; height: 44px;
border: 1px solid var(--gold-mid);
display: flex; align-items: center; justify-content: center;
}
.sc-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.sc-platform { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.sc-handle { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; }
.sc-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.sc-arrow { margin-top: auto; font-size: 20px; color: var(--gold); }

/* ─── CONTACT ───────────────────────────────────────────── */
#contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h3 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.contact-info p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: grid; gap: 20px; }
.cd-item { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon {
width: 36px; height: 36px; flex-shrink: 0;
border: 1px solid var(--gold-mid);
display: flex; align-items: center; justify-content: center;
}
.cd-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.cd-label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.cd-val { font-size: 14px; color: #bbb; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
background: var(--surface);
border: 1px solid var(--border);
color: var(--text);
font-family: var(--sans);
font-size: 14px; font-weight: 300;
padding: 14px 16px;
outline: none;
transition: border-color 0.2s;
width: 100%;
-webkit-appearance: none;
appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--surface2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
background: var(--gold); color: #000;
border: none; cursor: pointer;
font-family: var(--sans); font-size: 11px;
font-weight: 700; letter-spacing: 0.2em;
text-transform: uppercase; padding: 16px 32px;
transition: background 0.2s, transform 0.15s;
width: 100%;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-note { font-size: 12px; color: #444; text-align: center; margin-top: 8px; }
.form-success {
display: none;
background: var(--surface);
border: 1px solid var(--gold-mid);
border-left: 3px solid var(--gold);
padding: 20px 24px;
font-size: 14px; color: #bbb; text-align: center;
}
.form-success strong { color: var(--gold); }

/* ─── BRINSON ENTERPRISE STRIP ──────────────────────────── */
.be-strip {
background: var(--surface2);
border-top: 1px solid var(--border);
padding: 40px 48px;
display: flex; justify-content: space-between; align-items: center;
gap: 24px; flex-wrap: wrap;
}
.be-brand { display: flex; flex-direction: column; gap: 4px; }
.be-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.be-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; }
.be-tagline { font-size: 12px; color: #444; }
.be-services { display: flex; gap: 8px; flex-wrap: wrap; }
.be-tag {
font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
color: var(--gold); background: var(--gold-dim); padding: 4px 12px;
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
background: var(--black);
border-top: 1px solid var(--border);
padding: 32px 48px;
display: flex; justify-content: space-between; align-items: center;
font-size: 12px; color: #333; flex-wrap: wrap; gap: 16px;
}
footer a { color: var(--gold); text-decoration: none; }

/* ─── MOBILE NAV ────────────────────────────────────────── */
#nav-toggle { display: none; }
.mobile-menu {
display: none; position: fixed; top: 64px; left: 0; right: 0;
background: rgba(9,9,9,0.98); backdrop-filter: blur(16px);
padding: 32px 48px; z-index: 99;
border-bottom: 1px solid var(--border);
flex-direction: column; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
font-size: 14px; font-weight: 500; letter-spacing: 0.1em;
text-transform: uppercase; color: var(--text); text-decoration: none;
border-bottom: 1px solid var(--border); padding-bottom: 16px;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
nav { padding: 0 24px; }
.nav-links { display: none; }
.nav-cta { display: none; }
.nav-mobile-toggle { display: flex; }
.hero-content { padding: 60px 24px; }
.hero-stats { left: 24px; bottom: 32px; gap: 24px; }
.hero-stat .val { font-size: 28px; }
.section-wrap { padding: 72px 24px; }
.about-grid { grid-template-columns: 1fr; gap: 40px; }
.about-img-wrap { max-width: 400px; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.nil-tiers { grid-template-columns: 1fr; }
.highlights-grid { grid-template-columns: 1fr 1fr; }
.social-grid { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; gap: 48px; }
.form-row { grid-template-columns: 1fr; }
.be-strip { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
footer { padding: 24px; }
}
@media (max-width: 560px) {
.hero-name { font-size: 48px; }
.hero-stats { display: none; }
.stats-grid { grid-template-columns: 1fr 1fr; }
.highlights-grid { grid-template-columns: 1fr; }
nav { padding: 0 20px; }
}

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


/* ─── VIDEO MODAL ───────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.video-modal.active {
  display: flex;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
}

.video-container {
  position: relative;
  width: min(100%, 1000px);
  z-index: 2;
  background: #000;
  border: 1px solid var(--gold-mid);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.video-container video {
  display: block;
  width: 100%;
  max-height: 78vh;
  background: #000;
}

.video-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-mid);
  background: rgba(9,9,9,0.9);
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.video-close:hover {
  background: var(--gold);
  color: #000;
}

.highlight-card {
  cursor: pointer;
}


/* ─── LATEST SOCIAL EMBEDS ──────────────────────────────── */
#latest {
  background: var(--black);
}

.latest-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.latest-social-card {
  background: var(--surface);
  padding: 28px;
  border-top: 2px solid transparent;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.latest-social-card:hover {
  background: var(--surface2);
  border-top-color: var(--gold);
  transform: translateY(-3px);
}

.latest-social-card.featured {
  background: linear-gradient(160deg, #161610, #1c1c0c);
  border-top-color: var(--gold);
}

.latest-social-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.latest-social-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.latest-social-top h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.latest-social-top p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.latest-embed-placeholder {
  flex: 1;
  min-height: 230px;
  border: 1px dashed var(--gold-mid);
  background:
    linear-gradient(135deg, rgba(201,168,76,0.08), rgba(255,255,255,0.02)),
    var(--surface2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  margin-bottom: 22px;
}

.latest-embed-placeholder.video-style {
  min-height: 280px;
}

.latest-embed-placeholder span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.latest-embed-placeholder small {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
  line-height: 1.5;
}

.latest-social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 18px;
  border: 1px solid var(--gold-mid);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.latest-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.social-proof-strip {
  margin-top: 40px;
  border: 1px solid var(--gold-mid);
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, #141410, #1a1a0a);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.social-proof-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  margin-bottom: 4px;
}

.social-proof-strip span {
  font-size: 13px;
  color: var(--muted);
}

.social-proof-strip a {
  flex-shrink: 0;
  background: var(--gold);
  color: #000;
  padding: 12px 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 900px) {
  .latest-social-grid {
    grid-template-columns: 1fr;
  }

  .latest-social-card {
    min-height: auto;
  }

  .social-proof-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
