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

/* =====================================================
   Profile Journey Space — "Chronicle" Design System
   Concept: Bold editorial journal with modern punch
   Palette:
     --teal:     #2C5F6A  (primary – deep teal)
     --coral:    #F27D59  (secondary – warm coral)
     --amber:    #FFB347  (accent – vibrant amber)
     --bg:       #F9F9F9  (off-white page background)
     --text:     #22333B  (dark text)
     --surface:  #FFFFFF  (card surfaces)
   Unique features:
     - Syne (bold geometric) + Source Sans 3 (body)
     - Sticky header that transitions teal on scroll
     - Oversized hero with diagonal clip + floating tag
     - Article cards: bookmark-tab corner accent
     - Steps: horizontal timeline with large icons
     - Animated underline from center on nav links
     - Footer: teal background with diagonal top cut
     - Progress bar on article pages
     - Scroll-reveal fade-up animations
===================================================== */

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

:root {
  --teal:        #2C5F6A;
  --teal-dk:     #1e4550;
  --teal-lt:     #e8f2f4;
  --teal-mid:    #3d7a89;
  --coral:       #F27D59;
  --coral-dk:    #d96642;
  --coral-lt:    #fff0eb;
  --amber:       #FFB347;
  --amber-dk:    #e09a2c;
  --amber-lt:    #fff8ec;
  --bg:          #F9F9F9;
  --surface:     #FFFFFF;
  --text:        #22333B;
  --text-soft:   #4a6170;
  --text-muted:  #7a9aa8;
  --border:      rgba(44,95,106,0.12);
  --shadow-sm:   0 2px 12px rgba(34,51,59,0.06);
  --shadow:      0 4px 24px rgba(34,51,59,0.10);
  --shadow-lg:   0 12px 56px rgba(34,51,59,0.14);
  --shadow-teal: 0 8px 32px rgba(44,95,106,0.28);
  --max-w:       1200px;
  --text-max:    780px;
  --header-h:    72px;
  --radius:      14px;
  --radius-sm:   7px;
  --radius-lg:   28px;
  --t:           0.26s cubic-bezier(0.4,0,0.2,1);
  --t-slow:      0.5s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.78;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

h1,h2,h3,h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.18;
  font-weight: 700;
}

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

/* ── Wrapper ── */
.wrapper {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 52px);
}

/* ── Text content width limiter ── */
.text-content {
  max-width: var(--text-max);
  margin-inline: auto;
}

/* ─────────────────────────────────────────
   PROGRESS BAR (article pages)
───────────────────────────────────────── */
#read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--amber));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 200;
  background: rgba(249,249,249,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--amber));
}

.site-header.scrolled {
  background: var(--teal);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 32px rgba(34,51,59,0.18);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-logo img { height: 42px; width: auto; }
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal);
  transition: color var(--t);
  white-space: nowrap;
}
.site-header.scrolled .logo-name { color: #fff; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  position: relative;
  transition: color var(--t), background var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--coral);
  transform: translateX(-50%);
  transition: width var(--t);
  border-radius: 2px;
}
.nav-link:hover { color: var(--teal); background: var(--teal-lt); }
.nav-link:hover::after { width: 60%; }
.nav-link.active { color: var(--teal); }

.site-header.scrolled .nav-link { color: rgba(255,255,255,0.85); }
.site-header.scrolled .nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.site-header.scrolled .nav-link::after { background: var(--amber); }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: background var(--t);
}
.burger:hover { background: rgba(255,255,255,0.12); }
.burger:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform var(--t), opacity var(--t), width var(--t);
}
.burger span:nth-child(2) { width: 70%; }
.site-header.scrolled .burger span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 100%; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--teal);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t), opacity var(--t);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .nav-link {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  padding: 14px 20px;
}
.mobile-menu .nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.mobile-menu .nav-link::after { background: var(--amber); }

/* ─────────────────────────────────────────
   PAGE TOP SPACING
───────────────────────────────────────── */
.page-top { padding-top: var(--header-h); }

/* ─────────────────────────────────────────
   HERO — INDEX
───────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--teal-dk);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(92vh - var(--header-h));
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: clamp(48px,8vh,96px) clamp(24px,5vw,72px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.hero h1 .accent-word {
  color: var(--amber);
  position: relative;
}

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 100px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 6px 24px rgba(242,125,89,0.4);
}
.hero-cta:hover {
  background: var(--coral-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(242,125,89,0.5);
}
.hero-cta svg { transition: transform var(--t); }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-image {
  position: relative;
  height: 100%;
  min-height: 540px;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-dk) 0%, transparent 50%);
}

/* Floating decoration */
.hero-decoration {
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,71,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ─────────────────────────────────────────
   SECTION LABELS
───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

/* ─────────────────────────────────────────
   INDEX INTRO SECTION
───────────────────────────────────────── */
.index-intro {
  padding: 80px 0 64px;
}
.index-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Fix hero img in content area */
.index-intro .hero-img-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.index-intro .hero-img-block img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.index-intro-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--teal);
}
.index-intro-text p {
  font-size: 1.06rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   JOURNEY STEPS (adding-section)
───────────────────────────────────────── */
.journey-steps {
  background: var(--teal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 240px; height: 240px;
  border: 3px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.journey-steps::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  border: 3px solid rgba(255,179,71,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.journey-steps .section-label { color: var(--amber); }
.journey-steps .section-label::before { background: var(--amber); }

.journey-steps-header {
  margin-bottom: 48px;
}
.journey-steps-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}
.journey-steps-header p {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  font-size: 1.06rem;
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,179,71,0.5) 0, rgba(255,179,71,0.5) 8px, transparent 8px, transparent 18px);
  z-index: 0;
}

.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  position: relative;
  text-align: center;
  transition: background var(--t), transform var(--t);
  backdrop-filter: blur(4px);
}
.step-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}


.step-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin: 0 0 16px;
  opacity: 0.85;
}

.step-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.3;
}
.step-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

/* Step number badge */
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--coral);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(242,125,89,0.5);
  line-height: 36px;
  text-align: center;
}

/* ─────────────────────────────────────────
   ARTICLE CARDS — ARTICLES PAGE
───────────────────────────────────────── */
.articles-section {
  padding: 72px 0 80px;
}
.articles-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
  margin-bottom: 12px;
}
.articles-section .section-label { margin-bottom: 12px; }
.articles-section .intro-text {
  color: var(--text-soft);
  font-size: 1.06rem;
  max-width: 560px;
  margin-bottom: 52px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--border);
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Bookmark-tab corner accent */
.article-card::before {
  content: '';
  position: absolute;
  top: 0; right: 24px;
  width: 28px; height: 44px;
  background: var(--coral);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
  z-index: 2;
  transition: background var(--t);
}
.article-card:hover::before { background: var(--teal); }

.article-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--teal-lt);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.article-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.35;
  flex: 1;
}
.article-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral);
  transition: color var(--t), gap var(--t);
}
.article-card-link:hover { color: var(--teal); gap: 10px; }
.article-card-link svg { transition: transform var(--t); }
.article-card-link:hover svg { transform: translateX(3px); }

/* ─────────────────────────────────────────
   ARTICLE SINGLE PAGE
───────────────────────────────────────── */
.article-page {
  padding: 56px 0 80px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.article-breadcrumb a {
  color: var(--coral);
  font-weight: 600;
  transition: color var(--t);
}
.article-breadcrumb a:hover { color: var(--teal); }
.article-breadcrumb .sep { color: var(--border); font-size: 1.2rem; }

.article-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--border);
}
.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--teal);
  margin-bottom: 16px;
  line-height: 1.2;
}

/* Article content styling */
.article-body h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--teal);
  margin: 2.4em 0 0.8em;
  padding-left: 16px;
  border-left: 4px solid var(--coral);
  position: relative;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  color: var(--text-soft);
  margin-bottom: 1.2em;
  font-size: 1.05rem;
  line-height: 1.85;
}
.article-body img {
  width: 100%;
  border-radius: var(--radius);
  margin: 28px 0;
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral);
  border: 2px solid var(--coral);
  padding: 12px 22px;
  border-radius: 100px;
  transition: background var(--t), color var(--t);
  margin-top: 48px;
  letter-spacing: 0.03em;
}
.back-link:hover {
  background: var(--coral);
  color: #fff;
}
.back-link svg { transition: transform var(--t); }
.back-link:hover svg { transform: translateX(-4px); }

/* ─────────────────────────────────────────
   ABOUT US PAGE
───────────────────────────────────────── */
.about-page {
  padding: 64px 0 80px;
}

.about-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 60%, var(--teal-dk) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border: 3px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,179,71,0.12), transparent 70%);
  border-radius: 50%;
}
.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.about-hero .section-label {
  color: var(--amber);
  position: relative;
  z-index: 1;
}
.about-hero .section-label::before { background: var(--amber); }

.about-mission {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-mission::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--coral), var(--amber));
}
.about-mission p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.about-values {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow var(--t), transform var(--t);
}
.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.value-icon {
  width: 56px; height: 56px;
  background: var(--teal-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
}
.value-card h3 {
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─────────────────────────────────────────
   FEATURED ARTICLES STRIP (index)
───────────────────────────────────────── */
.featured-articles {
  padding: 72px 0 80px;
  background: var(--surface);
}
.featured-articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.featured-articles-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--teal);
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral);
  letter-spacing: 0.04em;
  transition: gap var(--t), color var(--t);
}
.view-all-link:hover { color: var(--teal); gap: 10px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--teal);
  color: rgba(255,255,255,0.85);
  margin-top: auto;
  position: relative;
  clip-path: polygon(0 32px, 6% 0, 94% 0, 100% 32px, 100% 100%, 0 100%);
  padding-top: 32px;
}

.footer-inner {
  padding-block: 64px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img { height: 38px; width: auto; }
.footer-logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  line-height: 1.7;
}

.footer-nav { display: flex; flex-direction: column; gap: 6px; }
.footer-nav-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.footer-nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  padding: 4px 0;
  transition: color var(--t), padding-left var(--t);
  display: block;
}
.footer-nav a:hover { color: #fff; padding-left: 8px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 16px;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.47s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-image {
    clip-path: none;
    height: 300px;
    min-height: unset;
  }
  .hero-text { padding: 56px 28px; }
  .hero-decoration { display: none; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .about-mission { padding: 32px 24px; }
}

@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .hero h1 { font-size: 2rem; }
  .site-footer { clip-path: polygon(0 16px, 8% 0, 92% 0, 100% 16px, 100% 100%, 0 100%); padding-top: 16px; }
}
