/* =========================================================
   Abdulla Nigmatovich Aripov — Official Statesman Website
   Design System • Premium Executive Identity
   ========================================================= */

:root {
  --deep-blue: #0a1f44;
  --midnight: #061431;
  --royal: #1a3a7a;
  --emerald: #0f8a6a;
  --emerald-light: #2fb38e;
  --gold: #c9a961;
  --silver: #c8cdd4;
  --charcoal: #232a38;
  --ink: #0f1420;
  --paper: #f6f5f0;
  --cream: #faf8f3;
  --mist: #eceef2;
  --line: rgba(10, 31, 68, 0.12);
  --shadow-sm: 0 2px 10px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 31, 68, 0.09);
  --shadow-lg: 0 28px 70px rgba(10, 31, 68, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --container: 1280px;
  --nav-h: 86px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--deep-blue);
  letter-spacing: -.01em;
  line-height: 1.14;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--emerald);
  display: inline-block;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 32px; }
section { padding: 120px 0; position: relative; }

/* =====================   NAV BAR   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  box-shadow: 0 1px 0 rgba(10,31,68,.08);
  height: 72px;
}
.nav.solid { background: rgba(255,255,255,.98); box-shadow: 0 1px 0 rgba(10,31,68,.08); }

.nav-inner {
  height: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--deep-blue);
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-blue), var(--royal));
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: .02em;
  box-shadow: 0 6px 20px rgba(10,31,68,.25);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: .55;
}
.brand-text { line-height: 1.1; }
.brand-text .t1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--deep-blue);
  letter-spacing: .01em;
}
.brand-text .t2 {
  display: block;
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-top: 2px;
  font-weight: 600;
}

.menu {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.menu a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.menu a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--emerald);
  transition: width .35s var(--ease), left .35s var(--ease);
}
.menu a:hover, .menu a.active {
  color: var(--deep-blue);
}
.menu a:hover::after, .menu a.active::after { width: 100%; left: 0; }

/* Nav on dark hero (pre-scroll) — ensure legibility over page-hero gradients */
.nav:not(.scrolled) .brand-text .t1 { color: #ffffff; }
.nav:not(.scrolled) .brand-text .t2 { color: var(--gold); }
.nav:not(.scrolled) .menu a { color: rgba(255, 255, 255, 0.88); }
.nav:not(.scrolled) .menu a:hover,
.nav:not(.scrolled) .menu a.active { color: #ffffff; }
.nav:not(.scrolled) .menu a::after { background: var(--gold); }
.nav:not(.scrolled) .hamburger { border-color: rgba(255, 255, 255, 0.35); }
.nav:not(.scrolled) .hamburger span { background: #ffffff; }
.nav:not(.scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
}
.nav:not(.scrolled) .nav-cta:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #ffffff;
}
.nav:not(.scrolled) .brand-mark {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--deep-blue);
  color: white;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-cta:hover { background: var(--emerald); transform: translateY(-1px); }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
}
.hamburger span {
  position: absolute; left: 12px; right: 12px; height: 1.5px;
  background: var(--deep-blue);
  transition: transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease);
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 20px; width: 12px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); width: 18px; left: 12px; }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--deep-blue);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 110px 32px 40px;
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.mobile-drawer a {
  color: white;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: .01em;
  display: inline-block;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 16px;
  width: 100%;
}
.mobile-drawer a:hover { color: var(--emerald-light); }
.mobile-drawer .foot {
  margin-top: auto;
  color: rgba(255,255,255,.55);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* =====================   HERO   ===================== */
.hero {
  min-height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.06);
  animation: kenburns 18s var(--ease) forwards;
}
@keyframes kenburns {
  to { transform: scale(1.02) translateY(-1%); }
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,49,.58) 0%, rgba(6,20,49,.4) 35%, rgba(6,20,49,.85) 100%);
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,20,49,.7) 0%, rgba(6,20,49,.2) 60%, transparent 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.1s .3s var(--ease) forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 44px; height: 1px; background: var(--gold);
}
.hero h1 {
  color: white;
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.02;
  max-width: 1100px;
  opacity: 0;
  animation: fadeUp 1.1s .55s var(--ease) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--emerald-light);
  font-weight: 400;
}
.hero-sub {
  max-width: 620px;
  margin-top: 32px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  opacity: 0;
  animation: fadeUp 1.1s .8s var(--ease) forwards;
}
.hero-meta {
  display: flex; flex-wrap: wrap;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.2);
  opacity: 0;
  animation: fadeUp 1.1s 1.05s var(--ease) forwards;
}
.hero-meta .item { min-width: 140px; }
.hero-meta .k {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: white;
  line-height: 1;
}
.hero-meta .k em { color: var(--emerald-light); font-style: normal; }
.hero-meta .v {
  display: block;
  margin-top: 10px;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.hero-cta {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 18px;
  opacity: 0;
  animation: fadeUp 1.1s 1.2s var(--ease) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.7);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
  opacity: 0;
  animation: fadeUp 1.1s 1.5s var(--ease) forwards;
}
.hero-scroll .line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.35);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: -40px; left: 0; width: 100%; height: 40px;
  background: var(--gold);
  animation: scrollDown 2.4s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* =====================   BUTTONS   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 34px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .4s var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn .arrow {
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .35s var(--ease);
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 26px; }
.btn-primary { background: white; color: var(--deep-blue); }
.btn-primary:hover { background: var(--emerald); color: white; }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: white; color: var(--deep-blue); border-color: white; }
.btn-dark { background: var(--deep-blue); color: white; }
.btn-dark:hover { background: var(--emerald); color: white; }

/* =====================   PAGE HEADER (for interior pages)   ===================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 120px) 0 100px;
  color: white;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,49,.5) 0%, rgba(6,20,49,.85) 100%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 {
  color: white;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  font-weight: 500;
  letter-spacing: -.02em;
  margin-top: 22px;
  max-width: 1000px;
}
.page-hero h1 em { color: var(--emerald-light); font-weight: 400; }
.page-hero p.lead {
  max-width: 660px;
  margin-top: 26px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
}
.crumbs {
  display: flex; gap: 10px;
  align-items: center;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.crumbs a:hover { color: white; }
.crumbs .sep { color: rgba(255,255,255,.35); }

/* =====================   SECTION HEADERS   ===================== */
.section-head { max-width: 820px; margin-bottom: 72px; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  margin-top: 20px;
}
.section-head h2 em { color: var(--emerald); font-style: italic; font-weight: 400; }
.section-head p {
  margin-top: 24px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 720px;
}

/* =====================   HOME: STATEMENT BLOCK   ===================== */
.statement {
  background: var(--paper);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  top: 0; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,138,106,.08), transparent 70%);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.statement-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.statement-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.statement-img::after {
  content: "EST. 2016";
  position: absolute;
  bottom: 28px; left: 28px;
  color: white;
  font-size: .7rem;
  letter-spacing: .3em;
  font-weight: 600;
  padding: 10px 18px;
  background: rgba(10,31,68,.65);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.statement-copy .quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--deep-blue);
  font-style: italic;
  margin: 36px 0;
  padding-left: 28px;
  border-left: 3px solid var(--emerald);
}
.signature {
  margin-top: 40px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.signature .name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--deep-blue);
  font-weight: 500;
}
.signature .title {
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
}

/* =====================   PRIORITY CARDS (home)   ===================== */
.priorities { background: var(--cream); }
.pri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pri-card {
  padding: 54px 36px 50px;
  background: var(--cream);
  position: relative;
  transition: background .5s var(--ease), color .5s var(--ease);
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.pri-card:hover { background: var(--deep-blue); color: white; }
.pri-card:hover h3 { color: white; }
.pri-card:hover .pri-num { color: var(--emerald-light); }
.pri-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--emerald);
  letter-spacing: .2em;
  font-weight: 600;
  transition: color .5s var(--ease);
}
.pri-card h3 {
  font-size: 1.55rem;
  margin-top: 28px;
  font-weight: 500;
  transition: color .5s var(--ease);
}
.pri-card p {
  margin-top: 16px;
  font-size: .95rem;
  line-height: 1.7;
  color: inherit;
  opacity: .85;
}
.pri-arrow {
  margin-top: 32px;
  width: 40px; height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: .45;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.pri-card:hover .pri-arrow { opacity: 1; transform: translateX(6px); }
.pri-arrow::before {
  content: "";
  width: 10px; height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  margin-left: -3px;
}

/* =====================   SPLIT FEATURE   ===================== */
.split { padding: 140px 0; background: var(--deep-blue); color: white; overflow: hidden; }
.split h2 { color: white; }
.split .section-head p { color: rgba(255,255,255,.75); }
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.split-media .tag {
  position: absolute; bottom: 24px; left: 24px;
  padding: 10px 18px;
  background: rgba(15,138,106,.92);
  color: white;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
}
.split-list { list-style: none; margin-top: 40px; }
.split-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex; gap: 20px;
  align-items: flex-start;
}
.split-list li:last-child { border-bottom: none; }
.split-list .mark {
  color: var(--emerald-light);
  font-family: var(--font-display);
  font-size: 1.4rem;
  min-width: 50px;
}
.split-list h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.split-list p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.6;
}

/* =====================   UPDATES (home)   ===================== */
.updates { background: var(--cream); }
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.update-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.update-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.update-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.update-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 1s var(--ease);
}
.update-card:hover .update-img img { transform: scale(1.05); }
.update-body { padding: 32px 30px 36px; }
.update-tag {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
}
.update-card h4 {
  font-size: 1.35rem;
  margin: 14px 0 12px;
  line-height: 1.3;
  font-weight: 500;
}
.update-card p { color: var(--charcoal); font-size: .95rem; line-height: 1.65; }
.update-card .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--deep-blue);
}
.update-card .more::after {
  content: "";
  width: 14px; height: 1px;
  background: currentColor;
  transition: width .35s var(--ease);
}
.update-card:hover .more::after { width: 22px; }

/* =====================   FOOTER   ===================== */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,.75);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}
.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 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-mark { box-shadow: 0 6px 20px rgba(0,0,0,.35); }
.footer-brand .brand-text .t1 { color: white; }
.footer h5 {
  color: white;
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 26px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer ul a { font-size: .92rem; }
.footer ul a:hover { color: var(--emerald-light); }
.footer-about {
  font-size: .95rem;
  line-height: 1.75;
  margin-top: 22px;
  color: rgba(255,255,255,.6);
  max-width: 340px;
}
.footer-contact {
  display: flex; flex-direction: column; gap: 12px;
  font-size: .92rem;
}
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: var(--emerald-light); }

.socials {
  display: flex; gap: 10px;
  margin-top: 24px;
}
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  color: rgba(255,255,255,.7);
  transition: all .35s var(--ease);
}
.socials a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: white;
  transform: translateY(-3px);
}
.socials svg { width: 15px; height: 15px; fill: currentColor; }

.footer-bottom {
  padding-top: 36px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: var(--emerald-light); }
.footer-bottom a:hover { color: white; }
.credit-line a { color: var(--gold); }

/* =====================   TIMELINE (Journey)   ===================== */
.timeline { padding: 140px 0; background: var(--cream); position: relative; }
.timeline-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline-wrap::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 90px;
  position: relative;
}
.tl-dot {
  grid-column: 2;
  justify-self: center;
  width: 18px; height: 18px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--cream), 0 0 0 7px var(--emerald);
  position: relative; top: 10px;
  z-index: 2;
}
.tl-year {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 10px;
  line-height: 1;
}
.tl-body {
  padding: 32px 36px;
  background: white;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}
.tl-body h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 500; }
.tl-body p { font-size: .98rem; line-height: 1.7; color: var(--charcoal); }
.tl-item:nth-child(odd) .tl-body { grid-column: 1; text-align: right; }
.tl-item:nth-child(odd) .tl-year { text-align: right; }
.tl-item:nth-child(even) .tl-body { grid-column: 3; }
.tl-item:nth-child(even) .tl-year { text-align: left; }

/* =====================   PROFILE CARD   ===================== */
.profile {
  padding: 140px 0;
  background: var(--paper);
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.profile-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.profile-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.profile-portrait::before {
  content: "";
  position: absolute;
  top: 24px; left: 24px; right: 24px; bottom: 24px;
  border: 1px solid rgba(255,255,255,.35);
  z-index: 2;
  pointer-events: none;
}
.profile-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.profile-meta .bit {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.profile-meta .k {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 6px;
}
.profile-meta .v { font-family: var(--font-display); font-size: 1.2rem; color: var(--deep-blue); }

/* =====================   PILLARS (portfolio cards)   ===================== */
.pillars { padding: 130px 0 110px; background: var(--cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.pillar {
  background: white;
  padding: 46px 38px 42px;
  border-radius: 2px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pillar::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 58px; height: 58px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--deep-blue), var(--royal));
  display: grid; place-items: center;
  color: white;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}
.pillar h3 { font-size: 1.4rem; margin-bottom: 14px; font-weight: 500; }
.pillar p { color: var(--charcoal); font-size: .96rem; line-height: 1.7; }
.pillar .num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(10,31,68,.08);
  line-height: 1;
}

/* =====================   STAT STRIP   ===================== */
.stat-strip {
  padding: 100px 0;
  background: var(--deep-blue);
  color: white;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  text-align: left;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.2);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 500;
  color: var(--emerald-light);
  line-height: 1;
}
.stat .label {
  margin-top: 14px;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.stat .desc {
  margin-top: 14px;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
}

/* =====================   VISION PAGE   ===================== */
.vision-grid { padding: 140px 0; }
.vision-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.vision-row:last-child { margin-bottom: 0; }
.vision-row.reverse { grid-template-columns: 1.2fr 1fr; }
.vision-row.reverse .v-img { order: 2; }
.vision-row.reverse .v-text { order: 1; }
.v-img {
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.v-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.v-num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 700;
  margin-bottom: 20px;
}
.v-num .n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--deep-blue);
  letter-spacing: 0;
}
.v-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 22px;
}
.v-text p {
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.8;
}
.v-points {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.v-points li {
  display: flex; gap: 14px;
  align-items: flex-start;
  font-size: .98rem;
  line-height: 1.6;
}
.v-points li::before {
  content: "";
  width: 6px; height: 6px; background: var(--emerald);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

/* =====================   GALLERY   ===================== */
.gallery { padding: 140px 0 120px; background: var(--paper); }
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}
.g-item {
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}
.g-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.1s var(--ease);
}
.g-item:hover img { transform: scale(1.04); }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,20,49,.72));
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.g-item:hover::after { opacity: 1; }
.g-item .cap {
  position: absolute;
  bottom: 20px; left: 24px; right: 24px;
  color: white;
  z-index: 2;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.g-item:hover .cap { opacity: 1; transform: translateY(0); }
.g-item .view-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  opacity: 0;
  transition: opacity .4s var(--ease) .1s, transform .4s var(--ease) .1s;
  z-index: 2;
}
.g-item:hover .view-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,20,49,.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.lightbox.active { display: flex; animation: fadeUp .4s var(--ease); }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 100px rgba(0,0,0,.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white;
  display: grid; place-items: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .3s var(--ease);
  font-size: 1.3rem;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--emerald); border-color: var(--emerald); }
.lb-close { top: 30px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }

/* =====================   DIPLOMACY   ===================== */
.diplo-hero { padding: 140px 0; background: var(--cream); }
.diplo-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}
.df-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.df-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.df-tag {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(255,255,255,.9);
  padding: 10px 20px;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--deep-blue);
  font-weight: 700;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.diplo-list { padding: 140px 0; background: var(--paper); }
.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.dl-item {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  align-items: flex-start;
}
.dl-item:nth-child(odd) { padding-right: 50px; border-right: 1px solid var(--line); }
.dl-item:nth-child(even) { padding-left: 50px; }
.dl-n {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--emerald);
  line-height: 1;
  font-weight: 500;
}
.dl-item h3 { font-size: 1.45rem; margin-bottom: 12px; font-weight: 500; }
.dl-item p { color: var(--charcoal); font-size: .98rem; line-height: 1.7; }

/* =====================   CONTACT   ===================== */
.contact-wrap {
  padding: 140px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info .info-block {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.contact-info .info-block:last-child { border-bottom: none; }
.info-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-blue), var(--royal));
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; fill: white; }
.info-block h4 {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 700;
  margin-bottom: 6px;
}
.info-block p, .info-block a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--deep-blue);
  font-weight: 500;
  line-height: 1.3;
}
.info-block a:hover { color: var(--emerald); }
.info-block .sub {
  display: block;
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--charcoal);
  margin-top: 4px;
  font-weight: 400;
}

.form-card {
  background: white;
  padding: 56px 50px;
  box-shadow: var(--shadow-md);
  border-radius: 2px;
}
.form-card h3 { font-size: 1.8rem; margin-bottom: 10px; font-weight: 500; }
.form-card .form-sub { color: var(--charcoal); font-size: .96rem; margin-bottom: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-group {
  margin-bottom: 22px;
  position: relative;
}
.form-group label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--deep-blue);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  outline: none;
  transition: border-color .3s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--emerald); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-card button {
  width: 100%;
  padding: 18px;
  background: var(--deep-blue);
  color: white;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
  margin-top: 12px;
}
.form-card button:hover { background: var(--emerald); transform: translateY(-2px); }
.form-ok {
  display: none;
  padding: 16px;
  background: rgba(15,138,106,.12);
  color: var(--emerald);
  border-radius: 2px;
  margin-top: 20px;
  font-size: .95rem;
  text-align: center;
}
.form-ok.show { display: block; }

/* =====================   CTA BAND   ===================== */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--deep-blue), var(--royal));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,138,106,.15), transparent 60%);
}
.cta-band h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto 28px;
  position: relative;
}
.cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative;
}
.cta-band .btn { position: relative; }

/* =====================   PASSWORD GATE   ===================== */
.gate {
  position: fixed; inset: 0;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 999;
}
.gate-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.gate-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(30%) brightness(.55);
  transform: scale(1.05);
  animation: kenburns 25s var(--ease) forwards;
}
.gate-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,20,49,.88), rgba(10,31,68,.75));
}
.gate-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 520px;
  padding: 60px 50px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  text-align: center;
  color: white;
  box-shadow: 0 50px 120px rgba(0,0,0,.5);
}
.gate-seal {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b48d3c);
  margin: 0 auto 30px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  color: var(--midnight);
  font-size: 1.6rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(201,169,97,.35);
  position: relative;
}
.gate-seal::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,.4);
}
.gate h1 {
  font-family: var(--font-display);
  color: white;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.gate-sub {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 36px;
}
.gate-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  line-height: 1.6;
}
.gate-input-wrap {
  position: relative;
  margin-bottom: 20px;
}
.gate input {
  width: 100%;
  padding: 18px 60px 18px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  border-radius: 2px;
  font-size: 1rem;
  letter-spacing: .25em;
  outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  text-align: center;
}
.gate input::placeholder { color: rgba(255,255,255,.3); letter-spacing: .25em; }
.gate input:focus { border-color: var(--gold); background: rgba(255,255,255,.08); }
.gate-toggle {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .15em;
  cursor: pointer;
}
.gate-toggle:hover { color: var(--gold); }

.gate button[type="submit"] {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--midnight);
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.gate button[type="submit"]:hover {
  background: white;
  transform: translateY(-1px);
}
.gate-error {
  margin-top: 22px;
  color: #f47171;
  font-size: .85rem;
  letter-spacing: .05em;
  opacity: 0;
  transition: opacity .3s var(--ease);
  min-height: 18px;
}
.gate-error.show { opacity: 1; animation: shake .5s var(--ease); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}
.gate-hint {
  margin-top: 30px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* =====================   REVEAL ANIMATIONS   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.r-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.r-stagger.in > * { opacity: 1; transform: translateY(0); }
.r-stagger.in > *:nth-child(1)  { transition-delay: 0s;   }
.r-stagger.in > *:nth-child(2)  { transition-delay: .08s; }
.r-stagger.in > *:nth-child(3)  { transition-delay: .16s; }
.r-stagger.in > *:nth-child(4)  { transition-delay: .24s; }
.r-stagger.in > *:nth-child(5)  { transition-delay: .32s; }
.r-stagger.in > *:nth-child(6)  { transition-delay: .40s; }
.r-stagger.in > *:nth-child(7)  { transition-delay: .48s; }
.r-stagger.in > *:nth-child(8)  { transition-delay: .56s; }
.r-stagger.in > *:nth-child(9)  { transition-delay: .64s; }
.r-stagger.in > *:nth-child(10) { transition-delay: .72s; }
.r-stagger.in > *:nth-child(11) { transition-delay: .80s; }
.r-stagger.in > *:nth-child(12) { transition-delay: .88s; }

/* =====================   RESPONSIVE   ===================== */
@media (max-width: 1100px) {
  .statement-grid, .split-grid, .profile-grid, .vision-row,
  .vision-row.reverse, .diplo-feature, .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }
  .vision-row.reverse .v-img { order: 0; }
  .pri-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .dl-grid { grid-template-columns: 1fr; }
  .dl-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .dl-item:nth-child(even) { padding-left: 0; }
}

@media (max-width: 820px) {
  .menu { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
  section, .timeline, .profile, .statement, .pillars, .gallery,
  .diplo-hero, .diplo-list, .contact-wrap, .vision-grid, .split { padding: 90px 0; }
  .container, .container-wide { padding: 0 22px; }
  .nav-inner { padding: 0 22px; }
  .hero { padding: 140px 0 80px; }
  .hero-meta { gap: 26px; }
  .hero-meta .item { min-width: calc(50% - 13px); }
  .hero-meta .k { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 40px 28px; }
  .timeline-wrap::before { left: 22px; }
  .tl-item { grid-template-columns: 22px 1fr; gap: 18px; margin-bottom: 56px; }
  .tl-dot { grid-column: 1; justify-self: start; box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px var(--emerald); }
  .tl-item:nth-child(odd) .tl-body,
  .tl-item:nth-child(even) .tl-body { grid-column: 2; text-align: left; }
  .tl-item:nth-child(odd) .tl-year,
  .tl-item:nth-child(even) .tl-year { text-align: left; }
  .tl-body { padding: 24px 26px; }
  .gate-content { padding: 44px 28px; margin: 18px; }
  .page-hero { padding: calc(var(--nav-h) + 80px) 0 80px; min-height: 50vh; }
}

@media (max-width: 600px) {
  .pri-grid { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .btn { padding: 15px 26px; font-size: .72rem; }
}
