@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/*
  ProfilePathways.com — "STARK" Design System
  Concept: Editorial career magazine / bold print grid
  ──────────────────────────────────────────────────
  KEY DIFFERENCES FROM ALL OTHER SITES:
  • Barlow Condensed (dramatic condensed display) + IBM Plex Sans — unique pair
  • WHITE hero (no dark backgrounds on index), giant condensed H1
  • Rectangular buttons with offset shadow (no pill, no gradient)
  • Horizontal article ROWS on listing page — not cards
  • Bottom-up drawer mobile menu (no right-slide)
  • Progress bar at BOTTOM of viewport, not top
  • NO card lift/hover shadows — instead: color sweep via ::before
  • Orange block split on hero (diagonal clip-path right panel)
  • Sections divided by sharp rule lines + orange pip
  • Numbered section markers in large condensed type
  • Article h2 styled as all-caps label with teal left tick
*/

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

:root {
  --primary:      #1A2E40;
  --secondary:    #E8703A;
  --accent:       #5BC8AF;
  --bg:           #F5F6F7;
  --text:         #1A2730;
  --surface:      #FFFFFF;
  --border:       #D8DFE5;
  --muted:        #6E8899;
  --secondary-lt: #FDF0EB;
  --accent-lt:    #E8F9F6;

  --max-w:        1200px;
  --pad:          clamp(16px, 4vw, 40px);
  --header-h:     68px;
  --t:            0.22s;
  --t-med:        0.38s;

  /* Typography scale */
  --f-display:    'Barlow Condensed', system-ui, sans-serif;
  --f-body:       'IBM Plex Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.1; font-weight: 700; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   READING PROGRESS — bottom of viewport
───────────────────────────────────────────── */
.progress-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--secondary);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────────
   HEADER — always white, sharp bottom line
───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 2px solid var(--primary);
  transition: box-shadow var(--t);
}
.site-header.scrolled {
  box-shadow: 0 4px 0 var(--secondary);
  border-bottom-color: var(--secondary);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img { height: 42px; width: auto; border-radius: 0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-nav a {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 8px 18px;
  position: relative;
  overflow: hidden;
  transition: color var(--t);
}
/* Color sweep from left on hover */
.site-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) ease;
  z-index: -1;
}
.site-nav a:hover { color: var(--surface); }
.site-nav a:hover::before { transform: scaleX(1); }
.site-nav a.active {
  background: var(--secondary);
  color: var(--surface);
}
.site-nav a.active::before { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 3px;
  background: var(--primary);
  border-radius: 0;
  transition: transform var(--t), opacity var(--t), background var(--t), width var(--t);
}
.hamburger span:nth-child(2) { width: 70%; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 100%; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─────────────────────────────────────────────
   MOBILE MENU — BOTTOM DRAWER (unique)
───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}
.mobile-menu.open { display: block; }

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,46,64,0.6);
  backdrop-filter: blur(3px);
  animation: bdIn 0.25s ease;
}
@keyframes bdIn { from { opacity: 0; } to { opacity: 1; } }

.mobile-menu-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  padding: 10px 0 env(safe-area-inset-bottom, 20px);
  transform: translateY(100%);
  transition: transform var(--t-med) cubic-bezier(0.34, 1.2, 0.64, 1);
  border-top: 4px solid var(--secondary);
}
.mobile-menu.open .mobile-menu-panel { transform: translateY(0); }

/* Drag handle */
.mobile-menu-panel::before {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  margin: 12px auto 20px;
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 14px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: color var(--t), background var(--t);
}
.mobile-menu-panel a::after {
  content: '→';
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t), transform var(--t);
}
.mobile-menu-panel a:hover,
.mobile-menu-panel a.active {
  color: var(--secondary);
  background: rgba(255,255,255,0.04);
}
.mobile-menu-panel a:hover::after,
.mobile-menu-panel a.active::after { opacity: 1; transform: translateX(0); }

/* ─────────────────────────────────────────────
   WRAPPER
───────────────────────────────────────────── */
.wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}


/* ─────────────────────────────────────────────
   SECTION DIVIDER (sharp rule + pip)
───────────────────────────────────────────── */
.section-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.section-rule::before {
  content: '';
  display: block;
  width: 10px; height: 10px;
  background: var(--secondary);
  flex-shrink: 0;
}
.section-rule::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
}
.section-rule-label {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────
   BUTTONS — rectangular, offset shadow
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
/* Primary button */
.btn-primary {
  background: var(--secondary);
  color: var(--surface);
  border: 2px solid var(--secondary);
  box-shadow: 5px 5px 0 var(--primary);
}
.btn-primary:hover {
  color: var(--surface);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--primary);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--primary);
}

/* Outline button */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 5px 5px 0 var(--secondary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--surface);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--secondary);
}
.btn-outline:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--secondary);
}

/* Ghost / text button */
.btn-text {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--t), gap var(--t);
}
.btn-text:hover { border-color: var(--secondary); gap: 11px; }
.btn-text .arrow { display: inline-block; transition: transform var(--t); }
.btn-text:hover .arrow { transform: translateX(4px); }

/* ─────────────────────────────────────────────
   HERO — Split layout (white left / orange right)
───────────────────────────────────────────── */
.hero {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}

/* Orange diagonal right panel */
.hero-right-bg {
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 42%;
  background: var(--secondary);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--pad);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: '';
  width: 28px; height: 3px;
  background: var(--secondary);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 86px);
  font-weight: 800;
  color: var(--primary);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--secondary);
  display: block;
}

.hero-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
  font-style: normal;
}

.hero-img-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-panel img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 10px 10px 0 rgba(26,46,64,0.35);
  border: 3px solid rgba(255,255,255,0.3);
}

/* ─────────────────────────────────────────────
   PAGE BANNER (inner pages)
───────────────────────────────────────────── */
.page-banner {
  background: var(--primary);
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}

/* Tiled dot pattern */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Orange rule at left */
.page-banner::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--secondary);
}

.page-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}
.page-banner-label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-banner-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--secondary);
}
.page-banner h1 {
  font-size: clamp(28px, 4.5vw, 56px);
  color: var(--surface);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* ─────────────────────────────────────────────
   CONTENT BODY (article, about, index text)
───────────────────────────────────────────── */
.page-content { padding: 64px 0 80px; }

.content-body { }

.content-body h2 {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin: 2.4em 0 0.8em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.content-body h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--accent);
  flex-shrink: 0;
  border-radius: 1px;
}

.content-body p {
  font-size: 17px;
  line-height: 1.82;
  margin-bottom: 1.15em;
  color: var(--text);
}

.content-body img {
  margin: 32px 0;
  border-radius: 3px;
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
  box-shadow: 6px 6px 0 var(--border);
}

/* Article body (same as content-body) */
.article-body { }
.article-body h2 {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin: 2.4em 0 0.8em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.article-body h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--accent);
  flex-shrink: 0;
  border-radius: 1px;
}
.article-body p {
  font-size: 17px;
  line-height: 1.82;
  margin-bottom: 1.15em;
  color: var(--text);
}
.article-body img {
  margin: 32px 0;
  border-radius: 3px;
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
  box-shadow: 6px 6px 0 var(--border);
}

/* ─────────────────────────────────────────────
   ARTICLE LIST PAGE — horizontal rows
───────────────────────────────────────────── */
/* ── Article cards grid (2 columns, image-left layout) ── */
.articles-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.article-card-h {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  box-shadow: 4px 4px 0 var(--border);
}
.article-card-h:hover {
  border-color: var(--secondary);
  box-shadow: 6px 6px 0 var(--secondary);
  transform: translate(-2px, -2px);
}

.article-card-h-img {
  flex: 0 0 200px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.article-card-h-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: transform 0.4s ease;
}
.article-card-h:hover .article-card-h-img img {
  transform: scale(1.06);
}

/* SVG placeholder when image is SVG (doesn't scale well as thumbnail) */
.article-card-h-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.article-card-h-img-placeholder img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.article-card-h-body {
  flex: 1;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.article-card-h-tag {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 3px 10px 2px;
  border-radius: 2px;
  align-self: flex-start;
}

.article-card-h-title {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  flex: 1;
  transition: color var(--t);
}
.article-card-h:hover .article-card-h-title { color: var(--secondary); }

.article-card-h-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 4px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 9px 18px;
  border-radius: 2px;
  box-shadow: 3px 3px 0 var(--primary);
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.article-card-h:hover .article-card-h-btn {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 3px 3px 0 var(--secondary);
}

.article-card-h-btn-icon {
  width: 22px; height: 22px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: border-color var(--t);
}
.article-card-h:hover .article-card-h-btn-icon { border-color: rgba(255,255,255,0.8); }

/* ─────────────────────────────────────────────
   ARTICLE PAGE — back link + layout
───────────────────────────────────────────── */
.article-layout { padding: 56px 0 88px; }

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  padding: 8px 14px;
  border: 2px solid var(--border);
  border-radius: 2px;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.article-back:hover {
  color: var(--surface);
  background: var(--primary);
  border-color: var(--primary);
}

/* ─────────────────────────────────────────────
   SLIDER (new style: full-bleed, clean)
───────────────────────────────────────────── */
.slider-section {
  background: var(--primary);
  padding: 64px 0 56px;
  overflow: hidden;
}

.slider-head {
  max-width: var(--max-w);
  margin: 0 auto 36px;
  padding: 0 var(--pad);
}

.slider-head-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.slider-head-rule::before {
  content: '';
  width: 40px; height: 3px;
  background: var(--secondary);
}
.slider-head-label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
}

.slider-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--surface);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.career-slider { position: relative; }

.slider-viewport { overflow: hidden; }

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: transform 0.5s ease;
}
.slide:hover img { transform: scale(1.04); }

.slide figcaption {
  padding: 14px 18px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--primary);
  border-top: 3px solid var(--secondary);
}

.slider-footer {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-prev,
.slider-next {
  width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--surface);
}

.slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 1px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: width var(--t), background var(--t);
}
.slider-dot.active {
  width: 24px;
  background: var(--secondary);
}

/* ─────────────────────────────────────────────
   INDEX — INFO BAND (who is this for)
───────────────────────────────────────────── */
.info-band {
  background: var(--surface);
  padding: 72px 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.info-item {
  padding: 36px 32px;
  border-right: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.info-item:last-child { border-right: none; }

.info-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.info-item:hover { background: var(--secondary-lt); }
.info-item:hover::after { transform: scaleX(1); }

.info-item-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 4px;
  transition: color var(--t);
}
.info-item:hover .info-item-num { color: var(--secondary); }

.info-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.info-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   FEATURED STRIP (dark, recent articles)
───────────────────────────────────────────── */
.featured-strip {
  background: var(--bg);
  padding: 72px 0;
}

.featured-strip-head {
  margin-bottom: 40px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--primary);
  box-shadow: 6px 6px 0 var(--primary);
}

.featured-card {
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
  text-decoration: none;
  color: inherit;
}

.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t-med) ease;
  z-index: 0;
}
.featured-card:hover { background: transparent; }
.featured-card:hover::before { transform: scaleY(1); }

.featured-card-num {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: -6px;
  position: relative;
  z-index: 1;
  transition: color var(--t);
}
.featured-card:hover .featured-card-num { color: var(--secondary); }

.featured-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: color var(--t);
}
.featured-card:hover h3 { color: var(--surface); }

.featured-card-link {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  position: relative;
  z-index: 1;
  transition: color var(--t);
}
.featured-card:hover .featured-card-link { color: var(--secondary); }

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.cta-band {
  background: var(--primary);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border: 80px solid rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--surface);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cta-band-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE — timeline + value columns
───────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 6px 6px 0 var(--secondary);
  margin: 48px 0;
}
.about-stat {
  background: var(--surface);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--t);
}
.about-stat:hover { background: var(--secondary-lt); }
.about-stat-num {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
  margin: 36px 0;
}
.about-value {
  background: var(--surface);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.about-value::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.about-value:hover { background: var(--accent-lt); }
.about-value:hover::before { transform: scaleX(1); }
.about-value h4 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 10px;
}
.about-value p {
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
  margin-bottom: 0;
}

.about-quote {
  background: var(--primary);
  border-left: 6px solid var(--secondary);
  padding: 32px 36px;
  margin: 40px 0;
  border-radius: 2px;
}
.about-quote p {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--surface);
  line-height: 1.45;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  border-top: 4px solid var(--secondary);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px var(--pad) 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-logo {
  display: block;
  margin-bottom: 16px;
}
.footer-brand-logo img {
  height: 42px; width: auto;
  border-radius: 0;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.footer-col h4 {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--t), padding-left var(--t);
  display: inline-block;
}
.footer-col a:hover { color: var(--secondary); padding-left: 6px; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--f-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-nav-inline {
  display: flex;
  gap: 20px;
}
.footer-nav-inline a {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--t);
}
.footer-nav-inline a:hover { color: var(--secondary); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 2px solid var(--border); }
  .info-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-stats { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .hero-right-bg { display: none; }
  .hero-img-panel {
    background: var(--secondary);
    margin: 0 calc(-1 * var(--pad));
    padding: 32px var(--pad);
  }
  .hero-img-panel img {
    max-width: 100%;
    box-shadow: none;
    border: none;
  }

  .featured-grid { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: unset; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-nav-inline { gap: 14px; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; }

  .articles-grid-cards { grid-template-columns: 1fr; }
  .article-card-h-img { flex: 0 0 160px; }
}

@media (max-width: 480px) {
  .article-card-h { flex-direction: column; }
  .article-card-h-img { flex: 0 0 180px; width: 100%; }
  .btn { font-size: 14px; padding: 11px 22px; }
  .hero h1 { font-size: 38px; }
}
