/* ============================================
   Oubaitori Group — Oubaitori | styles.css
   Shared stylesheet for all pages
   ============================================ */

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

:root {
  --ink: #0a0a0f;
  --paper: #f5f2ed;
  --cream: #ebe7df;
  --gold: #c9a84c;
  --gold-light: #e4d5a0;
  --gold-dark: #a8893a;
  --crimson: #b8344f;
  --teal: #2a7a6e;
  --slate: #3d3d4a;
  --mist: #d4d0c8;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --transition: .3s ease;
  --max-w: 1440px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--paper); overflow-x: hidden; }

/* ─── GEO GREETING CARD ─── */
#geo-greeting {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 1099;
  background: rgba(8,8,13,.97); backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.03);
  width: 300px; overflow: hidden;
  transform: translateY(120%) scale(.94); opacity: 0;
  transition: transform .65s cubic-bezier(.2,.8,.2,1), opacity .55s ease;
  pointer-events: none;
}
#geo-greeting.gg-visible {
  transform: translateY(0) scale(1); opacity: 1; pointer-events: auto;
}
#geo-greeting.gg-hidden {
  transform: translateY(120%) scale(.94); opacity: 0; pointer-events: none;
}
/* Gold top accent line */
#geo-greeting::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.2));
}
.gg-inner {
  padding: 1.4rem 1.4rem 1.2rem;
  display: flex; flex-direction: column; gap: .9rem;
}
.gg-top {
  display: flex; align-items: flex-start; gap: 1rem;
}
.gg-flag {
  font-size: 2.4rem; line-height: 1; flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.gg-head { flex: 1; min-width: 0; }
.gg-time-greet {
  font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .25rem;
}
.gg-local-greet {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.35rem; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: .02em;
}
.gg-location {
  display: flex; align-items: center; gap: .3rem;
  font-size: .68rem; color: rgba(255,255,255,.35);
  margin-top: .4rem; letter-spacing: .04em; font-weight: 400;
}
.gg-location svg { width: 10px; height: 10px; flex-shrink: 0; opacity: .5; }
.gg-divider {
  height: 1px; background: rgba(255,255,255,.06);
}
.gg-tagline {
  font-size: .75rem; color: rgba(255,255,255,.5);
  line-height: 1.6; font-weight: 300; letter-spacing: .02em;
}
.gg-tagline strong {
  color: rgba(201,168,76,.85); font-weight: 600;
}
.gg-footer {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.gg-brand {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.18); font-weight: 500;
}
.gg-close {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  cursor: pointer; color: rgba(255,255,255,.3); font-size: .72rem;
  line-height: 1; padding: .3rem .55rem; transition: all .2s;
  font-family: inherit;
}
.gg-close:hover {
  background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.3);
  color: var(--gold);
}
@media (max-width: 480px) {
  #geo-greeting { left: 1rem; right: 1rem; bottom: 1rem; width: auto; }
}

/* ─── GEO GREETING — service chips ─── */
.gg-svc-preview { display: flex; gap: .4rem; flex-wrap: wrap; }
.gg-svc-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  text-decoration: none;
  background: rgba(201,168,76,.09); border: 1px solid rgba(201,168,76,.2);
  color: rgba(255,255,255,.5); font-size: .61rem; font-weight: 500;
  padding: .22rem .6rem; letter-spacing: .04em;
  transition: background .2s, color .2s, border-color .2s;
}
.gg-svc-chip svg { width: 11px; height: 11px; flex-shrink: 0; color: rgba(201,168,76,.6); }
.gg-svc-chip:hover { background: rgba(201,168,76,.18); color: var(--gold); border-color: rgba(201,168,76,.4); }
.gg-svc-chip:hover svg { color: var(--gold); }

/* ─── GEO SMART PANEL ─── */
#geo-panel {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 1098;
  width: 280px; overflow: hidden;
  background: rgba(8,8,13,.97); backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.03);
  transform: translateY(30px) scale(.96); opacity: 0;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .45s ease;
  pointer-events: none;
}
#geo-panel::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.15));
}
#geo-panel.gp-visible { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

.gp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 1rem; background: rgba(201,168,76,.05);
  border-bottom: 1px solid rgba(201,168,76,.1); gap: .6rem;
}
.gp-hd-left { display: flex; align-items: center; gap: .55rem; flex: 1; min-width: 0; }
.gp-flag { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.gp-hd-info { min-width: 0; }
.gp-hd-label {
  font-size: .62rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .1rem;
}
.gp-hd-loc {
  display: flex; align-items: center; gap: .28rem;
  font-size: .62rem; color: rgba(255,255,255,.3); letter-spacing: .02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gp-hd-loc svg { width: 10px; height: 10px; flex-shrink: 0; opacity: .55; }
.gp-toggle {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.35); width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .85rem; line-height: 1; flex-shrink: 0;
  transition: all .2s; font-family: inherit;
}
.gp-toggle:hover { background: rgba(201,168,76,.12); border-color: rgba(201,168,76,.3); color: var(--gold); }

.gp-body {
  overflow: hidden; max-height: 500px; opacity: 1;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
#geo-panel.gp-collapsed .gp-body { max-height: 0; opacity: 0; }

.gp-svc-label {
  font-size: .59rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
  padding: .7rem 1rem .35rem;
}
.gp-svc {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem 1rem; text-decoration: none;
  border-left: 2px solid transparent;
  transition: background .2s, border-color .2s;
}
.gp-svc:hover { background: rgba(201,168,76,.07); border-left-color: rgba(201,168,76,.4); }
.gp-svc-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
}
.gp-svc-icon svg {
  width: 15px; height: 15px; display: block;
  color: rgba(201,168,76,.45);
  transition: color .2s;
}
.gp-svc:hover .gp-svc-icon svg { color: var(--gold); }
.gp-svc-info { flex: 1; min-width: 0; }
.gp-svc-name {
  display: block; font-size: .71rem; font-weight: 600;
  color: rgba(255,255,255,.72); letter-spacing: .02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gp-svc-desc {
  display: block; font-size: .6rem; color: rgba(255,255,255,.28);
  letter-spacing: .02em; margin-top: .1rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gp-svc-arr {
  font-size: .72rem; color: rgba(201,168,76,.28); flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.gp-svc:hover .gp-svc-arr { color: var(--gold); transform: translateX(3px); }
.gp-divider { height: 1px; background: rgba(255,255,255,.05); }

.gp-actions { display: flex; gap: .5rem; padding: .7rem 1rem .9rem; }
.gp-btn-wa, .gp-btn-contact {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .35rem;
  text-decoration: none; font-size: .67rem; font-weight: 600;
  letter-spacing: .04em; padding: .42rem .4rem;
  transition: all .2s; cursor: pointer;
}
.gp-btn-wa svg, .gp-btn-contact svg { width: 13px; height: 13px; flex-shrink: 0; }
.gp-btn-wa {
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.28);
  color: #2ad46e;
}
.gp-btn-wa:hover { background: rgba(37,211,102,.2); }
.gp-btn-contact {
  background: rgba(201,168,76,.09); border: 1px solid rgba(201,168,76,.24);
  color: var(--gold);
}
.gp-btn-contact:hover { background: rgba(201,168,76,.2); }

@media (max-width: 480px) {
  #geo-panel { right: .75rem; left: .75rem; width: auto; bottom: 4.8rem; }
}

/* ─── LANGUAGE SUGGESTION BAR ─── */
#lang-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1201;
  height: 40px; display: flex; align-items: center; gap: .8rem;
  padding: 0 1.25rem;
  background: rgba(10,10,18,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,.14);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  font-size: .72rem; font-family: inherit;
}
#lang-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(201,168,76,.06) 0%, transparent 40%);
  pointer-events: none;
}
#lang-bar.lb-visible { transform: translateY(0); }

.lb-flag { font-size: 1rem; flex-shrink: 0; }
.lb-msg  { flex: 1; color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .01em; }
.lb-msg strong { color: rgba(255,255,255,.8); font-weight: 600; }
/* Action group — holds switch button + secondary CTA */
.lb-actions { display: flex; align-items: center; gap: .45rem; flex-shrink: 0; }

/* Primary action: switch language — gold filled pill */
.lb-switch {
  background: var(--gold); color: var(--ink);
  border: none; cursor: pointer;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em;
  padding: .28rem .85rem;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  font-family: inherit;
}
.lb-switch:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Secondary CTA: contact link — subtle outline */
.lb-cta {
  text-decoration: none; font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; color: var(--gold);
  padding: .2rem .7rem; border: 1px solid rgba(201,168,76,.28);
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.lb-cta:hover { background: rgba(201,168,76,.12); border-color: rgba(201,168,76,.5); }
/* When switch button is present, make contact CTA even quieter */
.lb-cta-sec {
  font-size: .63rem; opacity: .65; border-color: rgba(201,168,76,.18);
}
.lb-cta-sec:hover { opacity: 1; }

.lb-close {
  background: none; border: none; cursor: pointer; padding: 0 .3rem;
  color: rgba(255,255,255,.2); font-size: 1.1rem; line-height: 1; flex-shrink: 0;
  transition: color .2s; font-family: inherit;
}
.lb-close:hover { color: rgba(255,255,255,.5); }

/* RTL layout — Arabic, Urdu */
#lang-bar[dir="rtl"] { flex-direction: row-reverse; text-align: right; }
#lang-bar[dir="rtl"]::before {
  background: linear-gradient(270deg, rgba(201,168,76,.06) 0%, transparent 40%);
}

@media (max-width: 640px) {
  .lb-msg { font-size: .64rem; }
  .lb-cta-sec { display: none; } /* hide secondary contact link on small screens */
}
@media (max-width: 480px) {
  #lang-bar { padding: 0 .85rem; gap: .5rem; }
  .lb-msg { display: none; } /* flag + switch + dismiss only on tiny screens */
  .lb-switch { font-size: .62rem; padding: .22rem .6rem; }
}

/* ─── SCROLL PROGRESS ─── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999; width: 0%; transition: width .1s linear;
  pointer-events: none;
}

/* ─── SCROLL TO TOP ─── */
#scroll-top {
  position: fixed; bottom: 7rem; right: 1.5rem;
  width: 42px; height: 42px; background: var(--ink); color: var(--gold);
  border: 1px solid rgba(201,168,76,.3); cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; z-index: 998; transition: all var(--transition);
}
#scroll-top:hover { background: var(--gold); color: var(--ink); }
#scroll-top.visible { display: flex; }

/* ─── WHATSAPP FLOAT ─── */
#wa-btn {
  position: fixed; bottom: 2rem; right: 1.5rem;
  width: 50px; height: 50px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 998;
  box-shadow: 0 4px 15px rgba(37,211,102,.4); font-size: 1.6rem;
  transition: transform var(--transition);
}
#wa-btn:hover { transform: scale(1.1); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 3rem; display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,15,.97); backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.2); transition: padding var(--transition);
}
nav.scrolled { padding: .7rem 3rem; }
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--gold); text-decoration: none; letter-spacing: .08em; flex-shrink: 0;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.65); text-decoration: none; font-size: .8rem;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: center;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important; color: var(--ink) !important;
  padding: .45rem 1.2rem !important; font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--white) !important; }
.nav-dd { position: relative; }
.nav-dd .dd-menu {
  display: none; position: absolute; top: calc(100% + .8rem); left: -1rem;
  background: rgba(10,10,15,.98); backdrop-filter: blur(20px);
  min-width: 270px; padding: .8rem 0;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.5); z-index: 100;
}
.nav-dd:hover .dd-menu { display: block; }
.dd-menu a {
  display: flex; align-items: center; gap: .6rem;
  padding: .6rem 1.2rem .6rem 1rem; font-size: .78rem;
  color: rgba(255,255,255,.6); text-transform: none; letter-spacing: .02em;
  border-left: 3px solid transparent;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.dd-menu a::after { display: none; }
.dd-menu a:hover {
  color: var(--gold);
  background: rgba(201,168,76,.13);
  border-left-color: var(--gold);
}
.dd-menu a.active {
  color: var(--gold);
  background: rgba(201,168,76,.08);
  border-left-color: var(--gold);
  font-weight: 600;
}
.dd-menu-divider { height: 1px; background: rgba(255,255,255,.06); margin: .4rem 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 26px; height: 2px; background: var(--white); transition: all var(--transition); }

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  display: flex; gap: .25rem; align-items: center; margin-left: .8rem;
  flex-wrap: wrap;
}
.lang-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5); font-size: .62rem; font-weight: 600;
  padding: .28rem .5rem; cursor: pointer; font-family: 'DM Sans', sans-serif;
  letter-spacing: .03em; transition: all var(--transition); white-space: nowrap;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn.active {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold); font-weight: 700;
}

/* ─── MULTILINGUAL FONT STACKS ─── */

/* Nepali & Hindi share Devanagari fonts (loaded lazily) */
body.lang-ne, body.lang-hi {
  font-family: 'Hind', 'Noto Sans Devanagari', 'Devanagari Sangam MN', 'Mangal', 'DM Sans', sans-serif;
}
body.lang-ne .hero-h1, body.lang-hi .hero-h1,
body.lang-ne h1, body.lang-ne h2, body.lang-ne h3,
body.lang-hi h1, body.lang-hi h2, body.lang-hi h3 {
  font-family: 'Hind', 'Noto Sans Devanagari', 'Devanagari Sangam MN', 'Playfair Display', serif;
  font-weight: 700;
}
body.lang-ne p, body.lang-ne li, body.lang-ne label,
body.lang-ne input, body.lang-ne textarea, body.lang-ne select, body.lang-ne .fgroup label,
body.lang-hi p, body.lang-hi li, body.lang-hi label,
body.lang-hi input, body.lang-hi textarea, body.lang-hi select, body.lang-hi .fgroup label {
  font-size: calc(1em + .03rem); line-height: 1.75;
}

/* Japanese */
body.lang-ja {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}
body.lang-ja h1, body.lang-ja h2, body.lang-ja h3 {
  font-family: 'Noto Sans JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-weight: 700; letter-spacing: .04em;
}

/* Chinese (Simplified) */
body.lang-zh {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'DM Sans', sans-serif;
}
body.lang-zh h1, body.lang-zh h2, body.lang-zh h3 {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', serif;
  font-weight: 700; letter-spacing: .03em;
}

/* Korean */
body.lang-ko {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', 'DM Sans', sans-serif;
}
body.lang-ko h1, body.lang-ko h2, body.lang-ko h3 {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-weight: 700;
}

/* Arabic — RTL with proper Arabic typography */
body.lang-ar {
  font-family: 'Noto Sans Arabic', 'Noto Naskh Arabic', 'Tahoma', 'Arial', sans-serif;
}
body.lang-ar h1, body.lang-ar h2, body.lang-ar h3 {
  font-family: 'Noto Naskh Arabic', 'Noto Sans Arabic', serif;
  font-weight: 700;
}
body.lang-ar p, body.lang-ar li, body.lang-ar label { line-height: 1.85; }

/* RTL global flips */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: .8rem; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .lang-option { text-align: right; border-left: none; border-right: 2px solid transparent; }
html[dir="rtl"] .lang-option:hover { border-right-color: rgba(201,168,76,.3); }
html[dir="rtl"] .lang-option.active { border-right-color: var(--gold); }
/* Preserve LTR for kanji/brand marks even in RTL mode */
html[dir="rtl"] .nav-logo, html[dir="rtl"] .hero-kanji { direction: ltr; unicode-bidi: embed; }

/* Lang bar message font adapts to current selection */
body.lang-ne .lb-msg, body.lang-hi .lb-msg { font-family: 'Hind', 'Noto Sans Devanagari', sans-serif; }
body.lang-ja .lb-msg { font-family: 'Noto Sans JP', sans-serif; }
body.lang-zh .lb-msg { font-family: 'Noto Sans SC', sans-serif; }
body.lang-ko .lb-msg { font-family: 'Noto Sans KR', sans-serif; }
body.lang-ar .lb-msg { font-family: 'Noto Sans Arabic', sans-serif; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 10rem 3rem 5rem; background: var(--ink);
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,.07), transparent 60%);
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 80%, rgba(42,122,110,.04), transparent 50%);
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); font-weight: 800; margin-bottom: 1rem; line-height: 1.1;
}
.page-header p {
  font-size: 1.05rem; color: rgba(255,255,255,.5);
  max-width: 620px; margin: 0 auto; line-height: 1.75; font-weight: 300;
}
.breadcrumb {
  margin-top: 1.8rem; font-size: .72rem; color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── COMMON TYPOGRAPHY ─── */
.section-tag {
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: .8rem; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--ink); margin-bottom: .8rem; font-weight: 700; line-height: 1.15;
}
.section-sub {
  font-size: .95rem; color: var(--slate);
  max-width: 600px; line-height: 1.85; font-weight: 300;
}
.prose { font-size: .93rem; color: var(--slate); line-height: 1.9; font-weight: 300; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose p { margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--ink); padding: .85rem 2.2rem;
  text-decoration: none; font-weight: 600; font-size: .88rem;
  letter-spacing: .04em; transition: all var(--transition); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
  background: var(--ink); color: var(--gold);
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.25);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,255,255,.3); color: var(--white);
  padding: .85rem 2.2rem; text-decoration: none; font-weight: 500;
  font-size: .88rem; transition: all var(--transition); background: transparent;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--ink); color: var(--ink); padding: .85rem 2.2rem;
  text-decoration: none; font-weight: 500; font-size: .88rem;
  transition: all var(--transition); background: transparent;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
}
.btn-dark:hover { background: var(--ink); color: var(--gold); }

/* ─── LAYOUT ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 3rem; }
.section { padding: 5rem 3rem; max-width: var(--max-w); margin: 0 auto; }
.section-full { padding: 5rem 0; }
.section-full .container { padding: 0 3rem; }
.section-center { text-align: center; margin-bottom: 3rem; }
.section-center .section-sub { margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.divider { height: 1px; background: var(--mist); margin: 2.5rem 0; }
.alt-bg { background: var(--white); }
.cream-bg { background: var(--cream); }
.dark-bg { background: var(--ink); }

/* ─── CARDS ─── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.3rem; margin-top: 2rem; }
.service-card {
  padding: 1.8rem; background: var(--white); border: 1px solid var(--mist);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); margin-bottom: .45rem; }
.service-card p { font-size: .83rem; color: var(--slate); line-height: 1.65; font-weight: 300; }
.service-card .sc-icon { font-size: 1.6rem; margin-bottom: .9rem; }

/* ─── VENTURE CARDS (Homepage) ─── */
.ventures-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.venture-card {
  background: var(--white); border: 1px solid var(--mist);
  border-top: 4px solid var(--mist); text-decoration: none;
  display: flex; flex-direction: column; padding: 2rem;
  transition: all var(--transition); position: relative;
}
.venture-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.venture-card .vc-icon { font-size: 2rem; margin-bottom: 1rem; }
.venture-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ink); margin-bottom: .5rem; font-weight: 700; }
.venture-card p { font-size: .83rem; color: var(--slate); line-height: 1.65; font-weight: 300; flex: 1; }
.venture-card .vc-footer { margin-top: 1.3rem; padding-top: 1rem; border-top: 1px solid var(--mist); display: flex; justify-content: space-between; align-items: center; }
.venture-card .vc-sector { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.venture-card .vc-arrow { font-size: 1rem; color: var(--mist); transition: all var(--transition); }
.venture-card:hover .vc-arrow { color: var(--gold); transform: translateX(4px); }

/* ─── COMPANY ACCENT COLORS ─── */
.accent-teal { border-top-color: #2a7a6e !important; }
.accent-crimson { border-top-color: #b8344f !important; }
.accent-brown { border-top-color: #8b5e3c !important; }
.accent-orange { border-top-color: #c77b2e !important; }
.accent-blue { border-top-color: #4a7fb5 !important; }
.accent-purple { border-top-color: #7a5fa0 !important; }
.accent-green { border-top-color: #5a8f3d !important; }
.accent-gold { border-top-color: #c9a84c !important; }

/* ─── SECTOR FILTER ─── */
.sector-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin: 0 0 2.5rem; justify-content: center; }
.sf-btn {
  padding: .38rem 1.1rem; border: 1px solid var(--mist); font-size: .72rem;
  color: var(--slate); background: transparent; cursor: pointer;
  transition: all var(--transition); font-family: 'DM Sans', sans-serif;
  font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
}
.sf-btn:hover, .sf-btn.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.venture-card.hidden { display: none; }

/* ─── STATS ─── */
.stats-strip {
  display: flex; gap: 0; flex-wrap: wrap;
  background: var(--white); border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist);
}
.stat-item {
  flex: 1; min-width: 140px; padding: 2.5rem 2rem;
  text-align: center; border-right: 1px solid var(--mist);
}
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: var(--ink); line-height: 1; }
.stat-val .gold { color: var(--gold); }
.stat-lbl { font-size: .68rem; color: var(--slate); text-transform: uppercase; letter-spacing: .12em; margin-top: .4rem; font-weight: 500; }

/* ─── STATS ROW (company pages) ─── */
.stats-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 2rem 0; }
.stat-box {
  text-align: center; padding: 1.6rem 2rem; background: var(--cream);
  flex: 1; min-width: 120px; border: 1px solid var(--mist);
}
.stat-box .val { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--ink); }
.stat-box .val span { color: var(--gold); }
.stat-box .lbl { font-size: .67rem; color: var(--slate); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; font-weight: 500; }

/* ─── SPLIT SECTION ─── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.split-dark { background: var(--ink); }
.split-dark .section-title { color: var(--white); }
.split-dark .prose, .split-dark p, .split-dark .section-sub { color: rgba(255,255,255,.55); }
.split-light { background: var(--cream); }
.split-light .section-title { color: var(--ink); }

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-item { padding: 2.8rem 2rem; border-right: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.why-item:nth-child(4n) { border-right: none; }
.why-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: rgba(201,168,76,.15); line-height: 1; margin-bottom: .6rem; }
.why-item h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); margin-bottom: .5rem; }
.why-item p { font-size: .82rem; color: var(--slate); line-height: 1.65; font-weight: 300; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--ink); padding: 2rem 3rem;
  display: flex; gap: 0; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.trust-item { text-align: center; padding: 1rem 2.5rem; border-right: 1px solid rgba(255,255,255,.08); }
.trust-item:last-child { border-right: none; }
.trust-item .t-label { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .3rem; font-weight: 600; }
.trust-item .t-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  padding: 1.4rem 1.6rem; border-left: 3px solid var(--gold);
  background: var(--cream); margin: 1.2rem 0;
}
.highlight-box h4 { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--ink); margin-bottom: .3rem; }
.highlight-box p { font-size: .84rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ─── TAGS ─── */
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1.2rem 0; }
.tag { font-size: .68rem; padding: .28rem .75rem; background: var(--cream); color: var(--slate); letter-spacing: .04em; font-weight: 500; border: 1px solid var(--mist); }

/* ─── VALUES GRID ─── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.value-item { padding: 1.5rem; background: var(--white); border: 1px solid var(--mist); border-top: 3px solid var(--gold); }
.value-item h4 { font-family: 'Playfair Display', serif; font-size: .95rem; margin-bottom: .35rem; color: var(--ink); }
.value-item p { font-size: .81rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ─── LEADER GRID ─── */
.leader-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.leader-card { text-align: center; padding: 2.2rem 1.5rem; border: 1px solid var(--mist); background: var(--paper); transition: all var(--transition); }
.leader-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.leader-avatar {
  width: 75px; height: 75px; border-radius: 50%; background: var(--ink);
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700;
  border: 2px solid rgba(201,168,76,.3);
}
.leader-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.leader-role { font-size: .7rem; color: var(--gold); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .6rem; }
.leader-desc { font-size: .8rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 2.8rem; margin-top: 2rem; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--mist)); }
.tl-item { position: relative; margin-bottom: 2.2rem; padding-left: 1.5rem; }
.tl-item::before {
  content: ''; position: absolute; left: -2.8rem; top: .4rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold); z-index: 1;
}
.tl-year { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: .2rem; }
.tl-title { font-weight: 600; font-size: .94rem; color: var(--ink); margin-bottom: .2rem; }
.tl-desc { font-size: .83rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ─── INDUSTRIES ─── */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.ind-item { padding: 1.6rem 1.2rem; text-align: center; border: 1px solid var(--mist); background: var(--white); transition: all var(--transition); }
.ind-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.ind-icon { font-size: 2rem; margin-bottom: .7rem; }
.ind-item h4 { font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.ind-item p { font-size: .7rem; color: var(--slate); font-weight: 300; line-height: 1.5; }

/* ─── PROCESS STEPS ─── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.process-step {
  padding: 2.5rem 2rem; background: var(--white); counter-increment: step;
  position: relative; border: 1px solid var(--mist); border-right: none;
}
.process-step:last-child { border-right: 1px solid var(--mist); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 800; color: rgba(201,168,76,.12);
  position: absolute; top: .8rem; right: 1rem;
}
.process-step h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); margin-bottom: .5rem; }
.process-step p { font-size: .82rem; color: var(--slate); line-height: 1.6; font-weight: 300; }
.process-step .ps-num { font-size: .65rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: .5rem; display: block; }

/* ─── CONTACT FORM ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.ci { padding: 1.3rem 1.5rem; background: var(--white); border: 1px solid var(--mist); border-left: 3px solid var(--gold); }
.ci h4 { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .35rem; }
.ci p { font-size: .9rem; color: var(--slate); line-height: 1.55; }
.ci a { color: var(--teal); text-decoration: none; }
.ci a:hover { text-decoration: underline; }
.form-field { margin-bottom: 1.3rem; }
.form-field label { display: block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); font-weight: 600; margin-bottom: .45rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--mist);
  background: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: var(--ink); outline: none; transition: border-color var(--transition);
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── FAQ / ACCORDION ─── */
.faq-list { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--mist); }
.faq-q {
  width: 100%; text-align: left; padding: 1.2rem 0;
  background: none; border: none; font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 600; color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q .faq-icon { font-size: 1.4rem; color: var(--gold); font-weight: 300; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-a-inner { padding-bottom: 1.2rem; font-size: .85rem; color: var(--slate); line-height: 1.75; font-weight: 300; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─── CTA BANNER ─── */
.cta-banner { padding: 5rem 3rem; text-align: center; background: var(--cream); }
.cta-banner .section-sub { margin: .8rem auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── DARK CTA ─── */
.dark-cta {
  padding: 6rem 3rem; text-align: center;
  background: var(--ink); position: relative; overflow: hidden;
}
.dark-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.06), transparent 70%);
}
.dark-cta > * { position: relative; z-index: 1; }
.dark-cta .section-title { color: var(--white); }
.dark-cta .section-sub { color: rgba(255,255,255,.5); margin: .8rem auto 2.5rem; }

/* ─── COMPANY NAV ─── */
.company-nav { display: flex; gap: .5rem; flex-wrap: wrap; margin: 2rem 0; }
.company-nav a {
  padding: .4rem 1rem; border: 1px solid var(--mist); font-size: .76rem;
  color: var(--slate); text-decoration: none; transition: all var(--transition); font-weight: 500;
}
.company-nav a:hover, .company-nav a.current { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 4rem 3rem 2rem; color: rgba(255,255,255,.5); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { margin-top: .8rem; font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.35); max-width: 280px; font-weight: 300; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); text-decoration: none; font-size: .85rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,.4); text-decoration: none; font-size: .82rem; margin-bottom: .5rem; transition: color var(--transition); font-weight: 300; }
.footer-col a:hover { color: var(--gold); padding-left: .3rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem;
}
.footer-bottom p { font-size: .7rem; color: rgba(255,255,255,.22); }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .7rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-child(4n) { border-right: 1px solid var(--mist); }
  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: 3.5rem 3rem; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: none; border: 1px solid var(--mist); }
}
@media (max-width: 768px) {
  nav { padding: .8rem 1.2rem; }
  nav.scrolled { padding: .7rem 1.2rem; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(10,10,15,.98); flex-direction: column;
    align-items: center; justify-content: center; gap: 1.8rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .95rem; }
  .hamburger { display: flex; }
  .lang-switcher { position: absolute; top: .8rem; right: 3.5rem; }
  .nav-dd .dd-menu { position: static; min-width: auto; border: 0; box-shadow: none; padding: 0 0 0 1rem; display: block; background: transparent; }
  .section { padding: 3.5rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  .page-header { padding: 7.5rem 1.5rem 3.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { min-width: 150px; border-bottom: 1px solid var(--mist); }
  .trust-strip { flex-direction: column; gap: 1rem; }
  .trust-item { border-right: none; padding: .5rem 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; }
  .split-panel { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner, .dark-cta { padding: 3.5rem 1.5rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; }
}
@media (max-width: 480px) {
  .ventures-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { min-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   SAKURA AURORA — Theme v2
   Refreshed palette, animated gradient mesh, falling petals,
   glass cards, 3D tilt hovers, shimmer text, blur-focus reveals.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --ink: #13142b;
  --ink-2: #1d1e3d;
  --paper: #fbf7f4;
  --cream: #f3ead9;
  --gold: #e8b961;
  --gold-light: #f4d78a;
  --gold-dark: #b88f3e;
  --sakura: #f4a6b8;
  --sakura-deep: #e27a92;
  --aurora: #8b7dd8;
  --aurora-deep: #5f4fb0;
  --crimson: #c64767;
  --teal: #3a9b8a;
  --slate: #3a3a52;
  --mist: #e2dcd0;
}

/* Smoother base */
body { background: var(--paper); }
html { scroll-behavior: smooth; }

/* Progress bar → gradient */
#progress-bar {
  background: linear-gradient(90deg, var(--sakura), var(--aurora), var(--gold)) !important;
  background-size: 200% 100% !important;
  animation: barShift 4s ease-in-out infinite;
}
@keyframes barShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

/* ── Animated hero mesh + aurora blobs ── */
.hero { background: linear-gradient(135deg, #13142b 0%, #1d1e3d 60%, #2a1d3d 100%) !important; }
.hero::before {
  content: ''; position: absolute; inset: -20%; z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(244,166,184,.22), transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(139,125,216,.20), transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(232,185,97,.15), transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(58,155,138,.12), transparent 42%);
  filter: blur(40px); animation: meshFloat 18s ease-in-out infinite;
}
@keyframes meshFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(3%, -2%) scale(1.05); }
  66%     { transform: translate(-2%, 3%) scale(.97); }
}
.hero-glow-1 { background: radial-gradient(circle, rgba(244,166,184,.12) 0%, transparent 70%) !important; animation: glowPulse 7s ease-in-out infinite; }
.hero-glow-2 { background: radial-gradient(circle, rgba(139,125,216,.10) 0%, transparent 70%) !important; animation: glowPulse 9s ease-in-out infinite reverse; }
@keyframes glowPulse { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.15);opacity:1} }

.hero-badge {
  border-color: rgba(244,166,184,.35) !important;
  color: var(--sakura) !important;
  background: rgba(244,166,184,.06);
  backdrop-filter: blur(6px);
  animation: badgeGlow 3.5s ease-in-out infinite;
}
@keyframes badgeGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(244,166,184,.25); }
  50%     { box-shadow: 0 0 30px 2px rgba(244,166,184,.18); }
}

/* Shimmering accent on hero h1 em */
.hero-h1 em {
  background: linear-gradient(100deg, var(--gold) 20%, var(--sakura) 40%, var(--aurora) 60%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero-kanji { color: rgba(244,166,184,.55) !important; animation: kanjiFloat 6s ease-in-out infinite; }
@keyframes kanjiFloat { 0%,100%{letter-spacing:.4em} 50%{letter-spacing:.55em} }

/* ── Buttons: gradient fill + shine sweep ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--sakura) 100%) !important;
  color: var(--ink) !important;
  position: relative; overflow: hidden; isolation: isolate;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-110%); transition: transform .7s ease;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--sakura) 0%, var(--aurora) 100%) !important; color: #fff !important; box-shadow: 0 10px 35px rgba(139,125,216,.35) !important; }
.btn-primary:hover::before { transform: translateX(110%); }
.btn-outline:hover { border-color: var(--sakura) !important; color: var(--sakura) !important; background: rgba(244,166,184,.06); }
.btn-dark:hover { background: linear-gradient(135deg, var(--ink) 0%, var(--aurora-deep) 100%) !important; color: var(--gold) !important; border-color: transparent; }

/* ── Nav: gradient underline + logo sheen ── */
.nav-logo { background: linear-gradient(90deg, var(--gold), var(--sakura), var(--gold)); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 8s linear infinite; }
.nav-links a::after { background: linear-gradient(90deg, var(--sakura), var(--aurora)) !important; height: 2px !important; }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--sakura)) !important; transition: all .3s ease; }
.nav-cta:hover { background: linear-gradient(135deg, var(--sakura), var(--aurora)) !important; color: #fff !important; transform: translateY(-1px); }

/* ── Venture cards: glass + tilt + aurora edge ── */
.venture-card {
  background: rgba(255,255,255,.75) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226,220,208,.7) !important;
  border-top-width: 4px !important;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, background .3s ease !important;
  will-change: transform;
}
.venture-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(244,166,184,.14), transparent 40%);
  opacity: 0; transition: opacity .3s ease;
}
.venture-card:hover::before { opacity: 1; }
.venture-card:hover {
  transform: translateY(-6px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) !important;
  box-shadow: 0 25px 60px rgba(95,79,176,.18), 0 0 0 1px rgba(244,166,184,.3) !important;
  background: rgba(255,255,255,.92) !important;
}
.venture-card:hover .vc-arrow { color: var(--sakura-deep) !important; }

/* Accent colors → softer, matched to new palette */
.accent-teal    { border-top-color: var(--teal) !important; }
.accent-crimson { border-top-color: var(--sakura-deep) !important; }
.accent-brown   { border-top-color: var(--gold-dark) !important; }
.accent-orange  { border-top-color: #e09351 !important; }
.accent-blue    { border-top-color: var(--aurora) !important; }
.accent-purple  { border-top-color: var(--aurora-deep) !important; }
.accent-green   { border-top-color: #6aa86b !important; }
.accent-gold    { border-top-color: var(--gold) !important; }

/* Sector filter: gradient active */
.sf-btn:hover, .sf-btn.active {
  background: linear-gradient(135deg, var(--ink), var(--aurora-deep)) !important;
  color: var(--gold-light) !important; border-color: transparent !important;
}

/* Stats: gradient numbers */
.stat-val {
  background: linear-gradient(135deg, var(--ink) 0%, var(--aurora-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* About snapshot kanji gets a slow drift */
.snap-kanji-big { animation: kanjiDrift 9s ease-in-out infinite; }
@keyframes kanjiDrift {
  0%,100% { transform: translateY(0) scale(1); opacity: .12; }
  50%     { transform: translateY(-12px) scale(1.04); opacity: .22; }
}

/* Trust strip: subtle gradient */
.trust-strip {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 50%, #2a1d3d 100%) !important;
}
.trust-item .t-val {
  background: linear-gradient(90deg, var(--gold), var(--sakura));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Dark CTA: aurora glow */
.dark-cta { background: linear-gradient(135deg, var(--ink) 0%, #2a1d3d 50%, var(--ink-2) 100%) !important; }
.dark-cta::before {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(244,166,184,.10), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(139,125,216,.12), transparent 60%) !important;
  animation: meshFloat 22s ease-in-out infinite;
}

/* Footer gets gradient top line */
footer { background: linear-gradient(180deg, var(--ink) 0%, #0e0f1f 100%); position: relative; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sakura), var(--aurora), var(--gold), transparent);
  background-size: 200% 100%; animation: barShift 6s ease-in-out infinite;
}

/* Page header (other pages) */
.page-header { background: linear-gradient(135deg, var(--ink) 0%, #241833 60%, var(--ink-2) 100%) !important; }
.page-header h1 em { color: var(--sakura) !important; }

/* ── Reveal v2: blur-to-focus ── */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(8px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1), filter .8s ease; }
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }

/* ── Floating Sakura Petals (injected by JS) ── */
.petals { position: fixed; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.petal {
  position: absolute; top: -40px;
  width: 14px; height: 14px; opacity: .7;
  background: radial-gradient(ellipse at 30% 30%, #fde0e7 0%, var(--sakura) 55%, var(--sakura-deep) 100%);
  border-radius: 150% 0 150% 0 / 100% 0 100% 0;
  filter: drop-shadow(0 2px 4px rgba(226,122,146,.25));
  animation: petalFall linear infinite;
  will-change: transform;
}
@keyframes petalFall {
  0%   { transform: translate(0, -40px) rotate(0deg); opacity: 0; }
  10%  { opacity: .75; }
  50%  { transform: translate(40px, 50vh) rotate(220deg); }
  100% { transform: translate(-30px, 110vh) rotate(540deg); opacity: 0; }
}

/* WhatsApp + scroll-top refreshed */
#wa-btn { box-shadow: 0 4px 20px rgba(37,211,102,.45); animation: waPulse 2.5s ease-in-out infinite; }
@keyframes waPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
#scroll-top { border: 1px solid rgba(244,166,184,.35) !important; background: var(--ink) !important; color: var(--sakura) !important; }
#scroll-top:hover { background: linear-gradient(135deg, var(--sakura), var(--aurora)) !important; color: #fff !important; }

/* Language switcher active → gradient */
.lang-btn.active { background: linear-gradient(135deg, var(--gold), var(--sakura)) !important; border-color: transparent !important; color: var(--ink) !important; }

/* Industry preview hover */
.ind-preview-item:hover { background: linear-gradient(135deg, var(--ink), var(--aurora-deep)) !important; }
.ind-preview-item:hover .ip-icon,
.ind-preview-item:hover .ip-name { color: var(--gold-light) !important; }

/* ── BRAND LOGO v3 — minimal, tiny, refined ── */
.nav-logo {
  display: inline-flex !important; align-items: center; gap: .5rem;
  -webkit-text-fill-color: currentColor !important;
  background: none !important; animation: none !important;
  padding: .15rem 0;
  text-decoration: none;
}
.nav-logo .nl-mark {
  height: 14px; width: 14px; flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(181,43,192,.25));
  transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .4s ease;
  animation: markBreathe 5s ease-in-out infinite;
}
nav.scrolled .nav-logo .nl-mark { height: 13px; width: 13px; }
.nav-logo:hover .nl-mark { transform: rotate(180deg) scale(1.2); filter: drop-shadow(0 2px 8px rgba(226,65,139,.5)); }
@keyframes markBreathe {
  0%,100% { transform: rotate(0deg) scale(1); }
  50%     { transform: rotate(12deg) scale(1.05); }
}
.nav-logo .nl-text {
  font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; line-height: 1; text-transform: uppercase;
  background: linear-gradient(90deg, #e2418b, #b52bc0, #7a20c9, #e2418b);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s linear infinite;
  white-space: nowrap;
}
.nav-logo .nl-text em { font-style: normal; font-weight: 500; letter-spacing: .25em; font-size: .82em; opacity: .7; margin-left: .3em; }
.nav-logo .nl-text em::before { content: '· '; opacity: .4; }

/* Footer logo — slightly larger but still restrained */
.footer-brand .nav-logo { gap: .55rem; }
.footer-brand .nav-logo .nl-mark { height: 22px; width: 22px; }
.footer-brand .nav-logo .nl-text { font-size: .85rem; letter-spacing: .22em; }

@media (max-width: 768px) {
  .nav-logo { gap: .4rem !important; }
  .nav-logo .nl-mark { height: 13px; width: 13px; }
  .nav-logo .nl-text { font-size: .62rem; }
  .footer-brand .nav-logo .nl-mark { height: 18px; width: 18px; }
  .footer-brand .nav-logo .nl-text { font-size: .72rem; }
}

/* Theme accent shift → magenta/purple matches the brand blossom */
:root {
  --sakura: #e2418b;
  --sakura-deep: #b52bc0;
  --aurora: #8a2fce;
  --aurora-deep: #5f1fa6;
  --crimson: #c6276b;
}

/* Petals now bloom in the brand palette */
.petal {
  background: radial-gradient(ellipse at 30% 30%, #fbeaf3 0%, #e2418b 50%, #8a2fce 100%) !important;
  filter: drop-shadow(0 2px 4px rgba(181,43,192,.35)) !important;
}

/* ═══════════════════════════════════════════════════════════════
   SITE-WIDE ANIMATION PACK
   ═══════════════════════════════════════════════════════════════ */

/* Page load fade + slide-down for nav */
body { animation: pageFade .9s cubic-bezier(.2,.8,.2,1) both; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
nav { animation: navDrop .8s cubic-bezier(.2,.8,.2,1) both; }
@keyframes navDrop { from { transform: translateY(-100%); opacity: 0; } to { transform: none; opacity: 1; } }

/* Nav link stagger on load */
.nav-links > a, .nav-links > .nav-dd { animation: navItem .6s cubic-bezier(.2,.8,.2,1) both; }
.nav-links > *:nth-child(1){ animation-delay:.35s }
.nav-links > *:nth-child(2){ animation-delay:.42s }
.nav-links > *:nth-child(3){ animation-delay:.49s }
.nav-links > *:nth-child(4){ animation-delay:.56s }
.nav-links > *:nth-child(5){ animation-delay:.63s }
.nav-links > *:nth-child(6){ animation-delay:.70s }
@keyframes navItem { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Section titles: gradient underline that draws in on reveal */
.section-title { position: relative; display: inline-block; padding-bottom: .2rem; }
.section-center .section-title::after,
.reveal.visible .section-title::after {
  content: ''; position: absolute; left: 50%; bottom: -.3rem; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--sakura), var(--aurora)); border-radius: 3px;
  transform: translateX(-50%); animation: drawUnderline 1.1s .3s cubic-bezier(.2,.8,.2,1) forwards;
}
.section-center:not(:has(.reveal)) .section-title::after { animation-delay: .1s; }
@keyframes drawUnderline { from { width: 0; } to { width: 70px; } }

/* Section tag: animated pulsing dot */
.section-tag { position: relative; padding-left: 1.1rem; }
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sakura), var(--aurora));
  box-shadow: 0 0 0 0 rgba(226,65,139,.5);
  animation: tagDot 2.2s ease-in-out infinite;
}
.section-center .section-tag { padding-left: 0; }
.section-center .section-tag::before { display: none; }
@keyframes tagDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(226,65,139,.5); }
  50%     { box-shadow: 0 0 0 8px rgba(226,65,139,0); }
}

/* Every icon emoji gets a playful wobble on parent hover */
.vc-icon, .sc-icon, .ip-icon, .ind-icon, .nj-flag, .faq-icon {
  display: inline-block; transition: transform .4s cubic-bezier(.4,1.6,.6,1);
}
.venture-card:hover .vc-icon,
.service-card:hover .sc-icon,
.ind-item:hover .ind-icon,
.ind-preview-item:hover .ip-icon { transform: scale(1.2) rotate(-8deg); }

/* Stat items: lift + glow on hover */
.stat-item { transition: background .4s ease, transform .4s ease; cursor: default; }
.stat-item:hover { background: linear-gradient(180deg, var(--white), #fff5fb); transform: translateY(-3px); }
.stat-item:hover .stat-val { transform: scale(1.08); transition: transform .4s cubic-bezier(.4,1.6,.6,1); }
.stat-val { display: inline-block; transition: transform .4s; }

/* Trust items: gentle float stagger */
.trust-item { transition: transform .4s ease; }
.trust-item:hover { transform: translateY(-4px); }
.trust-item:hover .t-val { animation: valPop .5s cubic-bezier(.4,1.6,.6,1); }
@keyframes valPop { 50% { transform: scale(1.12); } }

/* Industry preview items: gradient sweep on hover */
.ind-preview-item { position: relative; overflow: hidden; transition: transform .3s ease; }
.ind-preview-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(226,65,139,.12) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s ease;
}
.ind-preview-item:hover::after { transform: translateX(120%); }

/* Service / value / ind / leader cards: lift + gradient top border animate in */
.service-card, .value-item, .ind-item, .leader-card {
  position: relative; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
.service-card::before, .value-item::before, .ind-item::before, .leader-card::before {
  content: ''; position: absolute; top: 0; left: 50%; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--sakura), var(--aurora));
  transform: translateX(-50%); transition: width .4s ease;
}
.service-card:hover, .value-item:hover, .ind-item:hover, .leader-card:hover {
  transform: translateY(-6px); box-shadow: 0 18px 45px rgba(95,31,166,.15);
  border-color: rgba(226,65,139,.3);
}
.service-card:hover::before, .value-item:hover::before, .ind-item:hover::before, .leader-card:hover::before { width: 100%; }

/* Leader avatar ring spin on hover */
.leader-card:hover .leader-avatar {
  animation: avatarSpin .8s cubic-bezier(.4,1.6,.6,1);
  border-color: var(--sakura);
  box-shadow: 0 0 0 4px rgba(226,65,139,.15);
}
@keyframes avatarSpin { 50% { transform: rotate(180deg) scale(1.08); } 100% { transform: rotate(360deg) scale(1); } }

/* Why items: number glow on hover */
.why-item { transition: background .4s ease; position: relative; overflow: hidden; }
.why-item::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--wx,50%) var(--wy,50%), rgba(226,65,139,.08), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.why-item:hover::before { opacity: 1; }
.why-item:hover .why-num {
  background: linear-gradient(135deg, var(--sakura), var(--aurora));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 1; transition: all .4s;
}

/* Process steps: number grows + color on hover */
.process-step { transition: background .4s ease, transform .4s ease; }
.process-step:hover { background: linear-gradient(180deg, var(--white), #fff5fb); transform: translateY(-4px); }
.process-step:hover::before {
  color: var(--sakura-deep); opacity: .55; transform: scale(1.15);
  transition: all .5s cubic-bezier(.4,1.6,.6,1);
}
.process-step::before { transition: all .4s; transform-origin: top right; }

/* Timeline: dot grows + line draws on reveal */
.tl-item::before { transition: transform .4s cubic-bezier(.4,1.6,.6,1), background .3s, border-color .3s; }
.tl-item:hover::before { transform: scale(1.3); background: var(--sakura); border-color: var(--aurora); }

/* FAQ: smooth arrow rotation + hover highlight */
.faq-q { transition: color .3s ease; }
.faq-q:hover { color: var(--sakura-deep); }
.faq-q:hover .faq-icon { color: var(--sakura-deep); }

/* Form fields: animated underline glow */
.form-field { position: relative; }
.form-field input,
.form-field select,
.form-field textarea {
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sakura) !important;
  box-shadow: 0 0 0 4px rgba(226,65,139,.12), 0 4px 20px rgba(138,47,206,.08);
  transform: translateY(-1px);
}
.form-field label { transition: color .3s ease; }
.form-field:focus-within label { color: var(--sakura-deep); }

/* Sector filter buttons: subtle scale */
.sf-btn { transition: all .3s cubic-bezier(.4,1.6,.6,1) !important; }
.sf-btn:hover { transform: translateY(-2px) scale(1.04); }

/* Language buttons */
.lang-btn { transition: all .3s cubic-bezier(.4,1.6,.6,1); }
.lang-btn:hover { transform: translateY(-2px); }

/* Dropdown menu items: slide in on parent hover */
.nav-dd:hover .dd-menu a { animation: ddIn .35s cubic-bezier(.2,.8,.2,1) both; }
.nav-dd .dd-menu a:nth-child(1){animation-delay:.02s}
.nav-dd .dd-menu a:nth-child(2){animation-delay:.05s}
.nav-dd .dd-menu a:nth-child(3){animation-delay:.08s}
.nav-dd .dd-menu a:nth-child(4){animation-delay:.11s}
.nav-dd .dd-menu a:nth-child(5){animation-delay:.14s}
.nav-dd .dd-menu a:nth-child(6){animation-delay:.17s}
.nav-dd .dd-menu a:nth-child(7){animation-delay:.20s}
.nav-dd .dd-menu a:nth-child(8){animation-delay:.23s}
.nav-dd .dd-menu a:nth-child(9){animation-delay:.26s}
.nav-dd .dd-menu a:nth-child(10){animation-delay:.29s}
@keyframes ddIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
/* dd-menu hover: border-left highlight (no layout shift) */

/* Hero scroll indicator: animated arrow */
.hero-scroll { transition: transform .4s ease; }
.hero-scroll:hover { transform: translateX(-50%) translateY(-4px); }
.hero-scroll:hover span { color: var(--sakura) !important; }

/* Hero buttons: bounce in on load */
.hero-content > * { animation: heroRise .9s cubic-bezier(.2,.8,.2,1) both; }
.hero-content > *:nth-child(1){ animation-delay:.2s }
.hero-content > *:nth-child(2){ animation-delay:.35s }
.hero-content > *:nth-child(3){ animation-delay:.5s }
.hero-content > *:nth-child(4){ animation-delay:.65s }
.hero-content > *:nth-child(5){ animation-delay:.8s }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* Company nav pills */
.company-nav a { transition: all .3s cubic-bezier(.4,1.6,.6,1); }
.company-nav a:hover { transform: translateY(-2px); letter-spacing: .02em; }

/* Highlight-box: subtle pulse on left border */
.highlight-box { position: relative; }
.highlight-box::before {
  content: ''; position: absolute; left: -3px; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--sakura), var(--aurora));
  animation: hlPulse 2.5s ease-in-out infinite;
}
@keyframes hlPulse {
  0%,100% { opacity: .6; }
  50% { opacity: 1; box-shadow: 0 0 15px rgba(226,65,139,.5); }
}

/* Tags: hover scale + color */
.tag { transition: all .3s cubic-bezier(.4,1.6,.6,1); }
.tag:hover { background: linear-gradient(135deg, var(--sakura), var(--aurora)); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* Footer links: gradient slide in */
.footer-col a { position: relative; transition: all .3s ease; }
.footer-col a::before {
  content: '→'; position: absolute; left: -1.2rem; opacity: 0;
  color: var(--sakura); transition: all .3s ease;
}
.footer-col a:hover::before { opacity: 1; left: -.9rem; }

/* Footer social */
.footer-social a { transition: all .4s cubic-bezier(.4,1.6,.6,1); }
.footer-social a:hover { transform: translateY(-4px) rotate(-6deg); background: linear-gradient(135deg, var(--sakura), var(--aurora)); border-color: transparent; color: #fff !important; }

/* CI contact cards */
.ci { transition: all .4s cubic-bezier(.2,.8,.2,1); position: relative; }
.ci:hover { transform: translateX(4px); border-left-color: var(--aurora) !important; box-shadow: 0 10px 30px rgba(138,47,206,.12); }

/* Floating kanji subtle parallax (JS-driven via --py) */
.snap-kanji-big, .hero-kanji { transform: translateY(calc(var(--py, 0) * 1px)); }

/* Blossom kanji rotation pulse in about-snap on hover */
.about-snap-visual:hover .snap-kanji-big { animation: kanjiDrift 4s ease-in-out infinite, hueShift 6s linear infinite; }
@keyframes hueShift { from { filter: hue-rotate(0deg); } to { filter: hue-rotate(360deg); } }

/* Smooth hover lift on ALL anchors with classes we didn't hit yet */
a.btn-primary, a.btn-outline, a.btn-dark, button.btn-primary { will-change: transform; }
.btn-primary:active, .btn-outline:active, .btn-dark:active { transform: translateY(0) scale(.98) !important; transition: transform .1s ease !important; }

/* ═══════════════════════════════════════════════════════════════
   BLOSSOM THEME — site-wide brand motif
   ═══════════════════════════════════════════════════════════════ */

/* Giant rotating blossom watermark behind the hero */
.hero::after {
  content: ''; position: absolute; z-index: 0;
  width: min(95vh, 95vw); height: min(95vh, 95vw);
  right: -18%; bottom: -22%;
  background-image: url('logo-mark.svg');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: .09; pointer-events: none;
  animation: blossomSpin 48s linear infinite, blossomBreathe 9s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(226,65,139,.35));
}
.hero-content { z-index: 3 !important; }
@keyframes blossomSpin { to { transform: rotate(360deg); } }
@keyframes blossomBreathe { 0%,100% { opacity: .07; } 50% { opacity: .14; } }

/* About-snap: replace the kanji with a blooming blossom mark */
.about-snap-visual::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('logo-mark.svg');
  background-size: 58% auto; background-repeat: no-repeat; background-position: center;
  opacity: .14; animation: blossomSpin 60s linear infinite;
  mix-blend-mode: luminosity;
}
.about-snap-visual .snap-kanji-big { position: relative; z-index: 2; }

/* Bloom-open animation for the nav logo mark (on page load) */
.nav-logo .nl-mark { animation: markBloom 1.4s cubic-bezier(.2,.8,.2,1) both, markBreathe 6s ease-in-out 1.4s infinite; }
@keyframes markBloom {
  0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
  60%  { transform: scale(1.25) rotate(20deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Blossom section divider — a small spinning bloom between sections */
.section-center .section-tag::after,
.section-center .section-title::before {
  display: none;
}
.section-center {
  position: relative;
}
.section-center::before {
  content: ''; display: block; width: 28px; height: 28px;
  margin: 0 auto 1rem;
  background-image: url('logo-mark.svg');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: .85;
  animation: markBreathe 5s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(226,65,139,.3));
}

/* Blossom between stats-strip + sections (dark version uses white-ish tint) */
.dark-cta::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url('logo-mark.svg');
  background-size: 60vh 60vh; background-repeat: no-repeat; background-position: 110% 50%;
  opacity: .06; animation: blossomSpin 60s linear infinite reverse;
}
.dark-cta > * { position: relative; z-index: 1; }

/* Page-header blossom corner */
.page-header::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(226,65,139,.09), transparent 60%) !important;
}
.page-header::after {
  content: ''; position: absolute; right: -5%; top: -20%; width: 400px; height: 400px;
  background-image: url('logo-mark.svg');
  background-size: contain; background-repeat: no-repeat;
  opacity: .08; z-index: 0;
  animation: blossomSpin 50s linear infinite;
}

/* Enhanced petal variety — different sizes + colors + speeds */
.petal:nth-child(3n)   { background: radial-gradient(ellipse at 30% 30%, #fde8f1 0%, #f06ba8 50%, #b52bc0 100%) !important; }
.petal:nth-child(3n+1) { background: radial-gradient(ellipse at 30% 30%, #fbeaf3 0%, #e2418b 55%, #7a20c9 100%) !important; }
.petal:nth-child(3n+2) { background: radial-gradient(ellipse at 30% 30%, #fff0f8 0%, #d66aca 50%, #5f1fa6 100%) !important; }

/* A second blossom — bigger, rarer — that drifts across the viewport */
.big-bloom {
  position: fixed; pointer-events: none; z-index: 1; top: 20vh; left: -15vh;
  width: 12vh; height: 12vh; opacity: 0;
  background-image: url('logo-mark.svg');
  background-size: contain; background-repeat: no-repeat;
  filter: drop-shadow(0 4px 12px rgba(226,65,139,.35));
  animation: bigBloomDrift 28s ease-in-out infinite, blossomSpin 15s linear infinite;
}
@keyframes bigBloomDrift {
  0%   { transform: translate(0, 0); opacity: 0; }
  15%  { opacity: .35; }
  50%  { transform: translate(50vw, 30vh); opacity: .3; }
  85%  { opacity: .2; }
  100% { transform: translate(110vw, 60vh); opacity: 0; }
}

/* Hero buttons → blossom seal on primary */
.btn-primary::after {
  content: ''; display: inline-block; width: 14px; height: 14px; margin-left: .3rem;
  background-image: url('logo-mark.svg');
  background-size: contain; background-repeat: no-repeat;
  opacity: .85; transition: transform .5s ease;
}
.btn-primary:hover::after { transform: rotate(180deg) scale(1.2); }

/* Make the `.reveal` sections bloom open */
.reveal.visible .venture-card,
.reveal.visible .service-card,
.reveal.visible .value-item {
  animation: cardBloom .8s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes cardBloom {
  from { transform: scale(.92) translateY(20px); opacity: 0; filter: blur(6px); }
  to   { transform: none; opacity: 1; filter: blur(0); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .1s !important; }
  .petals { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT THEME — final override
   Cream/white surfaces with magenta+purple brand accents
   ═══════════════════════════════════════════════════════════════ */
:root {
  --paper: #fdfaf7;
  --cream: #fbf1ee;
  --white: #ffffff;
  --mist: #ecdfe6;
  --slate: #4a3952;
  --ink: #2a1c38;      /* used only for primary text now */
  --ink-2: #3d2a4e;
}

body { background: #fdfaf7; color: #2a1c38; }

/* NAV → light glass */
nav {
  background: rgba(255,250,253,.85) !important;
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(226,65,139,.12);
  box-shadow: 0 2px 20px rgba(138,47,206,.06) !important;
}
.nav-links a { color: #5a4868 !important; }
.nav-links a:hover, .nav-links a.active { color: var(--sakura-deep) !important; }
.hamburger span { background: #3d2a4e !important; }

.nav-dd .dd-menu {
  background: rgba(255,255,255,.98) !important;
  border: 1px solid rgba(226,65,139,.15) !important;
  box-shadow: 0 20px 50px rgba(138,47,206,.15) !important;
}
.dd-menu a { color: #5a4868 !important; }
.dd-menu a:hover { color: var(--sakura-deep) !important; background: rgba(226,65,139,.06) !important; }
.dd-menu-divider { background: rgba(226,65,139,.12) !important; }

.lang-btn { border-color: rgba(138,47,206,.25) !important; color: #7a5d8a !important; }
.lang-btn:hover { border-color: var(--sakura) !important; color: var(--sakura-deep) !important; }

/* HERO → light gradient with blossom mesh */
.hero { background: linear-gradient(135deg, #fff5f9 0%, #f5ecfb 50%, #fef5ec 100%) !important; }
.hero::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(226,65,139,.22), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(138,47,206,.18), transparent 48%),
    radial-gradient(circle at 60% 80%, rgba(232,185,97,.15), transparent 42%),
    radial-gradient(circle at 15% 85%, rgba(244,166,184,.22), transparent 45%) !important;
  filter: blur(50px) !important;
}
.hero-bg-photo { opacity: .08 !important; }
.hero-grid-bg {
  background-image: linear-gradient(rgba(181,43,192,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181,43,192,.04) 1px, transparent 1px) !important;
}
.hero-badge {
  color: var(--sakura-deep) !important;
  border-color: rgba(226,65,139,.3) !important;
  background: rgba(255,255,255,.6) !important;
}
.hero-h1 { color: #2a1c38 !important; }
.hero-sub { color: rgba(74,57,82,.85) !important; }
.hero-kanji { color: rgba(181,43,192,.5) !important; }
.hero-scroll span { color: rgba(74,57,82,.5) !important; }
.hero-scroll-line { background: linear-gradient(to bottom, var(--sakura), transparent) !important; }
.hero::after { opacity: .06 !important; }
.btn-outline { color: #3d2a4e !important; border-color: rgba(138,47,206,.3) !important; }
.btn-outline:hover { color: var(--sakura-deep) !important; border-color: var(--sakura) !important; background: rgba(226,65,139,.06); }

/* Page header → light */
.page-header { background: linear-gradient(135deg, #fff5f9 0%, #f5ecfb 60%, #fef5ec 100%) !important; }
.page-header h1 { color: #2a1c38 !important; }
.page-header p { color: rgba(74,57,82,.7) !important; }
.page-header::after { opacity: .1; }
.breadcrumb { color: rgba(74,57,82,.55) !important; }

/* Stats → keep light */
.stats-strip { background: #fff !important; border-color: rgba(226,65,139,.1) !important; }
.stat-item { border-right-color: rgba(226,65,139,.1) !important; }
.stat-lbl { color: #5a4868 !important; }

/* Trust strip → light lavender */
.trust-strip { background: linear-gradient(135deg, #f9edf5 0%, #efe7f8 50%, #faf0e8 100%) !important; }
.trust-item { border-right-color: rgba(226,65,139,.15) !important; }
.trust-item .t-label { color: rgba(74,57,82,.6) !important; }

/* Dark CTA → soften to a purple-cream with gradient */
.dark-cta { background: linear-gradient(135deg, #f5e4f0 0%, #ebdcf5 50%, #fbe9da 100%) !important; }
.dark-cta .section-title { color: #2a1c38 !important; }
.dark-cta .section-sub { color: rgba(74,57,82,.75) !important; }
.dark-cta::before {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(226,65,139,.15), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(138,47,206,.15), transparent 60%) !important;
}
.dark-cta::after { opacity: .08; }
.dark-cta .btn-outline { color: #3d2a4e !important; border-color: rgba(138,47,206,.35) !important; }
.dark-cta .btn-outline:hover { color: var(--sakura-deep) !important; border-color: var(--sakura) !important; }

/* FOOTER → light cream */
footer {
  background: linear-gradient(180deg, #fbf1ee 0%, #f5e4f0 100%) !important;
  color: #5a4868 !important;
  border-top: 1px solid rgba(226,65,139,.12);
}
footer .nav-logo { color: #2a1c38 !important; }
.footer-brand p { color: rgba(74,57,82,.7) !important; }
.footer-col h4 { color: var(--sakura-deep) !important; }
.footer-col a { color: rgba(74,57,82,.7) !important; }
.footer-col a:hover { color: var(--sakura-deep) !important; }
.footer-social a { border-color: rgba(138,47,206,.25) !important; color: rgba(74,57,82,.6) !important; }
.footer-bottom { border-top-color: rgba(226,65,139,.15) !important; }
.footer-bottom p, .footer-bottom a { color: rgba(74,57,82,.55) !important; }

/* Split-dark panels → keep readable but light */
.split-dark { background: linear-gradient(135deg, #2a1c38 0%, #5f1fa6 100%) !important; }

/* Scroll-top button light */
#scroll-top { background: #fff !important; color: var(--sakura-deep) !important; border-color: rgba(226,65,139,.3) !important; box-shadow: 0 4px 15px rgba(138,47,206,.15); }
#scroll-top:hover { background: linear-gradient(135deg, var(--sakura), var(--aurora)) !important; color: #fff !important; }

/* Venture cards: crisper on light */
.venture-card { background: rgba(255,255,255,.85) !important; border-color: rgba(226,65,139,.15) !important; }

/* Industry preview items: white on light */
.ind-preview-grid { background: rgba(226,65,139,.12) !important; }
.ind-preview-item { background: #fff !important; }
.ip-name { color: #5a4868 !important; }

/* ═══════════════════════════════════════════════════════════════
   BOLD ANIMATIONS — amplified site-wide motion
   ═══════════════════════════════════════════════════════════════ */

/* Bolder hero entrance — letters drop in one by one */
.hero-h1 { overflow: visible; }
.hero-h1 { animation: heroTitleRise 1.4s cubic-bezier(.2,.8,.2,1) both !important; animation-delay: .4s !important; }
@keyframes heroTitleRise {
  0%   { opacity: 0; transform: translateY(60px) scale(.9); letter-spacing: 0; filter: blur(20px); }
  60%  { filter: blur(0); letter-spacing: -.02em; }
  100% { opacity: 1; transform: none; filter: blur(0); }
}
.hero-h1 em { animation: emShine 2s ease-in-out .9s both, shimmer 5s linear 2.9s infinite !important; }
@keyframes emShine {
  0%   { background-position: -200% center; opacity: 0; transform: scale(.8); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); background-position: 0% center; }
}

.hero-sub { animation: heroRise 1s cubic-bezier(.2,.8,.2,1) both !important; animation-delay: .75s !important; }
.hero-btns { animation: heroRise 1s cubic-bezier(.2,.8,.2,1) both !important; animation-delay: .95s !important; }
.hero-badge { animation: badgeFlash 1s cubic-bezier(.4,1.6,.6,1) both, badgeGlow 3.5s ease-in-out 1s infinite !important; }
@keyframes badgeFlash {
  0%   { opacity: 0; transform: scale(0) rotate(-15deg); }
  70%  { transform: scale(1.15) rotate(3deg); }
  100% { opacity: 1; transform: none; }
}

/* Stronger reveals — 3D tilt blur-in */
.reveal { opacity: 0; transform: translateY(60px) rotateX(12deg) scale(.96); filter: blur(14px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1), filter 1s ease; }
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }

/* Venture card bloom — bigger */
@keyframes cardBloom {
  0%   { transform: scale(.7) translateY(40px) rotate(-4deg); opacity: 0; filter: blur(12px); }
  60%  { transform: scale(1.04) rotate(1deg); }
  100% { transform: none; opacity: 1; filter: blur(0); }
}

/* Gradient animated border on venture cards */
.venture-card { position: relative; }
.venture-card::after {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, var(--sakura), var(--aurora), var(--gold), var(--sakura));
  background-size: 300% 300%;
  opacity: 0; transition: opacity .4s;
  animation: gradientFlow 6s linear infinite;
}
.venture-card:hover::after { opacity: .6; }
@keyframes gradientFlow { 0%{background-position:0% 0%} 100%{background-position:300% 300%} }

/* Stronger button pulse on primary */
.btn-primary {
  animation: btnPulse 2.8s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(226,65,139,.3);
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(226,65,139,.3); }
  50%     { box-shadow: 0 8px 35px rgba(138,47,206,.45); }
}

/* Section titles → bolder draw-in */
@keyframes drawUnderline {
  0%   { width: 0; opacity: 0; }
  40%  { opacity: 1; }
  100% { width: 90px; opacity: 1; }
}

/* Stats counters get a stronger scale on view */
.stat-val { animation: statGrow 1s cubic-bezier(.4,1.6,.6,1) both; }
.stat-item.reveal.visible .stat-val,
.visible .stat-val { animation-duration: 1.2s; }
@keyframes statGrow {
  0%   { transform: scale(.5); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* Trust strip: each item slides in */
.trust-item { animation: trustSlide .8s cubic-bezier(.2,.8,.2,1) both; }
.trust-item:nth-child(1){animation-delay:.1s}
.trust-item:nth-child(2){animation-delay:.18s}
.trust-item:nth-child(3){animation-delay:.26s}
.trust-item:nth-child(4){animation-delay:.34s}
.trust-item:nth-child(5){animation-delay:.42s}
.trust-item:nth-child(6){animation-delay:.50s}
@keyframes trustSlide {
  from { opacity: 0; transform: translateY(30px) rotate(-3deg); }
  to   { opacity: 1; transform: none; }
}

/* Industry preview grid: staggered scale-in */
.ind-preview-item { animation: gridPop .7s cubic-bezier(.4,1.6,.6,1) both; }
.ind-preview-item:nth-child(1){animation-delay:.05s}
.ind-preview-item:nth-child(2){animation-delay:.10s}
.ind-preview-item:nth-child(3){animation-delay:.15s}
.ind-preview-item:nth-child(4){animation-delay:.20s}
.ind-preview-item:nth-child(5){animation-delay:.25s}
.ind-preview-item:nth-child(6){animation-delay:.30s}
.ind-preview-item:nth-child(7){animation-delay:.35s}
.ind-preview-item:nth-child(8){animation-delay:.40s}
.ind-preview-item:nth-child(9){animation-delay:.45s}
.ind-preview-item:nth-child(10){animation-delay:.50s}
.ind-preview-item:nth-child(11){animation-delay:.55s}
.ind-preview-item:nth-child(12){animation-delay:.60s}
@keyframes gridPop { 0%{opacity:0;transform:scale(.3) rotate(-15deg)} 70%{transform:scale(1.08)} 100%{opacity:1;transform:none} }

/* Why items staggered fade */
.why-item { animation: whySlide .8s cubic-bezier(.2,.8,.2,1) both; }
.why-item:nth-child(1){animation-delay:.1s} .why-item:nth-child(2){animation-delay:.2s}
.why-item:nth-child(3){animation-delay:.3s} .why-item:nth-child(4){animation-delay:.4s}
.why-item:nth-child(5){animation-delay:.5s} .why-item:nth-child(6){animation-delay:.6s}
.why-item:nth-child(7){animation-delay:.7s} .why-item:nth-child(8){animation-delay:.8s}
@keyframes whySlide {
  from { opacity: 0; transform: translateY(40px) scale(.92); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* Why number gets big sweep on hover */
.why-item:hover .why-num { transform: scale(1.25) rotate(-5deg) !important; transition: transform .5s cubic-bezier(.4,1.6,.6,1) !important; }
.why-num { display: inline-block; transition: transform .4s; }

/* Venture cards sequential reveal */
.venture-card { animation: cardBloom .9s cubic-bezier(.2,.8,.2,1) both; }
.venture-card:nth-child(1){animation-delay:.05s} .venture-card:nth-child(2){animation-delay:.15s}
.venture-card:nth-child(3){animation-delay:.25s} .venture-card:nth-child(4){animation-delay:.35s}
.venture-card:nth-child(5){animation-delay:.45s} .venture-card:nth-child(6){animation-delay:.55s}
.venture-card:nth-child(7){animation-delay:.65s} .venture-card:nth-child(8){animation-delay:.75s}
.venture-card:nth-child(9){animation-delay:.85s}

/* Nepal-Japan divider line glows */
.nj-divider { animation: divPulse 3s ease-in-out infinite; }
@keyframes divPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%     { opacity: 1; transform: scaleY(1.1); box-shadow: 0 0 20px rgba(226,65,139,.5); }
}

/* More petals — denser shower */
.petal { animation-duration: 10s !important; }

/* Emoji icons get a constant gentle bounce */
.vc-icon, .sc-icon, .ind-icon, .nj-flag {
  animation: iconFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .3s);
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}

/* Scroll progress bar thicker + glow */
#progress-bar { height: 4px !important; box-shadow: 0 0 12px rgba(226,65,139,.6); }

/* Dropdown menu: dramatic bounce-in */
.nav-dd:hover .dd-menu { animation: ddBounce .5s cubic-bezier(.4,1.6,.6,1); }
@keyframes ddBounce {
  0%   { opacity: 0; transform: translateY(-10px) scale(.9); }
  60%  { transform: translateY(2px) scale(1.02); }
  100% { opacity: 1; transform: none; }
}

/* Section-center blossom divider → spin constantly */
.section-center::before { animation: blossomSpin 12s linear infinite, markBreathe 4s ease-in-out infinite !important; }

/* All images fade-in on load */
img { animation: imgFade 1s ease both; }
@keyframes imgFade { from { opacity: 0; filter: blur(8px); } to { opacity: 1; filter: blur(0); } }

/* ═══════════════════════════════════════════════════════════════
   THEMED HEROES & THUMBS — replaces random picsum placeholders.
   No external images. Each page sets --ac (accent) and --ac-soft.
   ═══════════════════════════════════════════════════════════════ */
.themed-hero {
  --ac: #c9a84c;
  --ac-soft: rgba(201,168,76,.18);
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 400px at 80% 20%, var(--ac-soft), transparent 60%),
    radial-gradient(900px 350px at 15% 80%, var(--ac-soft), transparent 55%),
    linear-gradient(135deg, #07080f 0%, #0e1020 60%, #07080f 100%);
}
.themed-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, var(--ac) 0, transparent 1.2px),
    radial-gradient(circle at 75% 70%, var(--ac) 0, transparent 1.2px);
  background-size: 60px 60px, 90px 90px;
  opacity: .14; mix-blend-mode: screen;
  animation: themedDrift 30s linear infinite;
}
.themed-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7,8,15,.6) 100%);
  pointer-events: none;
}
.themed-hero > * { position: relative; z-index: 2; }
@keyframes themedDrift {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-30px, -20px); }
  100% { transform: translate(0, 0); }
}

/* Themed 3-up thumbnail strip — replaces picsum thumbnails. */
.themed-strip { display: grid; grid-template-columns: repeat(3, 1fr); height: 180px; gap: 3px; overflow: hidden; }
.themed-strip > div {
  --ac: #c9a84c;
  --ac-soft: rgba(201,168,76,.22);
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, var(--ac-soft), transparent 70%),
    linear-gradient(135deg, #0e1020 0%, #1d1e3d 100%);
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s;
}
.themed-strip > div:hover { transform: scale(1.04); }
.themed-strip > div::before {
  content: attr(data-icon); font-size: 2.4rem; opacity: .55;
  filter: drop-shadow(0 0 14px var(--ac));
  animation: themedPulse 4s ease-in-out infinite;
}
@keyframes themedPulse {
  0%, 100% { transform: scale(1);   opacity: .55; }
  50%      { transform: scale(1.12); opacity: .85; }
}
@media (max-width: 700px) {
  .themed-strip { grid-template-columns: 1fr; height: 120px; }
  .themed-strip > div:not(:first-child) { display: none; }
}

/* ════════════════════════════════════════════════════════
   MOTION ANIMATIONS
   • Page-load hero entrance  • Scroll-reveal  • Logo shine
   ════════════════════════════════════════════════════════ */

/* ─── Logo entrance & shimmer ─── */
@keyframes logoEntrance {
  0%   { opacity: 0; letter-spacing: .2em; filter: blur(4px); }
  60%  { opacity: 1; letter-spacing: .1em; filter: blur(0); }
  100% { opacity: 1; letter-spacing: .08em; filter: blur(0); }
}
@keyframes logoShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.nav-logo {
  animation: logoEntrance .9s cubic-bezier(.2,.8,.2,1) both;
}
.nav-logo.shimmer-ready {
  background: linear-gradient(
    105deg,
    var(--gold) 0%,
    var(--gold-light) 40%,
    #fff 50%,
    var(--gold-light) 60%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoEntrance .9s cubic-bezier(.2,.8,.2,1) both,
             logoShimmer 3.5s linear 1.2s 1;
}

/* ─── Hero entrance animation ─── */
@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(36px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.hero-animate-up {
  animation: heroFadeUp .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero-animate-up:nth-child(2) { animation-delay: .12s; }
.hero-animate-up:nth-child(3) { animation-delay: .22s; }
.hero-animate-up:nth-child(4) { animation-delay: .32s; }
.hero-animate-up:nth-child(5) { animation-delay: .42s; }

/* ─── Scroll reveal ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .65s cubic-bezier(.2,.8,.2,1),
    transform .65s cubic-bezier(.2,.8,.2,1);
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.93); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .18s; }
[data-reveal][data-delay="3"] { transition-delay: .26s; }
[data-reveal][data-delay="4"] { transition-delay: .34s; }
[data-reveal][data-delay="5"] { transition-delay: .42s; }
[data-reveal][data-delay="6"] { transition-delay: .50s; }

/* ─── Stat counter pulse ─── */
@keyframes statPop {
  0%   { transform: scale(.8);  opacity: 0; }
  70%  { transform: scale(1.06); }
  100% { transform: scale(1);   opacity: 1; }
}
.stat-animate {
  animation: statPop .7s cubic-bezier(.2,.8,.2,1) both;
}

/* ─── Section heading underline draw ─── */
@keyframes lineDraw {
  0%   { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}
.section-heading-line {
  display: block; height: 2px; width: 60px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s cubic-bezier(.2,.8,.2,1) .3s;
}
.revealed .section-heading-line,
[data-reveal].revealed + * .section-heading-line {
  transform: scaleX(1);
}

/* ─── Card hover lift ─── */
.card-lift {
  transition: transform .3s cubic-bezier(.2,.8,.2,1),
              box-shadow .3s ease;
}
.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

/* ─── Reduce motion override ─── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .hero-animate-up,
  .nav-logo,
  .nav-logo.shimmer-ready,
  .stat-animate {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

