/* ===========================================
   INGA RUGINIENĖ — OFFICE OF THE PRIME MINISTER
   Premium Baltic Executive Design System
   =========================================== */

:root {
  /* Baltic Executive Palette */
  --ink: #0B1410;
  --ink-soft: #142520;
  --forest: #123A2E;
  --forest-deep: #0C2820;
  --moss: #1F5A45;
  --gold: #C6A052;
  --gold-soft: #E4C98A;
  --amber: #B8833A;
  --bone: #F5F1E8;
  --paper: #FAF8F2;
  --parchment: #EEE7D4;
  --charcoal: #2A2E2B;
  --slate: #5A615C;
  --mist: #C9CCC5;
  --line: rgba(18, 58, 46, 0.12);
  --line-strong: rgba(18, 58, 46, 0.28);
  --red: #B8321C;
  --red-soft: #C94A2F;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --display: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 10px rgba(12, 40, 32, 0.06);
  --shadow-md: 0 10px 40px rgba(12, 40, 32, 0.10);
  --shadow-lg: 0 30px 80px rgba(12, 40, 32, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-power: cubic-bezier(0.7, 0, 0.3, 1);

  --container: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.005em;
}

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; }

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.8rem, 6.5vw, 6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: 1.25rem; }

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

.lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--charcoal);
  font-style: italic;
}

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

/* ---------- Crest / Emblem ---------- */
.crest {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.crest-mark {
  width: 46px;
  height: 46px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.crest-mark::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(198, 160, 82, 0.4);
  border-radius: 50%;
}
.crest-mark span {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--gold);
  font-weight: 500;
}
.crest-text { line-height: 1.1; }
.crest-text .top {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-bottom: 4px;
}
.crest-text .name {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-weight: 500;
}
.crest.dark .crest-text .top { color: rgba(245, 241, 232, 0.6); }
.crest.dark .crest-text .name { color: var(--bone); }
.crest.dark .crest-mark { border-color: var(--gold-soft); }
.crest.dark .crest-mark span { color: var(--gold-soft); }

/* ---------- Navigation ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 242, 0.82);
  backdrop-filter: saturate(150%) blur(20px);
  -webkit-backdrop-filter: saturate(150%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  position: relative;
  padding: 8px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--ink); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  transition: all 0.3s var(--ease);
}
.nav-action:hover {
  background: var(--forest);
  color: var(--bone);
  border-color: var(--forest);
}

.hamburger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; width: 16px; right: auto; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 120px var(--gutter) 40px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--bone);
  padding: 14px 0;
  border-bottom: 1px solid rgba(198, 160, 82, 0.2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid currentColor;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow { transform: translateX(6px); }

.btn-primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

/* ---------- Hero Frame (for interior pages) ---------- */
.page-hero {
  padding: 140px var(--gutter) 80px;
  background: var(--forest-deep);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(198, 160, 82, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3));
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  color: var(--gold-soft);
}
.page-hero .eyebrow::before { background: var(--gold-soft); }
.page-hero h1 { color: var(--bone); margin: 20px 0 24px; max-width: 16ch; }
.page-hero .lead { color: rgba(245, 241, 232, 0.75); max-width: 60ch; }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
  padding-top: 60px;
}
.page-hero-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(198, 160, 82, 0.25);
  position: relative;
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(15%) contrast(1.02);
}
.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,40,32,0) 60%, rgba(12,40,32,0.4));
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 90px var(--gutter) 36px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--forest) 0%, var(--forest) 33%,
    var(--gold) 33%, var(--gold) 66%,
    var(--red) 66%, var(--red) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}
.footer-brand p {
  color: rgba(245, 241, 232, 0.6);
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 38ch;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(245, 241, 232, 0.65);
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-contact a {
  display: block;
  margin-bottom: 10px;
  color: rgba(245, 241, 232, 0.75);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(245, 241, 232, 0.5);
  letter-spacing: 0.02em;
}
.footer-bottom a { color: var(--gold-soft); }
.footer-bottom a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 241, 232, 0.15);
  color: rgba(245, 241, 232, 0.7);
  transition: all 0.3s var(--ease);
  border-radius: 50%;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- PASSCODE GATE ---------- */
.gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--forest-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.gate.hidden { opacity: 0; transform: scale(1.04); pointer-events: none; }

.gate-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.gate-bg::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(198, 160, 82, 0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(18, 58, 46, 0.6), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(184, 50, 28, 0.08), transparent 60%);
  animation: gateDrift 22s ease-in-out infinite alternate;
}
@keyframes gateDrift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-3%, 3%) scale(1.08); }
}

/* Animated skyline silhouette */
.gate-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  background:
    linear-gradient(180deg, transparent, rgba(11, 20, 16, 0.85)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 400' preserveAspectRatio='none'><path d='M0,400 L0,280 L40,280 L40,250 L70,250 L70,280 L100,280 L100,220 L130,220 L130,260 L170,260 L170,200 L180,200 L180,180 L200,180 L200,210 L250,210 L250,170 L280,170 L280,140 L295,140 L295,100 L305,100 L305,140 L320,140 L320,170 L370,170 L370,230 L420,230 L420,260 L470,260 L470,210 L530,210 L530,180 L560,180 L560,150 L590,150 L590,180 L620,180 L620,220 L680,220 L680,250 L720,250 L720,200 L760,200 L760,170 L790,170 L790,100 L800,100 L800,70 L810,70 L810,100 L820,100 L820,170 L850,170 L850,200 L900,200 L900,240 L950,240 L950,210 L1000,210 L1000,180 L1040,180 L1040,220 L1090,220 L1090,250 L1140,250 L1140,190 L1180,190 L1180,160 L1220,160 L1220,130 L1250,130 L1250,160 L1280,160 L1280,200 L1330,200 L1330,240 L1380,240 L1380,210 L1430,210 L1430,180 L1470,180 L1470,220 L1520,220 L1520,260 L1560,260 L1560,240 L1600,240 L1600,400 Z' fill='%230B1410' opacity='0.88'/></svg>") repeat-x bottom center / auto 100%;
  opacity: 0.85;
  pointer-events: none;
}

/* Lithuanian tricolor dust particles */
.gate-particles { position: absolute; inset: 0; pointer-events: none; }
.gate-particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 14s linear infinite;
}
.gate-particles span:nth-child(3n){ background: var(--gold); }
.gate-particles span:nth-child(3n+1){ background: #2E7D54; }
.gate-particles span:nth-child(3n+2){ background: var(--red-soft); }
@keyframes float {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { transform: translate(30px, -100vh); opacity: 0; }
}

.gate-panel {
  position: relative;
  width: min(520px, 88vw);
  padding: 56px 54px;
  background: rgba(10, 28, 23, 0.6);
  border: 1px solid rgba(198, 160, 82, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-align: center;
  z-index: 2;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
}
.gate-panel::before,
.gate-panel::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.gate-panel::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.gate-panel::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.gate-crest {
  width: 60px; height: 60px;
  margin: 0 auto 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.gate-crest::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(198, 160, 82, 0.35);
  border-radius: 50%;
}
.gate-crest span {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold);
}
.gate-panel .top-label {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.gate-panel h1 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.gate-panel .subtitle {
  color: rgba(245, 241, 232, 0.65);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 38px;
  font-family: var(--serif);
  font-style: italic;
}

.gate-form { position: relative; }
.gate-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
  text-align: left;
}
.gate-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(198, 160, 82, 0.35);
  background: rgba(5, 18, 14, 0.6);
  transition: border-color 0.3s var(--ease);
}
.gate-input-wrap:focus-within { border-color: var(--gold); }
#gate-passcode {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 20px;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.3em;
}
#gate-passcode::placeholder { color: rgba(245, 241, 232, 0.3); letter-spacing: 0.3em; }
.gate-submit {
  padding: 0 22px;
  height: 54px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  border: none;
}
.gate-submit:hover { background: var(--gold-soft); }

.gate-error {
  margin-top: 20px;
  color: #E48A6F;
  font-size: 12px;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s var(--ease);
}
.gate-error.show { opacity: 1; transform: translateY(0); }

.gate-shake { animation: shake 0.45s var(--ease); }
@keyframes shake {
  10%, 90% { transform: translateX(-3px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-8px); }
  40%, 60% { transform: translateX(8px); }
}

.gate-footer {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  text-align: center;
  color: rgba(245, 241, 232, 0.35);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}

/* ---------- HOMEPAGE HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 60px;
  background: var(--paper);
  overflow: hidden;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  min-height: calc(100vh - 200px);
}
.hero-text .eyebrow { margin-bottom: 28px; }
.hero-text h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
  color: var(--ink);
}
.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-text h1 .divider {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.hero-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.55;
  color: var(--charcoal);
  max-width: 48ch;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-signature {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-signature-item {
  display: flex;
  flex-direction: column;
}
.hero-signature-item .k {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.hero-signature-item .v {
  font-family: var(--display);
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  height: 78vh;
  max-height: 720px;
  min-height: 540px;
}
.hero-portrait {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.04) saturate(0.95);
  transform: scale(1.02);
  transition: transform 1.5s var(--ease);
}
.hero-portrait:hover img { transform: scale(1.05); }
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(11, 20, 16, 0.35));
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  right: -18px;
  top: 30px;
  background: var(--gold);
  color: var(--ink);
  padding: 18px 22px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.hero-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: none;
  margin-top: 4px;
}
.hero-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 80px;
  color: var(--bone);
  z-index: 2;
}
.hero-caption .small {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.hero-caption .big {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.25;
}

.hero-ticker {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 44px;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(198, 160, 82, 0.3);
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 22px;
  background: var(--gold);
  color: var(--ink);
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerSlide 38s linear infinite;
  white-space: nowrap;
  padding-left: 40px;
}
.ticker-track span {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.8);
  letter-spacing: 0.08em;
}
.ticker-track span::before {
  content: '◆';
  color: var(--gold);
  margin-right: 14px;
  font-size: 10px;
}
@keyframes tickerSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- WELCOME / STATEMENT ---------- */
.statement {
  padding: 130px var(--gutter);
  background: var(--paper);
  position: relative;
}
.statement::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 1px;
  background: var(--gold);
}
.statement-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.statement-left .eyebrow { margin-bottom: 28px; }
.statement-left h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 32px;
}
.statement-left h2 em { color: var(--gold); font-style: italic; }
.statement-quote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin-top: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal);
}
.statement-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 14px;
}
.statement-right p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.statement-right p:first-child::first-letter {
  font-family: var(--display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.9;
  padding: 8px 14px 0 0;
  color: var(--forest);
  font-weight: 500;
}

/* ---------- PROGRESS PILLARS ---------- */
.pillars {
  padding: 130px var(--gutter);
  background: var(--forest-deep);
  color: var(--bone);
  position: relative;
}
.pillars-header {
  max-width: var(--container);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
}
.pillars-header h2 {
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}
.pillars-header h2 em { color: var(--gold-soft); font-style: italic; }
.pillars-header p {
  color: rgba(245, 241, 232, 0.7);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  font-style: italic;
}

.pillars-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(198, 160, 82, 0.2);
  border-bottom: 1px solid rgba(198, 160, 82, 0.2);
}
.pillar {
  padding: 50px 36px 60px;
  border-right: 1px solid rgba(198, 160, 82, 0.2);
  position: relative;
  transition: background 0.4s var(--ease);
  cursor: pointer;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(198, 160, 82, 0.06); }
.pillar .num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  font-weight: 500;
}
.pillar-icon {
  width: 48px; height: 48px;
  margin-bottom: 26px;
  color: var(--gold);
}
.pillar-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; }
.pillar h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--bone);
  margin-bottom: 16px;
  line-height: 1.25;
}
.pillar p {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.6);
  line-height: 1.65;
}
.pillar::after {
  content: '→';
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 16px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s var(--ease);
}
.pillar:hover::after { opacity: 1; transform: translateX(0); }

/* ---------- METRICS ---------- */
.metrics {
  padding: 110px var(--gutter);
  background: var(--paper);
}
.metrics-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.metrics-intro h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin-bottom: 20px;
}
.metrics-intro p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.metric {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--bone);
  position: relative;
  transition: all 0.4s var(--ease);
}
.metric:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.metric-value {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--forest);
  line-height: 1;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.metric-value .suffix {
  font-size: 1.4rem;
  color: var(--gold);
}
.metric-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 8px;
}
.metric-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}

/* ---------- FEATURED / SPOTLIGHT ---------- */
.spotlight {
  padding: 130px var(--gutter);
  background: var(--parchment);
  position: relative;
}
.spotlight-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.spotlight-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.spotlight-top h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  max-width: 20ch;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  min-height: 560px;
}
.spot-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--bone);
  transition: transform 0.5s var(--ease);
  cursor: pointer;
}
.spot-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.spot-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,20,16,0.15) 0%, rgba(11,20,16,0.88) 80%);
  z-index: 1;
}
.spot-card-body { position: relative; z-index: 2; }
.spot-card:hover img { transform: scale(1.06); filter: brightness(0.95); }
.spot-card .tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-weight: 600;
}
.spot-card h3 {
  font-family: var(--display);
  color: var(--bone);
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  line-height: 1.25;
  margin-bottom: 14px;
}
.spot-card .date {
  font-size: 12px;
  color: rgba(245, 241, 232, 0.65);
  letter-spacing: 0.04em;
}
.spot-card.tall { grid-row: span 2; min-height: 560px; }

.spotlight-grid-alt {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: repeat(2, 270px);
  gap: 24px;
}
.spot-card.tall.alt { grid-row: span 2; }

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: 110px var(--gutter);
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--bone);
  line-height: 1.15;
}
.cta-inner h2 em { color: var(--gold-soft); font-style: italic; }
.cta-inner p {
  color: rgba(245, 241, 232, 0.7);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.cta-inner .btn { border-color: var(--bone); color: var(--bone); }
.cta-inner .btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ========== ABOUT PAGE ========== */
.about-intro {
  padding: 130px var(--gutter);
  background: var(--paper);
}
.about-intro-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
  align-items: start;
}
.about-sticker {
  position: sticky;
  top: 120px;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--forest-deep);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.about-image::after {
  content: 'Prime Minister';
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-text h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin: 20px 0 28px;
}
.about-text .lead { margin-bottom: 32px; }
.about-text p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 22px;
}
.about-facts {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.about-fact {
  padding: 22px;
  background: var(--bone);
  border-left: 2px solid var(--gold);
}
.about-fact .k {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.about-fact .v {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.3;
}

/* Timeline */
.timeline-section {
  padding: 130px var(--gutter);
  background: var(--forest-deep);
  color: var(--bone);
}
.timeline-wrap {
  max-width: var(--container);
  margin: 0 auto;
}
.timeline-head {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}
.timeline-head .eyebrow { margin-bottom: 20px; }
.timeline-head h2 {
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}
.timeline-head h2 em { color: var(--gold-soft); font-style: italic; }

.timeline {
  position: relative;
  padding: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(198, 160, 82, 0.35);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  margin-bottom: 60px;
  align-items: start;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  margin: 20px auto 0;
  box-shadow: 0 0 0 6px rgba(198, 160, 82, 0.15);
  position: relative;
  z-index: 2;
}
.timeline-year {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.timeline-card {
  padding: 28px 32px;
  border: 1px solid rgba(198, 160, 82, 0.22);
  background: rgba(5, 18, 14, 0.4);
  transition: all 0.4s var(--ease);
}
.timeline-card:hover {
  border-color: var(--gold);
  background: rgba(198, 160, 82, 0.05);
}
.timeline-card h4 {
  font-family: var(--display);
  color: var(--bone);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.timeline-card p {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.65;
}
.timeline-item.right .timeline-year,
.timeline-item.right .timeline-card { text-align: left; }
.timeline-item.left .timeline-year,
.timeline-item.left .timeline-card { text-align: right; }

/* Philosophy */
.philosophy {
  padding: 130px var(--gutter);
  background: var(--parchment);
}
.philosophy-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.philosophy blockquote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  padding: 0 40px;
}
.philosophy blockquote::before {
  content: '"';
  font-family: var(--display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}
.philosophy cite {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 40px;
  font-style: normal;
  font-weight: 600;
}

/* ========== GOVERNANCE PAGE ========== */
.gov-pillars {
  padding: 130px var(--gutter);
  background: var(--paper);
}
.gov-wrap { max-width: var(--container); margin: 0 auto; }
.gov-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.gov-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
}
.gov-head h2 em { color: var(--gold); font-style: italic; }
.gov-head p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.8;
}

.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.gov-card {
  padding: 48px 38px 52px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: all 0.4s var(--ease);
  position: relative;
  cursor: pointer;
}
.gov-card:hover {
  background: var(--bone);
  transform: translateY(-2px);
}
.gov-card .gov-num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.gov-icon {
  width: 56px; height: 56px;
  color: var(--forest);
  margin-bottom: 32px;
}
.gov-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; }
.gov-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--ink);
}
.gov-card p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
}

/* Governance chart */
.gov-chart-section {
  padding: 130px var(--gutter);
  background: var(--bone);
}
.gov-chart-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.gov-chart-visual {
  padding: 50px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
}
.chart-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.chart-title {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 38px;
}
.bar-row {
  margin-bottom: 26px;
}
.bar-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}
.bar-top strong { color: var(--forest); }
.bar-track {
  width: 100%;
  height: 6px;
  background: rgba(18, 58, 46, 0.08);
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  width: 0;
  transition: width 1.4s var(--ease-power);
}

/* Governance quote */
.gov-quote {
  padding: 100px var(--gutter);
  background: var(--forest-deep);
  color: var(--bone);
  text-align: center;
}
.gov-quote blockquote {
  max-width: 960px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.3;
  font-style: italic;
  color: var(--bone);
}
.gov-quote blockquote em { color: var(--gold-soft); }

/* ========== LABOUR PAGE ========== */
.labour-intro {
  padding: 130px var(--gutter);
  background: var(--paper);
}
.labour-intro-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.labour-text h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 20px 0 28px;
}
.labour-text h2 em { color: var(--red); font-style: italic; }
.labour-image {
  aspect-ratio: 5/6;
  overflow: hidden;
  position: relative;
}
.labour-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.labour-image::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

/* Labour pillars */
.labour-pillars {
  padding: 130px var(--gutter);
  background: var(--bone);
}
.lp-wrap { max-width: var(--container); margin: 0 auto; }
.lp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.lp-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.lp-head h2 em { color: var(--red); font-style: italic; }
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.lp-card {
  padding: 42px 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.lp-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.lp-card:hover::before { transform: scaleY(1); }
.lp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.lp-icon {
  width: 44px; height: 44px;
  color: var(--red);
  margin-bottom: 24px;
}
.lp-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; }
.lp-card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.lp-card p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
}

/* Impact metrics */
.labour-impact {
  padding: 130px var(--gutter);
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.labour-impact::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background:
    radial-gradient(circle at center, rgba(184, 50, 28, 0.15), transparent 70%);
}
.li-head {
  max-width: var(--container);
  margin: 0 auto 70px;
  text-align: center;
}
.li-head h2 {
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.15;
}
.li-head h2 em { color: var(--gold-soft); font-style: italic; }
.li-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(198, 160, 82, 0.2);
  border-bottom: 1px solid rgba(198, 160, 82, 0.2);
}
.li-item {
  padding: 46px 28px;
  border-right: 1px solid rgba(198, 160, 82, 0.2);
  text-align: center;
}
.li-item:last-child { border-right: none; }
.li-value {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}
.li-value .suffix {
  font-size: 1.4rem;
}
.li-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.75);
  font-weight: 600;
}

/* ========== ECONOMY PAGE ========== */
.econ-intro {
  padding: 130px var(--gutter);
  background: var(--paper);
}
.econ-intro-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.econ-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.econ-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.04);
}
.econ-text h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 20px 0 28px;
}
.econ-text h2 em { color: var(--gold); font-style: italic; }

/* Strategy board */
.strategy {
  padding: 130px var(--gutter);
  background: var(--forest-deep);
  color: var(--bone);
}
.strat-wrap { max-width: var(--container); margin: 0 auto; }
.strat-head { text-align: center; margin-bottom: 70px; }
.strat-head h2 {
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.15;
}
.strat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.strat-card {
  padding: 48px 36px 60px;
  border: 1px solid rgba(198, 160, 82, 0.2);
  margin: -1px -1px 0 0;
  position: relative;
  transition: background 0.4s var(--ease);
  cursor: pointer;
}
.strat-card:hover { background: rgba(198, 160, 82, 0.05); }
.strat-card .code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}
.strat-card h3 {
  font-family: var(--display);
  color: var(--bone);
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 14px;
}
.strat-card p {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.7;
}
.strat-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.strat-card:hover::after { width: 100%; }

/* EU band */
.eu-band {
  padding: 130px var(--gutter);
  background: var(--bone);
}
.eu-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.eu-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.eu-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.eu-text h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin: 20px 0 28px;
}
.eu-text h2 em { color: var(--gold); font-style: italic; }
.eu-list {
  list-style: none;
  margin-top: 30px;
}
.eu-list li {
  padding: 16px 0 16px 36px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 15px;
  color: var(--charcoal);
}
.eu-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 24px;
  width: 20px; height: 1px;
  background: var(--gold);
}

/* ========== GALLERY ========== */
.gallery-section {
  padding: 120px var(--gutter);
  background: var(--paper);
}
.gallery-wrap { max-width: var(--container); margin: 0 auto; }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
  justify-content: center;
}
.gallery-filter {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.gallery-filter.active,
.gallery-filter:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.masonry {
  column-count: 3;
  column-gap: 20px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}
.masonry-item img {
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
  display: block;
}
.masonry-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,20,16,0.7));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.masonry-item:hover::after { opacity: 1; }
.masonry-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  color: var(--bone);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}
.masonry-item:hover .masonry-caption {
  opacity: 1;
  transform: translateY(0);
}
.masonry-caption .tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.masonry-caption h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--bone);
  line-height: 1.25;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 14, 11, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 50px 120px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  width: 50px; height: 50px;
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  text-align: center;
  color: var(--bone);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}

/* ========== NEWS ========== */
.news-section {
  padding: 120px var(--gutter);
  background: var(--paper);
}
.news-wrap { max-width: var(--container); margin: 0 auto; }
.news-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.news-featured-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.news-featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.news-featured:hover .news-featured-image img { transform: scale(1.03); }
.news-featured-body .tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--forest);
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.news-featured-body h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.news-featured-body .meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.news-featured-body p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.news-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card .tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 14px;
}
.news-card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 14px;
}
.news-card p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.news-card .read-more {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.news-card .date {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* News article modal */
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 20, 16, 0.6);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.article-modal.open { display: flex; opacity: 1; }
.article-content {
  background: var(--paper);
  width: min(820px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 60px;
  animation: articleIn 0.5s var(--ease);
}
@keyframes articleIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.article-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  background: var(--paper);
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.article-close:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.article-content .tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--forest);
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.article-content h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 18px;
}
.article-content .article-meta {
  font-size: 12px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.article-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 20px;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 130px var(--gutter);
  background: var(--paper);
}
.contact-wrap { max-width: var(--container); margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.contact-info .eyebrow { margin-bottom: 20px; }
.contact-info h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 24px;
}
.contact-info > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 44px;
}

.contact-card {
  background: var(--bone);
  border-left: 2px solid var(--gold);
  padding: 32px 32px;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.contact-card:hover { border-left-width: 5px; }
.contact-card .k {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-card .v {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.3;
}
.contact-card a:hover { color: var(--gold); }

.contact-form {
  background: var(--bone);
  padding: 54px 50px;
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(18, 58, 46, 0.08);
  border-left: 3px solid var(--forest);
  color: var(--forest);
  font-size: 14px;
  display: none;
}
.form-success.show { display: block; }

/* Office map band */
.office-band {
  padding: 90px var(--gutter);
  background: var(--forest-deep);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.office-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.office-inner h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 18px;
}
.office-inner h3 em { color: var(--gold-soft); font-style: italic; }
.office-inner p {
  color: rgba(245, 241, 232, 0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.office-map {
  aspect-ratio: 5/4;
  background:
    linear-gradient(135deg, rgba(198,160,82,0.1), transparent),
    radial-gradient(circle at 50% 50%, rgba(198,160,82,0.12), transparent 60%),
    var(--ink);
  border: 1px solid rgba(198, 160, 82, 0.25);
  position: relative;
  overflow: hidden;
}
.office-map svg { width: 100%; height: 100%; }
.office-pin {
  position: absolute;
  left: 54%; top: 48%;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(198, 160, 82, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(198, 160, 82, 0.2); }
  50% { box-shadow: 0 0 0 16px rgba(198, 160, 82, 0.05); }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; min-height: auto; }
  .hero-visual { height: 70vh; max-height: 600px; }
  .hero-badge { top: 20px; right: 10px; }
  .statement-grid { grid-template-columns: 1fr; gap: 60px; }
  .pillars-header { grid-template-columns: 1fr; gap: 30px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid rgba(198, 160, 82, 0.2); }
  .pillar:nth-child(even) { border-right: none; }
  .pillar:nth-last-child(-n+2) { border-bottom: none; }
  .metrics-inner { grid-template-columns: 1fr; gap: 50px; }
  .spotlight-grid { grid-template-columns: 1fr 1fr; }
  .spot-card.tall { grid-row: auto; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-sticker { position: static; max-width: 520px; }
  .gov-head { grid-template-columns: 1fr; gap: 30px; }
  .gov-grid { grid-template-columns: repeat(2, 1fr); }
  .gov-chart-inner { grid-template-columns: 1fr; gap: 50px; }
  .labour-intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
  .li-grid { grid-template-columns: repeat(2, 1fr); }
  .li-item:nth-child(even) { border-right: none; }
  .li-item:nth-child(-n+2) { border-bottom: 1px solid rgba(198, 160, 82, 0.2); }
  .econ-intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .strat-grid { grid-template-columns: repeat(2, 1fr); }
  .eu-inner { grid-template-columns: 1fr; gap: 50px; }
  .masonry { column-count: 2; }
  .news-featured { grid-template-columns: 1fr; gap: 40px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .office-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .timeline::before { left: 28px; }
  .timeline-item,
  .timeline-item.right,
  .timeline-item.left { grid-template-columns: 56px 1fr; }
  .timeline-item > div:empty { display: none; }
  .timeline-item .timeline-dot { grid-column: 1; grid-row: 1; margin: 20px 0 0; }
  .timeline-item > div:not(.timeline-dot):not(:empty) { grid-column: 2; grid-row: 1; }
  .timeline-item.left .timeline-year,
  .timeline-item.left .timeline-card,
  .timeline-item.right .timeline-year,
  .timeline-item.right .timeline-card { text-align: left; }
}

@media (max-width: 720px) {
  .nav-menu { display: none; }
  .hamburger { display: block; }
  .nav-action { display: none; }
  .hero-text h1 { font-size: 2.6rem; }
  .hero-visual { height: 60vh; min-height: 420px; }
  .hero-signature { flex-direction: column; align-items: start; gap: 14px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .pillar:last-child { border-bottom: none; }
  .metrics-grid { grid-template-columns: 1fr; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .gov-grid { grid-template-columns: 1fr; }
  .lp-grid { grid-template-columns: 1fr; }
  .li-grid { grid-template-columns: 1fr; }
  .li-item { border-right: none; border-bottom: 1px solid rgba(198, 160, 82, 0.2); }
  .li-item:last-child { border-bottom: none; }
  .strat-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 36px 28px; }
  .article-content { padding: 40px 24px; }
  .gate-panel { padding: 44px 28px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
