:root {
  --ink: #0E1B15;
  --text: #26342D;
  --muted: #5A665F;
  --faint: #879189;
  --line: #E2E5DD;
  --line-2: #D3D8CE;
  --paper: #FFFFFF;
  --ground: #F5F6F1;
  --ground-2: #ECEEE7;
  --green: #2F7233;
  --green-deep: #1E4B22;
  --leaf: #8FCB88;
  --mint: #E4EFDF;
  --forest: #0B1410;
  --forest-2: #13211A;
  --hay: #E3C27A;
  --danger: #A8261D;

  --f-display: "Alexandria", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --f-text: "IBM Plex Sans Arabic", system-ui, "Segoe UI", Tahoma, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, Consolas, monospace;

  --shell: 1240px;
  --gutter: clamp(18px, 4vw, 40px);
  --pad: max(var(--gutter), calc((100vw - var(--shell)) / 2));
  --head-h: 68px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --t1: .2s;
  --t2: .4s;
  --t3: .7s;
  --start: 100%;
  color-scheme: light;
}
[dir="ltr"] { --start: 0%; }
[lang="en"] {
  --f-display: "Alexandria", "IBM Plex Sans", system-ui, sans-serif;
  --f-text: "IBM Plex Sans", system-ui, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--head-h) + 16px); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--f-text);
  font-size: 16.5px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
[lang="en"] body { line-height: 1.7; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--f-display); color: var(--ink); font-weight: 600; margin: 0; text-wrap: balance; }
p, ul, ol, dl, dd, figure { margin: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }
main:focus { outline: none; }

.shell { width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto; }

.skip {
  position: absolute; inset-inline-start: 12px; top: -64px; z-index: 100;
  background: var(--ink); color: #fff; padding: 8px 16px; border-radius: 8px; text-decoration: none;
  transition: top var(--t1) var(--ease);
}
.skip:focus { top: 12px; }

.eyebrow { font-size: 13.5px; font-weight: 600; color: var(--green); }
[lang="en"] .eyebrow { letter-spacing: .02em; }

.i-arrow { display: block; width: 18px; height: 18px; }
[dir="ltr"] .i-arrow { transform: scaleX(-1); }

/* buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 12px 24px;
  font-size: 15px; font-weight: 500; line-height: 1.4; text-decoration: none; cursor: pointer;
  transition: background-color var(--t2) var(--ease), background-size .5s var(--ease), color var(--t2) var(--ease), box-shadow var(--t2) var(--ease), transform var(--t1) var(--ease);
}
.btn .arr { display: inline-block; transition: transform var(--t2) var(--ease); }
.btn:hover .arr { transform: translateX(-5px); }
[dir="ltr"] .btn:hover .arr { transform: translateX(5px); }
.btn:active { transform: scale(.97); }
.btn-green { background-color: var(--green); color: #fff; }
.btn-green:hover { background-color: var(--green-deep); box-shadow: 0 12px 26px -14px rgba(30, 75, 34, .7); }
.btn-ghost, .btn-line {
  color: var(--ink);
  background: linear-gradient(var(--ink), var(--ink)) no-repeat var(--start) 0 / 0% 100%;
}
.btn-ghost { box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-line { box-shadow: inset 0 0 0 1px var(--ink); padding: 8px 18px; font-size: 14px; }
@media (hover: hover) { .btn-ghost:hover, .btn-line:hover { background-size: 100% 100%; color: #fff; box-shadow: inset 0 0 0 1px var(--ink); } }

.stepper {
  display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px;
  background: var(--paper); box-shadow: inset 0 0 0 1px var(--line-2), 0 8px 20px -16px rgba(8, 30, 18, .35);
}
.stepper button {
  display: grid; place-items: center; width: 42px; height: 42px; padding: 0;
  border: 0; border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer;
  transition: background-color var(--t2) var(--ease), color var(--t2) var(--ease), transform var(--t1) var(--ease);
}
@media (hover: hover) { .stepper button:hover:not(:disabled) { background-color: var(--ink); color: #fff; } }
.stepper button:active:not(:disabled) { transform: scale(.92); }
.stepper button:disabled { color: var(--line-2); cursor: default; }

/* ticker */
.ticker { background: var(--forest); color: #E4EBE3; font-size: 13.5px; }
.ticker .shell { display: flex; align-items: center; gap: 16px; height: 42px; }
.ticker-new { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--hay); white-space: nowrap; }
.ticker-new::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--hay); animation: pulse 2.6s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(227, 194, 122, .55); } 70%, 100% { box-shadow: 0 0 0 8px rgba(227, 194, 122, 0); } }
.ticker-track { position: relative; flex: 1; min-width: 0; height: 100%; overflow: hidden; }
.ticker-story {
  position: absolute; inset: 0; display: flex; align-items: center; gap: 12px;
  text-decoration: none; white-space: nowrap;
  opacity: 0; transform: translateY(100%); pointer-events: none;
  transition: transform .7s var(--ease), opacity .7s var(--ease);
}
.ticker-story.on { opacity: 1; transform: none; pointer-events: auto; }
.ticker-story.out { opacity: 0; transform: translateY(-100%); }
.ticker-story .t { overflow: hidden; text-overflow: ellipsis; }
.ticker-story .go { display: inline-flex; align-items: center; gap: 6px; color: var(--leaf); flex: none; }
.ticker-story .go .i-arrow { width: 14px; height: 14px; }
.ticker-story:hover .t { text-decoration: underline; text-underline-offset: 4px; }
.lang { color: #B9C4BC; text-decoration: none; white-space: nowrap; padding-inline-start: 16px; border-inline-start: 1px solid rgba(255, 255, 255, .14); }
.lang:hover { color: #fff; }

/* header */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform .45s var(--ease), border-color var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.site-head.scrolled { border-color: var(--line); box-shadow: 0 12px 32px -26px rgba(8, 30, 18, .4); }
.site-head.away { transform: translateY(-100%); }
.read-progress {
  position: absolute; inset-inline: 0; bottom: -1px; height: 2px; background: var(--green);
  transform: scaleX(var(--p, 0)); transform-origin: var(--start) 50%;
}
.head-in { display: flex; align-items: center; gap: 24px; height: var(--head-h); }
.brand img { height: 28px; width: auto; }
.main-nav { flex: 1; display: flex; justify-content: center; gap: 2px; }
.main-nav a {
  position: relative; padding: 8px 13px; font-size: 14.5px; color: var(--muted); text-decoration: none;
  transition: color var(--t1) var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a::after {
  content: ""; position: absolute; inset-inline: 13px; bottom: 3px; height: 1.5px; background: var(--green);
  transform: scaleX(0); transform-origin: var(--start) 50%; transition: transform var(--t2) var(--ease);
}
.main-nav a[aria-current="true"] { color: var(--ink); }
.main-nav a[aria-current="true"]::after, .main-nav a:hover::after { transform: scaleX(1); }
.menu-btn { display: none; }
.mobile-nav { border-top: 1px solid var(--line); background: var(--paper); }
.mobile-nav .shell { display: grid; padding-block: 8px 20px; }
.mobile-nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 17px; color: var(--ink); }
.mobile-nav .btn { justify-self: start; margin-top: 18px; }
.mobile-nav:not([hidden]) a { animation: rise .5s var(--ease) backwards; }
.mobile-nav:not([hidden]) a:nth-child(2) { animation-delay: .04s; }
.mobile-nav:not([hidden]) a:nth-child(3) { animation-delay: .08s; }
.mobile-nav:not([hidden]) a:nth-child(4) { animation-delay: .12s; }
.mobile-nav:not([hidden]) a:nth-child(5) { animation-delay: .16s; }
.mobile-nav:not([hidden]) a:nth-child(n + 6) { animation-delay: .2s; }

/* hero */
.hero { padding-block: clamp(40px, 6vw, 76px) clamp(72px, 8vw, 104px); }
.hero .shell { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.24; margin-block: 14px 18px; letter-spacing: -.005em; }
[lang="en"] .hero h1 { font-size: clamp(30px, 3.5vw, 46px); line-height: 1.15; letter-spacing: -.02em; }
.lede { font-size: clamp(16.5px, 1.35vw, 18px); color: var(--muted); max-width: 34em; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 44px; border-top: 1px solid var(--line); }
.stats > div { padding: 18px 16px 0; }
.stats > div:first-child { padding-inline-start: 0; }
.stats > div + div { border-inline-start: 1px solid var(--line); }
.stats dt { font-family: var(--f-display); font-weight: 600; font-size: clamp(19px, 1.9vw, 25px); color: var(--ink); line-height: 1.4; white-space: nowrap; }
[lang="en"] .stats dt { font-size: clamp(17px, 1.6vw, 21px); }
.stats dd { margin-top: 4px; font-size: 13px; color: var(--muted); line-height: 1.6; }

.hero-media { position: relative; padding-bottom: 44px; }
.hero-photo { position: relative; height: clamp(320px, 34vw, 440px); border-radius: 18px; overflow: hidden; background: var(--ground-2); }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-photo img.on { opacity: 1; }
.slide-card {
  position: absolute; top: 14px; inset-inline-start: 14px; max-width: min(300px, calc(100% - 100px));
  display: grid; gap: 2px; padding: 12px 14px; border-radius: 12px;
  background: rgba(255, 255, 255, .94); color: var(--ink);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: opacity var(--t2) var(--ease), transform var(--t2) var(--ease);
}
.slide-card.swap { opacity: 0; transform: translateY(-6px); }
.slide-card small { font-size: 12px; font-weight: 600; color: var(--green); }
.slide-card b { font-family: var(--f-display); font-weight: 600; font-size: 16px; line-height: 1.45; }
.slide-card span { font-size: 13px; line-height: 1.65; color: var(--muted); }
.hero-dots { position: absolute; top: 20px; inset-inline-end: 16px; display: flex; gap: 6px; }
.hero-dots button {
  width: 18px; height: 16px; padding: 0; border: 0; cursor: pointer; background: none; position: relative;
  transition: width var(--t2) var(--ease);
}
.hero-dots button::before { content: ""; position: absolute; inset-inline: 0; top: 6px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, .55); transition: background var(--t2); }
.hero-dots button[aria-current="true"] { width: 30px; }
.hero-dots button[aria-current="true"]::before { background: #fff; }

.latest-card {
  position: absolute; inset-inline: 18px; bottom: 0;
  display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; align-items: center;
  padding: 12px; border-radius: 14px; background: var(--paper); text-decoration: none;
  box-shadow: 0 20px 44px -20px rgba(8, 30, 18, .38), 0 0 0 1px rgba(14, 27, 21, .04);
  transition: transform var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.latest-card:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -22px rgba(8, 30, 18, .42), 0 0 0 1px rgba(14, 27, 21, .05); }
.latest-card .cover { width: 96px; aspect-ratio: 3 / 2; border-radius: 9px; }
.latest-card small { display: block; font-size: 12.5px; font-weight: 600; color: var(--green); }
.latest-card small em { font-style: normal; font-weight: 500; color: var(--muted); margin-inline-start: 8px; padding-inline-start: 8px; border-inline-start: 1px solid var(--line-2); }
.latest-card b { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 500; font-size: 14.5px; line-height: 1.6; color: var(--ink); }

/* sections */
.band { padding-block: clamp(64px, 8vw, 112px); }
.tint { background: var(--ground); }
.sec-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 20px 56px; align-items: end; margin-bottom: clamp(28px, 4vw, 52px); }
.sec-head h2, .about h2, .presence h2, .contact h2, .why h2 { font-size: clamp(26px, 3.1vw, 40px); line-height: 1.32; margin-top: 10px; }
[lang="en"] :is(.sec-head, .about, .presence, .contact, .why) h2 { line-height: 1.2; letter-spacing: -.015em; }
.sec-sub { margin-top: 10px; font-size: 17px; font-weight: 500; color: var(--text); max-width: 34em; }
.sec-side { display: grid; gap: 18px; justify-items: start; }
.sec-note { color: var(--muted); font-size: 16px; max-width: 30em; }

/* story covers */
.cover { position: relative; overflow: hidden; background: var(--ground-2); }
.cover > img { width: 100%; height: 100%; object-fit: cover; }
.cover-card {
  container-type: inline-size;
  display: flex; flex-direction: column; justify-content: space-between; gap: 8px;
  padding: 6%; color: #fff; isolation: isolate;
}
.cover-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: repeating-linear-gradient(-58deg, rgba(143, 203, 136, .11) 0 1px, transparent 1px 13px);
}
.cover-card.tone-green { background-color: var(--green-deep); }
.cover-card.tone-ink { background-color: var(--forest-2); }
.cc-k { font-size: max(11px, 3.4cqi); font-weight: 600; color: var(--leaf); }
.cc-f { font-family: var(--f-display); font-weight: 600; font-size: 19cqi; line-height: 1.05; color: #fff; }
.cc-f.word { font-size: 10cqi; line-height: 1.3; }
.cc-l { font-size: max(11px, 3.3cqi); color: rgba(255, 255, 255, .8); max-width: 34em; }
.cover-card.mini { justify-content: center; align-items: center; padding: 8%; text-align: center; }
.cover-card.mini .cc-f { font-size: 25cqi; white-space: nowrap; }
.cover-card.mini .cc-f.word { font-size: 14cqi; line-height: 1.25; white-space: normal; }

/* news */
.news-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(24px, 3.6vw, 52px); align-items: start; }
.feature .cover { aspect-ratio: 16 / 10; border-radius: 16px; }
.feature-meta { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.cat { font-size: 12.5px; font-weight: 600; color: var(--green-deep); background: var(--mint); padding: 3px 10px; border-radius: 5px; }
.feature-title { font-size: clamp(21px, 2.1vw, 28px); line-height: 1.5; margin-block: 12px 12px; }
[lang="en"] .feature-title { line-height: 1.3; }
.feature-body p { font-size: 16.5px; max-width: 42em; }
.feature-body p + p { margin-top: 12px; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); margin-top: 26px; border-top: 1px solid var(--line-2); }
.facts > div { padding: 14px 14px 0; }
.facts > div:first-child { padding-inline-start: 0; }
.facts > div + div { border-inline-start: 1px solid var(--line-2); }
.facts dt { font-family: var(--f-display); font-weight: 600; font-size: 19px; color: var(--green); line-height: 1.4; }
.facts dd { font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 2px; }
.feature.fading { opacity: 0; transition: opacity var(--t1) var(--ease); }
::view-transition-group(story-cover) { animation-duration: .55s; animation-timing-function: cubic-bezier(.2, .7, .2, 1); }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .3s; }

.news-side { position: sticky; top: calc(var(--head-h) + 20px); }
.news-list { list-style: none; padding: 0; display: grid; gap: 4px; }
.news-list.turn li:not([hidden]) { animation: rise .5s var(--ease) backwards; animation-delay: calc(var(--k, 0) * 60ms); }
.news-list button {
  width: 100%; display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 16px; align-items: center;
  padding: 10px; border: 0; border-radius: 14px; background: transparent; cursor: pointer; text-align: start;
  transition: background var(--t1) var(--ease), box-shadow var(--t2) var(--ease);
}
.news-list button:hover { background: rgba(255, 255, 255, .6); }
.news-list button[aria-current="true"] { background: var(--paper); box-shadow: 0 1px 0 var(--line), 0 14px 30px -22px rgba(8, 30, 18, .4); }
.news-list .cover { width: 112px; aspect-ratio: 3 / 2; border-radius: 10px; }
.news-list .cover > img { transition: transform var(--t3) var(--ease); }
.news-list button:hover .cover > img { transform: scale(1.06); }
.nl-text small { display: block; font-size: 12.5px; font-weight: 600; color: var(--green); }
.nl-text b { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 500; font-size: 14.5px; line-height: 1.65; color: var(--ink); }
[lang="en"] .nl-text b { line-height: 1.45; }
.news-list button[aria-current="true"] .nl-text b { color: var(--green-deep); font-weight: 600; }
.news-pager { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.pager-bars { flex: 1; display: flex; gap: 6px; }
.pager-bars i { width: 20px; height: 3px; border-radius: 2px; background: var(--line-2); transition: width var(--t2) var(--ease), background var(--t2) var(--ease); }
.pager-bars i.on { width: 38px; background: var(--green); }
.pager-count { font-family: var(--f-mono); font-size: 13px; color: var(--muted); }

/* about */
.about.intro { padding-top: clamp(16px, 3vw, 40px); }
.about .shell { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.about-sub { margin-top: 12px; font-size: 18px; font-weight: 500; color: var(--ink); max-width: 30em; }
.about-lede { margin-top: 12px; font-size: 17px; max-width: 38em; }
.checks { list-style: none; padding: 0; margin-top: 24px; display: grid; gap: 10px; }
.checks li { position: relative; padding-inline-start: 32px; font-size: 16px; }
.checks li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .42em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2 5 8.5l4.5-5' fill='none' stroke='%232F7233' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}
[lang="en"] .checks li::before { top: .3em; }

.framed .frame-img { position: relative; border-radius: 16px; overflow: hidden; background: var(--ground-2); clip-path: inset(0 round 16px); }
.framed .plx { position: absolute; inset: -7% 0; will-change: transform; }
.framed .plx img { width: 100%; height: 100%; object-fit: cover; }
.framed figcaption { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 13.5px; color: var(--muted); }
.about-photo { justify-self: end; width: 100%; max-width: 400px; }
.about-photo .frame-img { height: 440px; }

/* sectors */
.sectors-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr); gap: clamp(28px, 4.5vw, 64px); align-items: start; }
.sectors-photo { position: sticky; top: calc(var(--head-h) + 24px); }
.sectors-photo .frame-img { aspect-ratio: 4 / 5; max-height: 440px; }
.sector-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-2); }
.sector { padding-block: 26px; padding-inline: 0 28px; border-bottom: 1px solid var(--line-2); }
.sector:nth-child(2n) { padding-inline: 28px 0; border-inline-start: 1px solid var(--line-2); }
.sector:nth-last-child(-n + 2) { border-bottom: 0; }
.sector h3 { font-size: 18px; line-height: 1.5; margin-block: 14px 6px; }
[lang="en"] .sector h3 { line-height: 1.3; }
.sector p { font-size: 15px; color: var(--muted); }
.sector .ico { transition: transform var(--t2) var(--ease); }
.sector:hover .ico { transform: translateY(-4px) rotate(-4deg); }

/* why */
.why .shell { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.why-side { position: sticky; top: calc(var(--head-h) + 24px); }
.why-side .sec-note { margin-top: 12px; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.mosaic figure { position: relative; overflow: hidden; aspect-ratio: 3 / 2; border-radius: 14px; background: var(--ground-2); clip-path: inset(0 round 14px); transition: clip-path 1.2s var(--ease) calc(var(--i, 0) * 140ms); }
.mosaic figure:first-child { grid-column: 1 / -1; aspect-ratio: 5 / 2; }
.mosaic .plx { position: absolute; inset: -7% 0; will-change: transform; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic figcaption { position: absolute; inset-block-end: 10px; inset-inline-start: 10px; padding: 4px 11px; border-radius: 999px; background: rgba(255, 255, 255, .93); color: var(--ink); font-size: 12.5px; font-weight: 600; line-height: 1.5; box-shadow: 0 6px 16px -10px rgba(8, 30, 18, .5); }
.mosaic.pre figure { clip-path: inset(0 0 100% 0 round 14px); }
@media (hover: hover) { .mosaic figure:hover img { transform: scale(1.05); } }
.why-list { list-style: none; padding: 0; border-top: 1px solid var(--line-2); }
.why-list li { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 18px; padding-block: 22px; border-bottom: 1px solid var(--line-2); transition: background var(--t2) var(--ease); }
.why-list h3 { font-size: 18px; line-height: 1.5; }
.why-list p { font-size: 15px; color: var(--muted); margin-top: 2px; }
.why-list li:hover .ico { transform: scale(1.12); }
.why-list .ico { transition: transform var(--t2) var(--ease); }

/* model */
.steps { list-style: none; padding: 38px 0 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px; position: relative; }
.steps::before, .steps::after { content: ""; position: absolute; top: 9px; inset-inline: 0; height: 2px; }
.steps::before { background: var(--line-2); }
.steps::after { background: var(--green); transform: scaleX(0); transform-origin: var(--start) 50%; transition: transform 1.6s var(--ease); }
.steps.in::after { transform: scaleX(1); }
.step { position: relative; }
.step::before {
  content: ""; position: absolute; top: -37px; inset-inline-start: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--line-2);
  transition: background var(--t2) var(--ease), border-color var(--t2) var(--ease), transform var(--t2) var(--ease);
  transition-delay: calc(var(--i) * 300ms);
}
.steps.in .step::before { background: var(--green); border-color: var(--green); }
.js .steps .step > * { transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--i) * 300ms + 150ms); }
.js .steps:not(.in) .step > * { opacity: 0; transform: translateY(12px); }
.step .n { display: flex; align-items: baseline; gap: 8px; font-family: var(--f-mono); font-size: 13px; color: var(--green); }
.step .n em { font-style: normal; font-family: var(--f-text); font-size: 13px; font-weight: 600; color: var(--green-deep); background: var(--mint); padding: 1px 9px; border-radius: 5px; }
.center-end { justify-content: flex-end; margin-top: 36px; }
.step h3 { font-size: 18.5px; line-height: 1.5; margin-block: 6px 8px; }
[lang="en"] .step h3 { line-height: 1.3; }
.step p { font-size: 15px; color: var(--muted); }

/* presence */
.presence .shell { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.presence-lede { margin-top: 16px; font-size: 16.5px; max-width: 36em; }
.market-list { margin-top: 28px; border-top: 1px solid var(--line-2); }
.market-list > div { display: grid; grid-template-columns: 172px minmax(0, 1fr); gap: 16px; padding-block: 14px; border-bottom: 1px solid var(--line-2); align-items: baseline; }
.market-list dt { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 600; color: var(--ink); }
.market-list dd { font-size: 15px; color: var(--muted); }
.mk { display: inline-block; flex: none; width: 10px; height: 10px; border-radius: 50%; }
.mk-base { background: var(--green); box-shadow: 0 0 0 3px var(--mint); }
.mk-hub { background: var(--hay); box-shadow: 0 0 0 3px rgba(227, 194, 122, .3); }
.mk-reach { background: var(--leaf); }

.route-map { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: clamp(14px, 2vw, 24px); }
.route-map svg { width: 100%; height: auto; display: block; overflow: visible; }
.route-map .dot { fill: #DCE1D6; }
.route { fill: none; stroke-linecap: round; }
.route.main { stroke: var(--green); stroke-width: 2.5; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.6s var(--ease); transition-delay: calc(var(--i) * .3s); }
.route.reach { stroke: #9FBF9A; stroke-width: 1.6; stroke-dasharray: 3 5; opacity: 0; transition: opacity var(--t3) var(--ease); transition-delay: calc(1.3s + var(--i) * .15s); }
.route-map.in .route.main { stroke-dashoffset: 0; }
.route-map.in .route.reach { opacity: 1; }
.runner { fill: var(--hay); opacity: 0; transition: opacity var(--t2) 1.8s; }
.route-map.in .runner { opacity: 1; }
.node { transform-box: fill-box; transform-origin: center; }
.js .route-map:not(.in) .node { transform: scale(0); }
.route-map .node { transition: transform .6s cubic-bezier(.3, 1.6, .5, 1) .4s; }
.node-base { fill: var(--green); }
.node-hub { fill: var(--hay); }
.node-reach { fill: var(--leaf); stroke: var(--paper); stroke-width: 2; }
.ring { fill: none; stroke-width: 1.2; transform-box: fill-box; transform-origin: center; animation: ring 3s var(--ease) infinite; }
@keyframes ring { 0% { transform: scale(.7); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.ring-base { stroke: rgba(47, 114, 51, .45); }
.ring-hub { stroke: rgba(184, 134, 43, .55); animation-delay: 1.2s; }
.lbl { font-family: var(--f-text); font-size: 13px; fill: var(--muted); }
.lbl-base, .lbl-hub { font-family: var(--f-display); font-size: 16px; font-weight: 600; fill: var(--ink); }
.route-map figcaption { display: grid; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.legend { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13.5px; color: var(--text); }
.legend > span { display: inline-flex; align-items: center; gap: 8px; }
.map-note { font-size: 12.5px; color: var(--faint); }

/* field photos */
.field .sec-head { margin-bottom: clamp(24px, 3vw, 36px); }
.field .sec-side { grid-template-columns: minmax(0, 1fr) auto; align-items: end; justify-items: stretch; }
.field .sec-side .stepper { justify-self: start; }
.strip {
  display: flex; gap: 16px; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--pad); padding-inline: var(--pad); padding-block: 4px 8px;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip:focus-visible { outline-offset: -2px; }
.strip figure { flex: 0 0 auto; width: 320px; scroll-snap-align: start; transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--k, 0) * 70ms); }
.strip.pre figure { opacity: 0; transform: translateY(26px); }
.strip[data-reveal].pre { opacity: 1; transform: none; }
.strip button { display: block; width: 100%; aspect-ratio: 4 / 3; padding: 0; border: 0; border-radius: 14px; overflow: hidden; cursor: zoom-in; background: var(--ground-2); }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t3) var(--ease), filter var(--t3) var(--ease); }
.strip button:hover img { transform: scale(1.05); filter: saturate(1.1); }
.strip figcaption { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.strip-progress { height: 2px; background: var(--line); margin-top: 22px; border-radius: 2px; overflow: hidden; }
.strip-progress span { display: block; height: 100%; width: 100%; background: var(--ink); transform: scaleX(.2); transform-origin: var(--start) 50%; transition: transform var(--t2) var(--ease); }

.lightbox { padding: 0; border: 0; background: transparent; width: 100%; height: 100%; max-width: none; max-height: none; color: #fff; }
.lightbox::backdrop { background: rgba(6, 12, 9, .92); }
.lightbox[open] { animation: fade var(--t2) var(--ease); }
.lightbox[open] .lb-img { animation: zoom-in .5s var(--ease); }
@keyframes fade { from { opacity: 0; } }
@keyframes zoom-in { from { opacity: 0; transform: scale(.96); } }
.lb-inner { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 16px; height: 100%; padding: 64px var(--gutter) 20px; }
.lb-img { max-width: min(1200px, 100%); max-height: 100%; width: auto; height: auto; margin: auto; object-fit: contain; border-radius: 10px; }
.lb-bar { display: flex; align-items: center; gap: 16px; width: min(100%, 1200px); margin-inline: auto; }
.lb-cap { flex: 1; font-size: 15px; }
.lb-count { font-family: var(--f-mono); font-size: 13px; color: #B9C4BC; }
.lightbox .stepper { background: rgba(255, 255, 255, .08); box-shadow: none; }
.lightbox .stepper button { color: #fff; }
.lightbox .stepper button:hover { background-color: #fff; color: var(--ink); }
.lb-close {
  position: absolute; top: 14px; inset-inline-end: var(--gutter); display: grid; place-items: center;
  width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .1); color: #fff; transition: background-color var(--t2) var(--ease), color var(--t2) var(--ease), transform var(--t2) var(--ease);
}
.lb-close svg { width: 20px; height: 20px; }
.lb-close:hover { background-color: #fff; color: var(--ink); transform: rotate(90deg); }

/* sustainability */
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-2); }
.value { padding: 28px 24px 8px; }
.value:first-child { padding-inline-start: 0; }
.value + .value { border-inline-start: 1px solid var(--line-2); }
.ico { width: 30px; height: 30px; color: var(--green); }
.ico [pathLength] { stroke-dasharray: 1; stroke-dashoffset: 0; transition: stroke-dashoffset 1.3s var(--ease) .2s; }
.pre .ico [pathLength] { stroke-dashoffset: 1; }
.value h3 { font-size: 18.5px; margin-block: 16px 6px; }
.value p { font-size: 15px; color: var(--muted); }
.statements { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); margin-top: clamp(44px, 5vw, 72px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--line-2); }
.statement h3 { font-family: var(--f-text); font-size: 13.5px; font-weight: 600; color: var(--green); }
.statement p { font-family: var(--f-display); font-weight: 500; font-size: clamp(19px, 2vw, 25px); line-height: 1.65; color: var(--ink); margin-top: 10px; }
[lang="en"] .statement p { line-height: 1.45; }

/* contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.contact-lede { margin-top: 14px; color: var(--muted); font-size: 16.5px; }
.info { margin-top: 28px; border-top: 1px solid var(--line); }
.info > div { padding-block: 16px; border-bottom: 1px solid var(--line); }
.info dt { font-weight: 600; color: var(--ink); font-size: 15px; }
.info dd { font-size: 15px; color: var(--muted); margin-top: 2px; }
.channels { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.channels a {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px; height: 100%;
  padding: 14px; border-radius: 14px; background: var(--ground); text-decoration: none;
  transition: background-color var(--t2) var(--ease), box-shadow var(--t2) var(--ease), transform var(--t2) var(--ease);
}
@media (hover: hover) { .channels a:hover { background: var(--paper); box-shadow: inset 0 0 0 1px var(--line-2), 0 14px 28px -20px rgba(8, 30, 18, .45); transform: translateY(-2px); } }
.ch-ico {
  flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--paper); color: var(--green); transition: background-color var(--t2) var(--ease), color var(--t2) var(--ease);
}
.ch-ico svg { width: 19px; height: 19px; }
@media (hover: hover) { .channels a:hover .ch-ico { background: var(--green); color: #fff; } }
.channels small { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.channels b { display: block; font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.5; white-space: nowrap; }
.follow { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 24px; }
.follow p { font-size: 15px; font-weight: 600; color: var(--ink); }

.socials { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.soc {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  transition: background-color var(--t2) var(--ease), color var(--t2) var(--ease), transform var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.soc svg { width: 19px; height: 19px; }
.on-light .soc { background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2); }
@media (hover: hover) { .on-light a.soc:hover { background: var(--green); color: #fff; box-shadow: 0 10px 20px -12px rgba(30, 75, 34, .8); transform: translateY(-3px); } }
.on-dark .soc { background: rgba(255, 255, 255, .07); color: #DDE5DF; }
@media (hover: hover) { .on-dark a.soc:hover { background: var(--leaf); color: var(--forest); transform: translateY(-3px); } }
.soc.is-empty { opacity: .5; cursor: default; }

.form { display: grid; gap: 18px; padding: clamp(20px, 3vw, 36px); background: var(--ground); border-radius: 20px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fld label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.fld .opt { font-weight: 400; font-size: 12.5px; color: var(--faint); margin-inline-start: 4px; }
.fld input, .fld textarea {
  width: 100%; font: inherit; font-size: 15.5px; line-height: 1.6; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 10px; padding: 11px 14px;
  transition: border-color var(--t1) var(--ease), box-shadow var(--t1) var(--ease);
}
.fld input[dir="ltr"] { text-align: end; }
[dir="ltr"] .fld input[dir="ltr"] { text-align: start; }
.fld textarea { min-height: 136px; resize: vertical; }
.fld input:focus, .fld textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(47, 114, 51, .14); }
.fld [aria-invalid="true"] { border-color: var(--danger); }
.err { font-size: 13px; color: var(--danger); margin-top: 6px; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.form-status { font-size: 14.5px; padding: 10px 14px; border-radius: 10px; background: var(--mint); color: var(--green-deep); flex: 1 1 240px; animation: rise .4s var(--ease); }
.form-status.bad { background: #F8E5E3; color: var(--danger); }

.office-map {
  position: relative; height: clamp(300px, 30vw, 400px); margin-top: clamp(40px, 5vw, 64px);
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: var(--ground);
}
.office-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-card {
  position: absolute; inset-inline-start: 20px; bottom: 20px; max-width: calc(100% - 40px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; padding: 14px 16px;
  border-radius: 16px; background: var(--paper); box-shadow: 0 18px 40px -20px rgba(8, 30, 18, .45);
}
.map-card .ico { width: 30px; height: 30px; }
.map-card b { display: block; font-size: 15px; color: var(--ink); line-height: 1.5; }
.map-card small { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.map-card .btn { padding: 9px 18px; font-size: 14px; }

/* footer */
.site-foot { background: var(--forest); color: #AEBBB2; padding-block: 64px 28px; font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand img { height: 30px; width: auto; }
.foot-brand p { margin-top: 16px; max-width: 30em; }
.foot-brand .socials { margin-top: 22px; }
.foot-title { color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.foot-col ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.foot-col a { text-decoration: none; transition: color var(--t1); }
.foot-col a:hover { color: #fff; }
.foot-contact { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 6px; }
.foot-contact span[dir="ltr"] { unicode-bidi: isolate; }
.foot-lang { margin-top: 14px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.foot-lang .lang { padding: 0; border: 0; }
.foot-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 40px; font-size: 13px; color: #8C9C92; }

/* motion */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } }
@keyframes unveil { from { clip-path: inset(9% 9% 9% 9% round 28px); } to { clip-path: inset(0 round 18px); } }
@keyframes settle { from { transform: scale(1.12); } }

.js .hero-text > * { animation: rise .9s var(--ease) backwards; }
.js .hero-text > :nth-child(2) { animation-delay: .08s; }
.js .hero-text > :nth-child(3) { animation-delay: .16s; }
.js .hero-text > :nth-child(4) { animation-delay: .24s; }
.js .hero-text > :nth-child(5) { animation-delay: .32s; }
.js .hero-photo { animation: unveil 1.3s var(--ease) .1s backwards; }
.js .hero-photo img:first-child { animation: settle 1.8s var(--ease) .1s backwards; }
.js .slide-card { animation: rise .8s var(--ease) .7s backwards; }
.js .latest-card { animation: rise .9s var(--ease) .55s backwards; }

[data-reveal] { transition: opacity var(--t3) var(--ease), transform var(--t3) var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
[data-reveal].pre { opacity: 0; transform: translateY(24px); }
[data-reveal] h2 { clip-path: inset(-.3em -.3em -.3em -.3em); transition: clip-path 1s var(--ease) .1s, transform 1s var(--ease) .1s; }
[data-reveal].pre h2 { clip-path: inset(-.3em -.3em 100% -.3em); transform: translateY(.4em); }
.frame-img { transition: clip-path 1.2s var(--ease); }
.pre .frame-img, .pre.framed .frame-img { clip-path: inset(0 0 100% 0 round 16px); }
.plx img { transition: transform 1.6s var(--ease); }
.pre .plx img { transform: scale(1.18); }

/* layout breakpoints */
@media (max-width: 1240px) {
  .channels { grid-template-columns: minmax(0, 1fr); }
  .channels a { flex-direction: row; align-items: center; }
}
@media (max-width: 1100px) {
  .main-nav a { padding-inline: 9px; }
  .hero .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero .stats > div:nth-child(3) { border-inline-start: 0; padding-inline-start: 0; }
  .hero .stats > div:nth-child(n + 3) { border-top: 1px solid var(--line); margin-top: 16px; }
}
@media (max-width: 900px) {
  :root { --head-h: 60px; }
  .main-nav, .head-cta { display: none; }
  .head-in { justify-content: space-between; }
  .menu-btn { display: inline-flex; align-items: center; gap: 10px; padding: 8px 4px; border: 0; background: none; cursor: pointer; font-size: 15px; color: var(--ink); }
  .bars { position: relative; width: 20px; height: 12px; border-block: 1.5px solid currentColor; transition: border-color var(--t1); }
  .bars::before, .bars::after { content: ""; position: absolute; inset-inline: 0; top: 50%; height: 1.5px; margin-top: -.75px; background: currentColor; transition: transform var(--t2) var(--ease); }
  .bars::after { opacity: 0; }
  .menu-btn[aria-expanded="true"] .bars { border-color: transparent; }
  .menu-btn[aria-expanded="true"] .bars::before { transform: rotate(45deg); }
  .menu-btn[aria-expanded="true"] .bars::after { opacity: 1; transform: rotate(-45deg); }

  .hero .shell, .news-grid, .about .shell, .sectors-grid, .why .shell, .presence .shell, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .sectors-photo, .why-side { position: static; }
  .sectors-photo .frame-img { aspect-ratio: 16 / 10; max-height: 360px; }
  .center-end { justify-content: flex-start; }
  .hero-photo { height: clamp(260px, 62vw, 400px); }
  .hero-media { padding-bottom: 0; }
  .latest-card { position: static; margin-top: 12px; }
  .slide-card { top: auto; bottom: 12px; inset-inline: 12px auto; max-width: calc(100% - 24px); padding: 8px 12px; }
  .slide-card span { display: none; }
  .slide-card b { font-size: 14.5px; }
  .sec-head { grid-template-columns: minmax(0, 1fr); }
  .news-side { position: static; }
  .about-photo { justify-self: stretch; max-width: none; }
  .about-photo .frame-img { height: clamp(260px, 70vw, 420px); }

  .steps { grid-template-columns: minmax(0, 1fr); gap: 26px; padding: 0; padding-inline-start: 38px; }
  .steps::before, .steps::after { top: 6px; bottom: 6px; inset-inline: 8px auto; width: 2px; height: auto; }
  .steps::after { transform: scaleY(0); transform-origin: 50% 0; }
  .steps.in::after { transform: scaleY(1); }
  .step::before { top: 5px; inset-inline-start: -38px; }

  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value:nth-child(3) { border-inline-start: 0; padding-inline-start: 0; }
  .value:nth-child(n + 3) { border-top: 1px solid var(--line-2); }
  .value:nth-child(2n) { padding-inline-end: 0; }
  .statements { grid-template-columns: minmax(0, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .ticker-story .go, .ticker .lang { display: none; }
  .hero .stats dd { font-size: 12.5px; }
  .latest-card { grid-template-columns: 80px minmax(0, 1fr); inset-inline: 10px; }
  .latest-card .cover { width: 80px; }
  .news-list button { grid-template-columns: 92px minmax(0, 1fr); gap: 12px; padding: 8px; }
  .news-list .cover { width: 92px; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts > div:nth-child(3) { border-inline-start: 0; padding-inline-start: 0; }
  .facts > div:nth-child(n + 3) { margin-top: 12px; }
  .market-list > div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .sector-list { grid-template-columns: minmax(0, 1fr); }
  .sector, .sector:nth-child(2n) { padding-inline: 0; border-inline-start: 0; border-bottom: 1px solid var(--line-2); }
  .sector:nth-last-child(2) { border-bottom: 1px solid var(--line-2); }
  .sector:last-child { border-bottom: 0; }
  .field .sec-side { grid-template-columns: minmax(0, 1fr); }
  .strip figure { width: 250px; }
  .values-grid { grid-template-columns: minmax(0, 1fr); }
  .value { padding-inline: 0 !important; border-inline-start: 0 !important; }
  .value + .value { border-top: 1px solid var(--line-2); }
  .row2 { grid-template-columns: minmax(0, 1fr); }
  .office-map { height: 340px; }
  .map-card { inset-inline: 12px; bottom: 12px; max-width: none; }
  .foot-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal].pre, .strip.pre figure { opacity: 1; transform: none; }
  [data-reveal].pre h2, .pre .frame-img, .mosaic.pre figure { clip-path: none; transform: none; }
  .pre .plx img { transform: none; }
  .pre .ico [pathLength] { stroke-dashoffset: 0; }
  .js .steps:not(.in) .step > * { opacity: 1; transform: none; }
  .js .route-map:not(.in) .node { transform: none; }
  .steps::after { transform: none; }
  .route.main { stroke-dashoffset: 0; }
  .route.reach, .runner { opacity: 1; }
}
