/* Zoom Bahrain (.com) — Events, Advertising, Software, Technology, Sports */

:root {
  --zoom-dark: #065274;
  --zoom-light: #019cdf;
  --navy: #043b54;
  --medium: #087eac;
  --soft: #66c5ec;
  --pale: #d9f2fc;
  --palest: #f1fafe;
  --charcoal: #3b3b3b;
  --muted: #5c5c5c;
  --line: #e6e6e6;
  --paper: #f7f8f9;
  --white: #ffffff;
  --ink: #3b3b3b;
  --header-h: 80px;
  --radius-lg: 28px;
  --shadow-lg: 0 30px 80px rgba(4, 59, 84, 0.16);
  --max: 1180px;
  --page-gutter: clamp(1rem, 4vw, 4rem);
  --section-space: clamp(3rem, 1.75rem + 4vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/Inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ibm-plex-sans-arabic-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ibm-plex-sans-arabic-700.woff2") format("woff2");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  scrollbar-width: auto;
  scrollbar-color: var(--navy) var(--palest);
}

html::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

html::-webkit-scrollbar-track {
  background: var(--palest);
}

html::-webkit-scrollbar-thumb {
  background: var(--navy);
  border: 2px solid var(--palest);
  border-radius: 8px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--zoom-dark);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

img {
  height: auto;
  display: block;
}

iframe {
  display: block;
  border: 0;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
li,
td,
th,
label,
figcaption {
  overflow-wrap: break-word;
}

figure {
  margin: 0;
}

a {
  color: var(--zoom-dark);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
}

/* Body-copy links only. Nav, tiles, cards, and .btn stay without underline. */
main p a:not(.btn):not(.phone-card),
.need-list a:not(.btn),
.cr-list a:not(.btn),
.site-footer p a:not(.btn) {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: from-font;
}

main p a:not(.btn):not(.phone-card):hover,
.need-list a:not(.btn):hover,
.cr-list a:not(.btn):hover,
.site-footer p a:not(.btn):hover {
  text-decoration-thickness: 2px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 10000;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  color: #fff;
  outline: 2px solid #f58220;
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.wa-fab:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #f58220;
  outline-offset: 3px;
}

.wrap {
  --wrap-pad: var(--page-gutter);
  width: min(var(--max), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zoom-dark);
}

.eyebrow-on-dark {
  color: var(--soft);
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: clamp(1.125rem, 0.35vw + 1.05rem, 1.2rem);
}

p {
  margin: 0 0 16px;
  color: var(--charcoal);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

.section {
  position: relative;
  z-index: 2;
  padding: var(--section-space) 0;
  background: var(--white);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 40px;
}

.section-head .lead {
  margin-bottom: 0;
}

.section-muted {
  background: var(--paper);
}

.section-pale {
  background: var(--palest);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.82);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0 clamp(16px, 2.2vw, 22px);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: var(--zoom-dark);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy);
  color: #fff;
}

.btn-dark {
  background: var(--zoom-dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--zoom-dark);
  border-color: #fff;
}

.btn-line {
  background: transparent;
  color: var(--zoom-dark);
  border-color: #c5dce6;
}

.btn-line:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  min-width: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.wa-fab {
  position: fixed;
  right: max(22px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25a966;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px var(--navy), 0 12px 28px rgba(37, 211, 102, 0.35);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
  max-width: none;
  display: block;
}

.wa-fab:hover,
.wa-fab:focus-visible {
  color: #fff;
  background: #25a966;
}

.wa-fab:hover {
  transform: scale(1.05);
}

body.nav-open .wa-fab {
  visibility: hidden;
}

.nav-bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: inherit;
  min-width: 0;
}

.logo:hover {
  color: inherit;
}

.logo img {
  width: clamp(36px, 8vw, 44px);
  height: clamp(36px, 8vw, 44px);
  flex: 0 0 auto;
}

.logo-word {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  min-width: 0;
}

.logo-zoom {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 20px;
  color: var(--zoom-dark);
}

.logo-group {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-links button.has-menu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: var(--navy);
  background: none;
  border: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button.has-menu:hover,
.nav-links a[aria-current="page"] {
  color: var(--zoom-dark);
}

.has-menu svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s var(--ease);
}

.has-sub.open .has-menu svg,
.has-sub:hover .has-menu svg,
.has-sub:focus-within .has-menu svg {
  transform: rotate(180deg);
}

.has-sub.dismissed .has-menu svg {
  transform: none;
}

.lang-switch {
  display: inline-flex;
  direction: ltr;
  unicode-bidi: isolate;
  border: 1px solid rgba(6, 82, 116, 0.16);
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
}

.lang-switch a {
  min-width: 44px;
  min-height: 36px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.lang-switch a[aria-current="page"] {
  background: var(--zoom-dark);
  color: #fff;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header-cta .btn {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--navy);
}

.dropdown {
  display: none;
}

@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }

  .header-cta .btn {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .has-sub {
    position: relative;
  }

  .has-sub::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 360px;
    height: 16px;
  }

  .dropdown {
    display: grid;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    width: 360px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(4, 59, 84, 0.1);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s var(--ease);
  }

  .has-sub:hover .dropdown,
  .has-sub:focus-within .dropdown,
  .has-sub.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .has-sub.dismissed .dropdown,
  .has-sub.dismissed:hover .dropdown,
  .has-sub.dismissed:focus-within .dropdown,
  .has-sub.dismissed.open .dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
  }

  .dropdown a {
    display: grid;
    gap: 2px;
    padding: 12px 14px;
    color: var(--navy);
    font-weight: 600;
  }

  .dropdown a small {
    font-weight: 400;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0;
  }

  .dropdown a:hover {
    background: var(--palest);
    color: var(--zoom-dark);
  }
}

/* Mobile navigation */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 999;
  background: #fff;
  overflow: auto;
  padding: 12px 20px 40px;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-nav {
  display: block;
}

.mobile-nav a:not(.btn),
.mobile-nav button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: var(--navy);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.mobile-sub {
  display: none;
  padding: 0 0 8px 12px;
}

.mobile-group.open .mobile-sub {
  display: block;
}

.mobile-sub a {
  font-weight: 500;
  color: var(--charcoal);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 20px;
  color: #fff;
}

@media (min-width: 960px) {
  .mobile-nav,
  body.nav-open .mobile-nav {
    display: none;
  }

  body.nav-open {
    overflow: auto;
  }
}

/* Hero */
.hero {
  position: relative;
  z-index: 0;
  min-height: 0;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.hero:has(.hero-bg) {
  min-height: min(calc(100svh - var(--header-h)), 820px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(4, 59, 84, 0.62);
}

.hero-crumbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px 0 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin-block: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-shadow: 0 1px 10px rgba(4, 59, 84, 0.35);
}

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

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.42);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: #fff;
}

.breadcrumbs [aria-current="page"] {
  color: #fff;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(2.75rem, 6vw, 3.5rem) 0 clamp(2.25rem, 5vw, 2.75rem);
  max-width: none;
}

.hero:has(.hero-bg) .hero-copy {
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 5.5vw, 3.5rem);
}

.hero-plain {
  align-items: center;
}

.hero-plain::after {
  display: none;
}

.js .hero-copy {
  animation: hero-copy-in 0.85s var(--ease) both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero h1,
.hero p {
  color: #fff;
}

.hero p {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.88);
}

.hero-split {
  display: grid;
  background: var(--navy);
  color: #fff;
}

.hero-split .hero-copy {
  padding: 88px 0 56px;
}

.hero-split .hero-copy h1,
.hero-split .hero-copy p {
  color: #fff;
}

.hero-split .hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 560px;
  }

  .hero-split .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 0;
  }

  .hero-split .hero-copy .wrap {
    width: min(560px, calc(100% - 48px));
    margin-left: auto;
    margin-right: 48px;
  }

  .hero-split .hero-media img {
    min-height: 560px;
  }
}

.page-hero {
  position: relative;
  z-index: 0;
  padding: clamp(2.25rem, 4vw, 3rem) 0 clamp(2rem, 3.5vw, 2.5rem);
  background: var(--palest);
  border-bottom: 1px solid var(--line);
}

.hero + .section,
.page-hero + .section {
  box-shadow: 0 -28px 60px rgba(4, 59, 84, 0.1);
}

#main > .hero ~ * {
  position: relative;
  z-index: 2;
}

@media (min-width: 981px) {
  .hero:has(.hero-bg) {
    position: sticky;
    top: var(--header-h);
  }
}

.page-hero p {
  margin-bottom: 0;
}

/* Our Businesses — bento carousel (same pattern as zoombahrain.co) */
.businesses-section {
  overflow: visible;
}

.businesses-section .section-head {
  max-width: 40rem;
}

.businesses-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.businesses-section .eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.biz-carousel {
  overflow: hidden;
  overflow-anchor: none;
  width: 100%;
}

.biz-carousel-track {
  display: flex;
  width: max-content;
  animation: biz-carousel-loop 56s linear infinite;
}

.biz-carousel-track.is-js-loop {
  animation: none;
}

.biz-carousel-group {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  padding-inline-end: 16px;
  width: max-content;
}

.biz-carousel-group + .biz-carousel-group {
  display: flex;
}

.biz-carousel:hover .biz-carousel-track,
.biz-carousel:focus-within .biz-carousel-track {
  animation-play-state: paused;
}

@keyframes biz-carousel-loop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.biz-bento-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  flex: 0 0 var(--slide-w, 100%);
  width: var(--slide-w, 100%);
  min-width: var(--slide-w, 100%);
  height: 680px;
}

.biz-bento-slide > * {
  min-width: 0;
}

.biz-tile {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(4, 59, 84, 0.18);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.biz-tile.is-featured {
  grid-row: 1 / 3;
}

.biz-tile-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.biz-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 59, 84, 0.12) 32%, rgba(4, 59, 84, 0.78) 100%);
}

.biz-tile-mark {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(4, 59, 84, 0.12);
  direction: ltr;
  unicode-bidi: isolate;
}

.biz-tile-mark img {
  display: block;
  height: 18px;
  width: auto;
  max-width: 148px;
}

.biz-tile-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
  padding: 26px 24px 24px;
}

.biz-tile-index {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--soft);
}

.biz-tile h3,
.biz-tile .biz-tile-title {
  color: #fff;
  margin: 0 0 8px;
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.biz-tile.is-featured h3 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.biz-tile p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  max-width: 42ch;
}

.biz-tile .desc {
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.biz-tile .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.biz-tile .more::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.biz-tile:hover,
.biz-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.biz-tile:hover .biz-tile-photo,
.biz-tile:focus-visible .biz-tile-photo {
  transform: scale(1.06);
}

.biz-tile:hover .more::after,
.biz-tile:focus-visible .more::after {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .biz-bento-slide {
    height: 560px;
  }

  .biz-tile:hover,
  .biz-tile:focus-visible {
    transform: none;
  }
}

@media (max-width: 699px) {
  .biz-bento-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 340px 230px 230px;
    height: auto;
    flex-basis: var(--slide-w, 100%);
    width: var(--slide-w, 100%);
    min-width: var(--slide-w, 100%);
  }

  .biz-tile.is-featured {
    grid-row: auto;
  }

  .biz-tile.is-featured h3 {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
  }

  .biz-tile-body {
    padding: 18px 16px 16px;
  }
}

.ticker {
  overflow: hidden;
  overflow-anchor: none;
  position: relative;
  z-index: 4;
  padding: 16px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -18px 48px rgba(4, 59, 84, 0.22);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-loop 36s linear infinite;
}

.ticker-track.is-js-loop {
  animation: none;
}

.ticker-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 28px;
  padding-inline-end: 28px;
  flex-shrink: 0;
  width: max-content;
}

.ticker-item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.ticker-item:hover,
.ticker-item:focus-visible {
  color: #fff;
}

.ticker-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.ticker-icon svg {
  width: 18px;
  height: 18px;
  color: var(--soft);
}

.ticker-item::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  margin-inline-start: 16px;
}

@keyframes ticker-loop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.partners {
  overflow: hidden;
  overflow-anchor: none;
}

.partners-rows {
  display: grid;
  gap: 14px;
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partners-loop 40s linear infinite;
}

.partners-track.is-reverse {
  animation-name: partners-loop-reverse;
}

.partners-track.is-js-loop {
  animation: none;
}

.partners-group {
  display: flex;
  flex-shrink: 0;
  gap: 18px;
  padding-inline-end: 18px;
  width: max-content;
}

.partners-group + .partners-group {
  display: flex;
}

.partners:hover .partners-track,
.partners:focus-within .partners-track {
  animation-play-state: paused;
}

.partner {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 168px;
  min-width: 168px;
  height: 88px;
  min-height: 88px;
  flex-shrink: 0;
  margin: 0;
  padding: 16px 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.partner img {
  max-width: min(148px, 100%);
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes partners-loop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes partners-loop-reverse {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@media (min-width: 900px) {
  .ticker {
    padding: 18px 0;
  }

  .ticker-group {
    gap: 48px;
    padding-inline-end: 48px;
  }

  .ticker-item {
    font-size: 12px;
  }

  .ticker-item::after {
    margin-inline-start: 28px;
  }

  .partner {
    width: 196px;
    min-width: 196px;
    padding: 14px 20px;
  }

  .partner img {
    max-height: 68px;
  }
}

/* Split editorial */
.split {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}

.split > * {
  min-width: 0;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split > img {
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(6, 82, 116, 0.1);
}

.essay-kicker {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  direction: ltr;
  unicode-bidi: isolate;
}

.essay-kicker img {
  width: auto;
  height: clamp(32px, 6vw, 48px);
  max-width: min(440px, 100%);
  aspect-ratio: auto;
  object-fit: contain;
}

.split .copy .actions {
  margin-top: 8px;
}

.split .essay-photo {
  position: relative;
}

.photo-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 0;
  box-shadow: 0 18px 50px rgba(6, 82, 116, 0.1);
}

.photo-frame img,
.split .photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.essay-carousel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: 0 18px 50px rgba(6, 82, 116, 0.1);
}

.essay-carousel-viewport,
.essay-carousel-track,
.essay-carousel-group {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.essay-slide,
.split .essay-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  flex: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.essay-carousel:not(.is-ready) .essay-slide:first-of-type,
.essay-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.essay-slide.is-active {
  animation: essay-zoom 2s ease-out forwards;
}

@keyframes essay-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 64px;
    align-items: center;
  }

  .split.reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .split.reverse .copy {
    order: 2;
  }

  .split-reverse {
    direction: rtl;
  }

  .split-reverse > * {
    direction: ltr;
  }
}

/* Capability chain */
.chain {
  --chain-gap: clamp(12px, 1.4vw, 20px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  align-items: stretch;
  gap: var(--chain-gap);
}

.chain-item {
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 10px;
  padding: 0;
  color: inherit;
}

a.chain-item:hover,
a.chain-item:focus-visible {
  color: inherit;
}

.chain-item-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(6, 82, 116, 0.1);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.chain-item strong {
  color: var(--navy);
}

a.chain-item:hover strong,
a.chain-item:focus-visible strong {
  color: var(--zoom-dark);
}

.chain-item span {
  color: var(--muted);
}

a.chain-item:hover .chain-item-photo,
a.chain-item:focus-visible .chain-item-photo {
  transform: scale(1.02);
  box-shadow: 0 22px 56px rgba(6, 82, 116, 0.16);
}

/* Service lists */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.service-list li {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.service-list strong {
  color: var(--navy);
}

.service-list span {
  color: var(--muted);
}

.service-list.two {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  column-gap: clamp(1.5rem, 3vw, 3rem);
}

.need-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.need-list li {
  padding: 14px 0;
  padding-inline-start: 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--charcoal);
}

.need-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 22px;
  width: 12px;
  height: 1px;
  background: var(--zoom-light);
}

/* Related */
.related {
  display: grid;
  gap: 16px;
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.related a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
}

.related a small {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  color: var(--muted);
}

.related a:hover {
  color: var(--zoom-dark);
}

.type-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.type-index a {
  color: var(--navy);
  font-weight: 600;
}

.type-index a:hover,
.type-index a:focus-visible {
  color: var(--zoom-dark);
}

/* Work gallery */
.work-grid {
  display: grid;
  gap: clamp(10px, 1.2vw, 12px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.work-grid.columns-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.work-grid figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(6, 82, 116, 0.1);
}

.work-grid figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}


/* Why */
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 2.8vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.why-list h3 {
  margin-bottom: 8px;
}

.why-list p {
  margin: 0;
}


/* CTA band */
.cta-band {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.5rem);
  grid-template-columns: minmax(0, 1fr);
}

.cta-band p:last-child {
  margin-bottom: 0;
}

@media (min-width: 800px) {
  .cta-band {
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: end;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1fr);
}

.contact-points a {
  font-weight: 600;
}

.contact-points p {
  margin-bottom: 18px;
}

.map-frame {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(6, 82, 116, 0.1);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #cfd8de;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  min-height: 48px;
  font-size: 16px;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form .honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status,
.form-notice {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: var(--pale);
  color: var(--navy);
  font-weight: 500;
}

.form-status {
  margin-bottom: 0;
}

.form-notice a {
  font-weight: 600;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
  }
}

.card-grid {
  display: grid;
  gap: clamp(1.5rem, 2.8vw, 2.25rem);
  grid-template-columns: minmax(0, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.card-grid article h3 {
  margin-bottom: 8px;
}

.card-grid article p {
  margin: 0 0 8px;
}

.card-grid article p:last-child {
  margin: 0;
}

.card-grid a {
  font-weight: 600;
}


.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.form .optional {
  font-weight: 400;
  color: var(--muted);
}

.phone-card {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.phone-card:hover strong {
  color: var(--zoom-dark);
}

.phone-purpose {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zoom-dark);
}

.phone-card strong {
  font-size: 1.15rem;
  color: var(--navy);
}

.phone-card span:last-child {
  color: var(--muted);
  font-weight: 400;
}

.office-block address,
.split address {
  font-style: normal;
  margin-bottom: 16px;
}

.sister-note {
  margin-top: 28px;
  margin-bottom: 0;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 12px 0 0;
  color: var(--charcoal);
}

.section-dark a {
  color: #fff;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

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

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover {
  color: #fff;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: #fff;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  }
}

/* About extras */
.meta-row {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
  margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}

.meta-row div strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}


.pullquote {
  margin: 0 0 32px;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--zoom-light);
}

.pullquote p {
  font-size: 1.15rem;
  line-height: 1.55;
}

.pullquote footer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.km-head {
  max-width: none;
  text-align: center;
  margin-bottom: 56px;
}

.km-head .eyebrow {
  display: block;
}

.km-head h2 {
  display: inline-block;
}

.km-head h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--zoom-light);
}

.km-head .lead {
  max-width: 40rem;
  margin-inline: auto;
}

.km-timeline {
  list-style: none;
  margin: 0;
  padding: 8px 0 4px;
  position: relative;
}

.km-timeline::before,
.km-timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  width: 6px;
  border-radius: 99px;
  transform: translateX(-50%);
  z-index: 0;
}

.km-timeline::before {
  background: var(--pale);
}

.km-timeline::after {
  background: var(--zoom-light);
  transform: translateX(-50%) scaleY(0);
  transform-origin: center top;
  transition: transform 2.5s var(--ease);
}

.km-timeline.is-drawn::after {
  transform: translateX(-50%) scaleY(1);
}

.km-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
  margin-bottom: 56px;
  z-index: 1;
}

.km-item:last-child {
  margin-bottom: 0;
}

.km-dot {
  grid-area: 1 / 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--zoom-dark);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.km-card {
  grid-row: 1;
  max-width: 500px;
  background: var(--white);
  padding: clamp(1.25rem, 2.5vw, 1.875rem) clamp(1.25rem, 3vw, 2.1875rem);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.km-item:nth-child(odd) .km-card {
  grid-column: 3;
  justify-self: start;
}

.km-item:nth-child(even) .km-card {
  grid-column: 1;
  justify-self: end;
}

.km-card::after {
  content: "";
  position: absolute;
  top: 30px;
  border: 10px solid transparent;
}

.km-item:nth-child(odd) .km-card::after {
  left: -20px;
  border-right-color: var(--white);
  filter: drop-shadow(-2px 1px 1px rgba(0, 0, 0, 0.04));
}

.km-item:nth-child(even) .km-card::after {
  right: -20px;
  border-left-color: var(--white);
  filter: drop-shadow(2px 1px 1px rgba(0, 0, 0, 0.04));
}

.km-item:hover .km-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(135, 206, 250, 0.55);
}

.km-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 12px;
}

.km-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.km-card a {
  color: var(--zoom-dark);
  font-weight: 600;
}

.km-photo {
  margin: 20px 0 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background: var(--navy);
}

.km-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 28%;
}

.km-photo img[src*="about-timeline-2025"] {
  object-position: center center;
}

@media (max-width: 859px) {
  .km-head {
    margin-bottom: 40px;
  }

  .km-timeline::before {
    left: 22px;
    transform: none;
  }

  .km-timeline::after {
    left: 22px;
    transform: scaleY(0);
  }

  .km-timeline.is-drawn::after {
    transform: scaleY(1);
  }

  .km-item {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 18px;
    margin-bottom: 36px;
  }

  .km-dot {
    grid-column: 1;
    width: 44px;
    height: 44px;
    font-size: 11px;
    border-width: 2px;
  }

  .km-item:nth-child(odd) .km-card,
  .km-item:nth-child(even) .km-card {
    grid-column: 2;
    justify-self: stretch;
    max-width: none;
  }

  .km-card {
    padding: 20px;
    border-radius: 16px;
  }

  .km-card h3 {
    font-size: 1.25rem;
  }

  .km-item:nth-child(odd) .km-card::after,
  .km-item:nth-child(even) .km-card::after {
    left: -16px;
    right: auto;
    border-color: transparent var(--white) transparent transparent;
    filter: drop-shadow(-2px 1px 1px rgba(0, 0, 0, 0.04));
  }
}

.person-grid {
  display: grid;
  gap: clamp(2rem, 3vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.person-card img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(6, 82, 116, 0.1);
}

.person-card h3 {
  margin-bottom: 4px;
}

.person-card .role {
  color: var(--muted);
  margin-bottom: 12px;
}


.cr-list li strong {
  display: block;
}

.cr-list .cr {
  display: block;
  margin-bottom: 4px;
  color: var(--zoom-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Scroll reveals */
.js .reveal {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal-up,
.js .reveal-left,
.js .reveal-right {
  transform: translate3d(0, 28px, 0);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero:has(.hero-bg) {
    position: relative;
    top: auto;
  }

  .js .hero-copy,
  .js .reveal,
  .js .reveal.is-in,
  .wa-fab:hover {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .biz-carousel {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .biz-carousel-track,
  .biz-carousel-track.is-js-loop {
    animation: none !important;
    transform: none !important;
  }

  .biz-carousel-group + .biz-carousel-group,
  .ticker-group + .ticker-group,
  .partners-group + .partners-group,
  .partners-track.is-reverse {
    display: none !important;
  }

  .ticker-track,
  .ticker-track.is-js-loop,
  .partners-track,
  .partners-track.is-js-loop {
    animation: none !important;
    transform: none !important;
    display: block;
    width: 100%;
  }

  .ticker-group {
    min-width: 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    padding: 0;
  }

  .ticker-item::after {
    display: none;
  }

  .partners-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 0;
    gap: 12px;
  }

  .partner {
    width: auto;
    min-width: 0;
  }

  @media (min-width: 640px) {
    .partners-group {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (min-width: 960px) {
    .partners-group {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  .essay-slide,
  .essay-slide.is-active {
    animation: none !important;
    transform: none !important;
    transition: none !important;
    opacity: 0 !important;
  }

  .essay-carousel:not(.is-ready) .essay-slide:first-of-type,
  .essay-slide:first-of-type {
    opacity: 1 !important;
  }

  .biz-tile:hover,
  .biz-tile:focus-visible,
  .biz-tile-photo,
  a.chain-item:hover .chain-item-photo,
  a.chain-item:focus-visible .chain-item-photo,
  .km-item:hover .km-card {
    transform: none !important;
  }

  .km-timeline::after,
  .km-timeline.is-drawn::after {
    transform: translateX(-50%) scaleY(1);
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 859px) {
  .km-timeline::after,
  .km-timeline.is-drawn::after {
    transform: scaleY(1);
  }
}

@media (max-width: 639px) {
  .logo-zoom {
    font-size: 17px;
  }

  .logo-group {
    font-size: 9px;
  }

  .header-cta .btn {
    display: none;
  }
}

@media (max-width: 359px) {
  .logo-group {
    display: none;
  }
}

/* Arabic / RTL */
html[dir="rtl"] {
  --font: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
}

html[dir="rtl"] body {
  font-size: 17px;
  line-height: 1.75;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .btn,
html[dir="rtl"] .logo-group,
html[dir="rtl"] .km-card h3,
html[dir="rtl"] .km-head h2 {
  letter-spacing: 0;
}

html[dir="rtl"] .skip-link {
  left: auto;
  right: 16px;
}

html[dir="rtl"] .wa-fab {
  right: auto;
  left: max(22px, env(safe-area-inset-left, 0px));
}

html[dir="rtl"] .mobile-nav a:not(.btn),
html[dir="rtl"] .mobile-nav button {
  text-align: right;
}

html[dir="rtl"] .mobile-sub {
  padding: 0 12px 8px 0;
}

html[dir="rtl"] .dropdown {
  left: auto;
  right: 0;
}

html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] a[href^="mailto:"] {
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .biz-carousel-track,
html[dir="rtl"] .biz-carousel-group,
html[dir="rtl"] .essay-carousel-track,
html[dir="rtl"] .ticker-track,
html[dir="rtl"] .ticker-group,
html[dir="rtl"] .partners-track,
html[dir="rtl"] .partners-group {
  direction: ltr;
}

html[dir="rtl"] .ticker-item {
  direction: rtl;
  unicode-bidi: isolate;
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .biz-tile,
html[dir="rtl"] .essay-slide {
  direction: rtl;
  unicode-bidi: isolate;
}

html[dir="rtl"] .biz-tile .more::after {
  content: "←";
}

html[dir="rtl"] .biz-tile:hover .more::after,
html[dir="rtl"] .biz-tile:focus-visible .more::after {
  transform: translateX(-4px);
}

@media (min-width: 860px) {
  html[dir="rtl"] .split {
    direction: ltr;
  }

  html[dir="rtl"] .split > div,
  html[dir="rtl"] .split > .copy {
    direction: rtl;
  }

  html[dir="rtl"] .split-reverse {
    direction: ltr;
  }

  html[dir="rtl"] .split-reverse > * {
    direction: rtl;
  }
}

html[dir="rtl"] .km-item:nth-child(odd) .km-card::after {
  left: auto;
  right: -20px;
  border-right-color: transparent;
  border-left-color: var(--white);
  filter: drop-shadow(2px 1px 1px rgba(0, 0, 0, 0.04));
}

html[dir="rtl"] .km-item:nth-child(even) .km-card::after {
  right: auto;
  left: -20px;
  border-left-color: transparent;
  border-right-color: var(--white);
  filter: drop-shadow(-2px 1px 1px rgba(0, 0, 0, 0.04));
}

@media (max-width: 859px) {
  html[dir="rtl"] .km-timeline::before,
  html[dir="rtl"] .km-timeline::after {
    left: auto;
    right: 22px;
    transform: none;
  }

  html[dir="rtl"] .km-timeline.is-drawn::after {
    transform: scaleY(1);
  }

  html[dir="rtl"] .km-item {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  html[dir="rtl"] .km-dot {
    grid-column: 2;
  }

  html[dir="rtl"] .km-item:nth-child(odd) .km-card,
  html[dir="rtl"] .km-item:nth-child(even) .km-card {
    grid-column: 1;
  }

  html[dir="rtl"] .km-item:nth-child(odd) .km-card::after,
  html[dir="rtl"] .km-item:nth-child(even) .km-card::after {
    left: auto;
    right: -16px;
    border-color: transparent transparent transparent var(--white);
    filter: drop-shadow(2px 1px 1px rgba(0, 0, 0, 0.04));
  }
}
