/* ══════════════════════════════════════════
   QP Holdings — styles.css
   ══════════════════════════════════════════ */

/* ── Custom Properties ─────────────────── */
:root {
  /* Colors */
  --navy: #001B2A;
  --navy-dark: #0B1B2A;
  --navy-mid: #265D90;
  --gold-start: #D3A049;
  --gold-end: #FFDDA4;
  --gray: #6C757D;
  --bg: #F8F9FA;
  --white: #ffffff;
  --gold-warm: #FCEBCE;

  /* Gradients */
  --grad-gold: linear-gradient(90deg, #D3A049, #FFDDA4);
  --grad-navy: linear-gradient(90deg, #0B1B2A, #122e47, #265D90);
  --grad-gold-135: linear-gradient(135deg, #D3A049, #FFDDA4, #D3A049);

  /* Layout */
  --max-w: 1344px;
  /* Adaptive side padding: keeps content centered & capped at --max-w
     across any viewport. At ≥ 1920px (Figma canvas) this yields 288px;
     at narrower screens it falls back smoothly to 24px gutter. */
  --pad-x: max(24px, calc((100vw - 1344px) / 2));
  --pad-x-md: 48px;
  --pad-x-sm: 24px;
  --gap: 24px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Typography */
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shadows */
  --shadow-gold: 0 0 40px 0 rgba(211, 160, 73, 0.35);
  --shadow-navy: 0 8px 32px 0 rgba(0, 27, 42, 0.18);
  --shadow-card: 0 4px 24px 0 rgba(0, 27, 42, 0.10);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ── Screen-reader only ─────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Container ──────────────────────────── */
.container {
  width: 100%;
  max-width: calc(var(--max-w) + var(--pad-x) * 2);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ── Gradient text helpers ──────────────── */
.gold-gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navy-gradient-text {
  background: var(--grad-navy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badge ──────────────────────────────── */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--gold-start);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-start);
  margin-bottom: 20px;
}

.badge.light {
  border-color: rgba(211, 160, 73, 0.5);
  color: rgba(211, 160, 73, 0.9);
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-start);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about-eyebrow svg {
  flex: 0 0 auto;
}

/* ── Section title ──────────────────────── */
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--navy);
}

/* ── Section header ─────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.section-header.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--navy-dark);
}

.btn-gold:hover {
  box-shadow: 0 6px 24px rgba(211, 160, 73, 0.45);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold-start);
  color: var(--gold-start);
}

.btn-lg {
  height: 56px;
  padding: 15px 20px;
  border-radius: 38px;
  font-size: 18px;
  font-weight: 600;
  gap: 14px;
}

.btn-outline-gold:hover {
  background: rgba(211, 160, 73, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

/* ── Reveal animation ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}


/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  height: 96px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 27, 42, 0.4);
}

.header-inner {
  width: 100%;
  max-width: calc(var(--max-w) + var(--pad-x) * 2);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 125px;
  height: 48px;
  object-fit: contain;
}

.header-nav {
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-start;
  padding: 12px 16px;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-start);
}

.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--grad-gold);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-stock:hover {
  box-shadow: 0 4px 16px rgba(211, 160, 73, 0.4);
  transform: translateY(-1px);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  transition: color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--gold-start);
}

.lang-sep {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

/* Mobile nav footer – hidden on desktop */
.mobile-nav-footer {
  display: none;
}

/* Hamburger – hidden on desktop */
.hamburger {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-shrink: 0;
  border-radius: 8px;
  color: var(--white);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.hamburger svg {
  display: block;
  width: 24px;
  height: 24px;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.hamburger svg path {
  fill: currentColor;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.hamburger.open svg {
  opacity: 0;
  transform: scale(0.85);
}

.hamburger.open::before {
  opacity: 1;
  transform: rotate(45deg);
}

.hamburger.open::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 948px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 27, 42, 0.72) 0%,
      rgba(0, 27, 42, 0.55) 50%,
      rgba(0, 27, 42, 0.75) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 182px;
  padding-bottom: 64px;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex: 1;
}

/* Hero Left */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 64px;
  flex: 1;
  max-width: 762px;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 4px;
}

.hero-title {
  align-self: stretch;
  margin: 0;
  font-family: var(--font);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(88deg, #D3A049 0%, #FFDDA4 84%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
}

.hero-body {
  margin: 0;
  max-width: 613px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
}

.hero-buttons {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary-gold,
.btn-primary-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 224px;
  height: 56px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-primary-gold {
  background: var(--grad-gold);
  color: #ffffff;
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 160, 73, 0.45);
}

.btn-primary-white {
  background: #ffffff;
  color: #D3A049;
}

.btn-primary-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-primary-gold svg,
.btn-primary-white svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

/* Hero Right – stats card */
.hero-right {
  flex-shrink: 0;
  width: 300px;
}

.stats-card-wrap {
  padding: 1.5px;
  border-radius: calc(var(--r-md) + 1.5px);
}

.stats-card {
  background: rgba(0, 27, 42, 0.3);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  border: 1px solid var(--Secondary-Gradien, #D3A049);
}

.stat-label {
  color: var(--Secondary-While, #FFF);

  /* Other/Mobile/CTA */
  font-family: var(--font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
}

.stat-value {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.06);

  /* Hedading/Desktop/H1-Page Title */
  font-family: var(--font);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 56px */
}

.stat-unit {
  color: var(--Primary-Brand-Navy-Blue-100, #D6D6D7);

  /* Body/Desktop - Tablet/Body Small */
  font-family: var(--font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 19.6px */
}

.stat-divider {
  height: 1px;
  margin: 16px 0;
  background: linear-gradient(90deg, transparent, rgba(211, 160, 73, 0.4), transparent);
}

/* Hero Bar — Figma 3 KEYS (node 2110:8749) */
.hero-bar {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  border-radius: 16px;
  border-radius: 16px;
  border: 1px solid var(--Secondary-Gradien, #D3A049);
  background: rgba(0, 27, 42, 0.60);
  position: relative;
}

.hero-bar-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
}

.hero-bar-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: rgba(0, 27, 42, 0.40);
  border: 1px solid #D3A049;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bar-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hero-bar-text h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-bar-text p {
  margin: 0;
  max-width: 262px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.hero-bar-divider {
  width: 1px;
  height: 100px;
  background: var(--grad-gold);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(0, 660px);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.about-grid>* {
  min-width: 0;
}

.about-text .section-title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 32px;
}

.about-gold {
  color: var(--gold-start);
}

.about-para {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 16px;
}

.about-strong {
  color: var(--navy);
  font-weight: 500;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 32px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  font-weight: 400;
  color: #293644;
  line-height: 1.4;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.check-icon svg {
  display: block;
}

/* About image collage */
.about-images {
  position: relative;
  display: flex;
  justify-content: flex-end;

}

.about-collage {
  position: relative;
  width: 660px;
  max-width: 100%;
  aspect-ratio: 660 / 500.66;
  min-height: 0;
  border-radius: var(--r-md);
}

.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: 5px 8px 20px 0 rgba(182, 213, 243, 1);
}

.about-img-1 {
  top: 0;
  left: 24.3879%;
  width: 49.5136%;
  height: 78.8319%;
  z-index: 1;
}

.about-img-2 {
  top: 30.2101%;
  left: 11.5197%;
  width: 35.1924%;
  height: 53.4415%;
  z-index: 2;
}

.about-img-3 {
  top: 47.3135%;
  left: 0;
  width: 31.9727%;
  height: 52.6865%;
  z-index: 3;
}

.about-img-4 {
  top: 13.0847%;
  left: 68.0273%;
  width: 31.9727%;
  height: 52.6865%;
  z-index: 4;
}

.about-accent {
  display: none;
}


/* ══════════════════════════════════════════
   ACTIVITY / FIELDS
   ══════════════════════════════════════════ */
.activity {
  padding: 0 0 80px;
  background: var(--bg);
  scroll-margin-top: 120px;
}

.activity .section-header.center {
  width: min(660px, 100%);
  margin: 0 auto 48px;
  gap: 32px;
}

.activity .section-title {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}

.activity-eyebrow {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  color: var(--gold-start);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
}

.activity-eyebrow svg {
  flex: 0 0 auto;
}

/* ── Swiper graceful fallback (when not initialized) ──
   Swiper CDN sets `.swiper-wrapper { display:flex }` and `.swiper { overflow:hidden }`.
   For desktop (no Swiper init), we override so the grid layout below still applies. */
.swiper:not(.swiper-initialized) {
  overflow: visible;
}

.swiper:not(.swiper-initialized)>.swiper-wrapper {
  display: grid;
  transform: none !important;
  transition: none !important;
}

.swiper:not(.swiper-initialized)>.swiper-wrapper>.swiper-slide {
  width: auto;
  margin-right: 0 !important;
}

/* When Swiper IS initialized (mobile), force flex layout regardless of
   any sibling grid classes on .swiper-wrapper. */
.swiper.swiper-initialized>.swiper-wrapper {
  display: flex !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0 !important;
}

/* Inside a Swiper, slides must not be hidden by reveal animation.
   IntersectionObserver may not fire for slides positioned off-screen
   by Swiper transforms, and Swiper's transform conflicts with the
   reveal animation's translateY. */
.swiper-initialized .swiper-slide.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: stretch;
}

.activity-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: visible;
  box-shadow: none;
  isolation: isolate;
  transition: transform 0.3s var(--ease);
}

.activity-card::before {
  content: "";
  position: absolute;
  inset: -10px -12px;
  z-index: -1;
  border-radius: 24px;
  background: #F5E9D0;
  filter: blur(28px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.activity-card:hover {
  transform: translateY(-6px);
}

.activity-card:hover::before {
  opacity: 0.95;
}

.activity-card-img,
.activity-card-body,
.activity-card-link {
  position: relative;
  background: var(--white);
}

.activity-card-img {
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.activity-card-link {
  border-radius: 0 0 16px 16px;
}

.activity-card-img,
.activity-card.featured .activity-card-img {
  height: 344px;
}

.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.activity-card:hover .activity-card-img img {
  transform: scale(1.04);
}

.activity-card-glow {
  display: none;
}

.activity-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #DEE2E6;
}

.activity-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 0;
}

.activity-card-title::after {
  content: "";
  display: block;
  width: min(308px, 100%);
  height: 2px;
  margin-top: 12px;
  background: var(--navy);
}

.activity-card.featured .activity-card-title {
  font-size: 28px;
  font-weight: 600;
}

.activity-card-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #293644;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}

.activity-card.featured .activity-card-desc {
  font-size: 18px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.activity-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 16px;
  color: var(--gray);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.2s, gap 0.2s;
}

.activity-card.featured .activity-card-link {
  color: var(--navy);
  font-size: 20px;
}

.activity-card-link svg {
  flex: 0 0 auto;
  color: currentColor;
}

.activity-card:hover .activity-card-link {
  gap: 10px;
}


/* ══════════════════════════════════════════
   COMMITMENT
   ══════════════════════════════════════════ */
.commitment {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #EEF4F8 100%);
}

.commitment-grid {
  display: grid;
  grid-template-columns: 521fr 691fr;
  gap: 80px;
  align-items: center;
}

.commitment-text {
  width: 100%;
  max-width: 691px;
  padding-block: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.commitment-img-wrap {
  position: relative;
  overflow: hidden;
  max-width: 521px;
  aspect-ratio: 521/801;
}

.commitment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.commitment-text .section-title {
  width: min(767px, calc(100vw - var(--pad-x) * 2));
  margin-bottom: 0;
  color: var(--navy-dark);
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  background: none;
  -webkit-text-fill-color: initial;
}

.commitment-text .section-title .commitment-title-gradient,
.commitment-text .section-title .commitment-title-dark,
.commitment-text .section-title .gold-gradient-text {
  display: inline;
}

.commitment-text .section-title .commitment-title-gradient {
  background: var(--grad-navy);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.commitment-text .section-title .commitment-title-dark {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  color: var(--navy-dark);
}

.commitment-text .section-title .gold-gradient-text {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  color: var(--gold-start);
}

.commitment-eyebrow {
  display: inline-flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--gold-start);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.commitment-eyebrow svg {
  flex: 0 0 auto;
  color: currentColor;
}

.commitment-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.commitment-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.commitment-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(211, 160, 73, 0.10);
  border-radius: 8px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-start);
  overflow: hidden;
}

.commitment-feature h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #212529;
  margin-bottom: 8px;
}

.commitment-feature p {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.4;
}

.commitment-more {
  height: 56px;
  padding: 15px 20px;
  border: 1px solid var(--gold-start);
  border-radius: 38px;
  gap: 14px;
  color: var(--gold-start);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.commitment-more svg {
  flex: 0 0 auto;
}


/* ══════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════ */
.gallery {
  padding: 0;
}

.gallery-inner {
  background: linear-gradient(180deg, var(--bg) 0%, var(--gold-warm) 100%);
  padding: 80px 0;
}

.gallery-header {
  align-items: flex-end;
  margin-bottom: 48px;
}

.gallery-header .section-title {
  font-size: clamp(24px, 2.8vw, 38px);
  background: none;
  -webkit-text-fill-color: initial;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.gallery-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 318/412;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-card:hover {
  transform: translateY(-6px);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card.featured {
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.gallery-card.featured:hover {
  box-shadow: 0 0 64px 0 rgba(211, 160, 73, 0.5), var(--shadow-navy);
}

.gallery-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(211, 160, 73, 0.15) 100%);
  pointer-events: none;
}


/* ══════════════════════════════════════════
   NEWS
   ══════════════════════════════════════════ */
.news {
  padding: 80px 0;
  background: var(--bg);
  scroll-margin-top: 120px;
}

.news-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.news-header {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 32px;
}

.news-eyebrow {
  display: inline-flex;
  align-items: flex-end;
  gap: 16px;
  color: #D3A049;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
}

.news-eyebrow svg {
  flex: 0 0 24px;
}

.news-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}

.news-title-main {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #0B1B2A 0%, #265D90 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 56px;
  padding: 15px 20px;
  border: 1px solid #D3A049;
  border-radius: 38px;
  background: transparent;
  color: #D3A049;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.btn-outline-pill:hover {
  transform: translateY(-2px);
  background: rgba(211, 160, 73, 0.08);
}

.btn-outline-pill svg {
  flex: 0 0 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: 442fr 432fr 432fr;
  gap: 24px;
  align-self: stretch;
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 16px;
  overflow: visible;
  transition: none;
  isolation: isolate;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0 -4px 4px -4px;
  z-index: -1;
  border-radius: 16px;
  background: #F5E9D0;
  filter: blur(25.45px);
  opacity: 0;
  transition: none;
  pointer-events: none;
}

.news-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 3px 4px 4px 0px rgba(201, 201, 201, 0.25);
}

.news-card:hover::before {
  opacity: 0.95;
}

.news-card .news-card-img,
.news-card .news-card-body,
.news-card .news-link {
  background: transparent;
}

.news-card:hover .news-card-img,
.news-card:hover .news-card-body,
.news-card:hover .news-link {
  background: var(--white);
}

.news-card.featured .news-card-img {
  height: 352px;
}

.news-card:not(.featured) .news-card-img {
  height: 342px;
}

.news-card-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.news-card:hover .news-card-img img {
  transform: scale(1.04);
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #DEE2E6;
}

.news-date {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #293644;
}

.news-date.featured {
  font-size: 20px;
  line-height: 1.4;
}

.news-title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  background: linear-gradient(90deg, #0B1B2A 0%, #265D90 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card.featured .news-title {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  padding: 24px 16px;
  border-radius: 0 0 16px 16px;
  color: #6C757D;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  transition: none;
}

.news-link svg {
  flex: 0 0 24px;
  color: currentColor;
}

.news-link:hover {
  gap: 16px;
}

.news-link-featured {
  color: #D3A049;
  font-size: 20px;
  line-height: 1.4;
}


/* ══════════════════════════════════════════
   PARTNERS (Swiper-based marquee carousel)
   ══════════════════════════════════════════ */
.partners {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 27, 42, 0.06);
  border-bottom: 1px solid rgba(0, 27, 42, 0.06);
}

.partners-swiper {
  margin-top: 48px;
  overflow: hidden;
  padding-block: 8px;
  /* Soft fade-out on edges so logos appear to slide in/out of view */
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0,
      #000 6%,
      #000 94%,
      transparent 100%);
  mask-image: linear-gradient(90deg,
      transparent 0,
      #000 6%,
      #000 94%,
      transparent 100%);
}

.partners-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Slide width: auto-fit to logo, with a min so very narrow logos don't crowd */
.partner-item.swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 80px;
  opacity: 0.75;
  filter: grayscale(30%);
  transition: opacity 0.25s var(--ease), filter 0.25s var(--ease);
}

.partner-item.swiper-slide:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-item img {
  max-height: 64px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Graceful fallback when Swiper hasn't initialized (FOUC) — keep flex row, centered */
.partners-swiper:not(.swiper-initialized) > .partners-row {
  justify-content: center;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════
   FOOTER  (Figma: node 2190:5825)
   ══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
  font-family: var(--font);
}

.site-footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

/* Main content (logo+newsletter + 4 columns), gap 48px */
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ── Row 1: Logo + Newsletter ── */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo {
  display: inline-flex;
  flex-shrink: 0;
}

.footer-logo img {
  width: 319px;
  height: 123px;
  object-fit: contain;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 500px;
  height: 63px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #DEE2E6;
  border-radius: 8px;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy);
  outline: none;
}

.newsletter-input::placeholder {
  color: #ADB5BD;
}

.newsletter-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 10px 12px;
  background: var(--grad-gold);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 8px;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.newsletter-btn:hover {
  box-shadow: 0 4px 18px rgba(211, 160, 73, 0.45);
  transform: translateY(-1px);
}

/* ── Row 2: 4 columns ── */
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-company {
  width: 430px;
  flex-shrink: 0;
}

.footer-col-company+.footer-col {
  width: 145px;
  flex-shrink: 0;
}

.footer-col-company+.footer-col+.footer-col {
  width: 162px;
  flex-shrink: 0;
}

.footer-col-contact {
  width: auto;
}

.footer-col-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: none;
  color: #fff;
}

/* MST | Mã CK inline row */
.footer-info-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.footer-info-row strong {
  font-weight: 500;
}

.footer-info-sep {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: #fff;
}

/* Address blocks (with map-pin icon label) */
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-address-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

.footer-address-label .footer-icon {
  flex-shrink: 0;
  color: #fff;
}

.footer-address address {
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #ADB5BD;
}

.footer-address address strong {
  font-weight: 500;
  color: #ADB5BD;
}

/* Socials row */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-socials a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.footer-socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.footer-socials svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Nav lists (Về chúng tôi / Pháp lý) */
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #ADB5BD;
}

.footer-nav-list li a {
  color: #ADB5BD;
  transition: color 0.2s var(--ease);
}

.footer-nav-list li a:hover {
  color: var(--gold-end);
}

/* Contact column */
.footer-col-contact {
  gap: 16px;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-label {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  transition: color 0.2s var(--ease);
}

.footer-contact-item:hover {
  color: var(--gold-end);
}

.footer-contact-item .footer-icon {
  flex-shrink: 0;
  color: #fff;
}

.footer-contact-item:hover .footer-icon {
  color: var(--gold-end);
}

.footer-contact-divider {
  display: block;
  width: 100%;
  height: 0;
  border-top: 0.5px solid #fff;
}

/* Divider above copyright */
.footer-divider {
  display: block;
  width: 100%;
  height: 0;
  border-top: 0.5px solid #fff;
}

/* Copyright */
.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #ADB5BD;
}


/* ══════════════════════════════════════════
   ABOUT PAGE — Decorative blobs
   ══════════════════════════════════════════ */
.about-page {
  position: relative;
  overflow-x: clip;
}

.page-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-blob {
  position: absolute;
  display: block;
  background: rgba(246, 209, 145, 0.5);
  filter: blur(250px);
  border-radius: 50%;
  pointer-events: none;
}

.page-blob-1 {
  top: 800px;
  right: -120px;
  width: 864px;
  height: 392px;
}

.page-blob-2 {
  top: 1900px;
  left: -120px;
  width: 467px;
  height: 269px;
}

.page-blob-3 {
  bottom: 1100px;
  right: -120px;
  width: 442px;
  height: 254px;
}

/* Ensure all sections sit above blobs */
.about-page>section {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════
   PAGE HERO (inner pages — dark banner)
   ══════════════════════════════════════════ */
.page-hero {
  position: relative;
  isolation: isolate;
  padding-top: 200px;
  padding-bottom: 96px;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy-dark);
  overflow: hidden;
  /* Override the big --pad-x (288px) so the 64px title fits in 1 line.
     Padding stays as ~288px only when viewport ≥ 1920 (Figma canvas size). */
  --pad-x: max(24px, calc((100vw - 1344px) / 2));
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(134deg, rgba(11, 31, 58, 0.7) 0%, rgba(11, 31, 58, 0.2) 22%, rgba(11, 31, 58, 0) 31%),
    linear-gradient(180deg, rgba(11, 31, 58, 0.95) 10%, rgba(11, 31, 58, 0.5) 60%, rgba(11, 31, 58, 0.85) 100%),
    rgba(0, 0, 0, 0.2);
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow: gold parallelogram via clip-path (text stays upright, no skew artifact) */
.page-hero-eyebrow {
  --slant: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 285px;
  height: 40px;
  padding: 8px 24px;
  background: #D3A049;
  clip-path: polygon(var(--slant) 0,
      100% 0,
      calc(100% - var(--slant)) 100%,
      0 100%);
  margin-bottom: 0;
}

.page-hero-eyebrow-text {
  display: inline-block;
  color: #fff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-hero-title {
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 700;
  font-family: var(--font);
  line-height: 1.4;
  letter-spacing: 0;
  white-space: nowrap;
}

/* "Kiến tạo giá trị" — Figma ts1 override = navy gradient */
.page-hero-title-navy {
  display: inline;
  background: linear-gradient(90deg, #0B1B2A 0%, #265D90 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-hero-desc {
  max-width: 1013px;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
}


/* ══════════════════════════════════════════
   INTRO SECTION (2-col on desktop, stacked on mobile)
   ══════════════════════════════════════════ */
.intro-section {
  padding: 96px 0 64px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 24px;
  align-items: center;
}

.intro-title {
  grid-column: 1;
  grid-row: 1;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.intro-title .navy-gradient-text,
.intro-title .gold-gradient-text {
  display: inline;
}

.intro-body {
  grid-column: 1;
  grid-row: 2;
}

.intro-images {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.intro-grid .show-more-btn {
  display: none;
}

.intro-body p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.intro-body p:last-child {
  margin-bottom: 0;
}

.intro-body strong {
  color: var(--navy);
  font-weight: 600;
}

.intro-images {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.intro-images .about-collage {
  width: 100%;
  max-width: 620px;
}


/* ══════════════════════════════════════════
   STATS / 20-YEARS SECTION
   ══════════════════════════════════════════ */
.stats-section {
  padding: 64px 0 96px;
}

.stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 24px;
  align-items: center;
}

.stats-header {
  grid-column: 2;
  grid-row: 1;
}

.stats-text {
  grid-column: 2;
  grid-row: 2;
}

.stats-images {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
  width: 100%;
}

.stats-grid .show-more-btn {
  display: none;
}

.stats-collage {
  position: relative;
  width: 100%;
  max-width: 619px;
  aspect-ratio: 619 / 580;
  margin-inline: auto;
}

.stats-img {
  position: absolute;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 27, 42, 0.10);
}

.stats-img-1 {
  top: 0;
  left: 0;
  width: 71.8%;
  height: 72.6%;
  z-index: 1;
}

.stats-img-2 {
  top: 29%;
  left: 24%;
  width: 70.2%;
  height: 71%;
  z-index: 2;
  box-shadow:
    -14px -12px 0 0 #ffffff,
    0 8px 24px rgba(0, 27, 42, 0.10);
}

.stats-decor {
  position: absolute;
  top: 12%;
  right: 0;
  width: 271.588px;
  height: 210.01px;
  z-index: 3;
  padding: 32px;
  border-radius: 60px;
  background: #FFF;
  box-shadow: 3px 0 4px 0 rgba(211, 211, 211, 0.48);
}

.stats-decor svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Right: text */
.stats-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-start);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
}

.stats-eyebrow svg {
  flex: 0 0 auto;
}

.stats-heading {
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.stats-subheading {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 8px;
}

.stats-body p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.stats-body p:last-child {
  margin-bottom: 0;
}


/* ══════════════════════════════════════════
   HISTORY / TIMELINE
   ══════════════════════════════════════════ */
.history {
  position: relative;
  padding: 48px 0;
  background: linear-gradient(0deg, rgba(252, 235, 206, 1) 0%, rgba(248, 249, 250, 1) 92%);
  overflow: hidden;
}

.history-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.history-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.history-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(236deg, rgba(255, 255, 255, 0) 40%, rgba(250, 244, 234, 1) 92%);
}

.history-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Header: eyebrow row + title */
.history-header {
  margin-bottom: 0;
  gap: 32px;
}

.history-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold-start);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.history-eyebrow img {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.history-eyebrow-spacer {
  visibility: hidden;
}

.history-eyebrow span {
  max-width: 760px;
}

.history-title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

/* Timeline area: rows of cards + curve decoration */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  min-height: 1146px;
}

/* Decorative gold wavy line behind cards (Figma: Union) */
.timeline-curve {
  position: absolute;
  top: 100px;
  left: -1%;
  width: 102%;
  height: auto;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Rows of cards */
.timeline-row {
  display: flex;
  gap: 75px;
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  padding-left: 135px;
}

.timeline-row-end {
  /* 3 cards aligned to left like row 1 & 2 */
  justify-content: flex-start;
}

/* Individual card */
.timeline-card {
  flex: 0 0 213px;
  width: 213px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 7px 8px rgba(221, 221, 221, 0.55);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 20px rgba(184, 184, 184, 0.6);
}

.timeline-year {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #212529;
  letter-spacing: 0;
}

.timeline-card-gold .timeline-year {
  color: var(--gold-start);
}

.timeline-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: block;
}

.timeline-card p {
  font-size: 14px;
  font-weight: 400;
  color: #212529;
  line-height: 1.4;
  margin: 0;
}

/* Active (latest milestone) card — 2026 — white card with gold-filled circle */
.timeline-card-active {
  background: #fff;
  box-shadow: 0 7px 8px rgba(221, 221, 221, 0.25),
    0 12px 28px rgba(211, 160, 73, 0.18);
}

.timeline-card-active .timeline-year {
  color: #212529;
}

.timeline-card-active p {
  font-size: 16px;
  color: #212529;
}


/* ══════════════════════════════════════════
   MISSION / VISION / CORE VALUES
   ══════════════════════════════════════════ */
.mvv {
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.mvv-header {
  width: min(916px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  gap: 32px;
}

.mvv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-start);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mvv-eyebrow img {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.mvv-title {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  background: none;
  -webkit-text-fill-color: initial;
}

.mvv-title .navy-gradient-text,
.mvv-title .gold-gradient-text {
  display: inline;
}

.mvv-intro {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.55;
}

/* Layout: cards (left, staggered) + image collage (right, rotated diamond) */
.mvv-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 883fr) minmax(0, 883fr);
  gap: 32px;
  align-items: center;
  min-height: 625px;
}

/* Cards stacked vertically with staggered horizontal offset */
.mvv-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 807px;
}

.mvv-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 16px;
  width: 100%;
  max-width: 691px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 4px 7px 20.1px rgba(213, 213, 213, 1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* Staggered indent: 1st & 3rd card shift right by 116px (matches Figma layout) */
.mvv-card-offset {
  margin-left: 116px;
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 14px 28px rgba(184, 184, 184, 0.7);
}

/* Icon already has gold-tinted bg baked into the SVG */
.mvv-card-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 24px;
}

.mvv-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mvv-card-body h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #212529;
  margin: 0;
}

.mvv-card-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--gray);
  margin: 0;
}

/* Image collage: rotated 45deg diamond tiles (Figma: Group 1597883035) */
.mvv-images {
  position: relative;
  height: 625px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 296px
}

.mvv-collage {
  position: relative;
  width: 801px;
  height: 625px;
  flex-shrink: 0;
  /* Scale to fit the column gracefully on narrower viewports */
  transform-origin: center center;
}

.mvv-tile {
  position: absolute;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transform: rotate(45deg);
  transform-origin: top left;
  box-shadow: 5px 8px 20.1px rgba(164, 164, 164, 0.85);
}

.mvv-tile-1 {
  width: 374px;
  height: 374px;
  left: 496px;
  top: 47.69px;
}

.mvv-tile-2 {
  width: 187px;
  height: 187px;
  left: 217.69px;
  top: 0;
}

.mvv-tile-3 {
  width: 187px;
  height: 187px;
  left: 90.51px;
  top: 179.54px;
}

.mvv-tile-4 {
  width: 187px;
  height: 187px;
  left: 218.62px;
  top: 360.96px;
}


/* ══════════════════════════════════════════
   SHOW-MORE BUTTON (mobile collapse/expand)
   ══════════════════════════════════════════ */
.show-more-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 4px;
  background: transparent;
  border: 0;
  color: #0059FF;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
  align-self: flex-start;
}

.show-more-btn:hover {
  opacity: 0.75;
}

.show-more-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.3s var(--ease);
}

.show-more-btn.expanded .show-more-icon {
  transform: rotate(180deg);
}

/* Collapsible body — limits height on mobile, expands when .expanded */
.collapsible {
  position: relative;
}


/* ══════════════════════════════════════════
   ABOUT PARTNERS (uses .partners base — Swiper-based)
   ══════════════════════════════════════════ */
.about-partners {
  background: transparent;
  border: 0;
  padding: 80px 0 96px;
}

.about-partners .section-header {
  margin-bottom: 56px;
}

.about-partners .section-title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
}

.about-partners .partners-swiper {
  margin-top: 0;
}

.about-partners .partners-row {
  gap: 32px;
  margin-top: 0;
}

.about-partners .partner-item.swiper-slide {
  min-width: 120px;
  height: 64px;
}

.about-partners .partner-item img {
  max-height: 48px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-page {
  background: #F8F9FA;
  overflow-x: clip;
}

.page-hero.contact-hero {
  min-height: 622px;
  padding-top: 225px;
  padding-bottom: 0;
  align-items: flex-start;
  --pad-x: max(24px, calc((100vw - 1344px) / 2));
}

.contact-hero-content {
  gap: 4px;
}

.contact-hero .page-hero-bg img {
  object-position: center;
}

.contact-hero-overlay {
  background: rgba(26, 64, 99, 0.35);
}

.contact-hero-title {
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-hero-desc {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
}

.contact-section {
  position: relative;
  z-index: 2;
  margin-top: -209px;
  padding-bottom: 80px;
  background: linear-gradient(180deg,
      rgba(248, 249, 250, 0) 0,
      rgba(248, 249, 250, 0) 209px,
      #F8F9FA 209px,
      #F8F9FA 100%);
  --pad-x: max(24px, calc((100vw - 1344px) / 2));
}

.contact-section::before,
.contact-section::after {
  content: '';
  display: none;
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(120px);
}

.contact-section::before {
  top: 120px;
  left: -160px;
  width: 420px;
  height: 260px;
  background: rgba(211, 160, 73, 0.16);
}

.contact-section::after {
  right: -180px;
  bottom: -90px;
  width: 480px;
  height: 300px;
  background: rgba(38, 93, 144, 0.14);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 612px);
  justify-content: space-between;
  gap: 48px 77px;
  align-items: stretch;
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #EDEDED 100%);
  box-shadow: 11px 11px 17.1px rgba(204, 201, 201, 0.25);
}

.contact-info,
.contact-form {
  min-width: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  width: 560px;
}

.contact-info-header {
  margin-bottom: 24px;
}

.contact-info-title {
  margin: 0 0 16px;
  font-size: clamp(42px, 3.35vw, 64px);
  font-weight: 700;
  line-height: 1.4;
}

.contact-info-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gray);
}

.contact-list {
  display: flex;
  flex-direction: column;
  width: 471px;
  max-width: 100%;
  gap: 24px;
}

.contact-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.contact-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--grad-navy);
}

.contact-row-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-row-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 0;
}

.contact-row:first-child .contact-row-body {
  gap: 16px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-block-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}

.contact-block-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gray);
}

a.contact-block-text,
.contact-phone {
  transition: color 0.2s var(--ease);
}

a.contact-block-text:hover,
.contact-phone:hover {
  color: var(--gold-start);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 16px;
  line-height: 1.4;
  color: var(--gray);
}

.contact-phone img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.contact-divider {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: #DEE2E6;
}

.contact-socials {
  display: flex;
  flex-direction: column;
  width: 408px;
  max-width: 100%;
  gap: 8px;
}

.contact-socials-label {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gray);
}

.contact-socials-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  min-height: 48px;
}

.contact-socials-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.contact-socials-list a:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.contact-socials-list img {
  width: 32px;
  height: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 612px;
  height: 606px;
  padding: 79px 0 48px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
}

.contact-form-title {
  margin: 0 0 24px;
  padding: 0 32px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #212529;
}

.contact-form-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  gap: 16px;
  padding: 0 32px 32px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gray);
}

.required {
  color: #ED192D;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea,
.contact-phone-input-wrap {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #F8F9FD;
  color: var(--navy);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.contact-form-input,
.contact-form-select,
.contact-phone-input-wrap {
  height: 46px;
  padding: 12px 8px;
}

.contact-form-textarea {
  height: 84px;
  min-height: 84px;
  padding: 12px 4px 4px 12px;
  resize: vertical;
}

.contact-form-field-message {
  height: 112px;
  gap: 6px;
}

.contact-form-field-message .contact-form-textarea {
  flex: 1;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder,
.contact-phone-input::placeholder {
  color: #ADB5BD;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus,
.contact-phone-input-wrap:focus-within {
  border-color: var(--gold-start);
  box-shadow: none;
}

#cf-name {
  border-color: var(--gold-start);
}

.contact-form-select {
  appearance: none;
  color: #ADB5BD;
  background-image:
    linear-gradient(45deg, transparent 50%, #212529 50%),
    linear-gradient(135deg, #212529 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 19px,
    calc(100% - 10px) 19px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-phone-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-country-code {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-right: 8px;
  border-right: 1px solid #DEE2E6;
  color: #212529;
  white-space: nowrap;
}

.contact-country-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 12px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1;
}

.contact-country-caret {
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, transparent 50%, #8E9297 50%) 3px 4px / 5px 5px no-repeat,
    linear-gradient(135deg, #8E9297 50%, transparent 50%) 7px 4px / 5px 5px no-repeat;
}

.contact-phone-input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.4;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 44px;
  margin-top: 0;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--grad-gold);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-form-submit:hover {
  box-shadow: 0 10px 28px rgba(211, 160, 73, 0.34);
  transform: translateY(-2px);
}

.map-section {
  position: relative;
  padding: 0;
  background: #F8F9FA;
}

.map-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.map-title {
  max-width: 900px;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.map-desc {
  max-width: 780px;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gray);
}

.map-wrap {
  width: 100%;
  margin: 32px auto 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.map-iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  background: #E9ECEF;
}

@media (max-width: 1400px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px;
  }

  .contact-info,
  .contact-form,
  .contact-list {
    width: 100%;
  }

  .contact-form {
    height: auto;
    min-height: 0;
    padding: 40px 0;
  }
}

@media (max-width: 1200px) {

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .page-hero.contact-hero {
    min-height: 460px;
    padding-top: 150px;
    padding-bottom: 104px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-section {
    margin-top: -120px;
    background: linear-gradient(180deg,
        rgba(248, 249, 250, 0) 0,
        rgba(248, 249, 250, 0) 120px,
        #F8F9FA 120px,
        #F8F9FA 100%);
    padding-bottom: 72px;
  }

  .map-title {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  body.page-contact {
    scrollbar-width: none;
  }

  html:has(body.page-contact) {
    scrollbar-width: none;
  }

  body.page-contact::-webkit-scrollbar {
    display: none;
  }

  html:has(body.page-contact)::-webkit-scrollbar {
    display: none;
  }

  .page-hero.contact-hero {
    min-height: 229px;
    padding-top: 106px;
    padding-bottom: 0;
    align-items: flex-start;
  }

  .contact-hero .page-hero-bg img {
    position: absolute;
    top: 72px;
    left: 50%;
    width: 486px;
    max-width: none;
    height: 157px;
    object-fit: cover;
    transform: translateX(-50%);
  }

  .contact-hero-overlay {
    top: 72px;
    bottom: auto;
    height: 157px;
  }

  .contact-hero-content {
    max-width: 343px;
    padding-inline: 0;
    gap: 4px;
  }

  .contact-hero-title {
    width: 100%;
    font-size: 32px;
    line-height: 1.4;
    white-space: normal;
  }

  .contact-hero-desc {
    width: 304px;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }

  .contact-section {
    margin-top: 0;
    padding: 32px 0;
    background: #F8F9FA;
    --pad-x: 16px;
  }

  .contact-card {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 343px;
    max-width: 100%;
    margin-inline: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-form {
    order: 1;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 16px;
    border-radius: 24px;
    gap: 24px;
  }

  .contact-info {
    order: 2;
    align-items: center;
    width: 100%;
  }

  .contact-info-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin-bottom: 24px;
    text-align: center;
  }

  .contact-info-title {
    width: 100%;
    margin: 0;
    font-size: 32px;
    line-height: 1.4;
  }

  .contact-info-subtitle {
    width: 229px;
    max-width: 100%;
    margin: 0;
  }

  .contact-info-subtitle,
  .map-desc {
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-list {
    width: 100%;
    gap: 24px;
  }

  .contact-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    width: 100%;
  }

  .contact-row-icon {
    width: 40px;
    height: 40px;
    border-radius: 24px;
  }

  .contact-row-icon img {
    width: 25px;
    height: 25px;
  }

  .contact-block-title {
    font-size: 16px;
  }

  .contact-block-text,
  .contact-phone,
  .contact-socials-label,
  .contact-form-label {
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-form-title {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
  }

  .contact-form-body {
    width: 100%;
    gap: 24px;
  }

  .contact-form-fields {
    width: 100%;
    gap: 16px;
    padding: 0;
  }

  .contact-form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-form-field {
    height: 76px;
    gap: 8px;
  }

  .contact-form-field-message {
    height: 112px;
    gap: 6px;
  }

  .contact-form-input,
  .contact-form-select,
  .contact-phone-input-wrap {
    height: 46px;
    padding: 12px 8px;
  }

  .contact-form-textarea {
    height: auto;
    min-height: 84px;
  }

  .contact-form-submit {
    width: 60px;
  }

  .contact-socials {
    align-items: center;
    width: 100%;
  }

  .contact-socials-label {
    text-align: center;
  }

  .contact-socials-list {
    justify-content: center;
    gap: 24px;
    min-height: 48px;
  }

  .map-section-header {
    gap: 16px;
    padding: 24px 16px;
  }

  .map-title {
    font-size: 32px;
    line-height: 1.4;
  }

  .map-wrap {
    height: 196px;
    margin-top: 0;
    border-radius: 0;
  }

  .map-iframe {
    position: relative;
    left: 50%;
    width: 100%;
    max-width: none;
    height: 196px;
    filter: grayscale(1) saturate(0.15) contrast(0.92) brightness(1.08);
    transform: translateX(-50%);
  }

  .page-contact .site-footer {
    padding: 48px 0 24px;
  }

  .page-contact .footer-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-contact .footer-top,
  .page-contact .footer-middle {
    display: contents;
  }

  .page-contact .footer-logo {
    order: 1;
  }

  .page-contact .footer-logo img {
    width: 210px;
  }

  .page-contact .footer-col-company {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .page-contact .footer-socials {
    order: -1;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 0 24px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.7);
  }

  .page-contact .footer-col-company+.footer-col {
    order: 3;
  }

  .page-contact .footer-col-company+.footer-col+.footer-col {
    order: 4;
  }

  .page-contact .footer-col-contact {
    order: 5;
  }

  .page-contact .newsletter-form {
    order: 6;
    max-width: none;
    height: 56px;
  }

  .page-contact .footer-nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 16px;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (max 1200px)
   ══════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root {
    --pad-x: 48px;
  }

  .header-inner {
    padding-inline: 48px;
  }

  .hero-container {
    padding-inline: 48px;
  }

  .hero-bar {
    padding: 32px;
  }

  .hero-bar-item {
    gap: 20px;
    padding: 0;
  }

  .hero-bar-icon {
    width: 64px;
    height: 64px;
  }

  .hero-bar-text h3 {
    font-size: 19px;
  }

  .hero-bar-text p {
    font-size: 14px;
    max-width: 220px;
  }

  .hero-bar-divider {
    height: 80px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .commitment-grid {
    gap: 48px;
  }

  .footer-logo img {
    width: 260px;
    height: auto;
  }

  .footer-middle {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-col-company {
    width: 100%;
  }

  .footer-col-company+.footer-col,
  .footer-col-company+.footer-col+.footer-col,
  .footer-col-contact {
    width: auto;
    min-width: 180px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Hamburger breakpoint (~1100px)
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .site-header {
    background: var(--navy);
    box-shadow: none;
  }

  .site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 27, 42, 0.4);
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
    color: var(--white);
  }

  .header-inner {
    justify-content: space-between;
  }

  /* Mobile nav */
  .site-header .header-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    height: calc(100vh - 100%);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 32px 32px;
    border-top: 1px solid #DEE2E6;
    box-shadow: 0 18px 48px rgba(0, 27, 42, 0.16);
    overflow-y: auto;
    z-index: 998;
  }

  .site-header .header-nav.open ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }

  .site-header .header-nav.open > ul > li {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .site-header .header-nav.open ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 14px 0;
    border-bottom: 1px solid #DEE2E6;
    font-size: 16px;
    font-weight: 500;
    color: #293644;
    -webkit-text-fill-color: #293644;
    background: none;
  }

  .site-header .header-nav.open ul li a.active,
  .site-header .header-nav.open ul li a:hover {
    color: var(--gold-start);
    -webkit-text-fill-color: var(--gold-start);
    background: none;
  }

  /* Mobile nav footer (stock + lang) */
  .mobile-nav-footer {
    display: none;
  }

  .header-nav.open .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px 0 4px;
  }

  .header-nav.open .mobile-nav-footer .btn-stock {
    width: 100%;
  }

  .header-nav.open .mobile-nav-footer .lang-switcher {
    justify-content: center;
  }

  .header-nav.open .mobile-nav-footer .lang-btn,
  .header-nav.open .mobile-nav-footer .lang-sep {
    color: #293644;
  }

  .header-nav.open .mobile-nav-footer .lang-btn.active,
  .header-nav.open .mobile-nav-footer .lang-btn:hover {
    color: var(--gold-start);
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet medium (max 900px)
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 32px;
  }

  .hero-right {
    width: 100%;
    max-width: 480px;
  }

  .stats-card {
    flex-direction: row;
    padding: 20px 24px;
    gap: 0;
  }

  .stat-item {
    flex: 1;
  }


  .stat-divider {
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(211, 160, 73, 0.4), transparent);
    margin: 0;
  }

  .hero-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 28px;
  }

  .hero-bar-divider {
    width: 100%;
    height: 1px;
    background: var(--grad-gold);
  }

  .hero-bar-item {
    padding: 0;
    gap: 16px;
  }

  .hero-bar-text h3 {
    font-size: 20px;
    white-space: normal;
  }

  .hero-bar-text p {
    font-size: 15px;
    max-width: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    justify-content: center;
  }

  .about-images>svg {
    display: none;
  }

  .activity-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .activity-card.featured .activity-card-img {
    height: 280px;
  }

  .activity-card:not(.featured) .activity-card-img {
    height: 260px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }


  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .news-card.featured .news-card-img,
  .news-card:not(.featured) .news-card-img {
    height: 240px;
  }

  .partners-row {
    gap: 32px;
  }

  .footer-middle {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
    max-width: 500px;
  }

  .footer-col-company {
    width: 100%;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (max 640px)
   ══════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --pad-x: 20px;
  }

  .header-inner {
    padding-inline: 24px;
  }

  .site-header {
    height: 72px;
    background: var(--navy);
    box-shadow: none;
  }

  .site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 27, 42, 0.4);
  }

  .hamburger {
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 0;
    color: var(--white);
  }

  .header-logo img {
    width: 104px;
    height: 40px;
  }

  .site-header .header-nav.open {
    top: 100%;
    padding: 16px 24px 28px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-container {
    padding-top: 120px;
    padding-bottom: 40px;
    padding-inline: 20px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-body {
    font-size: 16px;
  }

  .hero-left {
    gap: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-primary-gold,
  .hero-buttons .btn-primary-white {
    width: 100%;
    justify-content: center;
  }

  .stats-card {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .stat-divider {
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 160, 73, 0.4), transparent);
    margin: 0 -20px;
  }

  .stat-value {
    font-size: 36px;
  }

  .hero-bar {
    margin-top: 32px;
    padding: 20px;
  }

  .about {
    padding: 32px 0;
  }

  .about-images>svg {
    display: none;
  }

  /* Make collage extend wider on mobile (Figma node 2110:23457 = 343px wide,
     vs viewport 375 leaving ~16px gap each side). Escape container padding
     and add 16px internal gap. */
  .about-images {
    margin-inline: calc(var(--pad-x) * -1 + 16px);
    justify-content: center;
  }

  .about-collage {
    width: 100%;
    max-width: none;
  }

  .activity {
    padding-bottom: 72px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ── Commitment section — Figma mobile (node 2110:23493) ── */
  .commitment {
    padding: 32px 0;
    background: #fff;
  }

  .commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  /* Flatten .commitment-text so its children become direct flex items
     of .commitment-grid, enabling reorder via `order`. */
  .commitment-text {
    display: contents;
  }

  /* Mobile order: pill → heading → image → items → button */
  .commitment-eyebrow {
    order: 1;
    align-self: center;
    margin: 0;
  }

  .commitment-text .section-title {
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: center;
    font-size: 32px;
    line-height: 1.4;
  }

  .commitment-image {
    order: 3;
    /* Break out of container padding to be full-bleed */
    margin-inline: calc(var(--pad-x) * -1);
    width: auto;
  }

  .commitment-features {
    order: 4;
    margin: 0;
  }

  .commitment-more {
    order: 5;
  }

  /* Twin-peaks image silhouette via layered img + ::after pseudo-element */
  .commitment-img-wrap {
    position: relative;
    width: 100%;
    max-width: none;
    aspect-ratio: 375 / 445;
    overflow: visible;
  }

  .commitment-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3138px 16px 16px 16px;
  }

  .commitment-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('site/commitment-group-1597883034.png');
    background-size: cover;
    background-position: center;
    border-radius: 14px 1140px 16px 16px;
  }

  /* Items with divider between */
  .commitment-features {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .commitment-feature {
    align-items: flex-start;
    gap: 16px;
  }

  .commitment-feature+.commitment-feature {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #DEE2E6;
  }

  .commitment-feature h3 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 8px;
  }

  .commitment-feature p {
    font-size: 16px;
    line-height: 1.4;
  }

  /* Pill text size on mobile */
  .commitment-eyebrow {
    font-size: 14px;
    gap: 8px;
  }

  /* Full-width gradient-border button */
  .commitment-more {
    width: 100%;
    height: 44px;
    padding: 11px 16px;
    border: 1px solid transparent;
    border-radius: 38px;
    background:
      linear-gradient(#fff, #fff) padding-box,
      var(--grad-gold) border-box;
    color: var(--gold-start);
    font-size: 16px;
    font-weight: 600;
    gap: 12px;
  }

  .commitment-more svg {
    width: 20px;
    height: 20px;
  }

  .gallery-inner {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-card {
    aspect-ratio: 1/1.2;
  }

  .news {
    padding: 72px 0;
  }

  .partners {
    padding: 56px 0;
  }

  .partners-row {
    gap: 24px;
  }

  .partner-item img {
    max-height: 56px;
  }

  .site-footer {
    padding: 40px 0;
  }

  .footer-main {
    gap: 32px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-logo img {
    width: 220px;
    height: auto;
  }

  .newsletter-form {
    width: 100%;
    max-width: 500px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col,
  .footer-col-company,
  .footer-col-contact {
    width: 100%;
  }

  .footer-bottom p {
    font-size: 15px;
  }

  /* ══════════════════════════════════════════
     SWIPER SLIDES — MOBILE (Figma 2110:23477, 2110:23519, 2110:23533)
     ══════════════════════════════════════════ */

  /* ── Activity / Lĩnh vực hoạt động ── */
  .activity {
    padding: 32px 0;
    scroll-margin-top: 80px;
  }

  .activity .section-header.center {
    width: 100%;
    margin: 0 0 24px;
    gap: 16px;
    align-items: center;
  }

  .activity-eyebrow {
    gap: 8px;
    font-size: 14px;
    align-items: center;
  }

  .activity-eyebrow svg {
    width: 24px;
    height: 24px;
  }

  .activity .section-title {
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
  }

  .activity-swiper.swiper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
  }

  /* Neutralize old breakpoint constraints when Swiper is active on mobile */
  .activity-swiper .swiper-wrapper {
    max-width: none;
    margin-inline: 0;
    grid-template-columns: none;
    align-items: stretch;
  }

  .activity-swiper .activity-card.swiper-slide {
    width: min(242px, calc(100vw - var(--pad-x) * 2));
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 5px 7px 12px 3px rgba(233, 233, 233, 1);
    isolation: auto;
    transform: none;
  }

  .activity-swiper .activity-card::before {
    display: none;
  }

  .activity-swiper .activity-card-img,
  .activity-swiper .activity-card.featured .activity-card-img {
    height: 193px;
    border-radius: 16px 16px 0 0;
  }

  .activity-swiper .activity-card-body {
    gap: 8px;
    padding: 8px;
    border-bottom: 1px solid #DEE2E6;
  }

  .activity-swiper .activity-card-title,
  .activity-swiper .activity-card.featured .activity-card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #001B2A;
  }

  .activity-swiper .activity-card-title::after {
    width: 136px;
    height: 1px;
    margin-top: 8px;
    background: #001B2A;
  }

  .activity-swiper .activity-card-desc,
  .activity-swiper .activity-card.featured .activity-card-desc {
    font-size: 14px;
    color: #293644;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .activity-swiper .activity-card-link {
    padding: 16px;
    font-size: 16px;
    color: #D3A049;
  }

  .activity-swiper .activity-card-link svg {
    width: 24px;
    height: 24px;
  }

  /* ── Gallery / Khoảnh khắc ── */
  .gallery .gallery-inner {
    padding: 32px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--gold-warm) 100%);
  }

  .gallery-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: center;
  }

  .gallery-header>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .gallery-header .news-eyebrow {
    gap: 8px;
    font-size: 14px;
    align-items: center;
  }

  .gallery-header .news-eyebrow svg {
    flex: 0 0 24px;
  }

  .gallery-header .section-title {
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
  }

  /* Hide desktop "Xem tất cả" anchor inside header on mobile */
  .gallery-header>.btn {
    display: none;
  }

  .gallery-swiper.swiper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .gallery-swiper .swiper-wrapper {
    max-width: none;
    margin-inline: 0;
    grid-template-columns: none;
    align-items: center;
  }

  .gallery-swiper .gallery-card.swiper-slide {
    width: min(256px, calc(100vw - var(--pad-x) * 2));
    max-width: 100%;
    height: 331px;
    aspect-ratio: auto;
    flex-shrink: 0;
    border-radius: 16px;
    box-shadow: none;
    isolation: isolate;
    position: relative;
  }

  /* Amber blur halo behind the first card (Figma Rectangle 903) */
  .gallery-swiper .gallery-card.featured {
    overflow: visible;
  }

  .gallery-swiper .gallery-card.featured img {
    border-radius: 16px;
  }

  .gallery-swiper .gallery-card.featured::before {
    content: '';
    position: absolute;
    inset: -7px;
    background: #F5E9D0;
    filter: blur(50.9px);
    z-index: -1;
    border-radius: 16px;
    pointer-events: none;
  }

  .gallery-swiper .gallery-card:not(.featured) {
    overflow: hidden;
  }

  .gallery-glow {
    display: none;
  }

  /* Mobile "Xem tất cả" button after gallery slides — gold gradient pill */
  .gallery-more-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 44px;
    padding: 11px 16px;
    margin-top: 24px;
    background: var(--grad-gold);
    border-radius: 36px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
  }

  .gallery-more-mobile:hover {
    box-shadow: 0 4px 18px rgba(211, 160, 73, 0.45);
    transform: translateY(-1px);
  }

  /* ── News / Tin tức ── */
  .news {
    padding: 32px 0;
    scroll-margin-top: 80px;
  }

  .news-container {
    gap: 24px;
  }

  .news-header {
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .news-eyebrow {
    gap: 8px;
    font-size: 14px;
    align-items: center;
  }

  .news-heading-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .news-title-main {
    font-size: 32px;
    text-align: center;
  }

  /* Hide desktop "Xem tất cả" anchor inside header on mobile */
  .news-heading-row>.btn {
    display: none;
  }

  .news-swiper.swiper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .news-swiper .swiper-wrapper {
    max-width: none;
    margin-inline: 0;
    grid-template-columns: none;
    align-items: stretch;
  }

  .news-swiper .news-card.swiper-slide {
    width: min(242px, calc(100vw - var(--pad-x) * 2));
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 5px 7px 12px 3px rgba(233, 233, 233, 1);
    isolation: auto;
    transform: none;
  }

  .news-swiper .news-card::before {
    display: none;
  }

  .news-swiper .news-card.featured .news-card-img,
  .news-swiper .news-card:not(.featured) .news-card-img {
    height: 193px;
    border-radius: 16px 16px 0 0;
  }

  .news-swiper .news-card-body {
    gap: 8px;
    padding: 8px;
    border-bottom: 1px solid #DEE2E6;
  }

  .news-swiper .news-date,
  .news-swiper .news-date.featured {
    font-size: 14px;
    color: #293644;
  }

  /* Replace the "after divider" approach: add a separator line under the date */
  .news-swiper .news-date::after {
    content: '';
    display: block;
    width: 118px;
    height: 1px;
    margin-top: 8px;
    background: #001B2A;
  }

  .news-swiper .news-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    background: none;
    color: #001B2A;
    -webkit-text-fill-color: #001B2A;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .news-swiper .news-link {
    padding: 16px;
    font-size: 16px;
    color: #D3A049;
  }

  .news-swiper .news-link svg {
    width: 24px;
    height: 24px;
  }

  /* Mobile "Xem tất cả" button after news slides — outline gradient pill */
  .news-more-mobile {
    width: 100%;
    height: 44px;
    padding: 11px 16px;
    margin-top: 24px;
    border: 1px solid transparent;
    border-radius: 38px;
    background:
      linear-gradient(#fff, #fff) padding-box,
      var(--grad-gold) border-box;
    color: var(--gold-start);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    gap: 12px;
    justify-content: center;
  }

  .partners-swiper.swiper {
    max-width: 100%;
    min-width: 0;
  }

  .activity-swiper .swiper-wrapper,
  .gallery-swiper .swiper-wrapper,
  .news-swiper .swiper-wrapper,
  .partners-swiper .swiper-wrapper {
    min-width: 0;
  }
}

/* Hide mobile-only buttons on desktop */
@media (min-width: 641px) {

  .gallery-more-mobile,
  .news-more-mobile {
    display: none;
  }
}

/* ══════════════════════════════════════════
   EXTRA SMALL (max 400px)
   ══════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-title {
    font-size: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — ABOUT PAGE
   ══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .page-hero {
    padding-top: 168px;
    padding-bottom: 80px;
    min-height: 520px;
  }

  .intro-grid {
    gap: 48px;
  }

  .stats-grid {
    gap: 40px;
  }

  .timeline {
    min-height: auto;
    gap: 32px;
  }

  .timeline-row,
  .timeline-row-end {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    gap: 24px;
  }

  .timeline-curve {
    display: none;
  }

  /* Scale the rotated diamond collage so it fits the right column */
  .mvv-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
    gap: 40px;
    min-height: 540px;
  }

  .mvv-card-offset {
    margin-left: 64px;
  }

  .mvv-images {
    height: 520px;
  }

  .mvv-collage {
    transform: scale(0.78);
  }
}

@media (max-width: 1000px) {

  /* Stack columns into a single column on tablet/mobile */
  .intro-grid,
  .stats-grid,
  .mvv-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Reset align-items: center (from desktop grid) so flex items stretch full width */
    align-items: stretch;
  }

  /* Reset grid-area positioning when flex */
  .intro-title,
  .intro-images,
  .intro-body,
  .stats-header,
  .stats-images,
  .stats-text {
    grid-column: auto;
    grid-row: auto;
  }

  /* Order: title → images → body → "Xem thêm" button (mobile pattern) */
  .intro-title {
    order: 1;
  }

  .intro-images {
    order: 2;
  }

  .intro-body {
    order: 3;
  }

  .intro-grid .show-more-btn {
    order: 4;
  }

  .stats-header {
    order: 1;
  }

  .stats-images {
    order: 2;
  }

  .stats-text {
    order: 3;
  }

  .stats-grid .show-more-btn {
    order: 4;
  }

  .intro-images,
  .mvv-images {
    justify-content: center;
  }

  .intro-images .about-collage {
    max-width: 560px;
    margin-inline: auto;
  }

  .stats-collage {
    max-width: 560px;
  }

  /* Show "Xem thêm" button on tablet/mobile — center it */
  .intro-grid .show-more-btn,
  .stats-grid .show-more-btn {
    display: inline-flex;
    align-self: center;
  }

  /* Hide cityscape background image inside History on mobile */
  .history-bg {
    display: none;
  }

  /* Collapse body text on tablet/mobile (~3 lines) until expanded */
  .collapsible {
    max-height: 96px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, #000 50%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 50%, transparent 100%);
    transition: max-height 0.5s var(--ease);
  }

  .collapsible.expanded {
    max-height: 4000px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* MVV: stack and hide stagger */
  .mvv-grid {
    min-height: auto;
  }

  .mvv-cards {
    max-width: 691px;
    margin-inline: auto;
  }

  .mvv-card-offset {
    margin-left: 0;
  }

  .mvv-images {
    height: 540px;
  }

  .mvv-collage {
    transform: scale(0.72);
  }
}

@media (max-width: 900px) {
  .page-hero {
    padding-top: 144px;
    padding-bottom: 64px;
    min-height: auto;
  }

  .page-hero-title {
    font-size: clamp(30px, 6vw, 44px);
  }

  .page-hero-desc {
    font-size: 16px;
  }

  .intro-section,
  .stats-section {
    padding: 72px 0;
  }

  .history,
  .mvv {
    padding: 80px 0;
  }

  .about-partners {
    padding: 64px 0 80px;
  }

  .about-partners .partners-row {
    gap: 32px;
  }

  .timeline-card {
    padding: 16px;
  }

  .mvv-card {
    gap: 16px;
    padding: 14px;
  }

  .mvv-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .mvv-card-body h3 {
    font-size: 20px;
  }

  .mvv-card-body p {
    font-size: 15px;
  }

  /* Scale collage further at this breakpoint */
  .mvv-images {
    height: 460px;
  }

  .mvv-collage {
    transform: scale(0.62);
  }

  /* On smaller screens, stretch & lower the deco card */
  .stats-decor {
    width: 48%;
  }

  .page-blob {
    filter: blur(180px);
  }

  .page-blob-1 {
    top: 600px;
    right: -80px;
    width: 480px;
    height: 240px;
  }

  .page-blob-2 {
    top: 1500px;
    left: -80px;
    width: 320px;
    height: 200px;
  }

  .page-blob-3 {
    bottom: 800px;
    right: -80px;
    width: 320px;
    height: 200px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .page-hero-eyebrow {
    --slant: 8px;
    width: 240px;
    height: 36px;
    padding: 6px 16px;
  }

  .page-hero-eyebrow-text {
    font-size: 14px;
  }

  .page-hero-title {
    font-size: clamp(24px, 7vw, 36px);
    letter-spacing: 0;
    line-height: 1.3;
    white-space: normal;
  }

  .page-hero-desc {
    font-size: 15px;
  }

  .intro-section,
  .stats-section {
    padding: 56px 0;
  }

  .history,
  .mvv {
    padding: 64px 0;
  }

  .about-partners {
    padding: 48px 0 64px;
  }

  .intro-title,
  .stats-heading,
  .history-title,
  .mvv-title,
  .about-partners .section-title {
    font-size: clamp(26px, 7vw, 32px) !important;
    line-height: 1.25;
  }

  .stats-subheading {
    font-size: 18px;
  }

  .intro-body p,
  .stats-body p,
  .mvv-intro {
    font-size: 15px;
  }

  .stats-collage {
    max-width: 100%;
  }

  .stats-decor {
    width: 52%;
    top: 8%;
  }

  /* Stack timeline cards vertically; show only first 3 until expanded */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .timeline-row,
  .timeline-row-end {
    display: contents;
  }

  .timeline-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  /* Collapse timeline to first 3 cards on mobile until "Xem thêm" is clicked.
     Counts cards as they appear (flattened by display:contents on rows). */
  .timeline:not(.expanded)>.timeline-row:first-of-type>.timeline-card:nth-child(n+4),
  .timeline:not(.expanded)>.timeline-row:not(:first-of-type)>.timeline-card,
  .timeline:not(.expanded)>.timeline-row-end>.timeline-card {
    display: none;
  }

  /* Show "Xem thêm" button below timeline on mobile — center it */
  .timeline-show-more {
    display: inline-flex;
    align-self: center;
    margin-top: 8px;
    margin-inline: auto;
  }

  .timeline-year {
    font-size: 26px;
  }

  .history-eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .history-eyebrow span {
    text-align: center;
  }

  .mvv-cards {
    gap: 16px;
  }

  /* Show MVV collage centered on mobile, between title and cards.
     Keep the rotated 45deg diamond layout from desktop (per user request),
     just scale the whole collage to fit narrower viewports. */
  .mvv-images {
    display: flex;
    width: 100%;
    height: 320px;
    margin-left: 0;
    margin-right: 0;
    order: 2;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    /* Reserve enough vertical space for the scaled diamond (≈ 625 * 0.45) */
    min-height: 320px;
  }

  .mvv-cards {
    order: 3;
  }

  .mvv-collage {
    /* Preserve the original 801x625 layout with rotated tiles inside,
       just scale it down so the visible diamond fits the column. */
    transform: scale(0.45);
    transform-origin: center center;
  }

  /* Tiles keep their desktop rotate(45deg) + pixel positions — do NOT reset */

  .about-partners .partners-row {
    gap: 24px 32px;
  }

  .about-partners .partner-item img {
    max-height: 50px;
  }
}

@media (max-width: 400px) {
  .page-hero-title {
    font-size: 24px;
    white-space: normal;
  }

  .page-hero-eyebrow {
    --slant: 6px;
    width: 220px;
    height: 32px;
    padding: 4px 14px;
  }

  .page-hero-eyebrow-text {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .stats-decor {
    display: none;
  }
}
