/* ============================================
   PREMIUM POLITICAL FIGURE - HOME PAGE STYLES
   ============================================ */

:root {
  /* Color palette */
  --navy-900: #0a1f3d;
  --navy-800: #112a4d;
  --navy-700: #1a3a64;
  --navy-600: #2a4a78;
  --navy-500: #3d5e8c;

  --gold-600: #a8814a;
  --gold-500: #b8975a;
  --gold-400: #c9aa6f;
  --gold-300: #d4b87a;
  --gold-200: #e8d5a8;

  --cream-50: #fbf8f2;
  --cream-100: #f7f3ec;
  --cream-200: #f0e9dd;
  --cream-300: #e6dcc8;

  --ink-900: #0d1421;
  --ink-700: #2a3447;
  --ink-500: #4a5568;
  --ink-400: #6b7588;
  --ink-300: #9aa3b5;
  --ink-200: #c5cbd6;
  --ink-100: #e2e6ed;

  --white: #ffffff;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-pad: 32px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10, 31, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 31, 61, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 31, 61, 0.12);
  --shadow-xl: 0 40px 100px rgba(10, 31, 61, 0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 88px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }
em { font-style: italic; font-family: var(--font-serif); font-weight: 500; color: var(--gold-600); }

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(184, 151, 90, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184, 151, 90, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(184, 151, 90, 0.05); }
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-300);
}
.section-label-light {
  color: var(--gold-300);
  border-color: rgba(212, 184, 122, 0.4);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 640px;
}

.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head-center { text-align: center; margin: 0 auto 72px; }
.section-head-center .section-sub { margin: 0 auto; }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--navy-900);
  color: var(--cream-50);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(10, 31, 61, 0.25);
}

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

.hero .btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.hero .btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  box-shadow: 0 12px 28px rgba(184, 151, 90, 0.3);
}
.hero .btn-outline {
  color: var(--cream-50);
  border-color: rgba(247, 243, 236, 0.5);
}
.hero .btn-outline:hover {
  background: var(--cream-50);
  color: var(--navy-900);
  border-color: var(--cream-50);
}

.btn-outline.btn-light {
  color: var(--cream-50);
  border-color: rgba(247, 243, 236, 0.5);
}
.btn-outline.btn-light:hover {
  background: var(--cream-50);
  color: var(--navy-900);
  border-color: var(--cream-50);
}

.btn-ghost {
  color: var(--navy-900);
  background: transparent;
  border-color: var(--ink-200);
}
.btn-ghost:hover {
  background: var(--navy-900);
  color: var(--cream-50);
  border-color: var(--navy-900);
}

.btn-text {
  padding: 14px 0;
  color: var(--cream-100);
  background: transparent;
}
.btn-text:hover {
  color: var(--gold-300);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-400);
  transition: all 0.3s var(--ease);
}
.link-arrow:hover {
  color: var(--gold-600);
  gap: 14px;
}
.link-arrow-sm { font-size: 13px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 248, 242, 0.95);
  border-bottom-color: var(--cream-300);
  box-shadow: 0 2px 20px rgba(10, 31, 61, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.3s;
}
.brand:hover { opacity: 0.85; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--gold-300);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  position: relative;
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(212, 184, 122, 0.4);
  border-radius: 1px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.005em;
}
.brand-role {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 5px;
}

.brand-light .brand-mark {
  background: var(--cream-100);
  color: var(--navy-900);
}
.brand-light .brand-mark::before {
  border-color: rgba(10, 31, 61, 0.2);
}
.brand-light .brand-name { color: var(--cream-50); }
.brand-light .brand-role { color: var(--ink-300); }

.primary-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.primary-nav a {
  position: relative;
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.primary-nav a:hover { color: var(--navy-900); }
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav a.active {
  color: var(--navy-900);
  font-weight: 600;
}
.primary-nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy-900);
  transition: all 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--cream-50);
  padding: 32px var(--container-pad) 40px;
  border-bottom: 1px solid var(--cream-300);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s var(--ease);
  box-shadow: 0 24px 60px rgba(10, 31, 61, 0.12);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-900);
  border-bottom: 1px solid var(--cream-300);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 100px) 0 120px;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--cream-50);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  filter: grayscale(35%) contrast(1.05);
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 31, 61, 0.96) 0%,
      rgba(10, 31, 61, 0.85) 35%,
      rgba(10, 31, 61, 0.55) 65%,
      rgba(10, 31, 61, 0.75) 100%),
    linear-gradient(180deg,
      rgba(10, 31, 61, 0.4) 0%,
      transparent 30%,
      transparent 70%,
      rgba(10, 31, 61, 0.7) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(10, 31, 61, 0.45) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 151, 90, 0.5), transparent);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--cream-50);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero-title em { color: var(--gold-300); }

.hero-subtitle {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(247, 243, 236, 0.82);
  max-width: 540px;
  margin-bottom: 44px;
}
.hero-subtitle em { color: var(--gold-300); }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-meta {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(212, 184, 122, 0.25);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 6px; }
.meta-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--cream-50);
  line-height: 1;
  letter-spacing: -0.02em;
}
.meta-num .plus { color: var(--gold-300); font-size: 24px; vertical-align: top; margin-left: 2px; }
.meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.6);
  line-height: 1.4;
}
.hero-meta-divider { width: 1px; background: rgba(212, 184, 122, 0.25); }

/* Hero tribute card */
.hero-tribute {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}
.tribute-card {
  position: relative;
  max-width: 440px;
  background: rgba(10, 31, 61, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(212, 184, 122, 0.22);
  padding: 44px 44px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.tribute-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 184, 122, 0.1);
  pointer-events: none;
}
.tribute-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 184, 122, 0.3);
}
.tribute-quote {
  margin: 0 0 28px;
}
.tribute-quote .quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 0.4;
  color: var(--gold-400);
  display: block;
  margin-bottom: 16px;
}
.tribute-quote p {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.45;
  color: var(--cream-50);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.tribute-attr {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 184, 122, 0.18);
}
.attr-line {
  width: 32px;
  height: 1px;
  background: var(--gold-400);
  flex-shrink: 0;
}
.attr-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream-50);
  letter-spacing: 0.005em;
}
.attr-role {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-top: 4px;
}

.tribute-stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.1em;
  color: rgba(247, 243, 236, 0.65);
  padding: 10px 22px;
  border: 1px solid rgba(212, 184, 122, 0.25);
  border-radius: 100px;
  background: rgba(10, 31, 61, 0.4);
  backdrop-filter: blur(8px);
}
.stamp-dot {
  width: 4px; height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 16px;
  background: var(--gold-500);
  animation: scroll-down 2.4s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(56px); opacity: 0; }
}

/* ============ ABOUT ============ */
.about {
  padding: 140px 0;
  background: var(--cream-50);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 96px;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-xl);
  background: var(--navy-900);
}
.about-image-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid var(--gold-400);
  z-index: -1;
}
.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 50%,
    rgba(10, 31, 61, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: contrast(1.05) saturate(0.95);
  transition: transform 0.8s var(--ease);
}
.about-image-frame:hover .about-photo {
  transform: scale(1.03);
}
.about-photo-caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.caption-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  padding: 6px 12px;
  background: rgba(10, 31, 61, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 184, 122, 0.3);
}
.caption-line {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--cream-50);
  letter-spacing: 0.005em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.about-stamp {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: var(--cream-50);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stamp-circle {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-400);
  border-radius: 50%;
}
.stamp-text {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Curved text approximation */
}
.stamp-emblem {
  font-size: 20px;
  color: var(--gold-500);
  z-index: 2;
}

.about-content { padding: 20px 0; }
.about-lead {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.4;
  color: var(--navy-900);
  font-weight: 500;
  margin-bottom: 28px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-500);
  margin-bottom: 20px;
}

.values-list {
  margin: 40px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--cream-300);
  border-bottom: 1px solid var(--cream-300);
}
.values-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-500);
}
.values-list strong {
  color: var(--navy-900);
  font-weight: 600;
  font-family: var(--font-sans);
  display: block;
  margin-bottom: 2px;
}
.value-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--gold-300);
  border-radius: 50%;
}

/* ============ VISION ============ */
.vision {
  padding: 140px 0;
  background: var(--navy-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 151, 90, 0.4), transparent);
}
.vision::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 151, 90, 0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 151, 90, 0.04), transparent 50%);
  pointer-events: none;
}
.vision .section-title { color: var(--cream-50); }
.vision .section-sub { color: var(--ink-200); }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212, 184, 122, 0.15);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 184, 122, 0.15);
}
.vision-grid-3 .card-body {
  padding: 40px 36px 44px;
}
.vision-card {
  background: var(--navy-900);
  position: relative;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.vision-card:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}
.vision-card:hover .card-num { color: var(--gold-300); transform: translateX(4px); }
.vision-card:hover .card-photo img { transform: scale(1.04); filter: grayscale(0%) contrast(1.1); }

.card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy-800);
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(35%) contrast(1.05);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  display: block;
}
.card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 31, 61, 0.05) 0%,
    rgba(10, 31, 61, 0.15) 50%,
    rgba(10, 31, 61, 0.85) 100%);
  pointer-events: none;
}
.card-photo-tag {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  padding: 6px 12px;
  background: rgba(10, 31, 61, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 184, 122, 0.3);
}

.card-body {
  padding: 40px 40px 44px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-num {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 184, 122, 0.3);
  transition: all 0.4s var(--ease);
}
.vision-card h3 {
  font-size: 28px;
  color: var(--cream-50);
  margin-bottom: 16px;
  font-weight: 500;
}
.vision-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-200);
  margin-bottom: 28px;
}
.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  padding: 6px 12px;
  border: 1px solid rgba(212, 184, 122, 0.4);
  border-radius: 2px;
}

/* ============ EXPERIENCE TIMELINE ============ */
.experience {
  padding: 140px 0;
  background: var(--cream-100);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline-line {
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-400), var(--cream-300) 95%, transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: flex-start;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: relative;
  display: flex;
  align-items: center;
}
.timeline-marker::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--cream-100);
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s var(--ease);
}
.timeline-marker::after {
  content: '';
  position: absolute;
  left: -34px;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold-400);
}
.marker-year {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  padding-left: 8px;
}

.timeline-content {
  padding: 24px 32px;
  background: var(--cream-50);
  border-radius: 2px;
  border-left: 3px solid var(--gold-400);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}
.timeline-item:hover .timeline-content {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold-600);
}
.timeline-item:hover .timeline-marker::before {
  background: var(--gold-500);
  box-shadow: 0 0 0 6px rgba(184, 151, 90, 0.15);
}
.timeline-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.timeline-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-500);
}

.timeline-current .timeline-marker::before {
  background: var(--gold-500);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(184, 151, 90, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
.timeline-current .timeline-content {
  background: var(--navy-900);
  border-left-color: var(--gold-500);
}
.timeline-current .timeline-content h3 { color: var(--cream-50); }
.timeline-current .timeline-content p { color: var(--ink-200); }

/* ============ UPDATES ============ */
.updates {
  padding: 140px 0;
  background: var(--cream-50);
}
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.update-card {
  background: var(--cream-100);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.update-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cream-300);
}
.update-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.update-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease);
}
.update-card:hover .update-placeholder { transform: scale(1.04); }
.update-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  background: var(--cream-50);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-900);
  border-radius: 2px;
}
.update-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.update-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 14px;
}
.update-body h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 500;
}
.update-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-500);
  margin-bottom: 24px;
  flex: 1;
}

/* ============ VK FOLLOW ============ */
.vk-follow {
  padding: 140px 0;
  background: var(--cream-50);
  position: relative;
}
.vk-card {
  position: relative;
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  padding: 72px 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  border-radius: 2px;
}
.vk-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 119, 255, 0.06), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(184, 151, 90, 0.08), transparent 40%);
  pointer-events: none;
}

.vk-logo-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 1;
}
.vk-logo-frame {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-50);
  border-radius: 28px;
  padding: 24px;
  box-shadow:
    0 30px 60px rgba(0, 119, 255, 0.15),
    0 8px 24px rgba(10, 31, 61, 0.08);
  transition: transform 0.5s var(--ease);
}
.vk-logo-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold-400);
  border-radius: 36px;
  pointer-events: none;
}
.vk-card:hover .vk-logo-frame {
  transform: translateY(-4px) rotate(-2deg);
}
.vk-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vk-logo-caption {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-400);
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.vk-text-side {
  position: relative;
  z-index: 1;
}
.vk-title {
  margin: 8px 0 20px;
}
.vk-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-500);
  margin-bottom: 36px;
  max-width: 520px;
}
.vk-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vk-btn {
  padding: 16px 32px;
  font-size: 14px;
}
.vk-handle {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-400);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .vk-follow { padding: 96px 0; }
  .vk-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 32px;
    text-align: center;
  }
  .vk-text-side .section-label { display: inline-block; }
  .vk-sub { margin-left: auto; margin-right: auto; }
  .vk-actions { justify-content: center; }
  .vk-logo-frame { width: 160px; height: 160px; padding: 20px; }
}

@media (max-width: 540px) {
  .vk-card { padding: 44px 22px; }
  .vk-logo-frame { width: 140px; height: 140px; padding: 18px; }
}

/* ============ CTA ============ */
.cta {
  padding: 80px 0 140px;
  background: var(--cream-100);
}
.cta-card {
  position: relative;
  background: var(--navy-900);
  border-radius: 2px;
  padding: 120px 80px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 540px;
  display: flex;
  align-items: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: grayscale(40%) contrast(1.05) brightness(0.85);
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg,
      rgba(10, 31, 61, 0.96) 0%,
      rgba(10, 31, 61, 0.88) 40%,
      rgba(10, 31, 61, 0.55) 75%,
      rgba(10, 31, 61, 0.35) 100%),
    radial-gradient(circle at 0% 0%, rgba(184, 151, 90, 0.1), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.cta-pattern::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(212, 184, 122, 0.22);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0;
  text-align: left;
}
.cta-title {
  font-size: clamp(34px, 4.5vw, 56px);
  color: var(--cream-50);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px 0 24px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.cta-title em { color: var(--gold-300); }
.cta-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(247, 243, 236, 0.85);
  margin-bottom: 44px;
  max-width: 560px;
}

.cta-secondary {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-main-btn {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  padding: 16px 32px;
  font-size: 14px;
}
.cta-main-btn:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  box-shadow: 0 12px 28px rgba(184, 151, 90, 0.35);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-200);
  padding: 96px 0 32px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-blurb {
  margin: 24px 0 28px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-300);
  max-width: 380px;
}

.footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-300);
  letter-spacing: 0.06em;
  border: 1px solid rgba(212, 184, 122, 0.3);
  border-radius: 100px;
}
.footer-tag .dot {
  width: 4px; height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
  display: inline-block;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--ink-200);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-300); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-400);
}
.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal a:hover { color: var(--gold-300); }
.footer-legal span { color: var(--ink-500); }

/* ============================================
   ARTICLES PAGE
   ============================================ */

.articles-hero {
  position: relative;
  padding: calc(var(--header-h) + 88px) 0 100px;
  background: var(--navy-900);
  color: var(--cream-50);
  overflow: hidden;
}
.articles-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('articles-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  filter: grayscale(30%) contrast(1.05);
  pointer-events: none;
}
.articles-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg,
      rgba(10, 31, 61, 0.94) 0%,
      rgba(10, 31, 61, 0.82) 45%,
      rgba(10, 31, 61, 0.5) 75%,
      rgba(10, 31, 61, 0.7) 100%),
    radial-gradient(circle at 100% 0%, rgba(184, 151, 90, 0.12), transparent 45%);
}
.articles-hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 151, 90, 0.5), transparent);
}
.articles-hero-inner {
  z-index: 2;
}
.articles-hero-inner > * {
  position: relative;
}
.articles-hero-title {
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.articles-hero-inner {
  position: relative;
  max-width: 880px;
}
.articles-hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 8px 0 28px;
  color: var(--cream-50);
}
.articles-hero-title em { color: var(--gold-300); }
.articles-hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(247, 243, 236, 0.78);
  max-width: 680px;
  margin-bottom: 40px;
}
.articles-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  border: 1px solid rgba(212, 184, 122, 0.3);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.meta-pill { color: var(--gold-300); }
.meta-text { color: rgba(247, 243, 236, 0.7); }
.meta-divider {
  width: 4px; height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
}

/* ============ ARTICLES SECTION ============ */
.articles-section {
  padding: 120px 0 140px;
  background: var(--cream-100);
}

/* Featured (article 01) */
.article-featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  padding: 56px 56px 60px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-left: 3px solid var(--gold-500);
  margin-bottom: 80px;
  position: relative;
  transition: all 0.5s var(--ease);
}
.article-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.article-num {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 1px solid var(--gold-400);
  border-radius: 2px;
}
.article-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-900);
  padding: 6px 12px;
  background: var(--cream-200);
  border-radius: 2px;
}
.article-tag.tag-urgent {
  background: var(--navy-900);
  color: var(--gold-300);
}
.article-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.article-title-link { display: block; transition: color 0.4s var(--ease); }
.article-title-link:hover .article-featured-title { color: var(--gold-600); }
.article-h-link { color: inherit; transition: color 0.3s var(--ease); }
.article-h-link:hover { color: var(--gold-600); }
.article-featured-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 20px;
  transition: color 0.4s var(--ease);
}
.article-featured-title em { color: var(--gold-600); font-style: italic; }
.article-featured-excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-500);
  margin-bottom: 32px;
  max-width: 600px;
}
.article-featured-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 40px;
  border-left: 1px solid var(--cream-300);
  align-self: stretch;
}
.article-featured-stamp {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.stamp-label { color: var(--navy-900); }
.stamp-line { flex: 1; height: 1px; background: var(--gold-400); }
.stamp-issue { color: var(--gold-600); font-family: var(--font-serif); letter-spacing: 0.05em; font-size: 14px; text-transform: none; }
.article-pull {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.4;
  font-style: italic;
  color: var(--navy-900);
  position: relative;
  padding-left: 20px;
}
.article-pull .quote-mark {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--gold-400);
  line-height: 0.4;
  display: block;
  margin-bottom: 14px;
}

/* 6-card grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-300);
  border: 1px solid var(--cream-300);
  margin-bottom: 80px;
}
.article-card {
  background: var(--cream-50);
  padding: 44px 36px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.article-card:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.article-card:hover .article-card-num {
  color: var(--gold-600);
  transform: translateX(4px);
}
.article-card-num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.05em;
  transition: all 0.4s var(--ease);
}
.article-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-right: 40px;
}
.article-card-body h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--navy-900);
  font-weight: 500;
}
.article-card-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-500);
  margin-bottom: 24px;
  flex: 1;
}

/* Bottom CTA */
.articles-bottom-cta {
  text-align: center;
  padding: 24px 0 0;
}
.cta-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-500);
  margin: 0 auto 36px;
}
.bottom-cta-text {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.45;
  color: var(--navy-900);
  font-weight: 500;
  margin-bottom: 36px;
  letter-spacing: -0.005em;
}

/* Articles responsive */
@media (max-width: 1100px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .article-featured { padding: 48px 40px; gap: 48px; }
}

@media (max-width: 900px) {
  .articles-hero { padding: calc(var(--header-h) + 56px) 0 72px; }
  .articles-section { padding: 80px 0 96px; }
  .article-featured {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 28px;
    margin-bottom: 56px;
  }
  .article-featured-aside {
    padding-left: 0;
    padding-top: 32px;
    border-left: none;
    border-top: 1px solid var(--cream-300);
  }
  .articles-grid { grid-template-columns: 1fr; margin-bottom: 56px; }
  .bottom-cta-text { font-size: 22px; }
}

@media (max-width: 540px) {
  .articles-hero-meta { padding: 8px 14px; gap: 10px; font-size: 11px; }
  .article-featured { padding: 32px 22px; }
  .article-card { padding: 36px 26px 32px; }
  .article-card-body { padding-right: 30px; }
  .article-card-body h3 { font-size: 19px; }
  .article-pull { font-size: 19px; }
}

/* ============================================
   ARTICLE (POST) PAGE
   ============================================ */
.post-hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 80px;
  background: var(--navy-900);
  color: var(--cream-50);
  overflow: hidden;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(184, 151, 90, 0.15), transparent 45%),
    radial-gradient(circle at 95% 90%, rgba(212, 184, 122, 0.06), transparent 50%);
  pointer-events: none;
}
.post-hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 151, 90, 0.5), transparent);
}
.post-hero-inner {
  position: relative;
  max-width: 920px;
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.55);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.post-breadcrumb a {
  color: rgba(247, 243, 236, 0.7);
  transition: color 0.3s;
}
.post-breadcrumb a:hover { color: var(--gold-300); }
.post-breadcrumb .current { color: var(--gold-300); }

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.post-num {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  background: var(--gold-400);
  padding: 4px 12px;
  letter-spacing: 0.05em;
  border-radius: 2px;
}
.post-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-50);
  padding: 6px 12px;
  border: 1px solid rgba(212, 184, 122, 0.4);
  border-radius: 2px;
}
.post-stamp {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  padding: 6px 12px;
  background: rgba(212, 184, 122, 0.12);
  border-radius: 2px;
}
.post-title {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--cream-50);
}
.post-title em { color: var(--gold-300); font-style: italic; }
.post-deck {
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1.45;
  font-style: italic;
  color: rgba(247, 243, 236, 0.88);
  max-width: 760px;
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}
.post-byline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  border: 1px solid rgba(212, 184, 122, 0.3);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.byline-author { color: var(--gold-300); }
.byline-place,
.byline-time { color: rgba(247, 243, 236, 0.7); }
.byline-divider {
  width: 4px; height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
}

/* Body */
.post-body {
  background: var(--cream-100);
  padding: 96px 0 120px;
  position: relative;
}
.post-container {
  max-width: 760px;
}
.post-body p {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.post-body p em {
  color: var(--gold-600);
  font-style: italic;
  font-weight: 500;
}
.post-body p a {
  color: var(--navy-900);
  border-bottom: 1px solid var(--gold-400);
  transition: all 0.3s var(--ease);
}
.post-body p a:hover {
  color: var(--gold-600);
  border-bottom-color: var(--gold-600);
}

.post-lede {
  font-size: 24px !important;
  line-height: 1.55 !important;
  color: var(--navy-900) !important;
  margin-bottom: 40px !important;
  font-weight: 500;
}
.drop-cap {
  float: left;
  font-family: var(--font-serif);
  font-size: 84px;
  line-height: 0.85;
  color: var(--gold-600);
  font-weight: 600;
  margin: 8px 12px 0 0;
  padding-right: 4px;
}

.post-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 64px 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-300);
  position: relative;
}
.post-heading::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--gold-500);
}

.post-list {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 28px;
  padding-left: 28px;
  list-style: none;
}
.post-list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 12px;
}
.post-list li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--gold-500);
}
.post-list strong {
  color: var(--navy-900);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  display: inline;
  margin-right: 4px;
}

/* Pull quote */
.post-pullquote {
  margin: 56px -32px;
  padding: 40px 56px;
  background: var(--cream-50);
  border-left: 3px solid var(--gold-500);
  position: relative;
}
.post-pullquote .pullquote-mark {
  font-family: var(--font-serif);
  font-size: 84px;
  line-height: 0.4;
  color: var(--gold-400);
  display: block;
  margin-bottom: 18px;
}
.post-pullquote p {
  font-family: var(--font-serif);
  font-size: 28px !important;
  line-height: 1.4 !important;
  color: var(--navy-900) !important;
  font-style: italic;
  font-weight: 500;
  margin: 0 !important;
  letter-spacing: -0.01em;
}

/* Stats sidebar */
.post-stats {
  margin: 56px -56px;
  padding: 40px 56px 36px;
  background: var(--navy-900);
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.post-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 151, 90, 0.5), transparent);
}
.stats-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 184, 122, 0.3);
  margin-bottom: 28px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--cream-50);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-plus {
  font-size: 18px;
  color: var(--gold-300);
  font-weight: 500;
}
.stat-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.7);
  line-height: 1.4;
}
.stats-source {
  font-family: var(--font-serif) !important;
  font-size: 14px !important;
  font-style: italic;
  color: var(--ink-300) !important;
  margin: 0 !important;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 184, 122, 0.18);
}

/* In-article CTA */
.post-cta {
  margin: 64px 0 72px;
  padding: 48px 40px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-left: 3px solid var(--gold-500);
  text-align: center;
}
.post-cta-text {
  font-family: var(--font-serif) !important;
  font-size: 22px !important;
  line-height: 1.45 !important;
  color: var(--navy-900) !important;
  margin: 0 0 28px !important;
  font-weight: 500;
}

/* Sources */
.post-sources {
  padding: 40px 0 0;
  margin-top: 32px;
  border-top: 1px solid var(--cream-300);
}
.sources-heading {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 24px;
}
.sources-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sources-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.source-num {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
  padding-top: 2px;
}
.source-title {
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  font-weight: 600;
  color: var(--navy-900) !important;
  margin: 0 0 4px !important;
  line-height: 1.4 !important;
}
.source-meta {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  color: var(--ink-400) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}
.source-meta a {
  color: var(--ink-500);
  border-bottom: 1px solid var(--gold-400);
}
.source-meta a:hover { color: var(--gold-600); }

/* Post nav */
.post-nav {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-300);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.post-nav-back,
.post-nav-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  padding: 8px 0;
  border-bottom: 1px solid var(--gold-400);
  transition: all 0.3s var(--ease);
}
.post-nav-back:hover,
.post-nav-next:hover {
  color: var(--gold-600);
  gap: 16px;
}
.post-nav-next {
  text-align: right;
  max-width: 60%;
}

/* Article responsive */
@media (max-width: 900px) {
  .post-hero { padding: calc(var(--header-h) + 48px) 0 64px; }
  .post-body { padding: 72px 0 96px; }
  .post-body p { font-size: 19px; }
  .post-lede { font-size: 21px !important; }
  .drop-cap { font-size: 64px; }
  .post-pullquote { margin: 40px 0; padding: 32px 28px; }
  .post-pullquote p { font-size: 22px !important; }
  .post-stats { margin: 40px 0; padding: 32px 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-num { font-size: 30px; }
  .post-cta { padding: 36px 24px; }
  .post-cta-text { font-size: 19px !important; }
  .post-nav { flex-direction: column; align-items: flex-start; }
  .post-nav-next { text-align: left; max-width: 100%; }
}

@media (max-width: 540px) {
  .post-deck { font-size: 19px; }
  .post-byline { padding: 8px 16px; gap: 10px; font-size: 11px; }
  .post-stats { padding: 28px 22px; }
  .stats-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: calc(var(--header-h) + 100px) 0 140px;
  background: var(--cream-100);
  min-height: 100vh;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(184, 151, 90, 0.06), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(10, 31, 61, 0.04), transparent 40%);
  pointer-events: none;
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: start;
}

.contact-intro { padding-top: 8px; }
.contact-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 8px 0 28px;
  color: var(--navy-900);
}
.contact-title em { color: var(--gold-600); font-style: italic; }
.contact-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-500);
  margin-bottom: 48px;
  max-width: 460px;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--cream-300);
  border-bottom: 1px solid var(--cream-300);
}
.contact-meta-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: baseline;
  gap: 16px;
}
.contact-meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.contact-meta-value {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy-900);
  letter-spacing: 0.005em;
}
.contact-meta-value a { color: inherit; border-bottom: 1px solid var(--gold-400); transition: color 0.3s; }
.contact-meta-value a:hover { color: var(--gold-600); }

/* Form */
.contact-form {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  padding: 56px 56px 48px;
  border-radius: 2px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 60%;
  background: var(--gold-500);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.form-row label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.label-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-900);
}
.label-hint {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-400);
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-200);
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--navy-900);
  outline: none;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.form-row textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
  font-family: var(--font-sans);
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--ink-300);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
}
.form-row input:focus,
.form-row textarea:focus {
  border-bottom-color: var(--gold-500);
}

.form-submit {
  width: 100%;
  padding: 18px 32px;
  font-size: 14px;
  margin-top: 12px;
}
.form-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-400);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-300);
  font-style: italic;
  font-family: var(--font-serif);
}

.form-fallback {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-400);
  margin: 18px 0 0;
  text-align: center;
  font-style: italic;
  font-family: var(--font-serif);
}
.form-fallback a {
  color: var(--gold-600);
  border-bottom: 1px solid var(--gold-400);
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 13px;
  margin-left: 4px;
  transition: color 0.3s;
}
.form-fallback a:hover { color: var(--navy-900); }

/* Thank-you page */
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--cream-100);
}
.thanks-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.thanks-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 12px 0 24px;
}
.thanks-title em { color: var(--gold-600); font-style: italic; }
.thanks-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-500);
  margin-bottom: 40px;
}
.thanks-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .contact-grid { gap: 64px; }
  .contact-form { padding: 48px 40px 40px; }
}
@media (max-width: 900px) {
  .contact-section { padding: calc(var(--header-h) + 56px) 0 96px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-form { padding: 40px 28px 36px; }
}
@media (max-width: 540px) {
  .contact-form { padding: 32px 22px 28px; }
  .contact-meta-item { grid-template-columns: 1fr; gap: 4px; }
  .form-row label { flex-direction: column; gap: 4px; align-items: flex-start; }
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-inner { gap: 48px; }
  .about-grid { gap: 60px; }
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; --container-pad: 24px; }
  .primary-nav, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: calc(var(--header-h) + 56px) 0 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .hero-tribute { align-items: stretch; }
  .tribute-card { max-width: 100%; padding: 36px 32px; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
  .hero-scroll { display: none; }

  .about, .vision, .experience, .updates { padding: 96px 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-image { max-width: 480px; margin: 0 auto; }
  .about-stamp { left: 0; bottom: -32px; width: 100px; height: 100px; }

  .vision-grid { grid-template-columns: 1fr; }
  .updates-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .timeline { padding-left: 28px; }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 40px;
  }
  .timeline-marker::before { left: -29px; width: 12px; height: 12px; }
  .timeline-marker::after { display: none; }
  .marker-year { font-size: 22px; padding-left: 0; }

  .cta { padding: 40px 0 96px; }
  .cta-card { padding: 80px 32px; min-height: 0; }
  .cta-bg img { object-position: center center; }
  .cta-pattern { background:
    linear-gradient(180deg,
      rgba(10, 31, 61, 0.92) 0%,
      rgba(10, 31, 61, 0.82) 60%,
      rgba(10, 31, 61, 0.95) 100%); }
  .cta-content { text-align: center; margin: 0 auto; }
  .cta-sub { margin-left: auto; margin-right: auto; }
  .cta-secondary { justify-content: center; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .section-head-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .hero-title { font-size: 40px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-meta-divider { display: none; }
  .hero-meta-item { width: calc(50% - 10px); }

  .tribute-card { padding: 32px 24px; }
  .tribute-quote p { font-size: 18px; }

  .about-content { padding: 0; }
  .about-lead { font-size: 22px; }

  .vision-card { padding: 36px 28px; }
  .vision-card h3 { font-size: 24px; }

  .timeline-content { padding: 20px 24px; }
  .timeline-content h3 { font-size: 20px; }

  .update-body { padding: 24px 22px; }
  .update-body h3 { font-size: 20px; }

  .cta-card { padding: 48px 24px; }

  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { font-size: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
