/* ============================================================
   NARAYAN RANE — OFFICIAL WEBSITE
   Premium political leadership design system
   ============================================================ */

:root {
  --navy-900: #07142b;
  --navy-800: #0b1f3a;
  --navy-700: #122a4d;
  --navy-600: #1c3a66;
  --ink: #050b18;
  --gold: #c9a35c;
  --gold-light: #e6c98c;
  --gold-deep: #a37e3d;
  --saffron: #f08a2a;
  --saffron-deep: #d96f0c;
  --cream: #f6efe1;
  --paper: #fbf8f1;
  --white: #ffffff;
  --graphite: #1f2330;
  --grey-700: #3a4151;
  --grey-500: #6c7488;
  --grey-300: #c9cdd8;
  --grey-100: #eef0f5;

  --font-display: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --shadow-soft: 0 12px 40px -12px rgba(7, 20, 43, 0.18);
  --shadow-strong: 0 30px 80px -20px rgba(7, 20, 43, 0.45);
  --shadow-gold: 0 8px 30px -10px rgba(201, 163, 92, 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { 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(--graphite);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--gold); color: var(--navy-900); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--navy-700); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-900); }

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

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.h-display {
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.h-section {
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.05;
  font-weight: 500;
}
.h-card { font-size: clamp(22px, 2vw, 30px); font-weight: 600; }

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--grey-700);
  font-weight: 400;
}

.italic-accent { font-style: italic; color: var(--gold-deep); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(80px, 10vw, 160px) 0; position: relative; }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--navy { background: var(--navy-900); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--cream); }
.section--cream { background: var(--cream); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn .arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(8px); }

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

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 239, 225, 0.4);
}
.btn-outline:hover { background: var(--cream); color: var(--navy-900); border-color: var(--cream); }

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

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: rgba(7, 20, 43, 0);
  backdrop-filter: blur(0);
}
.site-header.scrolled {
  background: rgba(5, 11, 24, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 163, 92, 0.15);
}
.site-header.solid {
  background: rgba(5, 11, 24, 0.96);
  backdrop-filter: blur(18px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}
.brand-mark {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
}
.brand-mark::before, .brand-mark::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
}
.brand-mark::before { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.brand-mark::after { bottom: -3px; right: -3px; border-left: none; border-top: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.brand-tag {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-list a {
  color: rgba(246, 239, 225, 0.78);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-list a:hover, .nav-list a.active { color: var(--cream); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.nav-cta {
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy-900);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.nav-cta:hover { background: var(--cream); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: flex-end;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { width: 26px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 22px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 26px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 26px; }

@media (max-width: 1024px) {
  .nav-list, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-open .nav-list {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: -1;
    padding-top: 80px;
  }
  .mobile-open .nav-list a { font-size: 18px; }
  .mobile-open .nav-cta {
    display: inline-flex;
    position: fixed;
    bottom: 60px; left: 50%;
    transform: translateX(-50%);
    z-index: 110;
  }
}

/* ============================================================
   PASSCODE GATE (index.html)
   ============================================================ */
.gate {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--ink);
  overflow: hidden;
  z-index: 1000;
}
.gate-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 22%;
  filter: grayscale(0.65) contrast(1.05) brightness(0.42);
  transform: scale(1.06);
  animation: gateZoom 18s ease-in-out infinite alternate;
}
@keyframes gateZoom {
  to { transform: scale(1.14); }
}
.gate-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 163, 92, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(5, 11, 24, 0.55), rgba(5, 11, 24, 0.92));
}
.gate-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 163, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 163, 92, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.gate-corner {
  position: absolute;
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  opacity: 0.6;
}
.gate-corner.tl { top: 36px; left: 36px; border-right: none; border-bottom: none; }
.gate-corner.tr { top: 36px; right: 36px; border-left: none; border-bottom: none; }
.gate-corner.bl { bottom: 36px; left: 36px; border-right: none; border-top: none; }
.gate-corner.br { bottom: 36px; right: 36px; border-left: none; border-top: none; }

.gate-card {
  position: relative;
  z-index: 2;
  width: min(92vw, 540px);
  padding: 60px 56px 52px;
  background: rgba(7, 20, 43, 0.55);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(201, 163, 92, 0.28);
  text-align: center;
  color: var(--cream);
  animation: gateIn 1s var(--ease) 0.2s both;
}
@keyframes gateIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.gate-mark {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  position: relative;
}
.gate-mark::before, .gate-mark::after {
  content: ''; position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
}
.gate-mark::before { top: -4px; left: -4px; border-right: none; border-bottom: none; }
.gate-mark::after { bottom: -4px; right: -4px; border-left: none; border-top: none; }

.gate-eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.gate-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.gate-sub {
  font-size: 14px;
  color: rgba(246, 239, 225, 0.65);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}

.gate-input-wrap {
  position: relative;
  margin-bottom: 18px;
}
.gate-input {
  width: 100%;
  padding: 18px 22px;
  background: rgba(5, 11, 24, 0.55);
  border: 1px solid rgba(201, 163, 92, 0.25);
  color: var(--cream);
  font-size: 16px;
  letter-spacing: 0.32em;
  text-align: center;
  font-family: var(--font-mono);
  outline: none;
  transition: all 0.3s var(--ease);
}
.gate-input::placeholder { color: rgba(246, 239, 225, 0.3); letter-spacing: 0.32em; }
.gate-input:focus { border-color: var(--gold); background: rgba(5, 11, 24, 0.75); }

.gate-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--gold);
}
.gate-btn:hover { background: var(--cream); border-color: var(--cream); }

.gate-error {
  margin-top: 18px;
  color: #ff7e7e;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  min-height: 18px;
}
.gate-error.show { opacity: 1; animation: shake 0.5s var(--ease); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

.gate-foot {
  margin-top: 40px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: rgba(246, 239, 225, 0.5);
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: right center;
  filter: brightness(0.55) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(5, 11, 24, 0.85) 35%, rgba(5, 11, 24, 0.4) 70%, transparent 100%),
    linear-gradient(180deg, transparent 60%, var(--ink) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-content { padding: 60px 0; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: ''; width: 48px; height: 1px; background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 7.4vw, 110px);
  font-weight: 500;
  line-height: 0.96;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(246, 239, 225, 0.78);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 48px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 239, 225, 0.6);
}
.hero-roles span { display: flex; align-items: center; gap: 12px; }
.hero-roles span::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 18px; }

.hero-portrait {
  position: relative;
  height: 78vh;
  max-height: 720px;
}
.hero-portrait-frame {
  position: relative;
  height: 100%;
  width: 100%;
  border: 1px solid rgba(201, 163, 92, 0.4);
  padding: 18px;
}
.hero-portrait-frame::before, .hero-portrait-frame::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.hero-portrait-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-portrait-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hero-portrait-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center 18%;
  filter: contrast(1.05);
}
.hero-portrait-tag {
  position: absolute;
  bottom: 36px; left: -36px;
  padding: 14px 22px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(246, 239, 225, 0.6);
  z-index: 3;
}
.hero-scroll::after {
  content: '';
  width: 60px; height: 1px;
  background: var(--gold);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleX(0.4); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait { height: 60vh; max-height: 500px; }
  .hero-portrait-tag { left: 0; }
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 70vh;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 25%;
  filter: brightness(0.45) contrast(1.05) grayscale(0.15);
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 24, 0.4) 0%, rgba(5, 11, 24, 0.92) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
}
.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.page-hero-eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--gold);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero-title em { color: var(--gold); font-weight: 400; }
.page-hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(246, 239, 225, 0.74);
  max-width: 640px;
}

.breadcrumb {
  display: flex; gap: 12px; align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 239, 225, 0.55);
  margin-bottom: 32px;
}
.breadcrumb span { color: var(--gold); }

/* ============================================================
   COUNTER STRIP
   ============================================================ */
.counter-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
  border-top: 1px solid rgba(201, 163, 92, 0.18);
  border-bottom: 1px solid rgba(201, 163, 92, 0.18);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.counter-item {
  text-align: left;
  padding: 28px 36px;
  border-right: 1px solid rgba(201, 163, 92, 0.18);
  position: relative;
}
.counter-item:last-child { border-right: none; }
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: 1;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.counter-num sup {
  font-size: 0.42em;
  font-weight: 400;
  color: var(--gold-light);
  margin-left: 4px;
  vertical-align: super;
}
.counter-label {
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 239, 225, 0.65);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item { border-bottom: 1px solid rgba(201, 163, 92, 0.18); padding: 24px 16px; }
  .counter-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================================
   GENERIC SECTION HEADER
   ============================================================ */
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.section-head-text { max-width: 640px; }
.section-head-aside {
  font-size: 15px;
  color: var(--grey-700);
  border-left: 1px solid var(--gold);
  padding-left: 28px;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   SPLIT (intro about block on home)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.split-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 18%;
}
.split-img::after {
  content: ''; position: absolute;
  inset: 18px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.split-text h2 { margin-bottom: 24px; }
.split-text p { margin-bottom: 18px; color: var(--grey-700); }
.split-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-300);
}
.split-stats div { padding-right: 16px; }
.split-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.split-stats span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-band {
  background: var(--navy-900);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '“';
  position: absolute;
  top: -60px; left: 5%;
  font-family: var(--font-display);
  font-size: 360px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--cream);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}
.quote-text em { color: var(--gold); font-style: italic; }
.quote-cite {
  text-align: center;
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.quote-cite::before {
  content: ''; display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold); margin-right: 14px;
  vertical-align: middle;
}

/* ============================================================
   FEATURE GRID (Achievements / Vision cards)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--grey-300);
  border-left: 1px solid var(--grey-300);
}
.feature-card {
  padding: 48px 40px 56px;
  background: var(--paper);
  border-right: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover { background: var(--navy-900); color: var(--cream); }
.feature-card:hover h3 { color: var(--cream); }
.feature-card:hover .feature-num { color: var(--gold); }
.feature-card:hover p { color: rgba(246, 239, 225, 0.78); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin-bottom: 22px;
  display: block;
  transition: color 0.3s var(--ease);
}
.feature-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.feature-card p {
  color: var(--grey-700);
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s var(--ease);
}
@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}
.tl-dot {
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--paper), 0 0 0 7px var(--gold);
}
.tl-card {
  background: var(--paper);
  padding: 32px 36px;
  border: 1px solid var(--grey-300);
  position: relative;
  transition: all 0.4s var(--ease);
}
.tl-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold-deep);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
}
.tl-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}
.tl-card p {
  font-size: 14.5px;
  color: var(--grey-700);
  line-height: 1.65;
}
.tl-item:nth-child(odd) .tl-card { grid-column: 1; text-align: right; }
.tl-item:nth-child(even) .tl-card { grid-column: 3; }
.tl-item:nth-child(odd) .tl-card::after {
  content: ''; position: absolute;
  right: -10px; top: 36px;
  width: 20px; height: 1px;
  background: var(--gold);
}
.tl-item:nth-child(even) .tl-card::after {
  content: ''; position: absolute;
  left: -10px; top: 36px;
  width: 20px; height: 1px;
  background: var(--gold);
}
@media (max-width: 880px) {
  .timeline::before { left: 24px; }
  .tl-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .tl-item:nth-child(odd) .tl-card,
  .tl-item:nth-child(even) .tl-card { grid-column: 2; text-align: left; }
  .tl-dot { margin: 0; }
  .tl-item:nth-child(odd) .tl-card::after,
  .tl-item:nth-child(even) .tl-card::after { display: none; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-700);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.7s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 11, 24, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.g-item:hover::after { opacity: 1; }
.g-cap {
  position: absolute;
  left: 24px; right: 24px; bottom: 20px;
  z-index: 2;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}
.g-item:hover .g-cap { opacity: 1; transform: translateY(0); }

/* Explicit placements — every cell tiles flush with no gaps. */
.g-1  { grid-column: 1 / span 8;  grid-row: 1 / span 2; }
.g-2  { grid-column: 9 / span 4;  grid-row: 1 / span 1; }
.g-3  { grid-column: 9 / span 4;  grid-row: 2 / span 1; }
.g-4  { grid-column: 1 / span 4;  grid-row: 3 / span 1; }
.g-5  { grid-column: 5 / span 4;  grid-row: 3 / span 1; }
.g-6  { grid-column: 9 / span 4;  grid-row: 3 / span 1; }
.g-7  { grid-column: 1 / span 6;  grid-row: 4 / span 2; }
.g-8  { grid-column: 7 / span 6;  grid-row: 4 / span 1; }
.g-9  { grid-column: 7 / span 3;  grid-row: 5 / span 1; }
.g-10 { grid-column: 10 / span 3; grid-row: 5 / span 1; }
.g-11 { grid-column: 1 / span 12; grid-row: 6 / span 1; }

@media (max-width: 1100px) and (min-width: 901px) {
  .gallery-grid { grid-auto-rows: 180px; }
  .g-1  { grid-column: 1 / span 8; grid-row: 1 / span 2; }
  .g-2  { grid-column: 9 / span 4; grid-row: 1 / span 1; }
  .g-3  { grid-column: 9 / span 4; grid-row: 2 / span 1; }
  .g-4  { grid-column: 1 / span 4; grid-row: 3 / span 1; }
  .g-5  { grid-column: 5 / span 4; grid-row: 3 / span 1; }
  .g-6  { grid-column: 9 / span 4; grid-row: 3 / span 1; }
  .g-7  { grid-column: 1 / span 6; grid-row: 4 / span 1; }
  .g-8  { grid-column: 7 / span 6; grid-row: 4 / span 1; }
  .g-9  { grid-column: 1 / span 4; grid-row: 5 / span 1; }
  .g-10 { grid-column: 5 / span 4; grid-row: 5 / span 1; }
  .g-11 { grid-column: 9 / span 4; grid-row: 5 / span 1; }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
  }
  .gallery-grid > * {
    grid-column: auto / span 1 !important;
    grid-row: auto !important;
  }
  .gallery-grid > .g-1 { grid-column: 1 / span 2 !important; }
  .gallery-grid > .g-7 { grid-column: 1 / span 2 !important; }
  .gallery-grid > .g-11 { grid-column: 1 / span 2 !important; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 11, 24, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadeIn 0.4s var(--ease); }
.lightbox img {
  max-width: 92%; max-height: 92vh;
  object-fit: contain;
  border: 1px solid var(--gold);
  padding: 14px;
  background: rgba(7, 20, 43, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 36px; right: 36px;
  color: var(--cream);
  font-size: 28px;
  font-weight: 300;
  width: 50px; height: 50px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   ACHIEVEMENT CARDS / DASHBOARD
   ============================================================ */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}
.dash-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-top: 3px solid var(--gold);
}
.dash-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 500;
}
.dash-card span {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-700);
  line-height: 1.5;
}
@media (max-width: 880px) { .dash-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PORTFOLIO LIST (Cabinet roles, etc.)
   ============================================================ */
.port-list { border-top: 1px solid var(--grey-300); }
.port-item {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr 80px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-300);
  transition: all 0.4s var(--ease);
  cursor: default;
}
.port-item:hover { padding-left: 24px; background: rgba(201, 163, 92, 0.05); }
.port-year {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-deep);
  font-weight: 500;
}
.port-role {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy-900);
  font-weight: 600;
}
.port-desc {
  font-size: 15px;
  color: var(--grey-700);
  line-height: 1.55;
}
.port-arrow {
  text-align: right;
  color: var(--gold-deep);
  font-size: 22px;
}
@media (max-width: 880px) {
  .port-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .port-item:hover { padding-left: 0; }
  .port-arrow { display: none; }
}

/* ============================================================
   CONSTITUENCY / DEVELOPMENT CARDS
   ============================================================ */
.dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dev-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.dev-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.dev-card-img {
  height: 240px;
  background-size: cover;
  background-position: center 30%;
  position: relative;
}
.dev-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 20, 43, 0.5) 100%);
}
.dev-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.dev-card-body {
  padding: 28px;
  flex: 1;
}
.dev-card-body h3 { font-size: 22px; margin-bottom: 12px; font-weight: 600; }
.dev-card-body p { font-size: 14.5px; color: var(--grey-700); line-height: 1.6; }
@media (max-width: 880px) { .dev-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .dev-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.contact-info-card {
  background: var(--navy-900);
  color: var(--cream);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.2), transparent 70%);
}
.contact-info-card h3 {
  font-size: 36px;
  margin-bottom: 18px;
  color: var(--cream);
}
.contact-info-card p {
  color: rgba(246, 239, 225, 0.7);
  margin-bottom: 36px;
  font-size: 15px;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 163, 92, 0.18);
}
.contact-line:last-of-type { border-bottom: none; }
.contact-line-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-line-label {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.contact-line-value {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--cream);
  line-height: 1.3;
}
.contact-line-value:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  padding: 56px 48px;
  border: 1px solid var(--grey-300);
}
.contact-form h3 { font-size: 32px; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field { position: relative; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid var(--grey-300);
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--graphite);
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 120px; padding-top: 22px; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field label {
  position: absolute;
  top: 18px; left: 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  pointer-events: none;
  transition: all 0.3s var(--ease);
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 10.5px;
  color: var(--gold-deep);
}
@media (max-width: 880px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form { padding: 36px 28px; }
}

/* Map block */
.map-block {
  margin-top: 80px;
  height: 420px;
  position: relative;
  border: 1px solid var(--grey-300);
  overflow: hidden;
  background: var(--navy-900);
}
.map-block iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.4) contrast(1.05); }

/* ============================================================
   TESTIMONIAL SLIDER
   ============================================================ */
.testimonial-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  padding: 40px 36px;
  background: var(--paper);
  border: 1px solid var(--grey-300);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -16px; left: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy-900);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-by {
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.testimonial-by span { display: block; color: var(--grey-500); margin-top: 4px; font-size: 10.5px; letter-spacing: 0.18em; }
@media (max-width: 880px) { .testimonial-wrap { grid-template-columns: 1fr; } }

/* ============================================================
   LATEST UPDATES
   ============================================================ */
.update-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.update-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.update-card:hover { border-color: var(--gold); }
.update-card-img {
  height: 220px;
  background-size: cover;
  background-position: center 25%;
  transition: transform 0.7s var(--ease);
}
.update-card:hover .update-card-img { transform: scale(1.04); }
.update-card-body { padding: 28px; }
.update-card-meta {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.update-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 1.25;
}
.update-card p {
  font-size: 14.5px;
  color: var(--grey-700);
  line-height: 1.6;
  margin-bottom: 20px;
}
.update-card .more {
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy-900);
  font-weight: 600;
}
@media (max-width: 880px) { .update-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .update-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   VISION
   ============================================================ */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(201, 163, 92, 0.25);
}
.vision-card {
  padding: 56px 48px;
  border-right: 1px solid rgba(201, 163, 92, 0.25);
  border-bottom: 1px solid rgba(201, 163, 92, 0.25);
  position: relative;
  transition: all 0.4s var(--ease);
}
.vision-card:nth-child(2n) { border-right: none; }
.vision-card:nth-last-child(-n+2) { border-bottom: none; }
.vision-card:hover { background: rgba(201, 163, 92, 0.06); }
.vision-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 26px;
  font-weight: 500;
  opacity: 0.85;
}
.vision-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--cream);
  font-weight: 500;
}
.vision-card p {
  font-size: 15px;
  color: rgba(246, 239, 225, 0.7);
  line-height: 1.7;
}
@media (max-width: 880px) {
  .vision-grid { grid-template-columns: 1fr; }
  .vision-card { border-right: none; }
  .vision-card:nth-last-child(-n+2) { border-bottom: 1px solid rgba(201, 163, 92, 0.25); }
  .vision-card:last-child { border-bottom: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(246, 239, 225, 0.7);
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-brand .brand-name { font-size: 22px; color: var(--cream); }
.footer-about { font-size: 14.5px; line-height: 1.7; max-width: 360px; }
.footer-h {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 12px; font-size: 14px; }
.footer-list a:hover { color: var(--gold-light); }

.footer-contact-line {
  display: flex; gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact-line strong { color: var(--gold); display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.footer-contact-line span { display: block; color: var(--cream); }
.footer-contact-line a:hover { color: var(--gold-light); }

.social-row {
  display: flex; gap: 12px;
  margin-top: 12px;
}
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201, 163, 92, 0.4);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 14px;
  transition: all 0.3s var(--ease);
}
.social-icon:hover { background: var(--gold); color: var(--navy-900); border-color: var(--gold); transform: translateY(-2px); }
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(201, 163, 92, 0.18);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(246, 239, 225, 0.5);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { 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; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
.page-cover {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  pointer-events: none;
  transform-origin: top;
  animation: pageRise 1.1s var(--ease) forwards;
}
@keyframes pageRise {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 30px 0;
}
.center { text-align: center; }
.mb-sm { margin-bottom: 20px; }
.mb-md { margin-bottom: 40px; }
.mb-lg { margin-bottom: 80px; }

/* Inline simple two-col list (about page values) */
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 36px;
  list-style: none;
  margin-top: 32px;
}
.values-list li {
  font-size: 15px;
  padding: 14px 0;
  border-top: 1px solid rgba(201, 163, 92, 0.22);
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}
.values-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
}
/* On light sections, make the divider a subtle grey */
.section--cream .values-list li,
.section:not(.section--ink):not(.section--navy) .values-list li {
  border-top: 1px solid var(--grey-300);
  color: var(--graphite);
}
@media (max-width: 600px) { .values-list { grid-template-columns: 1fr; } }
