/**
 * Magazine-Style About Us Page
 * Inspired by editorial layouts from Kinfolk, Monocle, and modern web magazines
 * Following RankExpert design system
 */

/* ========================================
 * CSS VARIABLES & RESET
 * ======================================== */

:root {
  /* Colors from design system */
  --background: rgb(250 250 250);
  --foreground: rgb(38 38 38);
  --card: rgb(255 255 255);
  --muted: rgb(237 237 237);
  --muted-foreground: rgb(128 128 128);
  --accent: rgb(72 187 120);
  --accent-hover: rgb(64 168 107);
  --border: rgb(224 224 224);
  
  /* Typography - Inherit from global font settings */
  --font-primary: var(--font-family-primary, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  --font-display: var(--font-family-primary, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  
  /* Spacing */
  --container-max: 1280px;
  --container-narrow: 896px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;
}

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

body {
  font-family: var(--font-primary);
  color: var(--foreground);
  background-color: var(--background);
  /* Inherit global line-height and font-size from global.css/typography.css */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
 * UNIVERSAL TEXT ELEMENTS
 * ======================================== */

/* Paragraphs - Use global typography */
p {
  margin: 0 0 1rem 0;
  color: var(--text-primary, #1F2937);
  font-size: var(--font-size-base, 1rem);
  line-height: 1.6;
  font-family: var(--font-primary);
  font-weight: 400;
}

/* Override any inline styles in content */
p span {
  font-family: var(--font-primary) !important;
  font-weight: inherit !important;
}

ul, ol {
  margin: 20px 0;
  padding-left: 24px;
  list-style-position: outside;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: 12px;
  font-size: var(--font-size-base, 1rem);
  line-height: 1.6;
  color: var(--text-primary, #1F2937);
  font-weight: 400;
}

li:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--foreground);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

blockquote {
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--muted);
  font-style: italic;
  color: var(--foreground);
}

/* ========================================
 * HEADER
 * ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--spacing-sm);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
}

.logo-accent {
  color: var(--accent);
}

.nav-desktop {
  display: none;
  gap: 24px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-link-active {
  color: var(--accent);
  font-weight: 600;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border-radius: 6px;
  font-family: inherit;
}

.btn-sm {
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
}

.btn-lg {
  height: 48px;
  padding: 0 24px;
  font-size: 16px;
}

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

.btn-accent:hover {
  background-color: var(--accent-hover);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: var(--muted);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
}

.icon {
  width: 20px;
  height: 20px;
}

.btn-desktop {
  display: none;
}

@media (min-width: 768px) {
  .btn-desktop {
    display: inline-flex;
  }
}

.btn-mobile {
  display: inline-flex;
}

@media (min-width: 768px) {
  .btn-mobile {
    display: none;
  }
}

/* ========================================
 * LAYOUT CONTAINERS
 * ======================================== */

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
  .container-narrow {
    padding: 0 var(--spacing-md);
  }
}

.main {
  min-height: 100vh;
}

/* ========================================
 * MAGAZINE HERO SECTION
 * ======================================== */

.magazine-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, rgba(38, 38, 38, 0.9) 0%, rgba(72, 187, 120, 0.8) 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  background-size: cover, cover, 40px 40px;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(72, 187, 120, 0.2), transparent 60%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 auto var(--spacing-md);
  max-width: 900px;
  padding: 0 var(--spacing-sm);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  flex-wrap: wrap;
  padding: 0 var(--spacing-sm);
}

.meta-item {
  font-weight: 500;
}

.meta-divider {
  opacity: 0.5;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-icon {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ========================================
 * INTRODUCTION SECTION
 * ======================================== */

.intro-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--card);
}

.intro-grid {
  display: grid;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 200px 1fr;
    gap: 60px;
  }
}

.intro-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.intro-number {
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.intro-caption {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.intro-content {
  max-width: 680px;
}

.intro-lead {
  font-size: clamp(24px, 3vw, 32px); /* Larger to match global style */
  font-weight: 400;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.01em;
}

.intro-text {
  font-size: var(--font-size-base, 1rem);
  line-height: 1.6;
  color: var(--text-primary, #1F2937);
  margin-bottom: var(--spacing-md);
}

/* ========================================
 * TEAM SECTION
 * ======================================== */

.team-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background);
}

/* Team Header with Sidebar Layout */
.team-header-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .team-header-grid {
    grid-template-columns: 200px 1fr;
    gap: 60px;
  }
}

.team-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.section-number {
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.team-caption {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.team-header-content {
  max-width: 680px;
}

.team-main-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: var(--spacing-sm);
}

.team-subtitle {
  font-size: 18px; /* Increased from 16px */
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Featured Team Member */
.featured-member {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: 60px;
  padding: var(--spacing-lg);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

@media (min-width: 768px) {
  .featured-member {
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .featured-member {
    grid-template-columns: 400px 1fr;
    gap: 60px;
    padding: 60px;
  }
}

.featured-member-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1; /* Square on mobile */
  overflow: hidden;
  max-width: 400px; /* Prevent it from getting too large on mobile */
  margin: 0 auto; /* Center it on mobile */
  border-radius: 8px; /* Match team cards */
}

.featured-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Taller portrait on desktop */
@media (min-width: 1024px) {
  .featured-member-image {
    aspect-ratio: 3/4;
    max-width: none;
    margin: 0;
    border-radius: 0; /* No border radius on desktop for side-by-side layout */
  }
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  color: var(--muted-foreground);
  opacity: 0.3;
}

.featured-member-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-member-badge {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  background-color: rgba(72, 187, 120, 0.1);
  border-radius: 20px;
  margin-bottom: var(--spacing-sm);
}

.featured-member-name {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
}

.featured-member-quote {
  font-size: 20px; /* Increased from 18px */
  font-style: italic;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
}

.featured-member-bio {
  font-size: 18px; /* Increased from 15px */
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-lg);
}

.featured-member-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--spacing-md);
}

.stat-item-inline {
  padding: var(--spacing-sm);
  background-color: var(--background);
  border-radius: 8px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.3;
}

/* Team Grid */
.team-grid-magazine {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: 1fr; /* Single column on mobile */
}

@media (min-width: 640px) {
  .team-grid-magazine {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    gap: var(--spacing-lg);
  }
}

@media (min-width: 900px) {
  .team-grid-magazine {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    gap: var(--spacing-lg);
  }
}

.team-card-magazine {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card-magazine:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.team-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1; /* Square images instead of tall portraits */
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-card-content {
  padding: var(--spacing-md);
}

/* Better spacing on mobile */
@media (max-width: 639px) {
  .team-card-content {
    padding: var(--spacing-lg);
  }
  
  .team-grid-magazine {
    gap: var(--spacing-lg);
  }
}

.team-card-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--spacing-xs);
}

.team-card-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--spacing-xs);
}

.team-card-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ========================================
 * PHILOSOPHY SECTION
 * ======================================== */

.philosophy-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--card);
  border-top: 1px solid var(--border);
}

.philosophy-grid {
  display: grid;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 200px 1fr;
    gap: 60px;
  }
}

.philosophy-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.philosophy-caption {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.philosophy-content {
  max-width: 680px;
}

.philosophy-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
}

.philosophy-text {
  margin-bottom: var(--spacing-lg);
}

.philosophy-text p {
  font-size: var(--font-size-base, 1rem);
  line-height: 1.6;
  color: var(--text-primary, #1F2937);
  margin-bottom: var(--spacing-md);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.value-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background-color: var(--background);
  border-radius: 8px;
}

.value-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
}

.value-description {
  font-size: 16px; /* Increased from 14px */
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ========================================
 * QUICK LINKS SECTION
 * ======================================== */

.quick-links-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background);
}

.quick-links-box {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: var(--spacing-lg);
}

@media (min-width: 768px) {
  .quick-links-box {
    padding: 60px;
  }
}

.quick-links-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.quick-links-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--spacing-xs);
}

.quick-links-subtitle {
  font-size: 18px; /* Increased from 16px */
  color: var(--muted-foreground);
}

.quick-links-grid {
  display: grid;
  gap: var(--spacing-md);
}

@media (min-width: 640px) {
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-md);
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.quick-link-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.quick-link-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(72, 187, 120, 0.1);
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
}

.quick-link-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.quick-link-content {
  flex: 1;
}

.quick-link-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
}

.quick-link-description {
  font-size: 16px; /* Increased from 13px */
  line-height: 1.5;
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-sm);
}

.quick-link-arrow {
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.3s;
}

.quick-link-card:hover .quick-link-arrow {
  transform: translateX(4px);
}

/* ========================================
 * SECTION 4
 * ======================================== */

.section-four {
  padding: var(--spacing-xl) 0;
  background-color: var(--card);
  border-top: 1px solid var(--border);
}

.section-four-grid {
  display: grid;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .section-four-grid {
    grid-template-columns: 200px 1fr;
    gap: 60px;
  }
}

.section-four-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.section-four-caption {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.section-four-content {
  max-width: 680px;
}

.section-four-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
}

.section-four-text {
  font-size: var(--font-size-base, 1rem);
  line-height: 1.6;
  color: var(--text-primary, #1F2937);
}

/* ========================================
 * CTA SECTION
 * ======================================== */

.cta-section-magazine {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(to bottom, var(--background), var(--card));
}

.cta-magazine-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px var(--spacing-md);
  background: 
    linear-gradient(135deg, rgba(72, 187, 120, 0.03) 0%, rgba(72, 187, 120, 0.08) 100%);
  border: 1px solid rgba(72, 187, 120, 0.2);
  border-radius: 16px;
}

.cta-magazine-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 16px;
  background-color: rgba(72, 187, 120, 0.1);
  border-radius: 20px;
  margin-bottom: var(--spacing-md);
}

.cta-magazine-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: var(--spacing-sm);
}

.cta-magazine-description {
  font-size: 20px; /* Increased from 18px */
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-magazine-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 640px) {
  .cta-magazine-actions {
    flex-direction: row;
  }
}

.cta-magazine-trust {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(72, 187, 120, 0.2);
}

@media (min-width: 640px) {
  .cta-magazine-trust {
    flex-direction: row;
    gap: var(--spacing-md);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 14px;
  color: var(--muted-foreground);
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ========================================
 * FOOTER
 * ======================================== */

.footer {
  background-color: var(--foreground);
  color: white;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.footer-logo-accent {
  color: var(--accent);
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-link-active {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: var(--accent);
}

/* ========================================
 * RESPONSIVE ADJUSTMENTS
 * ======================================== */

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }
  
  .intro-lead {
    font-size: 18px;
  }
  
  .quick-links-box {
    padding: var(--spacing-md);
  }
  
  .cta-magazine-box {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
}

/* ========================================
 * PRINT STYLES
 * ======================================== */

@media print {
  .header,
  .footer,
  .cta-section-magazine,
  .hero-scroll-indicator {
    display: none;
  }
  
  .magazine-hero {
    height: auto;
    min-height: auto;
    padding: 60px 20px;
  }
  
  body {
    background: white;
  }
}

