/* Zoom Bahrain — official brand system */
:root {
  --zoom-dark: #065274;
  --zoom-light: #019cdf;
  --navy: #043b54;
  --medium: #087eac;
  --soft: #66c5ec;
  --pale: #d9f2fc;
  --palest: #f1fafe;
  --charcoal: #3b3b3b;
  --muted: #5c5c5c;
  --line: #e6e6e6;
  --white: #ffffff;
  --orange: #f58220;
  --green: #22a06b;
  --red: #d64545;
  --whatsapp: #25d366;
  --ink: #3b3b3b;
  --header-h: 84px;
  --radius: 18px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(6, 82, 116, 0.1);
  --shadow-lg: 0 30px 80px rgba(4, 59, 84, 0.16);
  --max: 1200px;
  --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("/assets/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;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
}

html:has(body[data-page="home"]),
body[data-page="home"] {
  overflow-x: clip;
}

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

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

img,
video {
  height: auto;
  display: block;
}

iframe {
  display: block;
}

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

figure {
  margin: 0;
}

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

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

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

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

.skip-link:focus {
  top: 12px;
  color: #fff;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible,
.wa-fab:focus-visible,
.to-top:focus-visible,
.nav-links a:focus-visible,
.nav-links button.has-menu:focus-visible,
.card:focus-visible,
.phone-card:focus-visible,
.biz-tile:focus-visible,
.mega a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.faq summary:focus-visible {
  outline-offset: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zoom-light);
  margin: 0 0 14px;
}

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

.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(2.2rem, 4.8vw, 4.2rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
}

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

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

.about-links {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 10px 28px;
  max-width: 52rem;
}

.about-links a {
  color: var(--navy);
  font-weight: 600;
}

@media (min-width: 700px) {
  .about-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.editorial {
  max-width: 68ch;
}

.section .wrap > p {
  max-width: 68ch;
}

.muted {
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: #0174ad;
  color: #fff;
}

.btn-primary:hover {
  background: var(--medium);
  color: #fff;
  transform: translateY(-1px);
}

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

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

.btn-ghost {
  background: rgba(4, 59, 84, 0.45);
  color: #fff;
  border-color: #fff;
}

.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;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

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

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 0;
}

.site-header .logo img {
  width: 42px;
  height: 42px;
}

.site-header .logo strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.site-header .logo span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
}

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

.nav-links > li {
  position: relative;
}

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

.nav-links a:hover,
.nav-links button.has-menu:hover,
.nav-links a.active,
.nav-links button.has-menu.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

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

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

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

.header-cta .btn {
  white-space: nowrap;
}

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

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

.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

.socials a:hover {
  background: #fff;
  color: var(--zoom-dark);
}

.header-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 59, 84, 0.55), transparent);
  pointer-events: none;
  z-index: -1;
}

.site-header.is-solid {
  background: rgba(6, 82, 116, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(4, 59, 84, 0.18);
}

.site-header.is-solid .header-scrim {
  display: none;
}

.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(720px, calc(100vw - 40px));
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s var(--ease);
}

.nav-links > li:focus-within .mega,
.nav-links > li.open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

#mega-resources {
  width: min(680px, calc(100vw - 40px));
}

.mega a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 44px;
  padding: 12px;
  border-radius: var(--radius-sm);
  color: var(--navy);
}

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

.mega a img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 36px;
}

.mega a strong {
  display: block;
  font-size: 14px;
}

.mega a small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: 10px;
  color: #fff;
}

.menu-toggle-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.menu-toggle-icon span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 2px;
  margin-top: -1px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.22s var(--ease), opacity 0.18s ease;
}

.menu-toggle-icon span:nth-child(1) {
  transform: translateY(-5px);
}

.menu-toggle-icon span:nth-child(3) {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 860px);
  min-height: min(100dvh, 860px);
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 40px) 0 0;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(1, 156, 223, 0.35), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(245, 130, 32, 0.16), transparent 24%),
    linear-gradient(160deg, #043b54 0%, #065274 48%, #087eac 100%);
}

body[data-page="home"] .hero {
  position: sticky;
  top: 0;
  z-index: 1;
}

body[data-page="home"] .home-stack {
  position: relative;
  z-index: 2;
  background: var(--white);
}

body[data-page="home"] .home-stack .ticker {
  box-shadow: 0 -18px 48px rgba(4, 59, 84, 0.22);
}

body[data-page="home"] .site-footer {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  width: 100%;
  max-width: none;
  height: 124%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(165deg, rgba(4, 59, 84, 0.72) 0%, rgba(6, 82, 116, 0.42) 46%, rgba(4, 59, 84, 0.66) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 40%, transparent);
}

.hero-diamond {
  position: absolute;
  right: -8%;
  top: 12%;
  width: min(560px, 52vw);
  opacity: 0.18;
  z-index: 3;
  animation: drift 14s ease-in-out infinite;
}

@keyframes drift {
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding-bottom: 48px;
  will-change: transform;
}

.hero-copy > * {
  opacity: 0;
  animation: rise 0.9s var(--ease) forwards;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.32s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.44s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.56s; }

.hero h1 {
  color: #fff;
}

.hero h1 em {
  font-style: normal;
  color: var(--soft);
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  max-width: 62ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta div strong {
  display: block;
  font-size: 28px;
  color: #fff;
}

.hero-meta div span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Page hero */
.page-hero {
  background:
    radial-gradient(circle at 88% 0%, rgba(1, 156, 223, 0.28), transparent 32%),
    linear-gradient(160deg, #043b54, #065274 70%);
  color: #fff;
  min-height: min(100vh, 860px);
  min-height: min(100dvh, 860px);
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 40px) 0 0;
  position: sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
}

.page-hero h1,
.page-hero p {
  color: inherit;
}

.page-hero p {
  opacity: 0.82;
  max-width: 62ch;
}

.page-hero a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero .btn {
  text-decoration: none;
}

.page-hero.has-photo {
  background-color: #043b54;
}

.page-hero.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(4, 59, 84, 0.7) 0%, rgba(6, 82, 116, 0.48) 100%);
}

.page-hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  width: 100%;
  max-width: none;
  height: 124%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  pointer-events: none;
  z-index: 0;
}

[data-page="real-estate"] .page-hero-bg {
  object-position: center 62%;
}

[data-page="consultancy"] .page-hero-bg {
  object-position: 68% 58%;
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
  will-change: transform;
}

#main > .page-hero ~ * {
  position: relative;
  z-index: 2;
  background-color: var(--white);
}

#main > .page-hero ~ .section-pale {
  background-color: var(--palest);
}

#main > .page-hero + * {
  box-shadow: 0 -18px 48px rgba(4, 59, 84, 0.22);
}

.page-hero .wrap > * {
  opacity: 0;
  animation: rise 0.85s var(--ease) forwards;
}

.page-hero .wrap > *:nth-child(1) { animation-delay: 0.08s; }
.page-hero .wrap > *:nth-child(2) { animation-delay: 0.2s; }
.page-hero .wrap > *:nth-child(3) { animation-delay: 0.32s; }
.page-hero .wrap > *:nth-child(4) { animation-delay: 0.44s; }
.page-hero .wrap > *:nth-child(5) { animation-delay: 0.56s; }

.crumbs {
  font-size: 13px;
  margin-bottom: 18px;
  opacity: 0.8;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.crumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  opacity: 0.75;
}

.crumbs a {
  color: #fff;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}

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

/* Cards / grids */
.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split .grid-3 {
  grid-template-columns: minmax(0, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-services {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-services > * {
  grid-column: span 2;
}

.grid-services > :nth-child(4):nth-last-child(2) {
  grid-column: 2 / span 2;
}

.grid-services > :nth-child(5):last-child {
  grid-column: 4 / span 2;
}

.grid-why {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.grid-services > *,
.grid-why > *,
.biz-bento-slide > *,
.why-visual > *,
.value-grid > *,
.split > *,
.footer-grid > * {
  min-width: 0;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 1px 0 rgba(6, 82, 116, 0.03);
  transition: 0.28s var(--ease);
  height: 100%;
}

.card > h3:last-child {
  margin-bottom: 0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cfeaf6;
}

.card img.logo {
  height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.card.has-photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 188px;
  object-fit: cover;
  background: #0a4a66;
}

.card.has-photo .card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-cards .card-photo {
  aspect-ratio: 4 / 3;
  min-height: 200px;
  object-position: center 28%;
}

.why-cards .card-photo[src*="why-five-businesses"],
.why-cards .card-photo[src*="why-regional-outlook"] {
  object-position: center 42%;
}

#why .card-photo[src*="wh-why-01"] {
  object-position: center 38%;
}

#why .card-photo[src*="wh-why-02"],
#why .card-photo[src*="wh-why-03"] {
  object-position: center 46%;
}

.card-related .card-body {
  box-shadow: inset 0 3px 0 var(--zoom-light);
}

.card-related .card-body > .muted {
  margin: 0 0 18px;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.businesses-section {
  background:
    radial-gradient(circle at 88% 6%, rgba(1, 156, 223, 0.22), transparent 30%),
    linear-gradient(180deg, #043b54 0%, #065274 100%);
}

.businesses-section h2,
.businesses-section .lead {
  color: #fff;
}

.businesses-section .lead {
  color: rgba(255, 255, 255, 0.74);
}

.biz-carousel {
  overflow: hidden;
  width: 100%;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
}

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

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

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

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

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

.biz-tile {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  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.is-featured h3 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.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);
}

.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 {
  color: #fff;
  margin: 0 0 8px;
  font-size: clamp(1.28rem, 2vw, 1.85rem);
}

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

.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);
}

.why-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 20px;
  align-items: stretch;
}

.why-visual .photo-frame {
  height: 100%;
}

.why-visual .photo-frame img {
  height: 100%;
  min-height: 420px;
  object-position: center 42%;
}

.case-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.case-feature-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.case-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(4, 59, 84, 0.9) 0%, rgba(6, 82, 116, 0.62) 52%, rgba(4, 59, 84, 0.28) 100%);
}

.case-feature-body {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 48px;
}

.case-feature h2,
.case-feature .case-stat h3 {
  color: #fff;
}

.case-feature-body > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  max-width: 62ch;
}

.case-feature .eyebrow {
  color: var(--soft);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.case-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px 16px;
}

.case-stat h3 {
  margin: 0;
  font-size: 1.05rem;
}

body:not([data-page="home"]) .site-header {
  background: rgba(6, 82, 116, 0.96);
  backdrop-filter: blur(16px);
}

body:not([data-page="home"]) .header-scrim {
  display: none;
}

.card h3,
.card .card-stat {
  margin: 0 0 8px;
  font-size: 1.17em;
  font-weight: 700;
  color: var(--navy);
}

.muted a,
.lead a,
p > a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav-links a,
.mega a,
.logo,
.btn,
.footer-brand,
.wa-fab,
.to-top,
.card,
.phone-card,
.biz-tile,
.socials a {
  text-decoration: none;
}

.card p {
  font-size: 16px;
  color: var(--charcoal);
}

.card .muted {
  font-size: 13px;
  color: var(--muted);
}

.card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--zoom-light);
}

.profile-links {
  margin-top: 24px;
}

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

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

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

.panel {
  background: linear-gradient(160deg, #065274, #043b54);
  border-radius: var(--radius-lg);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.panel.has-photo {
  background-image:
    linear-gradient(180deg, rgba(4, 59, 84, 0.18) 0%, rgba(4, 59, 84, 0.88) 70%),
    var(--panel-photo);
  background-size: cover;
  background-position: center;
}

[data-page="consultancy"] #company-formation .panel.has-photo {
  background-position: center 22%;
}

.wh-carousel {
  container-type: inline-size;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: #fff;
  background: #043b54;
}

.wh-carousel-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wh-carousel-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: wh-carousel-loop 32s linear infinite;
}

.wh-carousel-group {
  display: flex;
  flex-shrink: 0;
  height: 100%;
}

.wh-slide {
  display: block;
  flex: 0 0 100cqi;
  width: 100cqi;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.wh-slide[src*="re-wh-01"],
.wh-slide[src*="re-wh-06"],
.wh-slide[src*="re-wh-07"] {
  object-position: center 62%;
}

.wh-carousel-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  height: 100%;
  padding: 36px;
  background: linear-gradient(180deg, rgba(4, 59, 84, 0.12) 0%, rgba(4, 59, 84, 0.86) 72%);
}

.wh-carousel-copy h3 {
  margin: 0 0 8px;
  color: #fff;
}

.wh-carousel-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

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

@keyframes wh-carousel-loop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.panel img.watermark {
  position: absolute;
  right: -20px;
  top: 20px;
  width: 240px;
  opacity: 0.14;
}

.photo-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 0;
  box-shadow: var(--shadow);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
}

#corporate-profile .photo-frame img {
  object-position: center;
}

#documentation .photo-frame {
  min-height: 380px;
}

#documentation .photo-frame img {
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 72%;
}

#approach .photo-frame,
#rent-collection .photo-frame,
#renewals .photo-frame,
#case-study .photo-frame {
  min-height: 380px;
}

#approach .photo-frame img,
#rent-collection .photo-frame img,
#renewals .photo-frame img,
#case-study .photo-frame img {
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 55%;
}

#renewals .photo-frame img {
  object-position: center 28%;
}

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

.photo-strip img,
.gallery-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-strip img.tall {
  height: 100%;
  min-height: 534px;
}

.panel h3,
.panel p {
  color: #fff;
  position: relative;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.fact {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.fact strong {
  display: block;
  font-size: 18px;
}

.fact span {
  font-size: 12px;
  opacity: 0.75;
}

/* Tickers — two identical groups, -50% loop */
.ticker {
  overflow: hidden;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy);
  padding: 16px 0;
  position: relative;
  z-index: 4;
}

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

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

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

.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 {
  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: #66c5ec;
}

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

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

.partners {
  overflow: hidden;
}

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

.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 {
  animation-play-state: paused;
}

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

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

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

.partner.is-captioned {
  height: auto;
  min-height: 0;
  padding: 16px 12px 14px;
  gap: 10px;
  margin: 0;
}

.partner.is-captioned figcaption {
  display: grid;
  gap: 2px;
  text-align: center;
}

.partner.is-captioned strong {
  font-size: 13px;
  color: var(--navy);
}

.partner.is-captioned small {
  font-size: 12px;
  color: var(--muted);
}

/* Why / values */
.tick-list {
  display: grid;
  gap: 14px;
}

.tick {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.tick i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pale);
  color: var(--zoom-dark);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 700;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 4px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  padding: 16px 28px 16px 0;
  min-height: 44px;
  list-style: none;
  position: relative;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
}

.faq details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq details[open] {
  border-color: #cfeaf6;
}

/* Forms */
.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
  color: var(--charcoal);
}

.form input:focus,
.form textarea:focus,
.form select:focus,
.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  outline: 2px solid var(--soft);
  outline-offset: 1px;
  border-color: var(--zoom-light);
}

.form .hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form .actions {
  margin-top: 4px;
}

.form-extra[hidden] {
  display: none !important;
}

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

.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"],
.form select[aria-invalid="true"] {
  border-color: var(--red);
}

.form-privacy {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.form-status.is-ok {
  color: var(--green);
}

.form-status.is-err {
  color: var(--red);
}

.form-status a {
  color: var(--zoom-dark);
  text-decoration: underline;
}

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 92px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d3e7f0;
}

.tl-item {
  display: grid;
  grid-template-columns: 80px 24px 1fr;
  gap: 18px;
  padding: 18px 0;
}

.tl-item .year {
  font-weight: 700;
  color: var(--zoom-light);
}

.tl-item .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--zoom-light);
  margin-top: 6px;
  box-shadow: 0 0 0 6px #e8f6fc;
}

.tl-item h3 {
  margin: 0 0 6px;
}

.tl-item p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

/* Key Milestones — centered spine, matching zoombahrain.co/about/timeline */
#key-milestones .wrap {
  width: min(1240px, calc(100% - 32px));
}

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

.km-head h2 {
  display: inline-block;
  font-size: clamp(1.9rem, 3.4vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}

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

.km-head p {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--muted);
}

.km-timeline {
  position: relative;
  padding: 8px 0 4px;
}

.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: 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-column: 2;
  grid-row: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #245575;
  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;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.km-card {
  grid-row: 1;
  max-width: 500px;
  background: var(--white);
  padding: 30px 35px;
  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 ease, box-shadow 0.3s ease;
}

.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: #555;
  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: #0a4a66;
}

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

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

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

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--navy);
  color: #e8f4fa;
  padding: 72px 0 96px;
}

body[data-page="contact"] .site-footer {
  padding-bottom: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 36px;
}

.site-footer h2,
.site-footer h4,
.site-footer .footer-heading {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.site-footer p,
.site-footer .cr-list {
  color: #e8f4fa;
}

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

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

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.cr-list {
  font-size: 12.5px;
  line-height: 1.7;
}

.ref-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.ref-table-wrap:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.ref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.ref-table th,
.ref-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  overflow-wrap: break-word;
}

.ref-table th {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  background: #f6fafc;
}

.ref-table tr:last-child td {
  border-bottom: 0;
}

.ref-table a {
  color: var(--zoom-dark);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.value-grid .card-photo,
#strategic-pillars .card-photo,
#why-zoom .card-photo,
#future-goals .card-photo,
#gcc-context .card-photo,
#culture-talent .card-photo,
#support-departments .card-photo,
#governance .card-photo,
#road-ahead .card-photo,
#why-zoom-gcc .card-photo,
[data-page="real-estate"] #services .card-photo,
[data-page="real-estate"] #who-we-work-with .card-photo,
[data-page="real-estate"] #sales .card-photo,
[data-page="real-estate"] #management .card-photo,
[data-page="real-estate"] #sole-lettings .card-photo,
[data-page="real-estate"] #further-support .card-photo,
[data-page="professional-services"] #services .card-photo,
[data-page="professional-services"] #visas .card-photo,
[data-page="professional-services"] #recruitment .card-photo,
[data-page="consultancy"] #services .card-photo,
[data-page="consultancy"] #market-entry .card-photo,
[data-page="consultancy"] #management .card-photo,
[data-page="consultancy"] #sales .card-photo,
[data-page="consultancy"] #after-establishment .card-photo,
[data-page="logistics"] #services .card-photo,
[data-page="logistics"] #who .card-photo,
[data-page="logistics"] #land .card-photo,
[data-page="logistics"] #customs .card-photo,
[data-page="logistics"] #also-provided .card-photo,
[data-page="logistics"] #how-we-work .card-photo,
[data-page="warehouse"] #uses .card-photo {
  aspect-ratio: 16 / 10;
  min-height: 200px;
  object-position: center 30%;
}

[data-page="warehouse"] #uses .card-photo[src*="wh-use-overflow"] {
  object-position: center 42%;
}

[data-page="real-estate"] #sole-lettings .card-photo {
  object-position: center 42%;
}

[data-page="professional-services"] #how-we-work .card-photo,
[data-page="consultancy"] #how-we-work .card-photo {
  aspect-ratio: 4 / 5;
  min-height: 220px;
  object-position: center 18%;
}

[data-page="consultancy"] #services .card-photo,
[data-page="consultancy"] #market-entry .card-photo,
[data-page="consultancy"] #management .card-photo,
[data-page="consultancy"] #sales .card-photo,
[data-page="consultancy"] #after-establishment .card-photo {
  object-position: center 22%;
}

#support-departments .card-photo,
#governance .card-photo {
  min-height: 238px;
}

.value-grid .card h3 {
  margin-bottom: 12px;
}

.value-grid .card p {
  max-width: 48ch;
}

.availability-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.availability-box .actions {
  margin-top: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 22px;
  padding-right: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 40px;
}

/* WhatsApp */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  z-index: 1200;
}

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

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

body[data-page="contact"] .wa-fab {
  display: none;
}

body[data-page="contact"] .to-top {
  bottom: 22px;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--zoom-dark);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 1200;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* People */
.person {
  text-align: left;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--zoom-dark), var(--medium));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.avatar.photo {
  width: 120px;
  height: 120px;
  padding: 0;
  overflow: hidden;
}

.avatar.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.leader-card .leader-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--zoom-dark), var(--medium));
}

#executive-leadership .grid-2 {
  grid-template-columns: repeat(2, minmax(0, 450px));
  justify-content: center;
}

#executive-leadership .leader-card {
  max-width: 450px;
  margin-inline: auto;
}

#executive-leadership .leader-photo {
  width: 100%;
  margin: 0;
  aspect-ratio: auto;
  height: 463px;
}

.leader-card .leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.leader-card .leader-photo.is-empty {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.06em;
}

.leader-card .leader-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.leader-card .leader-body .actions {
  margin-top: auto;
  padding-top: 16px;
}

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

a.card:hover {
  color: inherit;
}

.card-service img {
  display: block;
  width: 100%;
  height: 96px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.card-service p {
  margin-bottom: 0;
}

.card .cr {
  margin: 0 0 10px;
  color: var(--zoom-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.card-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 16px;
}

.card-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
}

.card-logos .card-logo {
  height: 40px;
  margin: 0;
}

.card-logos.is-row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 16px;
  margin-bottom: 0;
}

.card-logos.is-row .card-logo {
  height: 36px;
  max-width: calc(50% - 9px);
}

.table-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
}

.table-logos.is-row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.table-logos img {
  display: block;
  height: 28px;
  width: auto;
  max-width: min(220px, 100%);
  object-fit: contain;
  object-position: left center;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
  max-width: 880px;
}

.press-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(6, 82, 116, 0.03);
  transition: 0.28s var(--ease);
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cfeaf6;
}

.press-card-pub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--zoom-light) 0%, var(--zoom-dark) 100%);
}

.press-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.press-card-brand svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.press-card-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
}

.press-card-media {
  height: 260px;
  overflow: hidden;
  background: var(--palest);
}

.press-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-card-media img.is-portrait {
  object-position: center 42%;
}

.press-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 24px 24px;
}

.press-card-body h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 1.15rem;
  line-height: 1.4;
}

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

.press-card-foot {
  margin-top: auto;
}

.press-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #888;
  font-size: 13px;
}

.press-card-meta svg {
  width: 16px;
  height: 16px;
  color: var(--zoom-light);
  flex-shrink: 0;
}

.press-card-foot:not(:has(.press-card-meta)) {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.press-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  border: 2px solid var(--zoom-light);
  border-radius: 8px;
  color: var(--zoom-light);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.28s var(--ease);
}

.press-card-link:hover {
  background: var(--zoom-light);
  color: #fff;
}

.press-card-link svg {
  width: 16px;
  height: 16px;
}

.pullquote {
  margin: 0;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--zoom-light);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(6, 82, 116, 0.03);
}

.pullquote p {
  margin: 0 0 18px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--navy);
  max-width: 68ch;
}

.pullquote footer {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.pullquote .quote-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pullquote .quote-person .avatar.photo {
  width: 64px;
  height: 64px;
  margin: 0;
}

.pullquote .quote-person strong {
  display: block;
  color: var(--navy);
}

.pullquote .quote-person span {
  display: block;
  font-weight: 500;
}

.point-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.point-list li {
  position: relative;
  padding: 0 0 12px 28px;
}

.point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zoom-light);
}

/* Contact cards */
.phone-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

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

.phone-card.is-primary .muted {
  color: rgba(255, 255, 255, 0.72);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.anim-in {
  opacity: 0;
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: var(--d, 0s);
}

.anim-up {
  transform: translate3d(0, 40px, 0);
}

.anim-left {
  transform: translate3d(48px, 0, 0);
}

.anim-right {
  transform: translate3d(-48px, 0, 0);
}

.anim-fade {
  transform: translate3d(0, 16px, 0);
}

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

.card.anim-in.is-in:hover,
.biz-tile.anim-in.is-in:hover {
  transform: translateY(-4px);
}

.map-frame {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
}

.step-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zoom-light);
  margin-bottom: 10px;
}

.page-hero .actions {
  margin-top: 24px;
}

.list-clean {
  padding-left: 18px;
}

.list-clean li {
  margin-bottom: 8px;
}

.cta-band {
  background:
    radial-gradient(circle at 90% 20%, rgba(1, 156, 223, 0.35), transparent 30%),
    linear-gradient(135deg, #043b54, #065274);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

/* Mobile */
@media (max-width: 1320px) and (min-width: 1101px) {
  #mega-about {
    left: 0;
    transform: translateY(8px);
  }

  #mega-services {
    left: auto;
    right: 0;
    transform: translateY(8px);
  }

  .nav-links > li:focus-within #mega-about,
  .nav-links > li.open #mega-about,
  .nav-links > li:focus-within #mega-services,
  .nav-links > li.open #mega-services {
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .header-cta .socials {
    display: none;
  }

  .nav-links a,
  .nav-links button.has-menu {
    padding: 10px 8px;
  }
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links,
  .header-cta .socials {
    display: none;
  }

  .header-cta .btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

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

  .header-cta .cta-short {
    display: inline;
  }

  body.nav-open {
    overflow: hidden;
  }

  html:has(body.nav-open) {
    overflow: hidden;
  }

  body.nav-open .site-header,
  body.nav-open .site-header.is-solid,
  body:not([data-page="home"]).nav-open .site-header {
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    background: #043b54;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: none;
  }

  body.nav-open .site-header::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  body.nav-open .site-header .nav-bar {
    height: auto;
    min-height: var(--header-h);
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
  }

  body.nav-open .site-header .logo,
  body.nav-open .site-header .header-cta {
    min-height: var(--header-h);
  }

  body.nav-open .site-header nav {
    flex: 1 0 100%;
    order: 3;
  }

  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: static;
    width: 100%;
    padding: 12px 0 28px;
    overflow: visible;
    gap: 4px;
  }

  body.nav-open .nav-links > li {
    width: 100%;
  }

  body.nav-open .nav-links a,
  body.nav-open .nav-links button.has-menu {
    width: 100%;
    justify-content: space-between;
    padding: 14px 8px;
    font-size: 16px;
  }

  body.nav-open .nav-links .mega a {
    justify-content: flex-start;
    gap: 12px;
  }

  .mega {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    display: none;
    padding: 8px 0 12px 8px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links > li:focus-within .mega {
    display: none;
    transform: none;
  }

  .nav-links > li.open .mega {
    display: block;
    transform: none;
  }

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

  .mega a {
    color: #fff;
  }

  .mega a small {
    color: rgba(255, 255, 255, 0.65);
  }
}

@media (max-width: 980px) {

  .split,
  .split.reverse,
  .section-head,
  .footer-grid,
  .cta-band,
  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
    flex-direction: column;
    align-items: start;
  }

  .grid-4,
  .grid-3,
  .value-grid,
  .grid-why,
  .grid-services,
  .case-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3:has(> :nth-child(3):last-child),
  .case-stats:has(> :nth-child(3):last-child),
  .split .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-visual {
    grid-template-columns: minmax(0, 1fr);
  }

  .wrap.grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-services > * {
    grid-column: auto;
  }

  .biz-bento-slide {
    height: 560px;
  }

  #corporate-profile .photo-frame img {
    max-height: 360px;
    min-height: 240px;
  }

  #documentation .photo-frame,
  #documentation .photo-frame img,
  #approach .photo-frame,
  #approach .photo-frame img,
  #rent-collection .photo-frame,
  #rent-collection .photo-frame img,
  #renewals .photo-frame,
  #renewals .photo-frame img,
  #case-study .photo-frame,
  #case-study .photo-frame img {
    min-height: 240px;
  }

  .wh-carousel,
  .wh-carousel-copy {
    min-height: 320px;
  }

  .why-visual .photo-frame {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .why-visual .photo-frame img {
    min-height: 0;
    max-height: none;
    height: 100%;
    object-position: center 46%;
  }

  .case-feature-body {
    padding: 32px 24px;
  }

  .photo-frame img {
    min-height: 220px;
    height: auto;
  }

  .panel {
    min-height: 280px;
  }

  .cta-band {
    padding: 28px 22px;
  }

  .cta-band .actions {
    width: 100%;
  }

  .cta-band .btn {
    width: 100%;
    white-space: normal;
  }

  .availability-box {
    padding: 24px 20px;
  }

  .card:hover,
  .biz-tile:hover,
  .biz-tile:focus-visible,
  .biz-tile.anim-in.is-in:hover {
    transform: none;
  }

  .hero,
  .page-hero {
    min-height: 0;
    padding: calc(var(--header-h) + 28px) 0 0;
  }

  .hero-copy > *,
  .page-hero .wrap > *,
  .anim-in,
  .anim-up,
  .anim-left,
  .anim-right,
  .anim-fade {
    opacity: 1;
    animation: none;
    transform: none;
  }

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

  .timeline::before {
    left: 12px;
  }

  .tl-item {
    grid-template-columns: 18px 1fr;
  }

  .tl-item .year {
    grid-column: 2;
  }

  .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: 24px 22px;
  }

  .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));
  }

  .section,
  .page-hero,
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .km-head {
    margin-bottom: 40px;
  }

  .km-head h2 {
    font-size: 2rem;
  }

  .km-head p {
    font-size: 1rem;
  }

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

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

  .about-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 699px) {
  .grid-services,
  .grid-why,
  .grid-4,
  .grid-3,
  .grid-2,
  .value-grid,
  .form-row,
  .fact-row,
  .why-visual,
  .case-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  #executive-leadership .grid-2 {
    grid-template-columns: minmax(0, 450px);
    justify-content: center;
  }

  .press-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
  }

  .press-card-media img.is-portrait {
    object-position: center 28%;
  }

  .btn {
    white-space: normal;
  }

  .actions .btn {
    flex: 1 1 100%;
  }

  .biz-bento-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 340px 230px 230px;
    height: auto;
    flex-basis: min(360px, calc(100vw - 32px));
    width: min(360px, calc(100vw - 32px));
    min-width: min(360px, calc(100vw - 32px));
  }

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

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

  .page-hero {
    padding-top: calc(var(--header-h) + 32px);
  }

  .photo-strip img,
  .photo-strip img.tall {
    height: 220px;
    min-height: 0;
  }
}

@media (min-width: 700px) {
  .photo-strip {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .photo-strip:has(> :nth-child(3)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-strip img {
    height: 260px;
  }

  .photo-strip img.tall {
    height: 100%;
    min-height: 420px;
  }
}

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

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

  .ticker-group {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 48px;
    padding-inline-end: 48px;
    flex-shrink: 0;
  }

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

  .ticker-group .ticker-item:nth-child(n + 6) {
    display: inline-flex;
  }

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

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

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

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

  .photo-frame img {
    height: 100%;
    min-height: 380px;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .site-header .nav-bar {
    gap: 10px;
  }

  .site-header .logo {
    gap: 8px;
  }

  .site-header .logo img {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    gap: 8px;
  }

  .header-cta .btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

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

  .header-cta .cta-short {
    display: inline;
  }
}

@media (max-width: 420px) {
  .site-header .logo span {
    display: none;
  }
}

@media (max-width: 360px) {
  .site-header .logo strong {
    font-size: 16px;
  }

  .header-cta .btn {
    padding: 0 12px;
    font-size: 14px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .km-timeline::after,
  .km-timeline.is-drawn::after {
    transform: translateX(-50%) scaleY(1);
    transition: none;
  }

  .km-item:hover .km-card {
    transform: none;
  }

  .menu-toggle-icon span {
    transition: none;
  }

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

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

  .biz-carousel-track {
    display: flex;
    width: max-content;
    animation: none !important;
    transform: none;
  }

  .wh-carousel-track {
    animation: none !important;
    transform: none;
  }

  .wh-carousel-group + .wh-carousel-group {
    display: none;
  }

  .partners-group + .partners-group,
  .ticker-group + .ticker-group,
  .ticker-group .ticker-item:nth-child(n + 6),
  .biz-carousel-group + .biz-carousel-group {
    display: none !important;
  }

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

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

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-copy > *,
  .page-hero .wrap > *,
  .anim-in {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-bg,
  .page-hero-bg,
  .hero-copy,
  .page-hero .wrap,
  .biz-tile-photo {
    transform: none !important;
  }
}

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

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

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

/* Tagline lockup */
.tagline-lockup {
  margin: 28px 0 0;
  padding: 22px 24px;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(6, 82, 116, 0.06);
}

.tagline-lockup img {
  display: block;
  width: min(100%, 360px);
  height: auto;
}

/* Long-form business essays */
.essay-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

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

.essay-photo {
  position: relative;
}

.essay-photo figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* Warehouse / editorial gallery */
.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.gallery-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 82, 116, 0.05);
}

.gallery-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gallery-card img {
  height: 240px;
  border-radius: 0;
  transition: transform 0.6s var(--ease);
}

.gallery-card a:hover img,
.gallery-card a:focus-visible img {
  transform: scale(1.03);
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
}

.gallery-card figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 15px;
}

.gallery-card figcaption span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.gallery-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--palest);
  color: var(--zoom-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 59, 84, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
}

.lightbox-figure img {
  display: block;
  max-height: min(78vh, 860px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
}

.lightbox-figure figcaption {
  margin-top: 14px;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(4, 59, 84, 0.45);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
}

.lightbox-nav {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.lightbox-nav[data-dir="prev"] {
  left: 16px;
}

.lightbox-nav[data-dir="next"] {
  right: 16px;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: #fff;
  color: var(--zoom-dark);
}

/* Empty / forthcoming libraries */
.empty-state {
  max-width: 68ch;
  padding: 8px 0 12px;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.topic-chips li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

/* Contact location */
.location-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(6, 82, 116, 0.06);
}

.location-card address {
  font-style: normal;
  margin: 0 0 12px;
}

.location-card .map-frame {
  height: 360px;
}

.phone-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.phone-purpose {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zoom-light);
}

.phone-card.is-primary .phone-purpose {
  color: #9ad8f2;
}

.phone-card strong {
  font-size: 1.15rem;
}

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card:first-child {
    grid-column: 1 / -1;
  }

  .gallery-card:first-child img {
    height: 360px;
  }
}

@media (min-width: 980px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 699px) {
  .gallery-card img,
  .gallery-card:first-child img {
    height: 220px;
  }

  .location-card {
    padding: 18px;
  }

  .location-card .map-frame {
    height: 280px;
  }

  .lightbox {
    padding: 64px 12px 16px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .lightbox-nav[data-dir="prev"] {
    left: 24px;
  }

  .lightbox-nav[data-dir="next"] {
    right: 24px;
  }
}
