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

:root {
  --navy: #122039;
  --navy-2: #1C2B48;
  --gold: #F5D35D;
  --red: #E52933;
  --crimson: #8C232F;
  --sky: #BDD9E8;
  --white: #FFFFFF;
  --off-white: #e5e4e0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── MAX WIDTH CONSTRAINT ────────────────────────────── */

.nav-inner,
.footer-inner,
.hero-content,
.province-banner-inner,
.global-gateway-banner-inner,
.final-cta-content,
.endorsements {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── NAV ─────────────────────────────────────────────── */

nav {
  z-index: 100;
  background: var(--navy);
  position: relative;
}

.nav-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 48px 48px 0 48px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand .on {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 4px;
  color: var(--gold);
}

.brand .bc { color: var(--gold); }

.maple { font-size: 14px; color: var(--gold); margin-left: 6px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ── Language switcher span ── */
.nav-links span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75); /* pipe character inherits this */
}

/* Both lang links default to the same colour as nav links */
#nav-links span a[data-lang] {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

/* Hover on inactive lang — same as other nav links */
#nav-links span a[data-lang]:hover {
  color: var(--white);
}

/* Active lang → gold, no click, no underline animation */
#nav-links span a[data-lang].lang-active {
  color: var(--gold);
  pointer-events: none;
  cursor: default;
}

/* Suppress the underline slide-in on lang links */
#nav-links span a[data-lang]::after { display: none; }

/* ── All other nav links ── */
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-links .cta-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.nav-links .cta-btn:hover {
  background: #fde073;
  color: var(--navy);
}

/* ─── HAMBURGER BUTTON ────────────────────────────────── */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

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

/* ─── HERO ────────────────────────────────────────────── */

.hero {
  background: var(--navy);
  padding: 0 48px;
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: stretch;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  opacity: 0.07;
  pointer-events: none;
}

.hero-grid-bg > div { border: 1px solid var(--gold); }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 0 36px;
}

.hero-eyebrow {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: 34px;
  line-height: 1.2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(420px, 40%);
  grid-template-areas:
    "copy  media"
    "ctas  media";
  align-items: stretch;
  min-height: 520px;
}

.hero-copy  { grid-area: copy; }
.hero-media { grid-area: media; }

.hero-ctas {
  grid-area: ctas;
  align-self: end;
  padding-bottom: 8px;
  margin-top: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  padding: 8px 80px 25px 0;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 900;
  line-height: 0.98;
  color: var(--white);
  letter-spacing: -2px;
}

.h1-payoff {
  color: var(--gold);
  display: block;
}

.hero-media {
  position: relative;
  min-height: 520px;
  width: 100%;
  align-self: stretch;
  background-image: linear-gradient(0deg, rgba(0,0,0,0.08), rgba(0,0,0,0.08)), url('./image/hero-img.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-left: 1px solid rgba(255,255,255,0.05);
}

.hero-card {
  position: absolute;
  left: -100px;
  right: 32px;
  bottom: 32px;
  background: var(--red);
  padding: 30px 28px 26px;
  max-width: 700px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.hero-lede {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.48;
  color: var(--white);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 24px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-primary:hover { background: #fde073; }

.btn-ghost {
  color: rgba(255,255,255,0.92);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  gap: 8px;
  padding: 0 6px;
  transition: color 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '↓'; }

/* ─── PILLARS ─────────────────────────────────────────── */

.pillars { background: var(--navy); }

.pillars-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "p1 p2 p3"
    "stats stats stats";
  gap: 0;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.pillar-1 { grid-area: p1; }
.pillar-2 { grid-area: p2; }
.pillar-3 { grid-area: p3; }

.pillars-inner .perf-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: clamp(480px, 38vw, 540px);
  transition: filter 0.2s;
  transform: translateZ(0);
}

.pillar-1 { background: var(--red); }
.pillar-2 { background: var(--sky);  margin-left: -1px; }
.pillar-3 { background: var(--gold); margin-left: -1px; }

.pillar-1, .pillar-2, .pillar-3 { transition: background 0.35s ease; }

.pillar-media {
  width: 100%;
  height: clamp(180px, 18vw, 260px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
}

.pillar-media--bottom {
  height: clamp(180px, 18vw, 260px);
  flex-shrink: 0;
  margin-top: auto;
}

.pillar-img-a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pillar-wave-deco {
  position: absolute;
  width: 60px;
  height: auto;
  bottom: -2px;
  right: 14px;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pillar-wave-deco--corner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  width: 70px;
}

.pillar-text {
  padding: 24px 28px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pillar-text--top {
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 68px;
}

.pillar-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 10px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  align-self: flex-start;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.pillar-1 .pillar-tag { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.3); }
.pillar-2 .pillar-tag { color: var(--navy);            border-color: rgba(18,32,57,0.35); }
.pillar-3 .pillar-tag { color: var(--navy);            border-color: rgba(18,32,57,0.35); }

.pillar-headline-setup {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.35s ease;
}

.pillar-1 .pillar-headline-setup { color: rgba(255,255,255,0.82); }
.pillar-2 .pillar-headline-setup { color: var(--navy); }
.pillar-3 .pillar-headline-setup { color: var(--navy); }

.pillar-headline-payoff {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.5px;
  transition: color 0.35s ease;
}

.pillar-1 .pillar-headline-payoff { color: var(--gold); }
.pillar-2 .pillar-headline-payoff { color: var(--crimson); }
.pillar-3 .pillar-headline-payoff { color: var(--crimson); }

.pillar-body {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 14px;
}

.pillar-1 .pillar-body { color: rgba(255,255,255,0.78); }
.pillar-2 .pillar-body { color: rgba(18,32,57,0.75); }
.pillar-3 .pillar-body { color: rgba(18,32,57,0.78); }

.pillar-wave-badge { height: auto; display: block; margin-top: 50px; }
.pillar-wave-badge img { width: 100%; height: auto; display: block; }

/* ─── PERFORMANCE STATS ───────────────────────────────── */

.perf-stats {
  background: var(--sky);
  padding: 48px;
  border-top: 1px solid rgba(18,32,57,0.1);
  border-bottom: 1px solid rgba(18,32,57,0.1);
}

.perf-stat {
  padding: 0 32px;
  border-right: 1px solid rgba(18,32,57,0.15);
}

.perf-stat:first-child { padding-left: 0; }
.perf-stat:last-child  { border-right: none; }

.perf-stat-num {
  font-size: 60px;
  font-weight: 900;
  color: var(--crimson);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.perf-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-2);
  line-height: 1.5;
}

/* ─── STATS ───────────────────────────────────────────── */

.stats {
  background: var(--navy-2);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--sky), var(--gold));
}

.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }

.stat-number {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

/* ─── PROVINCE BANNER ─────────────────────────────────── */

.province-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 56px 48px;
}

.province-banner-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  opacity: 0.07;
  pointer-events: none;
}

.province-banner-grid > div { border: 1px solid var(--gold); }

.province-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 60%) minmax(0, 40%);
  grid-template-areas: "visual copy";
  gap: 48px;
  align-items: start;
  min-height: 430px;
}

.province-banner-visual { grid-area: visual; }
.province-banner-copy   { grid-area: copy; }

.province-banner-visual {
  position: relative;
  min-height: 320px;
}

.province-banner-image-large,
.province-banner-image-small {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.province-banner-image-large {
  left: 0;
  top: 12px;
  width: 76%;
  height: 120%;
  background-image: url('./image/province-img-b.jpg');
  z-index: 1;
}

.province-banner-image-small {
  right: 0;
  top: 92px;
  width: 30%;
  height: 90%;
  background-image: url('./image/province-img-s.jpg');
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.14);
}

.province-banner-copy { max-width: 760px; }

.province-banner-title {
  font-size: clamp(30px, 3.8vw, 55px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0;
  max-width: 11.5ch;
}

.province-banner-title-primary {
  display: block;
  color: var(--white);
}

.province-banner-title-accent {
  display: block;
  color: var(--red);
  margin-top: 6px;
}

.province-map img {
  width: 100%;
  max-width: 540px;
}

/* ─── ENDORSEMENTS ────────────────────────────────────── */

.endorsements {
  background: var(--off-white);
  padding: 80px 48px;
}

.section-header { margin-bottom: 52px; }

.section-header-setup {
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.section-header-payoff {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.quote-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.quote-card.pos-1  { background: var(--navy); }
.quote-card.pos-2  { background: var(--sky); }
.quote-card.pos-3  { background: var(--navy); }
.quote-card.perf-1 { background: var(--sky); }
.quote-card.perf-2 { background: var(--navy); }
.quote-card.prac-1 { background: var(--sky); }

.quote-body {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  font-style: italic;
  flex-grow: 1;
}

.quote-card.pos-1 .quote-body,
.quote-card.pos-3 .quote-body,
.quote-card.perf-2 .quote-body { color: rgba(255,255,255,0.82); }

.quote-card.pos-2 .quote-body,
.quote-card.perf-1 .quote-body,
.quote-card.prac-1 .quote-body { color: rgba(18,32,57,0.75); }

.quote-attr { margin-top: 24px; }

.attr-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: block;
}

.attr-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 2px;
}

.quote-card.pos-1 .attr-name,.quote-card.pos-1 .attr-title,
.quote-card.pos-3 .attr-name,
.quote-card.perf-2 .attr-name,
.quote-card.pos-3 .attr-title,
.quote-card.perf-2 .attr-title { color: var(--gold)!important; }

.quote-card.pos-1 .attr-title,
.quote-card.pos-3 .attr-title,
.quote-card.perf-2 .attr-title { color: rgba(255,255,255,0.55); }

.quote-card.pos-2 .attr-name,.quote-card.pos-2 .attr-title,
.quote-card.perf-1 .attr-name,
.quote-card.prac-1 .attr-name,.quote-card.prac-1 .attr-title,
.quote-card.perf-1 .attr-title { color: var(--navy)!important; }

.quote-card.pos-2 .attr-title,
.quote-card.perf-1 .attr-title,
.quote-card.prac-1 .attr-title { color: rgba(18,32,57,0.5); }

/* ─── GLOBAL GATEWAY BANNER ───────────────────────────── */

.global-gateway-banner {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: 56px 48px;
}

.global-gateway-banner-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  opacity: 0.07;
  pointer-events: none;
}

.global-gateway-banner-grid > div { border: 1px solid var(--gold); }

.global-gateway-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 40%) minmax(0, 60%);
  gap: 48px;
  align-items: start;
  min-height: 430px;
}

.global-gateway-banner-visual {
  position: relative;
  min-height: 320px;
}

.global-gateway-banner-image-large,
.global-gateway-banner-image-small {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.global-gateway-banner-image-large {
  right: 0;
  top: 56px;
  width: 76%;
  height: 120%;
  background-image: url('./image/global-gateway-img-b.jpg');
  z-index: 1;
}

.global-gateway-banner-image-small {
  left: 0;
  top: 12px;
  width: 30%;
  height: 58%;
  background-image: url('./image/global-gateway-img-s.jpg');
  z-index: 2;
}

.global-gateway-banner-copy { max-width: 760px; }

.global-gateway-banner-title {
  font-size: clamp(30px, 3.8vw, 55px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0;
  max-width: 11.5ch;
}

.global-gateway-banner-title-primary { color: var(--navy-2); }
.global-gateway-banner-title-accent  { color: var(--gold); }

/* ─── FINAL CTA ───────────────────────────────────────── */

.final-cta {
  background: var(--navy);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  opacity: 0.05;
  pointer-events: none;
}

.final-cta-grid > div { border: 1px solid var(--gold); }

.closing-setup {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.3px;
  position: relative;
  z-index: 2;
}

.closing-payoff {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.sub-copy {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 32px auto 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-gold:hover { background: #fde073; }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ─── FOOTER ──────────────────────────────────────────── */

footer {
  background: var(--navy-2);
  border-top: 4px solid var(--gold);
}

.footer-inner { padding: 56px 48px 32px; }

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand { flex-shrink: 0; }

.footer-col--contact { margin: 0 auto; }
.footer-col--contact .contact-list { align-items: flex-start; }

.contact-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
}

.contact-list li + li::before {
  content: '|';
  margin: 0 12px;
  color: rgba(255,255,255,0.25);
}

.footer-brand .brand { font-size: 20px; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright,
.location-tag {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.location-tag {
  letter-spacing: 0.1em;
  font-style: italic;
}

/* ─── MISC HELPERS ────────────────────────────────────── */

.hero-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-card {
  position: relative;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 2px;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: var(--red);
  padding: 24px;
  max-width: 560px;
}

.hero-lede-overlay {
  margin-top: 0;
  max-width: none;
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.6;
}

.hero-ctas-overlay { margin-top: 20px; }

.btn-ghost-light { color: rgba(255,255,255,0.85); }
.btn-ghost-light:hover { color: var(--white); }
.btn-ghost-light::after { content: '↓'; }

/* ─── ANIMATIONS ──────────────────────────────────────── */

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

.reveal   { animation: fadeUp 0.5s ease both; }
.reveal-1 { animation-delay: 0.05s; }

/* ════════════════════════════════════════════════════════
   ANIMATION STYLES  (driven by animations.js)
   ════════════════════════════════════════════════════════ */

nav { transition: box-shadow 0.3s ease; }

.sr {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.7s ease var(--sr-delay, 0ms),
    transform 0.7s ease var(--sr-delay, 0ms);
  will-change: opacity, transform;
}

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

/* ─── NAV LINK UNDERLINE ──────────────────────────────── */

.nav-links a:not(.cta-btn) {
  position: relative;
}

.nav-links a:not(.cta-btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:not(.cta-btn):hover::after { width: 100%; }

/* Lang links: underline only on inactive (hoverable) link, not on active */
#nav-links span a[data-lang].lang-active::after { display: none !important; }

/* ══════════════════════════════════════════════════════
   HOVER EFFECTS — mouse/trackpad only
   ══════════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {

  .pillars { isolation: isolate; }
  .pillar { position: relative; z-index: 0; }
  .pillar:hover { z-index: 10; background: var(--navy) !important; }
  .pillar:hover .pillar-media { height: 0; opacity: 0; }
  .pillar:hover .pillar-wave-deco { opacity: 0; }
  .pillar:hover .pillar-tag             { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.25); }
  .pillar:hover .pillar-headline-setup  { color: rgba(255,255,255,0.75); }
  .pillar:hover .pillar-headline-payoff { color: var(--gold); }

  .pillar-body {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition:
      opacity    0.4s ease 0.08s,
      max-height 0.5s ease,
      margin-top 0.35s ease;
  }

  .pillar:hover .pillar-body {
    opacity: 1;
    max-height: 400px;
    margin-top: 14px;
    color: rgba(255,255,255,0.72);
  }

  .btn--shine { position: relative; overflow: hidden; }

  .btn--shine::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -120%;
    width: 55%;
    background: linear-gradient(
      105deg,
      transparent 20%,
      rgba(255,255,255,0.38) 50%,
      transparent 80%
    );
    transform: skewX(-18deg);
    pointer-events: none;
  }

  .btn--shine.btn--shine-active::after {
    animation: shineSwipe 0.45s ease forwards;
  }

  .quotes-grid { isolation: isolate; }

  .quote-card--lift {
    position: relative;
    z-index: 0;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.25s ease,
                z-index 0s;
    cursor: default;
  }

  .quote-card--lift:hover { z-index: 10; }

  .quote-card.pos-1.quote-card--lift:hover,
  .quote-card.pos-3.quote-card--lift:hover,
  .quote-card.perf-2.quote-card--lift:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  }

  .quote-card.pos-2.quote-card--lift:hover,
  .quote-card.perf-1.quote-card--lift:hover,
  .quote-card.prac-1.quote-card--lift:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 16px 36px rgba(18,32,57,0.15);
  }
}

@keyframes shineSwipe {
  from { left: -120%; }
  to   { left:  130%; }
}

/* ─── ≤ 1180px ───────────────────────────────────────── */

@media (max-width: 1180px) {
  .hero { min-height: auto; padding: 0 32px; }

  .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
  }

  .hero-copy  { order: 1; padding: 0; }
  .hero-media { order: 2; min-height: 420px; border-left: none; }

  .hero-ctas {
    order: 3;
    grid-area: unset;
    align-self: auto;
    padding: 28px 0 8px;
    margin-top: 0;
  }

  .hero h1 {
    max-width: 10.8ch;
    font-size: clamp(54px, 10vw, 92px);
  }

  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 100%;
  }
}

/* ─── ≤ 1024px ───────────────────────────────────────── */

@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    z-index: 200;
    box-shadow: 0 30px 10px var(--navy);
  }

  nav.nav-open .nav-links { display: flex; }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
  }

  .nav-links .cta-btn {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    border-bottom: none;
  }

  .pillars-inner { display: flex; flex-direction: column; }

  .pillar { height: auto; min-height: 480px; }

  .pillars-inner .perf-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    order: 0;
  }

  .hero-lower-grid,
  .quotes-grid,
  .stats,
  .footer-top { grid-template-columns: 1fr; }

  .stat-item, .perf-stat {
    border-right: none;
    padding: 0;
    margin-bottom: 24px;
  }

  .province-banner,
  .global-gateway-banner { overflow: visible; padding: 48px 32px; }

  .province-banner-inner,
  .global-gateway-banner-inner {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 32px;
    grid-template-areas: none;
  }

  .province-banner-visual,
  .province-banner-copy,
  .global-gateway-banner-visual,
  .global-gateway-banner-copy { grid-area: unset; order: unset; }

  .province-banner-visual {
    width: 100%;
    height: 320px;
    flex-shrink: 0;
    background-image: url('./image/province-img-b.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  }

  .global-gateway-banner-visual {
    width: 100%;
    height: 320px;
    flex-shrink: 0;
    background-image: url('./image/global-gateway-img-b.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  }

  .province-banner-image-large,
  .province-banner-image-small,
  .global-gateway-banner-image-large,
  .global-gateway-banner-image-small { display: none; }

  .province-banner-title,
  .global-gateway-banner-title { max-width: none; }
}

/* ─── ≤ 900px ────────────────────────────────────────── */

@media (max-width: 900px) {
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }

  .pillars-inner .perf-stats { grid-template-columns: 1fr; }

  .pillar-collage { min-height: auto; grid-template-rows: 130px auto; }
  .pillar-img { height: 130px; }
  .pillar-wave-badge { right: 14px; bottom: -14px; }
  .pillar-bottom { padding: 22px 18px 20px; }
  .pillar-collage .pillar-headline-payoff { font-size: 40px; }
  .pillar-mark { position: static; margin-top: 18px; align-self: flex-end; }
}

/* ─── ≤ 768px ────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-inner { padding: 24px 24px 0 24px; }

  .hero { display: block; min-height: 0; overflow: hidden; padding: 0; }
  .hero-content { display: block; padding: 0; }
  .hero-layout { display: block; }

  .hero-copy { position: static; padding: 24px 24px 20px; order: unset; }

  .hero-eyebrow { font-size: 11px; letter-spacing: 0.1em; margin-bottom: 14px; line-height: 1.5; }

  .hero h1 { font-size: clamp(36px, 10vw, 54px); letter-spacing: -1px; max-width: 100%; line-height: 1.0; }

  .hero-media { display: block; position: static; min-height: 0; background-image: none; border-left: none; order: unset; }

  .hero-media::before {
    content: '';
    display: block;
    width: 100%;
    height: 220px;
    background-image: linear-gradient(0deg, rgba(0,0,0,0.08), rgba(0,0,0,0.08)), url('./image/hero-img.jpg');
    background-size: cover;
    background-position: center;
  }

  .hero-card { position: static; left: auto; right: auto; bottom: auto; width: 100%; max-width: 100%; padding: 20px 24px 20px; box-shadow: none; }
  .hero-lede { font-size: 15px; line-height: 1.55; }

  .hero-ctas { display: flex; flex-direction: column; gap: 10px; padding: 20px 24px 32px; order: unset; grid-area: unset; align-self: auto; margin-top: 0; }

  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .btn-ghost { padding: 14px 0; }

  .pillars-inner { flex-direction: column; }
  .pillar { min-height: auto; }
  .pillar-media { height: 180px; }
  .pillar-media--bottom { height: 180px; }
  .pillar-text { padding: 20px 20px 48px; }
  .pillar-headline-payoff { font-size: clamp(26px, 7vw, 38px); }
  .pillar-body { margin-top: 12px; }

  .pillars-inner .perf-stats { grid-template-columns: 1fr; padding: 32px 24px; }

  .perf-stat { border-right: none; padding: 0; padding-bottom: 24px; margin-bottom: 0; }
  .perf-stat:last-child { border-bottom: none; padding-bottom: 0; }

  .stats { padding-left: 24px; padding-right: 24px; grid-template-columns: 1fr; }

  .stat-item { border-right: none; padding: 0; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 0; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }

  .endorsements { padding: 56px 24px; }
  .quotes-grid { grid-template-columns: 1fr; }

  .province-banner, .global-gateway-banner { padding: 40px 24px; }
  .province-banner-visual, .global-gateway-banner-visual { height: 240px; }

  .hero-overlay { left: 16px; right: 16px; bottom: 16px; padding: 18px; }
  .hero-lede-overlay { font-size: 15px; }
  .hero-ctas-overlay { flex-direction: column; align-items: flex-start; }

  .final-cta { padding: 72px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; text-align: center; }

  .footer-inner { padding: 48px 24px 28px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .contact-list { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-col--contact { margin: 0; }
  .contact-list li + li::before { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media screen and (max-width: 1300px) {
  .pillar-wave-deco--corner { display: none; }
}