/* ============================================
   Black Friday Blog — style.css
   "Shop smart, not fast"
   ============================================ */

:root {
  --black: #0D0D0D;
  --red: #E63946;
  --gold: #FFD60A;
  --white: #FFFFFF;
  --gray: #6C757D;
  --gray-light: #e9ecef;
  --gray-dark: #343a40;
  --bg: #0D0D0D;
  --bg-card: #161616;
  --bg-card-alt: #1c1c1c;
  --text: #e9ecef;
  --text-muted: #adb5bd;
  --border: #2a2a2a;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 40px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 30px rgba(255, 214, 10, 0.15);
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.2rem; }

ul, ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }

li { margin-bottom: 0.5rem; }

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

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 48px 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(255,214,10,0.3);
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-text span {
  color: var(--red);
}

.logo-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ===== NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--white);
}

/* ===== MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--black);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 70%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,214,10,0.06) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-text h1 .accent {
  color: var(--red);
}

.hero-text h1 .accent-gold {
  color: var(--gold);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ===== FEATURED GUIDE ===== */
.featured {
  background: linear-gradient(180deg, var(--black) 0%, #111 100%);
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-img {
  height: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
}

.featured-img svg {
  width: 80%;
  max-width: 320px;
}

.featured-body {
  padding: 48px;
}

.featured-body .eyebrow {
  margin-bottom: 16px;
}

.featured-body h2 {
  margin-bottom: 16px;
}

.featured-body p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.meta-line {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.meta-line span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--white);
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.category-card .cat-count {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== TIMELINE ===== */
.timeline-section {
  background: #0a0a0a;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  z-index: 0;
}

.timeline-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.timeline-dot {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--bg-card);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  transition: all var(--transition);
}

.timeline-item:hover .timeline-dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.timeline-item h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== ARTICLE GRID ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-card-img {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-card-img svg {
  width: 60%;
  height: auto;
}

.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.article-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.3;
}

.article-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}

.article-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== SALE CALENDAR ===== */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.calendar-month {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.calendar-month:hover {
  border-color: var(--gold);
}

.calendar-month h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.calendar-event {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.calendar-event:last-child {
  border-bottom: none;
}

.calendar-event-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.calendar-event-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.calendar-event-date {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(180deg, #111 0%, var(--black) 100%);
  padding: 80px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header h1 .accent { color: var(--red); }
.page-header h1 .accent-gold { color: var(--gold); }

.page-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 20px;
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ===== ARTICLE PAGE ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 64px 0;
}

.article-main {
  min-width: 0;
}

.article-hero-img {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  overflow: hidden;
}

.article-hero-img svg {
  width: 40%;
  height: auto;
}

.article-main h1 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.article-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.article-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--gold);
}

.article-content p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.4rem;
}

.article-content li {
  margin-bottom: 0.6rem;
}

.article-content blockquote {
  border-left: 4px solid var(--red);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

.article-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(255,214,10,0.3);
  text-underline-offset: 3px;
}

.article-content a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}

.article-content .checklist {
  list-style: none;
  padding: 0;
}

.article-content .checklist li {
  padding-left: 32px;
  position: relative;
}

.article-content .checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.article-content th,
.article-content td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.article-content th {
  background: var(--bg-card);
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.article-content tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.article-content .callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 28px 0;
}

.article-content .callout-title {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.article-content .stat-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.article-content .stat {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.article-content .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  display: block;
}

.article-content .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.article-nav a {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: var(--gray);
}

.article-nav a span:last-child {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-top: 4px;
  text-transform: uppercase;
}

.article-nav a:hover span:last-child {
  color: var(--gold);
}

.article-nav .nav-next {
  text-align: right;
  margin-left: auto;
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}

.sidebar-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-block h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  font-size: 0.92rem;
  color: var(--text);
  display: block;
}

.sidebar-list a:hover {
  color: var(--gold);
}

.sidebar-list .meta {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}

.sidebar-newsletter p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sidebar-newsletter input {
  width: 100%;
  padding: 12px 16px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.sidebar-newsletter input:focus {
  outline: none;
  border-color: var(--gold);
}

.sidebar-newsletter .btn {
  width: 100%;
  justify-content: center;
}

/* ===== FORMS ===== */
.contact-form {
  display: grid;
  gap: 20px;
  max-width: 600px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,214,10,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.9rem;
  display: none;
}

.form-message.show {
  display: block;
}

/* ===== LEGAL/TEXT PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0;
}

.legal-content h2 {
  margin-top: 36px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--white);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 1rem;
}

.legal-content a {
  color: var(--gold);
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 32px;
}

/* ===== SITEMAP PAGE ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.sitemap-section h3 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.sitemap-section ul {
  list-style: none;
  padding: 0;
}

.sitemap-section li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.sitemap-section li:last-child {
  border-bottom: none;
}

.sitemap-section a {
  color: var(--text);
  font-size: 0.95rem;
}

.sitemap-section a:hover {
  color: var(--gold);
}

/* ===== 404 ===== */
.error-404 {
  text-align: center;
  padding: 120px 0;
}

.error-404 .error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--red), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.error-404 p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--red) 0%, #c1121f 100%);
  padding: 56px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-strip p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta-strip .btn {
  background: var(--black);
  color: var(--white);
}

.cta-strip .btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: var(--gray);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.about-visual svg {
  width: 100%;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.principle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.principle-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.principle h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.principle p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 64px 0;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: -1; max-width: 400px; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 240px; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .timeline::before { display: none; }
  .principles-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--black);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    padding: 80px 32px;
    transition: right 0.4s ease;
    z-index: 99;
  }
  .main-nav.open { right: 0; }
  .nav-list {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .nav-list a { font-size: 1.1rem; }
  .section { padding: 56px 0; }
  .featured-body { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .article-content .stat-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .article-nav { flex-direction: column; }
  .article-nav .nav-next { text-align: left; margin-left: 0; }
}

@media (max-width: 540px) {
  .category-grid, .article-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; }
  .hero { padding: 60px 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .logo-text { font-size: 1.2rem; }
  .logo-tagline { font-size: 0.55rem; }
}

