/*
Theme Name: Over His Shit
Theme URI: https://overhisshit.com
Author: Over His Shit
Author URI: https://overhisshit.com
Description: A luxury empowerment blog for women healing, growing, and becoming their most powerful selves after heartbreak. Royal Navy, Soft Gold, and Ivory palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: overhisshit
Tags: blog, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, translation-ready
*/

/* =============================================================================
   CSS CUSTOM PROPERTIES
============================================================================= */
:root {
  --navy:        #0B1F3B;
  --navy-2:      #142d52;
  --navy-3:      #1a3560;
  --gold:        #C6A96A;
  --gold-2:      #dfc28a;
  --gold-3:      #a8884e;
  --ivory:       #F7F5F2;
  --ivory-2:     #EEE9E2;
  --ivory-3:     #E5DDD4;
  --slate:       #4F648A;
  --slate-2:     #3d5070;
  --rose:        #D8A7A7;
  --rose-2:      #c49090;
  --charcoal:    #2B2B2B;
  --muted:       #6B7280;
  --white:       #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  --max-width:    1200px;
  --content-width: 760px;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:    0 2px 12px rgba(11,31,59,0.07);
  --shadow-md:    0 6px 28px rgba(11,31,59,0.10);
  --shadow-lg:    0 16px 48px rgba(11,31,59,0.14);
  --section-pad:  90px;
}

/* =============================================================================
   RESET & BASE
============================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section { padding-block: var(--section-pad); }
.section--sm { padding-block: 60px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* =============================================================================
   TYPOGRAPHY
============================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

.gold-rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 18px;
  border-radius: 2px;
}

/* =============================================================================
   BUTTONS
============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-2); border-color: var(--gold-2); }

.btn--navy {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-2); border-color: var(--navy-2); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--ivory); }

.btn--ghost {
  background: transparent;
  color: rgba(247,245,242,0.75);
  border: none;
  padding-left: 0; padding-right: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.btn--ghost:hover { color: var(--gold); }

.btn--lg { padding: 16px 36px; font-size: 13px; }
.btn--sm { padding: 9px 18px; font-size: 11px; }

/* =============================================================================
   SKIP LINK
============================================================================= */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--navy);
  color: var(--ivory);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 13px;
  transition: top 0.2s;
}
.skip-link:focus { top: 20px; }

/* =============================================================================
   READING PROGRESS BAR
============================================================================= */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =============================================================================
   HEADER & NAVIGATION
============================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: background var(--transition), box-shadow var(--transition);
  /* Default: solid ivory for all pages */
  background: rgba(247,245,242,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(11,31,59,0.08);
}

/* Transparent only on homepage when not scrolled */
.is-front-page .site-header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header.scrolled {
  background: rgba(247,245,242,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(11,31,59,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px,5vw,48px);
  max-width: var(--max-width);
  margin-inline: auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__mark {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  transition: color var(--transition);
}
.site-logo__name em { color: var(--gold); font-style: italic; }
.site-logo__tagline {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* Header transparent state — only on homepage hero, white text */
.is-front-page .site-header:not(.scrolled) .site-logo__name { color: var(--ivory); }
.is-front-page .site-header:not(.scrolled) .site-logo__mark { color: var(--gold); }
.is-front-page .site-header:not(.scrolled) .site-logo__tagline { color: rgba(247,245,242,0.5); }
.is-front-page .site-header:not(.scrolled) .primary-nav__link { color: rgba(247,245,242,0.75); }
.is-front-page .site-header:not(.scrolled) .primary-nav__link:hover { background: rgba(247,245,242,0.1); color: var(--gold); }
.is-front-page .site-header:not(.scrolled) .hamburger span { background: var(--ivory); }
/* Primary Nav */
.primary-nav { display: flex; align-items: center; }

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav__link {
  display: block;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 20px;
  transition: all var(--transition);
  color: var(--navy);
}

/* Nav hover on solid header */
.primary-nav__link:hover { background: rgba(198,169,106,0.12); color: var(--gold); }
.primary-nav__item.current-menu-item .primary-nav__link { color: var(--gold); }

/* Nav CTA */
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 490;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 5vw, 32px);
  color: rgba(247,245,242,0.7);
  border-bottom: 0.5px solid rgba(198,169,106,0.15);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--gold); }
.mobile-nav__cta { margin-top: 8px; }

/* =============================================================================
   HERO SECTION
============================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--navy);
}

.hero__video,
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(11,31,59,0.97) 0%,
      rgba(11,31,59,0.80) 30%,
      rgba(11,31,59,0.50) 60%,
      rgba(11,31,59,0.60) 100%);
}

.hero__line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  z-index: 2;
  pointer-events: none;
}
.hero__line--1 {
  right: 15%;
  background: linear-gradient(to bottom, transparent, rgba(198,169,106,0.22) 30%, rgba(198,169,106,0.22) 70%, transparent);
}
.hero__line--2 {
  right: 30%;
  background: linear-gradient(to bottom, transparent, rgba(198,169,106,0.09) 20%, rgba(198,169,106,0.09) 80%, transparent);
}

.hero__content {
  position: relative;
  z-index: 4;
  padding-inline: clamp(24px, 6vw, 80px);
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 1s 0.45s forwards;
}
.hero__title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero__subtitle-wrap {
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.65s forwards;
}
.hero__subtitle {
  font-size: 15px;
  color: rgba(247,245,242,0.6);
  line-height: 1.8;
  max-width: 400px;
  font-weight: 300;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.85s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 38px;
  right: clamp(24px, 6vw, 80px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
  color: rgba(247,245,242,0.35);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(198,169,106,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* =============================================================================
   TAGLINE MARQUEE STRIP
============================================================================= */
.tagline-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.tagline-strip__track {
  display: flex;
  gap: 48px;
  animation: marquee 26s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.tagline-strip__item {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.tagline-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.3;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================================================
   BRAND INTRO SECTION
============================================================================= */
.brand-intro { background: var(--ivory); }

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

.brand-intro__heading {
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.2;
  margin-bottom: 22px;
}
.brand-intro__heading em { color: var(--rose-2); font-style: italic; }

.brand-intro__body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.brand-intro__sig {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--slate);
  font-size: 17px;
}

/* Stat cards — clean vertical stack, all readable */
.brand-intro__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  width: 100%;
}

.brand-intro__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  border: 1px solid var(--ivory-2);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  width: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.brand-intro__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.brand-intro__card--1 { border-left-color: var(--gold); }
.brand-intro__card--2 { border-left-color: var(--slate); }
.brand-intro__card--3 { border-left-color: var(--rose); }

/* Articles sub-section within brand-intro */
.brand-intro__articles {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--ivory-2);
}

.brand-intro__card-accent { display: none; }

.brand-intro__card-num {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 1.1;
}
.brand-intro__card-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* =============================================================================
   SECTION HEADERS
============================================================================= */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }
.section-header--center .gold-rule { margin-inline: auto; }

.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ivory-2);
}

/* =============================================================================
   ARTICLE CARDS
============================================================================= */
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-2);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.article-card__image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--ivory-2);
  flex-shrink: 0;
}

.article-card__image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.article-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.article-card:hover .article-card__image img { transform: scale(1.04); }

.article-card__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
}

.article-card__category {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  z-index: 2;
  transition: background var(--transition);
}
.article-card__category:hover { background: var(--gold-2); }

.article-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.article-card__meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--muted);
}

.article-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.article-card:hover .article-card__title { color: var(--slate); }
.article-card__title a { color: inherit; }

.article-card__excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.article-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--transition);
}
.article-card__read-more:hover { gap: 10px; }
.article-card__read-more svg { width: 14px; height: 14px; }

/* Featured articles grid — 3 col */
.featured-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Latest articles grid — 3 col */
.latest-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Blog / Archive grid */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =============================================================================
   QUIZ CTA SECTION
============================================================================= */
.quiz-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.quiz-cta__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.quiz-cta__circle--1 {
  width: 500px; height: 500px;
  right: -100px; top: -100px;
  border: 1px solid rgba(198,169,106,0.08);
}
.quiz-cta__circle--2 {
  width: 320px; height: 320px;
  right: -50px; top: -50px;
  border: 1px solid rgba(198,169,106,0.05);
}

.quiz-cta .container { position: relative; z-index: 1; }

.quiz-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quiz-cta__eyebrow { color: var(--rose); }

.quiz-cta__heading {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}
.quiz-cta__heading em { color: var(--gold); font-style: italic; }

.quiz-cta__body {
  font-size: 14px;
  color: rgba(247,245,242,0.6);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 420px;
}

.quiz-types { display: flex; flex-direction: column; gap: 12px; }

.quiz-type-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,169,106,0.12);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--transition), background var(--transition);
}
.quiz-type-item:hover {
  border-color: rgba(198,169,106,0.35);
  background: rgba(255,255,255,0.06);
}

.quiz-type-item__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.quiz-type-item__name {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--ivory);
  display: block;
  margin-bottom: 2px;
}
.quiz-type-item__desc {
  font-size: 11px;
  color: rgba(247,245,242,0.45);
}

/* =============================================================================
   PILLAR CATEGORIES GRID
============================================================================= */
.pillars { background: var(--ivory); }

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

.pillar-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pillar-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pillar-card__bg img { width: 100%; height: 100%; object-fit: cover; }

.pillar-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pillar-card__body {
  position: relative;
  z-index: 2;
  padding: 20px 16px;
  margin-top: auto;
}

.pillar-card__icon {
  display: block;
  font-size: 17px;
  margin-bottom: 9px;
  line-height: 1;
}
.pillar-card__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 5px;
}
.pillar-card__count {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Color variants */
.pillar-card--1 { background: var(--navy); }
.pillar-card--1 .pillar-card__overlay { background: linear-gradient(to top, rgba(11,31,59,0.92), rgba(11,31,59,0.25)); }
.pillar-card--1 .pillar-card__title { color: var(--ivory); }
.pillar-card--1 .pillar-card__icon, .pillar-card--1 .pillar-card__count { color: var(--gold); }

.pillar-card--2 { background: var(--white); border: 1px solid var(--ivory-2); }
.pillar-card--2 .pillar-card__overlay { background: linear-gradient(to top, rgba(247,245,242,0.96), rgba(247,245,242,0.35)); }
.pillar-card--2 .pillar-card__title { color: var(--navy); }
.pillar-card--2 .pillar-card__icon { color: var(--gold); }
.pillar-card--2 .pillar-card__count { color: var(--muted); }

.pillar-card--3 { background: var(--rose); }
.pillar-card--3 .pillar-card__overlay { background: linear-gradient(to top, rgba(160,80,80,0.75), rgba(160,80,80,0.1)); }
.pillar-card--3 .pillar-card__title, .pillar-card--3 .pillar-card__icon { color: var(--white); }
.pillar-card--3 .pillar-card__count { color: rgba(255,255,255,0.7); }

.pillar-card--4 { background: var(--ivory-2); }
.pillar-card--4 .pillar-card__overlay { background: linear-gradient(to top, rgba(190,180,165,0.85), rgba(190,180,165,0.15)); }
.pillar-card--4 .pillar-card__title { color: var(--navy); }
.pillar-card--4 .pillar-card__icon { color: var(--slate); }
.pillar-card--4 .pillar-card__count { color: var(--muted); }

.pillar-card--5 { background: var(--slate); }
.pillar-card--5 .pillar-card__overlay { background: linear-gradient(to top, rgba(25,45,75,0.88), rgba(25,45,75,0.15)); }
.pillar-card--5 .pillar-card__title, .pillar-card--5 .pillar-card__icon { color: var(--ivory); }
.pillar-card--5 .pillar-card__count { color: rgba(247,245,242,0.55); }

/* =============================================================================
   QUOTE / STATEMENT SECTION
============================================================================= */
.quote-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.quote-section__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
}
.quote-section__decor svg { width: 100%; height: 100%; }

.blockquote-hero {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-inline: auto;
}

.blockquote-hero__mark {
  display: block;
  font-family: var(--font-accent);
  font-size: 72px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.5;
}

.blockquote-hero__text {
  font-family: var(--font-accent);
  font-size: clamp(20px, 2.8vw, 30px);
  font-style: italic;
  color: var(--ivory);
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 300;
}

.blockquote-hero__cite {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  opacity: 0.7;
}
.blockquote-hero__cite::before { content: '— '; }

/* =============================================================================
   NEWSLETTER / EMAIL CAPTURE SECTION
============================================================================= */
.newsletter-section {
  background: var(--ivory-2);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.newsletter-section__bg-text {
  position: absolute;
  font-family: var(--font-heading);
  font-size: clamp(100px, 20vw, 220px);
  color: rgba(11,31,59,0.04);
  font-weight: 400;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: 0;
  text-align: left;
}

.newsletter-content__icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
  text-align: left;
}

.newsletter-content__title {
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.25;
  text-align: left;
}
.newsletter-content__title em { color: var(--gold); font-style: italic; }

.newsletter-content__subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 520px;
  text-align: left;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin-inline: 0;
}

.newsletter-form__input {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--ivory-3);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form__input::placeholder { color: var(--muted); }
.newsletter-form__input:focus { border-color: var(--gold); }

.newsletter-form__privacy {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  text-align: left;
}
  color: var(--muted);
  margin-top: 8px;
}

/* Inline newsletter box (inside articles) */
.newsletter-inline {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  margin: 40px 0;
}
.newsletter-inline .newsletter-form { flex-direction: row; }
.newsletter-inline .newsletter-form .newsletter-form__input { flex: 1; }

/* =============================================================================
   CATEGORY HERO
============================================================================= */
.category-hero {
  background: var(--navy);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.category-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,59,0.9) 0%, rgba(79,100,138,0.5) 100%);
}

.category-hero__eyebrow { color: rgba(198,169,106,0.8); }

.category-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 14px;
}

.category-hero__description {
  font-size: 15px;
  color: rgba(247,245,242,0.65);
  line-height: 1.8;
  max-width: 600px;
  font-weight: 300;
}

/* =============================================================================
   ARCHIVE LAYOUT (blog + categories)
============================================================================= */
.archive-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-block: 60px;
}

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

/* Category filter pills */
.category-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.category-filter__pill {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--ivory-2);
  background: var(--white);
  color: var(--muted);
  transition: all var(--transition);
  text-decoration: none;
}
.category-filter__pill:hover, .category-filter__pill.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* =============================================================================
   SIDEBAR
============================================================================= */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--ivory-2);
}

.sidebar-widget__title {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ivory-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-categories { display: flex; flex-direction: column; gap: 4px; }
.sidebar-category {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--charcoal);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.sidebar-category:hover { background: var(--ivory); color: var(--gold); }
.sidebar-category__count {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
  background: var(--ivory);
  padding: 2px 7px;
  border-radius: 10px;
}

/* =============================================================================
   PAGINATION
============================================================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pagination__link, .pagination__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid var(--ivory-2);
  background: var(--white);
  color: var(--charcoal);
  text-decoration: none;
}
.pagination__link:hover { border-color: var(--gold); color: var(--gold); }
.pagination__current {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.pagination__prev, .pagination__next { font-size: 13px; }

/* =============================================================================
   SINGLE POST
============================================================================= */
.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-block: 48px;
}

.post-header { margin-bottom: 36px; }

.post-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.post-category-tag:hover { background: var(--gold-2); }

.post-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.post-meta span { display: flex; align-items: center; gap: 4px; }
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

.post-featured-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
  aspect-ratio: 16/9;
}
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; }

/* Post content typography */
.post-content { max-width: var(--content-width); }

.post-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 8px;
  border-top: 2px solid var(--gold);
  display: inline-block;
}

.post-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--slate);
}

.post-content p { font-size: 16px; line-height: 1.85; color: var(--charcoal); margin-bottom: 20px; }

.post-content ul, .post-content ol {
  margin: 20px 0 20px 24px;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { font-size: 16px; line-height: 1.8; color: var(--charcoal); margin-bottom: 6px; }

.post-content a { color: var(--slate); border-bottom: 1px solid rgba(79,100,138,0.3); transition: color var(--transition); }
.post-content a:hover { color: var(--gold); }

.post-content blockquote {
  margin: 32px 0;
  padding: 20px 26px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.65;
}

.post-content img {
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.post-content strong { color: var(--navy); font-weight: 600; }

/* Key takeaways box */
.takeaways-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin: 40px 0;
}
.takeaways-box__title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(198,169,106,0.2);
}
.takeaways-box ul { margin: 0; }
.takeaways-box li {
  font-size: 14px;
  color: rgba(247,245,242,0.82);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.takeaways-box li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 5px;
}

/* Related posts */
.related-posts { margin-top: 56px; }
.related-posts__title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ivory-2);
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Author bio */
.author-bio {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 48px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--ivory-2);
}
.author-bio__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ivory-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
}
.author-bio__name {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}
.author-bio__desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* =============================================================================
   BREADCRUMBS
============================================================================= */
.breadcrumbs {
  background: var(--ivory);
  border-bottom: 1px solid var(--ivory-2);
}
.breadcrumbs__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 12px clamp(20px,5vw,48px);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumbs__link {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumbs__link:hover { color: var(--gold); }
.breadcrumbs__sep { color: var(--ivory-3); }
.breadcrumbs__current { color: var(--charcoal); }

/* =============================================================================
   STATIC PAGE
============================================================================= */
.page-hero {
  background: var(--navy);
  padding: 140px 0 60px;
}
.page-hero__title { color: var(--ivory); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; }
.page-hero__subtitle { color: rgba(247,245,242,0.6); font-size: 16px; line-height: 1.7; max-width: 540px; }

.page-content {
  max-width: 760px;
  margin-inline: auto;
  padding: 60px clamp(20px,5vw,48px);
}

/* =============================================================================
   QUIZ PAGE
============================================================================= */
.quiz-page {
  background: var(--navy);
  min-height: 100vh;
  padding: 120px 0 80px;
}

.quiz-wrapper {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 24px;
}

.quiz-intro { text-align: center; margin-bottom: 48px; }
.quiz-intro__eyebrow { color: var(--rose); }
.quiz-intro__title { color: var(--ivory); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.quiz-intro__sub { color: rgba(247,245,242,0.6); font-size: 14px; margin-bottom: 28px; }
.quiz-intro__social-proof {
  font-size: 12px;
  color: rgba(198,169,106,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Progress bar */
.quiz-progress-wrap {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 36px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.quiz-question { display: none; }
.quiz-question.active { display: block; }

.quiz-q-count {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(198,169,106,0.7);
  margin-bottom: 12px;
  display: block;
}
.quiz-q-text {
  font-family: var(--font-heading);
  font-size: clamp(18px, 3vw, 26px);
  color: var(--ivory);
  margin-bottom: 28px;
  line-height: 1.4;
}

.quiz-options { display: flex; flex-direction: column; gap: 10px; }

.quiz-option {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(198,169,106,0.15);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  width: 100%;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}
.quiz-option:hover { border-color: var(--gold); background: rgba(198,169,106,0.08); }
.quiz-option.selected { border-color: var(--gold); background: rgba(198,169,106,0.12); }

.quiz-option__letter {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
  font-size: 16px;
  min-width: 20px;
  flex-shrink: 0;
}

.quiz-next-btn {
  margin-top: 28px;
  width: 100%;
}
.quiz-next-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Quiz result */
.quiz-result { display: none; }
.quiz-result.active { display: block; }

.quiz-result__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(198,169,106,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 24px;
}
.quiz-result__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.quiz-result__type-name {
  font-family: var(--font-heading);
  font-size: clamp(26px, 5vw, 38px);
  color: var(--ivory);
  margin-bottom: 6px;
}
.quiz-result__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16px;
  color: rgba(247,245,242,0.7);
  margin-bottom: 20px;
}
.quiz-result__traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.quiz-result__trait {
  background: rgba(198,169,106,0.15);
  color: var(--gold);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
}
.quiz-result__desc {
  font-size: 14px;
  color: rgba(247,245,242,0.75);
  line-height: 1.8;
  border-top: 1px solid rgba(198,169,106,0.15);
  padding-top: 18px;
}

.quiz-email-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,169,106,0.2);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin-bottom: 20px;
  text-align: center;
}
.quiz-email-box__eyebrow { font-size: 11px; color: var(--rose); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.quiz-email-box__title { font-family: var(--font-heading); font-size: 18px; color: var(--ivory); margin-bottom: 6px; }
.quiz-email-box__sub { font-size: 13px; color: rgba(247,245,242,0.55); margin-bottom: 18px; }

.quiz-email-form { display: flex; gap: 8px; }
.quiz-email-input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(198,169,106,0.2);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.quiz-email-input::placeholder { color: rgba(247,245,242,0.35); }
.quiz-email-input:focus { border-color: var(--gold); }

.quiz-success-msg {
  background: rgba(50,180,80,0.12);
  border: 1px solid rgba(50,180,80,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: #7adb8a;
  text-align: center;
  margin-top: 10px;
  display: none;
}

.quiz-retake { display: block; width: 100%; background: transparent; border: 1px solid rgba(247,245,242,0.15); color: rgba(247,245,242,0.5); border-radius: var(--radius-sm); padding: 11px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-body); transition: all var(--transition); }
.quiz-retake:hover { border-color: rgba(247,245,242,0.3); color: var(--ivory); }

/* =============================================================================
   ABOUT PAGE
============================================================================= */
.about-hero { background: var(--navy); padding: 140px 0 70px; position: relative; overflow: hidden; }
.about-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-hero__title { color: var(--ivory); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; }
.about-hero__title em { color: var(--gold); }
.about-hero__lead { font-size: 16px; color: rgba(247,245,242,0.7); line-height: 1.8; }
.about-hero__photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--navy-3); display: flex; align-items: center; justify-content: center; }
.about-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__photo-placeholder { font-family: var(--font-heading); font-size: 80px; color: rgba(198,169,106,0.3); }

/* =============================================================================
   RESOURCES PAGE
============================================================================= */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  border: 1px solid var(--ivory-2);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-sm); }
.resource-card__icon { font-size: 28px; flex-shrink: 0; margin-top: 4px; }
.resource-card__title { font-family: var(--font-heading); font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.resource-card__desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.resource-card__tag { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* =============================================================================
   START HERE PAGE
============================================================================= */
.journey-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.journey-stage {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--ivory-2);
  text-decoration: none;
  display: block;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.journey-stage:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.journey-stage__num {
  font-family: var(--font-heading);
  font-size: 48px;
  color: rgba(198,169,106,0.15);
  line-height: 1;
  margin-bottom: 14px;
}
.journey-stage__phase { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.journey-stage__title { font-family: var(--font-heading); font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.journey-stage__desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.journey-stage__cta { font-size: 11px; font-weight: 500; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; }

/* =============================================================================
   FOOTER
============================================================================= */
.site-footer { background: var(--navy); }

.footer-top { padding: 72px 0 52px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand { }
.footer-brand__logo { margin-bottom: 14px; }
.footer-brand__logo .site-logo__name { color: var(--ivory); }
.footer-brand__tagline {
  font-size: 13px;
  color: rgba(247,245,242,0.45);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 280px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social__link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,245,242,0.55);
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social__link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-nav__title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-nav__list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav__link {
  font-size: 13px;
  color: rgba(247,245,242,0.5);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-nav__link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom__copy {
  font-size: 12px;
  color: rgba(247,245,242,0.3);
}

.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__link {
  font-size: 12px;
  color: rgba(247,245,242,0.35);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom__link:hover { color: var(--gold); }

/* =============================================================================
   SEARCH FORM
============================================================================= */
.search-form { display: flex; gap: 8px; }
.search-field {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--ivory-2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.search-field:focus { border-color: var(--gold); }
.search-submit {
  padding: 10px 16px;
  background: var(--navy);
  color: var(--ivory);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.search-submit:hover { background: var(--gold); color: var(--navy); }

/* =============================================================================
   REVEAL ANIMATIONS
============================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================================================
   RESPONSIVE
============================================================================= */
@media (max-width: 1100px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .brand-intro__grid { gap: 50px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .primary-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .featured-articles-grid, .latest-articles-grid, .archive-grid,
  .related-posts__grid, .journey-stages { grid-template-columns: 1fr 1fr; }
  .quiz-cta__grid, .brand-intro__grid, .about-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .brand-intro__cards { display: none; }
  .archive-layout, .single-post-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__line { display: none; }
  .hero__scroll { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 48px; }
  .featured-articles-grid, .latest-articles-grid, .archive-grid,
  .related-posts__grid, .journey-stages { grid-template-columns: 1fr; }
  .hero__title { font-size: 36px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inline .newsletter-form { flex-direction: column; }
  .quiz-email-form { flex-direction: column; }
}

/* =============================================================================
   PRINT
============================================================================= */
@media print {
  .site-header, .site-footer, .sidebar, .newsletter-section { display: none; }
  body { font-size: 12pt; }
}
