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

:root {
  --color-bg: #FAFAF7;
  --color-bg-warm: #F5F1EB;
  --color-bg-card: #FFFFFF;
  --color-text: #1C1C1C;
  --color-text-secondary: #6B6560;
  --color-text-muted: #9B958E;
  --color-accent: #C08B3E;
  --color-accent-hover: #A87530;
  --color-accent-light: rgba(192, 139, 62, 0.08);
  --color-border: #E8E3DC;
  --color-dark: #1C1917;
  --color-dark-soft: #292524;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-script: 'Caveat', cursive;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { border: none; cursor: pointer; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
}

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

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-name {
  font-family: var(--font-script);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin-top: 2px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav { display: flex; align-items: center; gap: 0; }

.nav-item {
  position: relative;
  padding: 8px 18px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav-item:hover .nav-link { color: var(--color-accent); }
.nav-item:hover .nav-link::after { width: 100%; }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  font-weight: 500;
}

.mega-menu a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: var(--transition);
  font-weight: 400;
}

.mega-menu a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* Multi-column mega menu */
.mega-menu-wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}

.mega-menu-wide .mega-col { }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  padding: 100px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: block;
  opacity: 1;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-accent);
}

.mobile-nav-link .chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}

.mobile-nav-link.active .chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 16px;
}

.mobile-sub-menu.open {
  max-height: 500px;
  padding: 0 0 16px 16px;
}

.mobile-sub-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 4px;
}

.mobile-sub-menu a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: var(--color-text-secondary);
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.mobile-sub-menu a:hover {
  color: var(--color-accent);
  padding-left: 8px;
}

/* ==================== HERO ==================== */
.hero {
  padding: 160px 0 80px;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--color-accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}

.hero-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(192, 139, 62, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  transition: var(--transition);
}

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

.hero-visual {
  position: relative;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-warm);
  aspect-ratio: 3/4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img:nth-child(2) { margin-top: 40px; }

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, #ede8df 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder images with SVG patterns */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, #ede8df 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--color-bg-card);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
}

.hero-stat-text {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* ==================== FEATURED ARTICLES CAROUSEL ==================== */
.featured {
  padding: 60px 0 80px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

.section-link {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.section-link:hover { gap: 12px; }

.section-link svg {
  width: 16px;
  height: 16px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.article-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

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

.article-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-warm);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card-img svg {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
  opacity: 0.2;
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card-img img {
  transform: scale(1.05);
}

.article-card-body { padding: 18px 18px 20px; }

.article-card-category {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 8px;
}

.article-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

/* ==================== TWO COLUMN SECTIONS ==================== */
.two-col-section {
  padding: 80px 0;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.col-section { }

.col-section-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.col-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.col-section-desc {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Article List Item */
.article-list-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

.article-list-item:last-child { border-bottom: none; }

.article-list-item:hover { transform: translateX(4px); }

.article-list-thumb {
  width: 100px;
  min-width: 100px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.article-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-list-content { flex: 1; }

.article-list-cat {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 6px;
}

.article-list-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 6px;
}

.article-list-excerpt {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Book Review Card */
.book-card {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}

.book-card:hover { transform: translateX(4px); }

.book-cover {
  width: 70px;
  min-width: 70px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-dark);
  box-shadow: var(--shadow-sm);
}

.book-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.book-info { flex: 1; }

.book-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 4px;
  line-height: 1.3;
}

.book-author {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.book-excerpt {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==================== PODCAST SECTION ==================== */
.podcast-section {
  padding: 100px 0;
  background: var(--color-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.podcast-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,139,62,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.podcast-content { }

.podcast-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.podcast-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.podcast-subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.episode-list { }

.episode-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  cursor: pointer;
}

.episode-item:hover { transform: translateX(4px); }

.episode-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-right: 16px;
  min-width: 32px;
}

.episode-title {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

.episode-listen {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.podcast-platforms {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: var(--transition);
}

.platform-badge:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.platform-badge svg {
  width: 18px;
  height: 18px;
}

.podcast-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.podcast-image {
  width: 380px;
  height: 460px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-dark-soft);
  position: relative;
}

.podcast-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.6), transparent 50%);
}

.podcast-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d2520, #1C1917);
}

.podcast-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--color-accent);
  opacity: 0.4;
}

.podcast-image-placeholder span {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(255,255,255,0.3);
}

/* ==================== SHOP SECTION ==================== */
.shop-section {
  padding: 100px 0;
}

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

.product-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-img {
  aspect-ratio: 4/3;
  background: var(--color-bg-warm);
  overflow: hidden;
  position: relative;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f1eb, #ede8df);
}

.product-img-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
  opacity: 0.4;
}

.product-body { padding: 24px; }

.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  transition: var(--transition);
}

.product-card:hover .product-action { gap: 12px; }

/* ==================== NEWSLETTER / CTA ==================== */
.newsletter-section {
  padding: 80px 0;
}

.newsletter-card {
  background: var(--color-bg-warm);
  border-radius: 16px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(192,139,62,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-content { position: relative; z-index: 1; }

.newsletter-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.newsletter-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.newsletter-form {
  position: relative;
  z-index: 1;
}

.form-group { margin-bottom: 16px; }

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--color-bg-card);
  color: var(--color-text);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder { color: var(--color-text-muted); }
.form-input:focus { border-color: var(--color-accent); }

.form-btn {
  width: 100%;
  padding: 16px;
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
}

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

/* ==================== FOOTER ==================== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
}

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

.footer-brand { }

.footer-logo {
  font-family: var(--font-script);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.footer-location svg { width: 16px; height: 16px; color: var(--color-accent); }

.footer-certs {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.cert-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.5px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.footer-copy {
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--color-text-secondary);
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-social a svg { width: 16px; height: 16px; }

/* ==================== ANIMATIONS ==================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 42px; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid .article-card:nth-child(n+4) { display: none; }
  .podcast-inner { gap: 40px; }
  .newsletter-card { padding: 60px; }
}

@media (max-width: 768px) {
  .nav { display: none !important; }
  .menu-toggle { display: flex; }
  
  .hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 38px; }
  .hero-visual { order: -1; }
  .hero-image-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat { display: none; }
  
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid .article-card:nth-child(n+3) { display: none; }
  
  .two-col-grid { grid-template-columns: 1fr; gap: 48px; }
  
  .podcast-inner { grid-template-columns: 1fr; }
  .podcast-visual { display: none; }
  
  .shop-grid { grid-template-columns: 1fr 1fr; }
  
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 32px;
  }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 30px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-grid .article-card:nth-child(n+3) { display: none; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ==================== MISSING SECTION STYLES ==================== */

/* --- Business Section --- */
.business-section { padding: 80px 0; }
.business-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.biz-card { background: #fff; border-radius: 12px; border: 1px solid var(--color-border); overflow: hidden; transition: all 0.3s ease; }
.biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.biz-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--color-bg-warm); display: flex; align-items: center; justify-content: center; }
.biz-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.biz-card:hover .biz-card-img img { transform: scale(1.05); }
.biz-card-img svg { width: 48px; height: 48px; color: var(--color-text-muted); opacity: 0.2; }
.biz-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; padding: 16px 18px 8px; line-height: 1.35; }
.biz-card-title a { color: var(--color-text); text-decoration: none; }
.biz-card-title a:hover { color: var(--color-accent); }
.biz-card-excerpt { font-size: 14px; color: var(--color-text-muted); padding: 0 18px; line-height: 1.6; }
.biz-card .read-more { display: inline-block; padding: 0 18px 18px; font-size: 13px; color: var(--color-accent); text-decoration: none; font-weight: 500; }

/* --- Podcast Section --- */
.podcast-section { padding: 80px 0; background: var(--color-bg-warm); }
.podcast-grid { margin-top: 32px; }
.podcast-subtitle { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 24px; color: var(--color-text); }
.podcast-episodes { max-width: 700px; }
.podcast-episode { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--color-border); gap: 16px; }
.episode-info { display: flex; align-items: baseline; gap: 10px; flex: 1; min-width: 0; }
.episode-num { font-size: 13px; font-weight: 600; color: var(--color-accent); white-space: nowrap; }
.episode-title { font-size: 15px; color: var(--color-text); line-height: 1.4; }
.episode-actions { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.episode-duration { font-size: 12px; color: var(--color-text-muted); }
.listen-btn { font-size: 13px; color: var(--color-accent); text-decoration: none; font-weight: 500; }
.listen-btn:hover { text-decoration: underline; }

/* --- Product Banner --- */
.product-banner { padding: 80px 0; background: #1a1a1a; color: #fff; }
.product-banner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.product-banner-img { border-radius: 12px; overflow: hidden; }
.product-banner-img img { width: 100%; display: block; border-radius: 12px; }
.product-banner-title { font-family: var(--font-display); font-size: 32px; font-weight: 500; margin-bottom: 16px; color: #fff; }
.product-banner-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.product-features { list-style: none; margin-bottom: 28px; }
.product-features li { padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.8); }

/* --- Newsletter Inner (homepage variant) --- */
.newsletter-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.newsletter-inner .newsletter-content { flex: 1; min-width: 280px; }
.newsletter-form { display: flex; gap: 12px; flex: 1; min-width: 320px; align-items: flex-start; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 140px; padding: 12px 16px; border: 1px solid var(--color-border); border-radius: 8px; font-size: 14px; font-family: var(--font-body); background: #fff; }
.newsletter-input:focus { outline: none; border-color: var(--color-accent); }
.newsletter-btn { white-space: nowrap; }

/* --- Two Column Section fix --- */
.two-col-section { padding: 80px 0; background: var(--color-bg-warm); }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.col-section-header { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }
.col-section-title { font-family: var(--font-display); font-size: 26px; font-weight: 400; }
.col-article { display: block; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.06); text-decoration: none; transition: all 0.2s ease; }
.col-article:hover { padding-left: 8px; }
.col-article-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--color-text); margin-bottom: 6px; line-height: 1.4; }
.col-article-excerpt { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }
.col-section-link { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--color-accent); text-decoration: none; font-weight: 500; }
.col-section-link:hover { text-decoration: underline; }

/* --- Book Review Card --- */
.book-review-card { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.06); text-decoration: none; transition: all 0.2s ease; }
.book-review-card:hover { padding-left: 8px; }
.book-cover { width: 64px; height: 90px; border-radius: 4px; overflow: hidden; background: var(--color-bg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-info { flex: 1; }
.book-title { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--color-text); margin-bottom: 4px; line-height: 1.3; }
.book-author { font-size: 12px; color: var(--color-text-muted); margin-bottom: 6px; }
.book-rating { font-size: 14px; letter-spacing: 2px; }

/* --- Responsive for new sections --- */
@media (max-width: 768px) {
  .business-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; }
  .product-banner-inner { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { min-width: auto; }
  .featured-grid { grid-template-columns: 1fr; }
}

/* ==================== SEARCH ==================== */
.search-toggle { background: none; border: none; cursor: pointer; padding: 8px; color: var(--color-text-secondary); transition: color 0.2s; margin-left: 8px; }
.search-toggle:hover { color: var(--color-accent); }
.search-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: #fff; border-bottom: 1px solid var(--color-border); box-shadow: 0 4px 20px rgba(0,0,0,.08); padding: 20px 0; }
.search-overlay.active { display: block !important; }
.search-overlay-inner { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.search-form { display: flex; align-items: center; gap: 12px; }
.search-form > svg { color: var(--color-text-muted); flex-shrink: 0; width: 20px; height: 20px; }
.search-input { flex: 1; border: none; font-size: 18px; font-family: var(--font-body); color: var(--color-text); background: transparent; outline: none; padding: 8px 0; }
.search-input::placeholder { color: var(--color-text-muted); }
.search-close { background: none; border: none; cursor: pointer; padding: 8px; color: var(--color-text-muted); flex-shrink: 0; }
.search-close:hover { color: var(--color-text); }

/* ==================== COMPACT ARTICLE CARDS ==================== */
.compact-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.compact-card { display: block; text-decoration: none; background: #fff; border-radius: 12px; border: 1px solid var(--color-border); overflow: hidden; transition: all 0.3s ease; }
.compact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.compact-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--color-bg-warm); display: flex; align-items: center; justify-content: center; }
.compact-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.compact-card:hover .compact-card-img img { transform: scale(1.05); }
.compact-card-img svg { width: 36px; height: 36px; color: var(--color-text-muted); opacity: 0.2; }
.compact-card-body { padding: 14px 16px 16px; }
.compact-card-cat { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-accent); font-weight: 500; }
.compact-card-title { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--color-text); line-height: 1.35; margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ==================== PF ARTICLE WITH THUMBNAIL ==================== */
a.pf-article { display: flex; flex-direction: row; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.06); text-decoration: none; transition: all 0.2s ease; align-items: flex-start; }
a.pf-article:hover { padding-left: 4px; }
.pf-article-thumb { width: 80px; min-width: 80px; max-width: 80px; height: 80px; border-radius: 8px; overflow: hidden; background: var(--color-bg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pf-article-thumb img { width: 80px; height: 80px; object-fit: cover; display: block; }
.pf-article-thumb svg { width: 28px; height: 28px; color: var(--color-text-muted); opacity: 0.2; }
.pf-article-info { flex: 1; min-width: 0; }
.pf-article-cat { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-accent); font-weight: 500; display: block; }
.pf-article-title { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--color-text); margin: 4px 0; line-height: 1.35; }
.pf-article-excerpt { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ==================== BOOK EXCERPT ==================== */
.book-excerpt { font-size: 12px; color: var(--color-text-muted); line-height: 1.5; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ==================== COMPACT GRID RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .compact-grid { grid-template-columns: repeat(3, 1fr); }
  .compact-grid .compact-card:nth-child(n+4) { display: none; }
}
@media (max-width: 768px) {
  .compact-grid { grid-template-columns: repeat(2, 1fr); }
  .compact-grid .compact-card:nth-child(n+3) { display: none; }
  .pf-article-thumb { width: 64px; height: 64px; }
}
@media (max-width: 480px) {
  .compact-grid { grid-template-columns: 1fr; }
  .compact-grid .compact-card:nth-child(n+3) { display: none; }
}
