/* ============================================================
   AKASHDEEP SINGH V3 — LIGHT THEME  (full rewrite)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── TOKENS ── */
:root {
  --white:    #ffffff;
  --off:      #f9f7f4;
  --cream:    #f0ece4;
  --border:   #e2ddd5;
  --border-l: #ede9e2;
  --text:     #111111;
  --text-2:   #444444;
  --text-3:   #888888;
  --gold:     #c9a84c;
  --gold-dk:  #a8862c;
  --gold-lt:  #f5e9c8;
  --navy:     #0f1c3f;
  --navy-2:   #162447;
  --blue:     #1e4080;
  --shadow:   0 2px 24px rgba(0,0,0,0.07);
  --shadow-h: 0 8px 40px rgba(0,0,0,0.13);
  --radius:   12px;
  --rad-sm:   8px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--white);
  overflow-x: hidden; line-height: 1.6; cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--navy) 100%);
  transition: width 0.1s linear;
}

/* ── CUSTOM CURSOR ── */
.c-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--navy); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: background 0.2s; opacity: 0;
}
.c-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(15,28,63,0.5);
  border-radius: 50%; pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: border-color 0.2s, width 0.25s var(--ease), height 0.25s var(--ease); opacity: 0;
}
.c-ring.expand { width: 56px; height: 56px; border-color: var(--gold); opacity: 0.8 !important; }
.c-dot.gold { background: var(--gold); }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
  height: 76px; background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon svg { display: block; border-radius: 10px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: var(--navy); line-height: 1.2;
}
.nav-logo-text span {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-2);
  letter-spacing: 0.02em; position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; border-radius: 40px;
  background: var(--navy); color: #fff;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,28,63,0.22); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mob-nav {
  position: fixed; inset: 0; z-index: 850;
  background: var(--white); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 700;
  color: var(--navy); transition: color 0.2s, transform 0.2s;
}
.mob-nav a:hover { color: var(--gold); transform: translateX(10px); }
.mob-nav-sub { display: flex; gap: 24px; border-top: 1px solid var(--border); padding-top: 20px; }
.mob-nav-sub a { font-size: 0.8rem; font-weight: 500; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── SCROLL REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.93); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ── BUTTONS ── */
.btn-dark {
  padding: 14px 32px; border-radius: 40px; background: var(--navy); color: #fff;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-dark:hover { background: var(--blue); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15,28,63,0.22); }
.btn-outline {
  padding: 14px 32px; border-radius: 40px;
  border: 1.5px solid var(--navy); color: var(--navy);
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-gold {
  padding: 14px 32px; border-radius: 40px; background: var(--gold); color: #fff;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-white {
  padding: 14px 36px; border-radius: 40px; background: #fff; color: var(--navy);
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { background: var(--gold-lt); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-white {
  padding: 14px 36px; border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.35); color: #fff;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-3px); }

/* ── SECTION COMMON ── */
.section { padding: 100px 5%; }
.section-sm { padding: 60px 5%; }
.container { max-width: 1240px; margin: 0 auto; width: 100%; }
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-label .num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.section-label::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--border); }
.section-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; display: block; }
h2.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 20px;
}
h2.display em { font-style: italic; color: var(--gold); }
.section-intro { font-size: 1rem; color: var(--text-2); line-height: 1.75; max-width: 560px; margin-bottom: 52px; }
.divider { height: 1px; background: var(--border-l); margin: 0 5%; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 5% 80px; position: relative; overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 52%; height: 100%;
  background: var(--off);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1300px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px; border-radius: 40px; border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 24px;
}
.hero-label span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.6; } }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1rem; color: var(--text-2); line-height: 1.8; max-width: 480px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1;
}
.hero-stat span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-top: 4px; }
/* ── Hero photo — NO CROP, full display ── */
.hero-img-wrap { position: relative; display: flex; justify-content: center; }
.hero-photo-frame { position: relative; width: 100%; max-width: 460px; }
.hero-photo-frame img {
  width: 100%; height: auto;
  border-radius: 180px 180px 16px 16px;
  box-shadow: var(--shadow-h);
  object-fit: cover; object-position: top center;
  display: block;
}
.hero-badge {
  position: absolute; bottom: 32px; left: -28px;
  background: var(--white); padding: 14px 18px; border-radius: var(--radius);
  box-shadow: var(--shadow-h); display: flex; align-items: center; gap: 12px; max-width: 210px;
}
.hero-badge-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-lt); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hero-badge p { font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.hero-badge span { font-size: 0.68rem; color: var(--text-3); }
.hero-exp-tag {
  position: absolute; top: 32px; right: -16px;
  background: var(--navy); color: #fff; padding: 12px 16px; border-radius: var(--radius); text-align: center;
}
.hero-exp-tag strong { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; display: block; line-height: 1; }
.hero-exp-tag span { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); z-index: 2;
}
.scroll-line { width: 1px; height: 48px; background: var(--border); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -100%; } 100% { top: 200%; } }

/* ── MARQUEE ── */
.marquee-band { padding: 18px 0; background: var(--navy); overflow: hidden; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 30s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 14px; padding: 0 28px; white-space: nowrap; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT SECTION ── */
.about-sec { background: var(--off); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-col { position: relative; }
.about-photo-wrap { position: relative; display: inline-block; width: 100%; }
.about-photo-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center;
  border-radius: 140px 16px 16px 16px; box-shadow: var(--shadow-h);
}
.about-gold-frame {
  position: absolute; top: -14px; left: -14px;
  width: calc(100% - 28px); height: 100%;
  border: 2px solid var(--gold-lt); border-radius: 140px 16px 16px 16px; pointer-events: none;
}
.about-float-tag {
  position: absolute; bottom: -16px; right: 16px;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-h);
}
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chip { padding: 6px 16px; border-radius: 40px; border: 1px solid var(--border); font-size: 0.75rem; font-weight: 500; color: var(--text-2); background: var(--white); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.val-item { padding: 18px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); transition: box-shadow 0.2s, transform 0.2s; }
.val-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.val-item .val-icon { font-size: 1.3rem; margin-bottom: 8px; }
.val-item strong { font-size: 0.88rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }
.val-item p { font-size: 0.78rem; color: var(--text-3); line-height: 1.5; }

/* ── STATS BAND ── */
.stats-band { background: var(--navy); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-cell { padding: 56px 32px; border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; }
.stat-cell:last-child { border-right: none; }
.stat-cell .stat-num { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat-cell .stat-num span { color: var(--gold); }
.stat-cell .stat-lbl { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.stat-cell .stat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-top: auto; }
.stat-lottie { width: 56px; height: 56px; margin-bottom: 16px; opacity: 0.8; }

/* ── MISSION STRIP ── */
.mission-strip { padding: 80px 5%; background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.mission-strip blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 600; font-style: italic; color: var(--navy); line-height: 1.5; max-width: 860px; margin: 0 auto 20px; }
.mission-strip cite { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ── SERVICES ── */
.services-sec { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
  padding: 40px 32px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--white); transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative; overflow: hidden; will-change: transform;
}
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: width 0.4s; }
.svc-card:hover { box-shadow: var(--shadow-h); transform: translateY(-6px); border-color: transparent; }
.svc-card:hover::after { width: 100%; }
.svc-card .lottie-svc { width: 72px; height: 72px; margin-bottom: 20px; }
.svc-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; display: block; }
.svc-icon { width: 52px; height: 52px; border-radius: var(--rad-sm); background: var(--off); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 1.4rem; }
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.svc-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.svc-link { font-size: 0.8rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 6px; transition: gap 0.2s, color 0.2s; }
.svc-link:hover { color: var(--gold); gap: 12px; }
.svc-card.featured { background: var(--navy); border-color: var(--navy); }
.svc-card.featured .svc-num { color: var(--gold); }
.svc-card.featured .svc-icon { background: rgba(255,255,255,0.08); }
.svc-card.featured h3 { color: #fff; }
.svc-card.featured p { color: rgba(255,255,255,0.65); }
.svc-card.featured .svc-link { color: var(--gold); }
.svc-card.featured::after { background: var(--gold); }

/* ── PROJECTS ── */
.projects-sec { background: var(--off); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.proj-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: box-shadow 0.3s, transform 0.3s; }
.proj-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.proj-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.proj-card:hover .proj-img img { transform: scale(1.07); }
.proj-tag { position: absolute; top: 14px; left: 14px; padding: 4px 12px; border-radius: 40px; background: var(--white); font-size: 0.7rem; font-weight: 600; color: var(--navy); }
.proj-body { padding: 28px; }
.proj-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.proj-body p { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }
.proj-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.proj-meta span { font-size: 0.72rem; color: var(--text-3); font-weight: 500; }
.proj-arrow { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--navy); transition: background 0.2s, border-color 0.2s, color 0.2s; }
.proj-card:hover .proj-arrow { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ── BILATERAL ── */
.bilateral-sec { background: var(--white); }
.bilateral-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.flags-row { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.flag-chip { display: flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: 40px; border: 1px solid var(--border); background: var(--off); font-size: 0.82rem; font-weight: 600; color: var(--text-2); }
.flag-chip .flag { font-size: 1.3rem; }
.flags-connector { width: 40px; height: 1px; background: var(--border); position: relative; }
.flags-connector::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.bilateral-points { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.bi-point { display: flex; align-items: flex-start; gap: 16px; padding: 18px; border-radius: var(--rad-sm); border: 1px solid var(--border); background: var(--off); }
.bi-point .bi-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-lt); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.bi-point strong { font-size: 0.88rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }
.bi-point p { font-size: 0.8rem; color: var(--text-2); line-height: 1.5; }
/* ── Bilateral visual — full image display ── */
.bilateral-visual { position: relative; }
.bilateral-img-stack { position: relative; }
.bilateral-img-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center;
  border-radius: var(--radius); box-shadow: var(--shadow-h); display: block;
}
.bilateral-img-small {
  position: absolute; bottom: -20px; right: -20px;
  width: 180px; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); border: 4px solid var(--white); box-shadow: var(--shadow-h); display: block;
}
.bilateral-stat-pill {
  position: absolute; top: -18px; left: -18px;
  background: var(--navy); color: #fff; padding: 14px 18px; border-radius: var(--radius);
  display: flex; flex-direction: column; box-shadow: var(--shadow-h); z-index: 2;
}
.bilateral-stat-pill strong { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.bilateral-stat-pill span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }
/* Lottie globe in bilateral */
.lottie-bilateral { width: 100%; max-width: 380px; display: block; margin: 0 auto; }

/* ── TESTIMONIALS ── */
.testimonials-sec { background: var(--off); }
.swiper-testimonials { padding-bottom: 52px !important; }
.testi-card { background: var(--white); padding: 36px; border-radius: var(--radius); border: 1px solid var(--border); display: flex; flex-direction: column; height: 100%; }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testi-quote { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; font-weight: 400; color: var(--text); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.testi-card p { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--text-3); }
.swiper-pagination-bullet { background: var(--border) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; width: 20px !important; border-radius: 4px !important; }

/* ── NEWS ── */
.news-sec { background: var(--white); }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: box-shadow 0.3s, transform 0.3s; }
.news-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.news-img { aspect-ratio: 16/9; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-body { padding: 24px; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-cat { padding: 3px 12px; border-radius: 40px; background: var(--gold-lt); color: var(--gold-dk); font-size: 0.7rem; font-weight: 600; }
.news-date { font-size: 0.72rem; color: var(--text-3); }
.news-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; }
.news-read { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.78rem; font-weight: 600; color: var(--navy); transition: gap 0.2s, color 0.2s; }
.news-read:hover { color: var(--gold); gap: 10px; }

/* ── CTA SECTION ── */
.cta-sec { padding: 100px 5%; background: var(--navy); text-align: center; position: relative; overflow: hidden; }
.cta-sec::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse, rgba(201,168,76,0.12), transparent 70%); pointer-events: none; }
.cta-sec .section-tag { color: var(--gold); margin-bottom: 20px; }
.cta-sec h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em; }
.cta-sec h2 em { font-style: italic; color: var(--gold); }
.cta-sec p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 40px; line-height: 1.75; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── MOSCOW GALLERY (new — on every page) ── */
.moscow-gallery { background: var(--navy); padding: 80px 5%; }
.moscow-gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.moscow-gallery-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.moscow-gallery-header h2 em { font-style: italic; color: var(--gold); }
.moscow-gallery-header p { font-size: 0.88rem; color: rgba(255,255,255,0.5); max-width: 320px; text-align: right; }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.gal-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block; transition: transform 0.6s var(--ease);
  will-change: transform;
}
.gal-item:hover .gal-img { transform: scale(1.06) !important; }
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(to top, rgba(15,28,63,0.85), transparent);
  color: #fff; font-size: 0.82rem; font-weight: 600;
  transform: translateY(4px); transition: transform 0.3s;
}
.gal-item:hover .gal-caption { transform: translateY(0); }
.gal-caption span { display: block; font-size: 0.68rem; opacity: 0.7; font-weight: 400; margin-top: 2px; }

/* ── DETAIL GRID (services / projects inner pages) ── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.detail-grid:last-child { margin-bottom: 0; }
.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }
/* Full image — no crop, fixed aspect ratio */
.detail-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}
.detail-content .section-tag { color: var(--gold); }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-2); line-height: 1.5; }
.feature-list li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: var(--gold-lt); color: var(--gold-dk); font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* ── PROCESS STEPS ── */
.process-sec { background: var(--off); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.step-item { padding: 40px 28px; border-right: 1px solid var(--border); background: var(--white); transition: background 0.3s; }
.step-item:last-child { border-right: none; }
.step-item:hover { background: var(--off); }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: var(--gold-lt); line-height: 1; margin-bottom: 16px; -webkit-text-stroke: 1px var(--gold); }
.step-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-item p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; }

/* ── SECTOR HIGHLIGHTS ── */
.sector-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.sh-item { padding: 20px; border-radius: var(--rad-sm); background: var(--off); border: 1px solid var(--border); text-align: center; }
.sh-item strong { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); display: block; }
.sh-item span { font-size: 0.72rem; color: var(--text-3); font-weight: 500; }

/* ── TIMELINE ── */
.timeline-sec { background: var(--off); }
.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.tl-side { display: flex; flex-direction: column; gap: 0; }
.tl-card { padding: 32px; border: 1px solid var(--border); margin: -1px; background: var(--white); transition: background 0.2s; }
.tl-card:hover { background: var(--off); }
.tl-year { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.tl-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tl-card p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; }

/* ── LOTTIE CONTAINERS ── */
.lottie-wrap { display: flex; justify-content: center; align-items: center; }
.lottie-globe-wrap { width: 100%; max-width: 360px; margin: 0 auto; }
lottie-player { display: block; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { padding: 24px; border-radius: var(--rad-sm); border: 1px solid var(--border); background: var(--white); transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.faq-item p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }
.contact-card { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); text-align: center; transition: box-shadow 0.3s, transform 0.3s; }
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.contact-card .cc-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--off); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 16px; overflow: hidden; }
.contact-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 0.82rem; color: var(--text-3); }
.contact-card a:hover { color: var(--gold); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-2); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--rad-sm);
  background: var(--white); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; cursor: auto;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info-card { padding: 36px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--off); position: sticky; top: 100px; }
.contact-info-card .ci-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: top; margin-bottom: 16px; border: 3px solid var(--white); box-shadow: var(--shadow); }
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-card .ci-title { font-size: 0.75rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.ci-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.ci-item { display: flex; align-items: flex-start; gap: 12px; }
.ci-item .ci-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.ci-item strong { font-size: 0.78rem; font-weight: 600; color: var(--navy); display: block; }
.ci-item span { font-size: 0.78rem; color: var(--text-3); }
.ci-direct-btns { display: flex; flex-direction: column; gap: 10px; }
.ci-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: 40px; font-size: 0.82rem; font-weight: 600; transition: transform 0.2s, box-shadow 0.2s; }
.ci-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.ci-btn.wa { background: #e8faf0; color: #25D366; border: 1px solid #c3f0d5; }
.ci-btn.tg { background: #e8f4fc; color: #0088cc; border: 1px solid #b8dcf0; }
/* Lottie in contact */
.lottie-contact-wrap { display: flex; justify-content: center; margin-bottom: 24px; }

/* ── MAP ── */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); margin-top: 32px; }
.map-wrap iframe { width: 100%; height: 360px; display: block; border: none; }

/* ── PAGE HERO ── */
.page-hero { padding: 160px 5% 80px; background: var(--off); border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 760px; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--text-3); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { opacity: 0.4; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 72px 5% 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 24px; max-width: 280px; }
.footer-brand .logo-svg { margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: background 0.2s, border-color 0.2s, color 0.2s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s, padding-left 0.2s; }
.footer-col li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom .gold { color: var(--gold); }

/* ── FLOATING BUTTONS ── */
.float-btns { position: fixed; bottom: 32px; right: 28px; display: flex; flex-direction: column; gap: 10px; z-index: 800; }
.float-btn { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: var(--shadow-h); transition: transform 0.2s, box-shadow 0.2s; border: none; }
.float-btn:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.float-wa { background: #25D366; color: #fff; }
.float-tg { background: #0088cc; color: #fff; }
.float-mail { background: var(--gold); color: #fff; }
.back-top { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 0.9rem; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.2s; }
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-img-wrap { justify-content: flex-start; }
  .hero-photo-frame { max-width: 380px; }
  .about-grid, .bilateral-grid { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .services-grid, .news-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-grid.reverse { direction: ltr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .moscow-gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .moscow-gallery-header p { text-align: left; }
}
@media (max-width: 640px) {
  .section { padding: 70px 5%; }
  .hero { padding: 100px 5% 60px; }
  .hero-stats { gap: 20px; }
  .hero-badge, .hero-exp-tag { display: none; }
  .stats-row { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .sector-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-header, .moscow-gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bilateral-img-small { display: none; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   EXTENDED STYLES — Hero v3, About, Projects, Services
   ══════════════════════════════════════════════════════════ */

/* ── HERO v3 ── */
.hero-content { display: flex; flex-direction: column; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-start; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 40px; border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 24px; background: var(--white);
  width: fit-content;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: block; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 24px;
}
.hero-title .line { display: block; overflow: visible; padding-bottom: 0.06em; }
.hero-title .accent { font-style: italic; color: var(--gold); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-deco-card {
  position: absolute; background: var(--white); padding: 12px 16px; border-radius: var(--radius);
  box-shadow: var(--shadow-h); display: flex; align-items: center; gap: 10px;
  min-width: 170px;
}
.hero-deco-card.card-1 { bottom: 40px; left: -20px; }
.hero-deco-card.card-2 { top: 40px; right: -20px; }
.hero-deco-card .deco-icon { font-size: 1.4rem; flex-shrink: 0; }
.hero-deco-card strong { font-size: 0.85rem; font-weight: 700; color: var(--navy); display: block; line-height: 1.2; }
.hero-deco-card span { font-size: 0.7rem; color: var(--text-3); }
.hero-photo-fallback { display: flex; justify-content: center; align-items: center; padding: 40px; background: var(--off); border-radius: 180px 180px 16px 16px; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); z-index: 2;
}

/* ── MARQUEE BAR ── */
.marquee-bar { padding: 16px 0; background: var(--navy); overflow: hidden; }
.marquee-bar .marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 30s linear infinite; }
.marquee-bar .marquee-track span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); padding: 0 16px; white-space: nowrap; }
.marquee-bar .marquee-track .sep { color: var(--gold); padding: 0 4px; }

/* ── ABOUT STRIP (homepage) ── */
.about-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-strip-img { position: relative; }
.about-strip-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-h); display: block; }
.img-badge {
  position: absolute; bottom: 20px; left: 20px; background: var(--navy); color: #fff;
  padding: 10px 16px; border-radius: var(--rad-sm); display: flex; flex-direction: column;
}
.img-badge span { font-size: 0.9rem; font-weight: 700; }
.img-badge .year { font-size: 0.68rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; }

/* ── BILATERAL STATS (index) ── */
.bilateral-stats { display: flex; gap: 24px; margin: 28px 0; flex-wrap: wrap; }
.bi-stat { display: flex; flex-direction: column; padding: 20px 24px; border-radius: var(--rad-sm); border: 1px solid var(--border); background: var(--white); flex: 1; min-width: 100px; }
.bi-stat strong { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.bi-stat span { font-size: 0.72rem; color: var(--text-3); font-weight: 500; margin-top: 4px; }

/* ── SVC GRID alias ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card-lottie { margin-bottom: 16px; }

/* ── PROJ GRID alias ── */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.proj-img-wrap { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.proj-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.proj-card:hover .proj-img-wrap img { transform: scale(1.07); }
.proj-tag { display: inline-block; padding: 3px 12px; border-radius: 40px; background: var(--gold-lt); color: var(--gold-dk); font-size: 0.7rem; font-weight: 600; margin-bottom: 10px; }
.proj-link { font-size: 0.8rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; transition: gap 0.2s, color 0.2s; }
.proj-link:hover { color: var(--gold); gap: 12px; }

/* ── NEWS card aliases ── */
.news-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.news-card:hover .news-img-wrap img { transform: scale(1.06); }
.news-tag { display: inline-block; padding: 3px 12px; border-radius: 40px; background: var(--gold-lt); color: var(--gold-dk); font-size: 0.7rem; font-weight: 600; margin-bottom: 10px; }

/* ── ABOUT page profile ── */
.about-profile-grid { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.about-photo-col { display: flex; flex-direction: column; gap: 24px; }
.about-photo-frame { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-photo-frame img { width: 100%; height: auto; object-fit: cover; object-position: top center; display: block; border-radius: var(--radius); box-shadow: var(--shadow-h); }
.about-photo-fallback { display: flex; justify-content: center; align-items: center; padding: 48px; background: var(--off); border-radius: var(--radius); }
.about-credentials { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--off); border-radius: var(--radius); border: 1px solid var(--border); }
.cred-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cred-item:last-child { border-bottom: none; }
.cred-label { font-size: 0.72rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.cred-val { font-size: 0.82rem; font-weight: 600; color: var(--navy); }

/* ── TIMELINE v3 ── */
.timeline { display: flex; flex-direction: column; position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; display: flex; gap: 24px; margin-bottom: 40px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-year { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; min-width: 48px; padding-top: 4px; }
.tl-dot { position: absolute; left: -32px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); flex-shrink: 0; }
.tl-body { flex: 1; padding: 20px 24px; background: var(--off); border-radius: var(--radius); border: 1px solid var(--border); transition: box-shadow 0.2s; }
.tl-body:hover { box-shadow: var(--shadow); }
.tl-body h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tl-body p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; }

/* ── VALUES grid ── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); transition: box-shadow 0.3s, transform 0.3s; }
.value-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.value-lottie { margin-bottom: 16px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; }

/* ── SECTION LABEL light variant ── */
.section-label.light .num { color: var(--gold); }
.section-label.light span:not(.num) { color: rgba(255,255,255,0.55); }
.section-label.light::after { background: rgba(255,255,255,0.15); }

/* ── STEP LOTTIE ── */
.step-lottie { margin-bottom: 8px; }

/* ── CTA LOTTIE ── */
.cta-lottie { display: flex; justify-content: center; }

/* ── CONTACT page ci-photo ── */
.ci-photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 16px; border: 3px solid var(--white); box-shadow: var(--shadow); }
.ci-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.ci-photo-fallback { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: var(--off); }

/* ── RESPONSIVE additions ── */
@media (max-width: 1100px) {
  .about-strip-grid { grid-template-columns: 1fr; }
  .about-profile-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .bilateral-stats { flex-direction: row; }
  .hero-deco-card { display: none; }
}
@media (max-width: 640px) {
  .proj-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 20px; }
  .bilateral-stats { flex-direction: column; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
}
