/* ===== PALETTE — sao chép nguyên từ theme "sontay" của trang gốc ===== */
:root {
  --bg: #fff6ea;
  --bg-alt: #f7e9d2;
  --surface: #ffffff;
  --text: #20281f;
  --text-dim: #57624f;
  --divider: rgba(26, 51, 44, .16);
  --accent: #c99a4e;
  --accent-d: #a97f38;
  --accent2: #5f8377;
  --accent2-d: #4a6b60;
  --accent-soft: rgba(95, 131, 119, .14);
  --dark: #1a332c;
  --dark-text: #fff6ea;
  --gold-soft: #e7c893;
  --font-display: 'Lora', Georgia, serif;

  --sans: 'Inter', system-ui, sans-serif;
  --nav-h: 64px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 30px 64px -40px rgba(26, 51, 44, .55);
}

*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500
}

::selection {
  background: var(--accent2);
  color: #fff
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

section {
  padding: clamp(70px, 10vw, 128px) 0;
  position: relative
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .72
}

.kicker-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .01em;
  background: var(--accent);
  color: var(--bg);
  transition: transform .3s var(--ease), opacity .3s, background .3s
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-d)
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--divider);
  color: var(--text)
}

.btn.ghost:hover {
  background: transparent;
  border-color: var(--accent2)
}

.btn .arrow {
  transition: transform .3s
}

.btn:hover .arrow {
  transform: translateX(4px)
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  z-index: 200;
  width: 0
}

/* =================== NAV (giữ nguyên từ trang gốc) =================== */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider)
}

#mainNav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .02em
}

.brandmark .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent)
}

.switcher {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 999px;
  padding: 4px
}

.switcher a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: all .3s var(--ease)
}

.switcher a.is-active {
  background: var(--accent);
  color: var(--bg)
}

.subnav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  gap: 22px;
  padding: 12px clamp(20px, 5vw, 56px);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
  font-size: .78rem;
  overflow-x: auto;
  white-space: nowrap
}

.subnav a {
  opacity: .7;
  transition: opacity .2s
}

.subnav a:hover {
  opacity: 1;
  color: var(--accent2-d)
}

/* =================== HERO (giữ nguyên st-hero từ trang gốc) =================== */
.st-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + 46px)
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--dark)
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: kb 22s ease-in-out infinite alternate
}

@keyframes kb {
  from {
    transform: scale(1.02)
  }

  to {
    transform: scale(1.12) translateY(-2%)
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 38, 32, .30) 0%, rgba(20, 38, 32, .08) 34%, rgba(18, 32, 27, .85) 100%)
}

.glow-pulse {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 190, 128, .35), transparent 70%);
  filter: blur(30px);
  z-index: 1;
  animation: pulse 6s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: .9;
    transform: scale(1.15)
  }
}

.st-hero .hero-inner {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 100px 0 clamp(38px, 7vh, 80px);
  color: #fff6ea
}

.st-hero .eyebrow {
  color: #e3be80
}

.st-hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  margin: 14px 0 20px;
  color: #fff6ea
}

.st-hero h1 em {
  color: var(--gold-soft);
  font-style: italic
}

.st-hero .lead {
  max-width: 560px;
  color: rgba(255, 246, 234, .82);
  line-height: 1.7;
  font-size: 1.02rem;
  font-weight: 300
}

.st-hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.st-hero-cta .btn.ghost {
  color: #fff6ea;
  border-color: rgba(255, 246, 234, .42)
}

.st-hero-cta .btn.ghost:hover {
  border-color: #fff6ea
}

.st-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 246, 234, .16);
  border-top: 1px solid rgba(255, 246, 234, .16)
}

.st-facts>div {
  background: var(--dark);
  color: #fff6ea;
  padding: 26px clamp(18px, 3vw, 44px)
}

.st-facts b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 8px
}

.st-facts span {
  font-size: .82rem;
  color: rgba(255, 246, 234, .72)
}

/* =================== MARQUEE — An tâm · Kết nối · Gần gũi =================== */
.marquee {
  background: var(--dark);
  color: var(--dark-text);
  overflow: hidden;
  padding: 24px 0;
  white-space: nowrap;
  position: relative
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12vw;
  z-index: 2;
  pointer-events: none
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark), transparent)
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--dark), transparent)
}

.marquee .track {
  display: inline-flex;
  align-items: center;
  animation: sx 26s linear infinite
}

.marquee .w {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  padding: 0 32px;
  color: var(--gold-soft)
}

.marquee .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  flex-shrink: 0
}

@keyframes sx {
  to {
    transform: translateX(-50%)
  }
}

/* =================== SECTION HEAD =================== */
.section-head {
  margin-bottom: 52px
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.14
}

.section-head h2 em {
  font-style: italic;
  color: var(--accent2-d)
}

.section-head .lead {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.8
}

/* =================== MISSION =================== */
.mission {
  background: var(--bg-alt)
}

.mission .grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 74px);
  align-items: center
}

.mission .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: var(--text);
  position: relative;
  padding-left: 26px
}

.mission .quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--accent2);
  border-radius: 2px
}

.mission .quote em {
  color: var(--accent2-d)
}

.mission p.body {
  margin-top: 26px;
  color: var(--text-dim);
  line-height: 1.9;
  max-width: 52ch
}

.mission-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
  background: var(--dark)
}

.mission-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.mission-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 246, 234, .92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-soft);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 46px -24px rgba(26, 51, 44, .6)
}

.mission-badge b {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1
}

.mission-badge span {
  font-size: .82rem;
  color: var(--text-dim);
  line-height: 1.45
}

/* =================== STRENGTHS (Giá trị & thế mạnh) =================== */
.str-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px
}

.str {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 38px 32px;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
  position: relative;
  overflow: hidden
}

/*.str:nth-child(1),.str:nth-child(6){grid-column:span 3} */
.str:hover {
  transform: translateY(-6px);
  border-color: var(--accent2);
  box-shadow: var(--shadow)
}

.str .no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: .6;
  line-height: 1
}

.str .ic {
  width: 48px;
  height: 48px;
  margin: 16px 0 20px;
  color: var(--accent2-d)
}

.str .ic svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.str h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--accent);
}

.str p {
  margin-top: 13px;
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.7
}

/* =================== FAMILY / SPECIALTY (dark-band) =================== */
.family {
  background: var(--dark);
  color: var(--dark-text)
}

.family .eyebrow {
  color: var(--gold-soft);
  opacity: 1
}

.family .kicker-rule::before {
  background: var(--gold-soft)
}

.family h2 {
  color: #fff6ea;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.14
}

.family h2 em {
  font-style: italic;
  color: var(--gold-soft)
}

.family .lead {
  margin-top: 18px;
  color: rgba(255, 246, 234, .75);
  max-width: 60ch;
  line-height: 1.8
}

.journey {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative
}

.journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold-soft) 0 8px, transparent 8px 18px);
  opacity: .4
}

.stage {
  position: relative;
  text-align: center
}

.stage .orb {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #1a332c;
  border: 1px solid rgba(255, 246, 234, .2);
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  transition: transform .4s var(--ease), background .4s
}

.stage:hover .orb {
  transform: translateY(-6px);
  background: rgba(255, 246, 234, .12)
}

.stage .orb svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round
}

.stage h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: #fff6ea
}

.stage span {
  display: block;
  font-size: .82rem;
  color: rgba(255, 246, 234, .66);
  margin-top: 6px;
  padding: 0 6px;
  line-height: 1.55
}

.foundation {
  margin-top: 54px;
  border: 1px solid rgba(255, 246, 234, .16);
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px
}

.foundation .flabel {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-right: 8px
}

.foundation .fitem {
  font-size: .92rem;
  color: #fff6ea;
  display: inline-flex;
  align-items: center;
  gap: 9px
}

.foundation .fitem::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent2)
}

/* =================== NETWORK (Hợp tác) =================== */
.net .grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(38px, 5vw, 72px);
  align-items: center
}

.net-map {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 50%, var(--surface), var(--bg-alt));
  border: 1px solid var(--divider);
  display: grid;
  place-items: center;
  overflow: hidden
}

.net-map .core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--dark);
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  box-shadow: 0 20px 46px -20px rgba(26, 51, 44, .6);
  z-index: 2
}

.net-map .ring {
  position: absolute;
  border: 1px dashed var(--accent);
  border-radius: 50%;
  opacity: .5
}

.net-map .r1 {
  width: 52%;
  height: 52%;
  animation: spin 34s linear infinite
}

.net-map .r2 {
  width: 80%;
  height: 80%;
  animation: spin 54s linear infinite reverse
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.net-map .node {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .78rem;
  font-weight: 500;
  box-shadow: 0 12px 30px -18px rgba(26, 51, 44, .5);
  z-index: 3;
  white-space: nowrap
}

.net-map .n1 {
  top: 11%;
  left: 50%;
  transform: translateX(-50%)
}

.net-map .n2 {
  top: 52%;
  right: 3%
}

.net-map .n3 {
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%)
}

.net-map .n4 {
  top: 52%;
  left: 3%
}

.net-points {
  margin-top: 28px;
  display: grid
}

.net-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--divider)
}

.net-point:last-child {
  border-bottom: 1px solid var(--divider)
}

.net-point .pi {
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  flex-shrink: 0
}

.net-point b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 4px
}

.net-point p {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.65
}

/* =================== JOBS =================== */
.jobs {
  background: var(--bg-alt)
}

.job-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.job {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform .4s var(--ease), border-color .4s
}

.job:hover {
  transform: translateY(-5px);
  border-color: var(--accent2)
}

.job h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600
}

.job .tag {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent2-d);
  margin-top: 8px;
  font-weight: 600
}

.job a {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent-d)
}

.job a .arrow {
  transition: transform .3s
}

.job a:hover .arrow {
  transform: translateX(4px)
}

.jobs-note {
  margin-top: 34px;
  font-size: .9rem;
  color: var(--text-dim)
}

.jobs-note a {
  color: var(--accent-d);
  text-decoration: underline
}

/* =================== TIMELINE (Hoạt động) =================== */
.time-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.tstep {
  position: relative;
  padding-top: 34px
}

.tstep::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft)
}

.tstep:last-child .arrow {
  content: "";
  position: absolute;
  top: 1px;
  right: -13px;
  /* width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft); */

  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 13px solid var(--accent);
}

.tstep::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 13px;
  right: -24px;
  height: 1px;
  background: var(--divider)
}

.tstep:last-child::after {
  right: 0;
} 

.tstep .q {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent2-d);
  font-size: 1.15rem;
  font-weight: 600
}

.tstep p {
  margin-top: 8px;
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.7
}

/* =================== CONTACT =================== */
.contact {
  background: var(--dark);
  color: var(--dark-text)
}

.contact .eyebrow {
  color: var(--gold-soft);
  opacity: 1
}

.contact .kicker-rule::before {
  background: var(--gold-soft)
}

.contact h2 {
  color: #fff6ea;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.14
}

.contact h2 em {
  font-style: italic;
  color: var(--gold-soft)
}

.contact .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 5vw, 68px);
  margin-top: 40px;
  align-items: center
}

.ci {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 246, 234, .16);
  display: flex;
  gap: 18px;
  align-items: center
}

.ci .ic {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255, 246, 234, .1);
  display: grid;
  place-items: center;
  color: var(--gold-soft)
}

.ci .ic svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ci .k {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 246, 234, .6)
}

.ci .v {
  font-size: 1.05rem;
  margin-top: 2px;
  color: #fff6ea
}

.map {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 246, 234, .06);
  border: 1px solid rgba(255, 246, 234, .18);
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 246, 234, .85)
}

/* =================== FOOTER =================== */
footer {
  background: #132620;
  color: rgba(255, 246, 234, .6);
  padding: 60px 0 38px;
  font-size: .85rem
}

.foot-top {
  display: flex;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 246, 234, .12)
}

.foot-brand .bm {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff6ea
}

.foot-brand .bm .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent)
}

.foot-desc {
  margin-top: 14px;
  max-width: 34ch;
  line-height: 1.7
}

.foot-links {
  display: flex;
  gap: 54px;
  flex-wrap: wrap
}

.foot-links h6 {
  color: #fff6ea;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600
}

.foot-links a {
  display: block;
  padding: 5px 0;
  transition: color .3s
}

.foot-links a:hover {
  color: var(--gold-soft)
}

.foot-bot {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .76rem
}

.foot-bot .vals {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft)
}

/* =================== REVEAL =================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal.in-view {
  opacity: 1;
  transform: none
}

.reveal.d1 {
  transition-delay: .09s
}

.reveal.d2 {
  transition-delay: .18s
}

.reveal.d3 {
  transition-delay: .27s
}

.reveal.d4 {
  transition-delay: .36s
}

/* =================== RESPONSIVE =================== */
@media(max-width:1024px) {
  .str-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .str,
  .str:nth-child(1),
  .str:nth-child(6) {
    grid-column: span 1
  }

  .journey {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 18px
  }

  .journey::before {
    display: none
  }

  .job-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:860px) {
  .st-facts {
    grid-template-columns: 1fr 1fr
  }

  .mission .grid,
  .net .grid,
  .contact .grid {
    grid-template-columns: 1fr;
    gap: 38px
  }

  .journey {
    grid-template-columns: repeat(2, 1fr)
  }

  .time-grid {
    grid-template-columns: 1fr
  }

  .tstep::after {
    display: none
  }

  .brandmark {
    font-size: 1rem
  }
}

@media(max-width:640px) {
  .switcher a {
    padding: 7px 11px;
    font-size: .74rem
  }

  .subnav {
    gap: 14px;
    font-size: .72rem
  }

  .journey {
    grid-template-columns: 1fr
  }

  .str-grid {
    grid-template-columns: 1fr
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }

  html {
    scroll-behavior: auto
  }
}



/* marquee ribbon */
.ribbon{background:var(--espresso);color:var(--paper);overflow:hidden;padding:20px 0;white-space:nowrap}
.ribbon .track{display:inline-flex;gap:60px;animation:scrollX 32s linear infinite;font-family:var(--serif);font-size:clamp(1.4rem,2.6vw,2.2rem);font-style:italic}
.ribbon .track span{opacity:.9}
.ribbon .track .dot{color:var(--gold);font-style:normal}
@keyframes scrollX{to{transform:translateX(-50%)}}