/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #444;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #E63946;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 52px;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.btn-primary:hover { background: #000; border-color: #000; }
.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn-outline:hover { background: #1a1a1a; color: #fff; }

/* ===== SIDEBAR TOGGLE ===== */
.sidebar-toggle {
  position: fixed;
  top: 28px;
  left: 20px;
  z-index: 1100;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: left 0.35s ease;
}
.toggle-icon,
.toggle-icon::before,
.toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #1a1a1a;
  position: relative;
  transition: all 0.3s ease;
}
.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
}
.toggle-icon { background: transparent; }
.toggle-icon::before { top: 0; transform: rotate(45deg); }
.toggle-icon::after { top: 0; transform: rotate(-45deg); }
.sidebar-collapsed .toggle-icon { background: #1a1a1a; }
.sidebar-collapsed .toggle-icon::before { top: -7px; transform: rotate(0); }
.sidebar-collapsed .toggle-icon::after { top: 7px; transform: rotate(0); }
.sidebar-collapsed .sidebar-toggle { left: 20px; }

/* ===== SIDEBAR ===== */
.header.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e8e8e8;
  transform: translateX(0);
  transition: transform 0.35s ease;
}
.sidebar-collapsed .header.sidebar { transform: translateX(-280px); }
.header-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 80px 32px 32px;
}
.top-part { margin-bottom: 48px; }
.branding-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.12em;
  color: #1a1a1a;
}
.nav { flex: 1; }
.menu { display: flex; flex-direction: column; gap: 2px; }
.menu li a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 0;
  color: #999;
  transition: color 0.2s;
}
.menu li a:hover { color: #E63946; }
.menu li.current a { color: #1a1a1a; font-weight: 600; }
.bottom-part { margin-top: auto; padding-top: 24px; border-top: 1px solid #eee; }
.copyright { font-size: 11px; color: #bbb; line-height: 1.5; }

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
}
.mobile-overlay.active { display: block; }
.overlay-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.overlay-content {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 280px; background: #fff;
  padding: 40px 30px;
}
.close-btn {
  background: none; border: none; color: #1a1a1a;
  font-size: 28px; cursor: pointer; margin-bottom: 32px;
}
.mobile-menu li a {
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 13px;
  padding: 8px 0; display: block; color: #999;
}
.mobile-menu li a:hover, .mobile-menu li.current a { color: #1a1a1a; }

/* ===== CONTENT RIGHT ===== */
.content-right {
  margin-left: 280px;
  min-height: 100vh;
  transition: margin-left 0.35s ease;
}
.sidebar-collapsed .content-right { margin-left: 0; }

/* ===== HERO ===== */
.hero-section {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  gap: 48px;
  align-items: center;
}
.hero-inner {
  display: contents;
}
.hero-text { padding-left: 24px; }
.hero-kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #E63946;
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 96px;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 0.9;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 360px;
}
.hero-image-frame {
  width: 100%;
}
.hero-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ===== MAGAZINES ===== */
.section-magazines { background: #f9f9f9; }
.magazines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #ddd;
}
.mag-card {
  background: #fff;
  padding: 48px 32px;
  display: block;
  transition: all 0.3s ease;
}
.mag-card:hover { background: #1a1a1a; }
.mag-card:hover h3,
.mag-card:hover p,
.mag-card:hover .mag-link { color: #fff; }
.mag-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #E63946;
  display: block;
  margin-bottom: 24px;
}
.mag-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.mag-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.mag-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #E63946;
  transition: color 0.3s;
}

/* ===== STATS ===== */
.section-stats {
  background: #1a1a1a;
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}

/* ===== MISSION ===== */
.section-mission { background: #fff; }
.mission-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mission-wrap h2 {
  font-size: 52px;
  margin-bottom: 32px;
}
.mission-pull {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 28px;
  color: #E63946;
  line-height: 1.4;
  margin-bottom: 32px;
}
.mission-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.mission-rule {
  width: 60px;
  height: 3px;
  background: #E63946;
  margin: 48px auto 0;
}

/* ===== DIFFERENT ===== */
.section-different { background: #f9f9f9; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.diff-card {
  text-align: center;
}
.diff-step {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #eee;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.diff-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.diff-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ===== ISSUES ===== */
.section-issues { background: #fff; }
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.issue-card {
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.issue-card:hover { border-color: #E63946; }
.issue-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.issue-body { padding: 24px; }
.issue-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #E63946;
  margin-bottom: 8px;
}
.issue-body h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.issue-body p {
  font-size: 14px;
  color: #666;
}

/* ===== SUBSCRIBE ===== */
.section-subscribe { background: #1a1a1a; }
.subscribe-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.subscribe-wrap .section-kicker { color: #E63946; }
.subscribe-wrap h2 {
  font-size: 44px;
  color: #fff;
  margin-bottom: 12px;
}
.subscribe-wrap p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}
.subscribe-actions { display: flex; gap: 16px; flex-shrink: 0; }
.subscribe-actions .btn-primary {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}
.subscribe-actions .btn-primary:hover { background: #E63946; border-color: #E63946; color: #fff; }
.subscribe-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.subscribe-actions .btn-outline:hover { background: #fff; color: #1a1a1a; border-color: #fff; }

/* ===== CONTACT ===== */
.section-contact { background: #f9f9f9; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info .section-kicker { margin-bottom: 12px; display: inline-block; }
.contact-info h2 {
  font-size: 44px;
  margin-bottom: 16px;
}
.contact-info > p { margin-bottom: 32px; color: #666; }
.contact-detail { margin-bottom: 20px; }
.contact-detail strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.contact-detail span { font-size: 15px; color: #666; }
.social-links { display: flex; gap: 8px; margin-top: 32px; }
.social-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #999;
  padding: 8px 16px;
  border: 1px solid #ddd;
  transition: all 0.2s;
}
.social-link:hover { border-color: #1a1a1a; color: #1a1a1a; }

.contact-form .form-group { margin-bottom: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #ddd;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #bbb; }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: #1a1a1a; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  padding: 48px 0 32px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: #fff;
}
.footer-brand p { font-size: 13px; color: #666; margin-top: 4px; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #666;
  transition: color 0.2s;
  margin-left: 24px;
}
.footer-links a:hover { color: #fff; }
.footer-mini a {
  font-size: 12px;
  color: #444;
  margin-left: 16px;
  transition: color 0.2s;
}
.footer-mini a:hover { color: #E63946; }
.footer-copy {
  font-size: 11px;
  color: #444;
  text-align: center;
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; padding: 60px 24px; min-height: auto; }
  .hero-text { padding-left: 0; }
  .hero-title { font-size: 64px; }
  .hero-image-frame img { height: 320px; }
  .magazines-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; gap: 32px; }
  .issues-grid { grid-template-columns: 1fr; }
  .subscribe-wrap { flex-direction: column; text-align: center; }
  .section { padding: 80px 0; }
}

@media screen and (max-width: 768px) {
  .sidebar-toggle { left: 16px; top: 20px; }
  .sidebar-collapsed .sidebar-toggle { left: 16px; }
  .header.sidebar { transform: translateX(-280px); }
  .sidebar-collapsed .header.sidebar { transform: translateX(-280px); }
  .content-right { margin-left: 0; }
  .sidebar-collapsed .content-right { margin-left: 0; }
  .hero-title { font-size: 48px; }
  .hero-section { padding: 40px 20px; }
  .hero-image-frame img { height: 240px; }
  .magazines-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-header h2 { font-size: 36px; }
  .mission-wrap h2 { font-size: 36px; }
  .mission-pull { font-size: 22px; }
  .stat-number { font-size: 48px; }
  .footer-links a { margin-left: 0; margin-right: 16px; }
  .footer-content { flex-direction: column; text-align: center; }
}
