/* ============================================================
   B-EMPIRE MAGAZINE — Main Stylesheet
   Design: Black & Gold, Editorial Luxury
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-dark:   #A07830;
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark2:       #1A1A1A;
  --dark3:       #222222;
  --grey:        #888888;
  --grey-light:  #BBBBBB;
  --off-white:   #F7F5F0;
  --white:       #FFFFFF;
  --red:         #C0392B;

  --font-serif:  'Playfair Display', 'DM Serif Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-dm:     'DM Serif Display', 'Playfair Display', Georgia, serif;

  --radius:      4px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.12);
  --shadow-md:   0 4px 20px rgba(0,0,0,.18);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.28);
  --transition:  .25s ease;
  --container:   1280px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ── READING PROGRESS ── */
.reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── BREAKING NEWS TICKER ── */
.breaking-bar {
  background: var(--gold);
  color: var(--black);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.breaking-inner { display: flex; align-items: center; gap: 0; }
.breaking-label {
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 14px;
  flex-shrink: 0;
  margin-right: 20px;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.ticker-dot { color: var(--black); opacity: .5; margin-left: 60px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SITE HEADER ── */
.site-header {
  background: var(--black);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.5); }

.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(201,168,76,.2);
  max-width: var(--container);
  margin: 0 auto;
}

.site-logo a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.site-logo a span { color: var(--gold); }
.logo-img { height: 48px; width: auto; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.search-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--grey-light); font-size: 18px;
  padding: 6px; border-radius: var(--radius);
  transition: color var(--transition);
}
.search-toggle:hover { color: var(--gold); }

.header-search-form {
  position: absolute; top: 100%; right: 0; left: 0;
  background: var(--dark2);
  padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.header-search-form.active { max-height: 80px; padding: 16px 24px; }
.header-search-form form { display: flex; gap: 12px; max-width: var(--container); margin: 0 auto; }
.header-search-form input {
  flex: 1;
  background: var(--dark3); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); padding: 10px 16px; border-radius: var(--radius);
}
.header-search-form input::placeholder { color: var(--grey); }
.header-search-form button {
  background: var(--gold); color: var(--black);
  border: none; cursor: pointer;
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 13px;
  transition: background var(--transition);
}
.header-search-form button:hover { background: var(--gold-light); }

/* ── MAIN NAV ── */
.main-nav {
  max-width: var(--container); margin: 0 auto;
  padding: 0 24px;
}
.main-nav .nav-menu {
  display: flex; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.main-nav .nav-menu::-webkit-scrollbar { display: none; }
.main-nav .nav-menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.main-nav .nav-menu li a:hover,
.main-nav .nav-menu li.current-menu-item a,
.main-nav .nav-menu li.current-cat a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 22px; padding: 8px;
}

/* ── SECTION HEADERS ── */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--dark);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 100%;
  background: var(--gold);
  border-radius: 2px;
}
.section-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.section-link:hover { border-bottom-color: var(--gold); }

/* ── CAT LABEL ── */
.cat-label {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
}
a.cat-label:hover { background: var(--gold-dark); }

/* ── HERO SECTION ── */
.hero-section { background: var(--black); padding: 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 380px; min-height: 580px; }

.hero-main {
  position: relative; overflow: hidden;
}
.hero-main-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.hero-main:hover .hero-main-img { transform: scale(1.03); }
.hero-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}
.hero-main-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px;
}
.hero-main-content .cat-label { margin-bottom: 14px; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900; color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 640px;
}
.hero-title a { color: inherit; }
.hero-title a:hover { color: var(--gold-light); }
.hero-excerpt {
  color: rgba(255,255,255,.75);
  font-size: 15px; line-height: 1.6;
  max-width: 500px; margin-bottom: 18px;
}
.hero-meta { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.5); font-size: 13px; }
.hero-meta .hero-author { color: var(--gold-light); font-weight: 500; }

.hero-sidebar {
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
}
.hero-sidebar-item {
  flex: 1; position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-sidebar-item:last-child { border-bottom: none; }
.hero-sidebar-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.hero-sidebar-item:hover .hero-sidebar-img { transform: scale(1.05); }
.hero-sidebar-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
}
.hero-sidebar-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.hero-sidebar-content .cat-label { margin-bottom: 8px; font-size: 9px; }
.hero-sidebar-title {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700;
  color: var(--white); line-height: 1.25;
}
.hero-sidebar-title a { color: inherit; }
.hero-sidebar-title a:hover { color: var(--gold-light); }
.hero-sidebar-date { color: rgba(255,255,255,.45); font-size: 11px; margin-top: 6px; }

/* ── FEATURED GRID ── */
.featured-section { padding: 60px 0; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── GRID CARD ── */
.grid-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.grid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.grid-card-img-link { display: block; overflow: hidden; }
.grid-card-img { height: 220px; overflow: hidden; }
.grid-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.grid-card:hover .grid-card-img img { transform: scale(1.06); }
.grid-card-cat { display: block; padding: 16px 20px 0; }
.grid-card-cat a { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.grid-card-title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  padding: 8px 20px 0;
  line-height: 1.3;
}
.grid-card-title a:hover { color: var(--gold-dark); }
.grid-card-excerpt {
  font-size: 14px; color: var(--grey);
  padding: 8px 20px 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid-card-meta {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 20px 16px;
  font-size: 12px; color: var(--grey);
}
.grid-card-author { font-weight: 600; color: var(--dark); }
.dot { opacity: .4; }

/* ── LIST CARD ── */
.list-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.08);
  cursor: pointer; transition: opacity var(--transition);
}
.list-card:hover { opacity: .82; }
.list-card:last-child { border-bottom: none; }
.list-card-img { width: 90px; height: 68px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; }
.list-card-img img { width: 100%; height: 100%; object-fit: cover; }
.list-card-body { flex: 1; min-width: 0; }
.list-card-cat { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.list-card-title {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 700;
  line-height: 1.3; margin-top: 4px;
}
.list-card-title a:hover { color: var(--gold-dark); }
.list-card-date { font-size: 11px; color: var(--grey); margin-top: 4px; }

/* ── DARK EDITORIAL ── */
.dark-editorial { background: var(--black); padding: 70px 0; }
.dark-editorial .section-title { color: var(--white); }
.dark-editorial .section-title::before { background: var(--gold); }
.dark-editorial .section-link { color: var(--gold); }
.de-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2px; min-height: 480px; }

.de-main { position: relative; overflow: hidden; }
.de-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.de-main:hover img { transform: scale(1.04); }
.de-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.de-main-content { position: absolute; bottom: 0; padding: 40px; }
.de-main-content .cat-label { margin-bottom: 12px; }
.de-main-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900; color: var(--white);
  line-height: 1.2; max-width: 520px; margin-bottom: 12px;
}
.de-main-title a:hover { color: var(--gold-light); }
.de-main-excerpt { color: rgba(255,255,255,.65); font-size: 14px; max-width: 440px; }

.de-stack { display: flex; flex-direction: column; gap: 2px; }
.de-stack-item { flex: 1; position: relative; overflow: hidden; min-height: 150px; }
.de-stack-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.de-stack-item:hover img { transform: scale(1.06); }
.de-stack-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
}
.de-stack-content { position: absolute; bottom: 0; padding: 20px; }
.de-stack-content .cat-label { margin-bottom: 8px; font-size: 9px; }
.de-stack-title {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700;
  color: var(--white); line-height: 1.3;
}
.de-stack-title a:hover { color: var(--gold-light); }

/* ── 3-COL CATEGORIES ── */
.three-col-section { padding: 70px 0; }
.three-col-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.col-section .section-header { margin-bottom: 20px; }
.col-section .section-title { font-size: 17px; }

/* ── FASHION GRID ── */
.fashion-section { background: var(--black); padding: 70px 0; }
.fashion-section .section-title { color: var(--white); }
.fashion-section .section-link { color: var(--gold); }
.fashion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fashion-card { position: relative; overflow: hidden; border-radius: var(--radius); }
.fashion-card.tall { grid-row: span 2; }
.fashion-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; min-height: 260px; }
.fashion-card:hover img { transform: scale(1.06); }
.fashion-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition);
}
.fashion-card:hover .fashion-overlay { opacity: 1; }
.fashion-content {
  position: absolute; bottom: 0; padding: 20px;
  transform: translateY(10px); opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.fashion-card:hover .fashion-content { transform: translateY(0); opacity: 1; }
.fashion-content .cat-label { margin-bottom: 8px; }
.fashion-title { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.3; }
.fashion-title a:hover { color: var(--gold-light); }

/* ── PULL QUOTE ── */
.quote-section { background: var(--dark2); padding: 70px 0; }
.pull-quote {
  text-align: center; max-width: 800px; margin: 0 auto;
  padding: 40px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.pull-quote blockquote {
  font-family: var(--font-dm);
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}
.pull-quote blockquote::before { content: '\201C'; color: var(--gold); font-size: 1.4em; }
.pull-quote blockquote::after  { content: '\201D'; color: var(--gold); font-size: 1.4em; }
.quote-author {
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
}

/* ── SPORT & TECH ── */
.sport-tech-section { padding: 70px 0; }
.sport-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ── FEATURED CARD (large) ── */
.featured-card { position: relative; overflow: hidden; border-radius: var(--radius); }
.featured-card img { width: 100%; height: 380px; object-fit: cover; transition: transform .6s ease; }
.featured-card:hover img { transform: scale(1.04); }
.featured-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 55%);
}
.featured-card-content { position: absolute; bottom: 0; padding: 28px; }
.featured-card-content .cat-label { margin-bottom: 10px; }
.featured-card-title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 900;
  color: var(--white); line-height: 1.25; margin-bottom: 12px;
}
.featured-card-title a:hover { color: var(--gold-light); }
.featured-card-meta { display: flex; gap: 10px; color: rgba(255,255,255,.5); font-size: 12px; }

/* ── TRENDING SIDEBAR ── */
.trending-section { padding: 70px 0; background: var(--off-white); }
.trending-inner { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.trending-list { counter-reset: trending; }
.trending-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,.08);
  cursor: pointer; position: relative;
  counter-increment: trending;
  transition: background var(--transition);
}
.trending-item:hover { padding-left: 8px; }
.trending-item::before {
  content: counter(trending, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 900;
  color: rgba(0,0,0,.08);
  line-height: 1; flex-shrink: 0;
  transition: color var(--transition);
}
.trending-item.hovered::before { color: var(--gold); }
.trending-item-body { flex: 1; }
.trending-item-cat { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.trending-item-title {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700;
  line-height: 1.3; margin-top: 4px;
}
.trending-item-title a:hover { color: var(--gold-dark); }
.trending-item-meta { font-size: 11px; color: var(--grey); margin-top: 6px; }

/* ── AD / PROMO BANNER ── */
.ad-banner {
  background: var(--black);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.ad-banner-label {
  font-size: 9px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  opacity: .6; margin-bottom: 12px;
}
.ad-banner-title {
  font-family: var(--font-serif);
  font-size: 20px; color: var(--white);
  margin-bottom: 8px; line-height: 1.3;
}
.ad-banner-sub { font-size: 13px; color: var(--grey); margin-bottom: 20px; }
.btn {
  display: inline-block;
  padding: 11px 28px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ── EDITORIAL FULL-BLEED ── */
.editorial-full {
  position: relative; overflow: hidden;
  height: 480px;
}
.editorial-full img { width: 100%; height: 100%; object-fit: cover; }
.editorial-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.85) 40%, transparent 100%);
}
.editorial-full-content {
  position: absolute; top: 50%; left: 0;
  transform: translateY(-50%);
  padding: 0 60px; max-width: 680px;
}
.editorial-full-content .cat-label { margin-bottom: 16px; }
.editorial-full-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 18px;
}
.editorial-full-title a:hover { color: var(--gold-light); }
.editorial-full-excerpt { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.6; margin-bottom: 24px; }

/* ── MORE NEWS ── */
.more-news-section { padding: 70px 0; }
.more-news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.more-news-grid .grid-card-img { height: 180px; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--black); padding: 80px 0; }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; color: var(--white);
  margin-bottom: 14px; line-height: 1.2;
}
.newsletter-sub { color: var(--grey); font-size: 15px; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); padding: 14px 18px; border-radius: var(--radius);
  font-size: 14px; transition: border-color var(--transition);
}
.newsletter-form input[type="email"]::placeholder { color: var(--grey); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold); color: var(--black);
  border: none; cursor: pointer;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ── SITE FOOTER ── */
.site-footer { background: var(--dark2); color: var(--white); }
.footer-main {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px; padding: 60px 24px;
  max-width: var(--container); margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); margin-bottom: 14px;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { color: var(--grey); font-size: 13px; line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--grey);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--black); background: var(--gold); }

.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--grey); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-widget .widget-title {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  max-width: var(--container); margin: 0 auto;
  font-size: 12px; color: var(--grey);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--grey); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── SINGLE POST ── */
.single-hero { position: relative; height: 520px; overflow: hidden; background: var(--black); }
.single-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.15) 70%, transparent 100%);
}
.single-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  max-width: var(--container); margin: 0 auto;
  padding: 40px 24px;
}
.single-hero-content .cat-label { margin-bottom: 14px; }
.single-post-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900; color: var(--white);
  line-height: 1.15; max-width: 800px;
  margin-bottom: 16px;
}
.single-post-meta {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; color: rgba(255,255,255,.55); font-size: 13px;
}
.single-post-meta .author-name { color: var(--gold-light); font-weight: 600; }

.single-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 48px; padding: 60px 0;
  max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px;
}

.article-content {
  font-size: 17px; line-height: 1.8; color: #2a2a2a;
}
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 700;
  margin: 36px 0 16px;
}
.article-content h3 {
  font-family: var(--font-serif);
  font-size: 21px; font-weight: 700;
  margin: 28px 0 12px;
}
.article-content p { margin-bottom: 22px; }
.article-content a { color: var(--gold-dark); border-bottom: 1px solid; }
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px; margin: 32px 0;
  background: rgba(201,168,76,.06);
  font-style: italic; font-size: 19px; color: var(--dark);
}
.article-content figure { margin: 32px 0; }
.article-content figure img { border-radius: var(--radius); }
.article-content figcaption { font-size: 13px; color: var(--grey); margin-top: 8px; text-align: center; }

.article-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,.1); }
.article-tags h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 12px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
  padding: 5px 14px;
  background: rgba(0,0,0,.06); border-radius: 20px;
  font-size: 12px; font-weight: 500; color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
.tag-item:hover { background: var(--gold); color: var(--black); }

.related-posts { margin-top: 60px; }
.related-posts .section-title { font-size: 20px; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── SIDEBAR ── */
.sidebar { min-width: 0; }
.widget { margin-bottom: 36px; }
.widget-title {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--dark);
  position: relative;
}
.widget-title::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}

/* ── CATEGORY PAGE ── */
.cat-header {
  background: var(--black); padding: 60px 24px;
  text-align: center;
}
.cat-header .cat-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.cat-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900; color: var(--white); line-height: 1.1;
}
.cat-header .cat-count { color: var(--grey); font-size: 14px; margin-top: 10px; }

.cat-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 48px; padding: 60px 24px;
  max-width: var(--container); margin: 0 auto;
}
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.cat-grid .grid-card-img { height: 200px; }

/* ── ARCHIVE ── */
.archive-header { background: var(--black); padding: 48px 24px; }
.archive-header h1 { font-family: var(--font-serif); font-size: 40px; font-weight: 900; color: var(--white); }
.archive-header p { color: var(--grey); margin-top: 8px; }
.archive-layout { max-width: var(--container); margin: 0 auto; padding: 48px 24px; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── 404 ── */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.error-code { font-family: var(--font-serif); font-size: clamp(80px, 15vw, 180px); font-weight: 900; color: var(--gold); opacity: .15; line-height: 1; }
.error-title { font-family: var(--font-serif); font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.error-text { color: var(--grey); margin-bottom: 28px; }

/* ── PAGINATION ── */
.pagination, .nav-links {
  display: flex; justify-content: center; gap: 8px;
  padding: 40px 0;
}
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  font-size: 14px; font-weight: 600;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.page-numbers:hover, .page-numbers.current {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}

/* ── IMG FADE IN ── */
img[loading="lazy"] { opacity: 0; transition: opacity .4s ease; }
img[loading="lazy"].img-loaded { opacity: 1; }

/* ── SCREEN READER ── */
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  word-wrap: normal;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .more-news-grid { grid-template-columns: repeat(2, 1fr); }
  .fashion-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .de-grid { grid-template-columns: 1fr; }
  .de-stack { flex-direction: row; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.nav-open { display: block; }
  .main-nav.nav-open .nav-menu { flex-direction: column; }
  .menu-toggle { display: block; }

  .featured-grid,
  .three-col-grid,
  .sport-tech-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .trending-inner { grid-template-columns: 1fr; }
  .single-layout,
  .cat-layout { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .editorial-full-content { padding: 24px; }
  .fashion-grid { grid-template-columns: repeat(2, 1fr); }
  .fashion-card.tall { grid-row: unset; }
  .more-news-grid { grid-template-columns: 1fr; }
  .header-top { padding: 12px 16px; }
  .hero-main-content { padding: 20px; }
}

@media (max-width: 480px) {
  .archive-grid { grid-template-columns: 1fr; }
  .fashion-grid { grid-template-columns: 1fr; }
}
