/* ============================================================
   NXT LYR — Designing the next layer of digital experience
   Brand system: off-white / white cards / emerald green /
   deep-green gradients / stacked layers motif
   ============================================================ */

:root {
  --bg: #f4f5f4;
  --bg-tint: #eef1ee;
  --card: #ffffff;
  --ink: #22272c;
  --body-c: #4a5158;
  --muted: #8a9299;
  --line: #e4e8e4;

  --green: #17b85c;
  --green-dark: #0f8a44;
  --green-deep: #14532d;
  --green-forest: #0e3d23;
  --leaf: #7bdc7b;
  --mint: #b9f0c6;

  --grad-hero: linear-gradient(132deg, #74d072 0%, #3da75c 38%, #1a6437 70%, #0e3d23 100%);
  --grad-band: linear-gradient(126deg, #67c966 0%, #2f9050 45%, #11472a 100%);

  --font-display: "Jost", sans-serif;
  --font-body: "Poppins", sans-serif;

  --radius: 20px;
  --shadow-card: 0 18px 40px -20px rgba(16, 64, 36, 0.16), 0 4px 14px rgba(16, 64, 36, 0.05);
  --shadow-card-hover: 0 26px 50px -22px rgba(16, 64, 36, 0.24), 0 6px 18px rgba(16, 64, 36, 0.07);

  --pad: clamp(20px, 5vw, 96px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--body-c);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--green); color: #fff; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ Reveal (fail-safe: hidden only with JS) ============ */
/* Apple-style: rise, sharpen from a soft blur, settle */
html.js .reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.99);
  filter: blur(2px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.21, 1) var(--d, 0s),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.21, 1) var(--d, 0s),
    filter 0.9s cubic-bezier(0.22, 0.61, 0.21, 1) var(--d, 0s);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ============ Brand ============ */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark { width: 34px; height: auto; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: 0.14em;
  color: var(--ink);
}

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px var(--pad);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(16, 64, 36, 0.08);
  padding-top: 11px;
  padding-bottom: 11px;
}
.nav .brand { margin-right: auto; }
/* over the green hero, before scrolling, the wordmark is white */
.nav:not(.is-scrolled) .brand__word,
.nav:not(.is-scrolled) .nav__links a { color: #fff; }

.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--body-c);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--green); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.nav:not(.is-scrolled) .nav__burger span { background: #fff; }
.nav .nav__burger[aria-expanded="true"] span { background: var(--ink); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: var(--pad);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu nav { display: grid; gap: 6px; width: 100%; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  padding: 10px 0;
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu__cta {
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 1rem !important;
  color: #fff !important;
  justify-self: stretch;
  text-align: center;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(23, 184, 92, 0.55);
}
.btn--green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--green-deep);
  box-shadow: 0 12px 28px -12px rgba(8, 36, 20, 0.45);
}
.btn--white:hover { transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.75);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: 0.84rem; }
.btn--full { width: 100%; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--pad) 120px;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

/* ============ Hero layer story (animated stack, right side) ============ */
.story {
  position: relative;
  height: min(66vh, 600px);
  display: flex;
  align-items: center;
}
.rail {
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 6;
}
.rail .step { display: flex; align-items: center; cursor: pointer; }
.rail .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.5s, transform 0.5s;
  min-width: 34px;
}
.rail .step.active .num { color: #fff; transform: scale(1.25); }
.rail .track {
  width: 1px;
  height: 46px;
  margin-left: 11px;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
}
.rail .track .fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: #fff; }

.stage { position: relative; width: 100%; height: 100%; perspective: 1100px; }
.stack3 { position: absolute; inset: 0; transform-style: preserve-3d; }
.panel {
  position: absolute;
  width: min(23vw, 320px);
  aspect-ratio: 1.04;
  border-radius: 40px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.11));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 34px 90px -24px rgba(0, 46, 18, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  will-change: transform, opacity;
  transition: background 0.8s, border-color 0.8s;
}
.panel.p1 { left: 8%; top: 1%; }
.panel.p2 { left: 24%; top: 22%; }
.panel.p3 { left: 40%; top: 43%; }
.panel.active {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12) 60%, rgba(255, 255, 255, 0.22));
  border-color: rgba(255, 255, 255, 0.65);
}
.panel .head {
  position: absolute;
  top: 24px; left: 28px; right: 28px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.panel .lnum {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
}
.panel .lword {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.panel .body { position: absolute; left: 28px; right: 28px; top: 78px; bottom: 24px; }

.vis-strategy svg { width: 100%; height: 100%; }
.vis-strategy .path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}
.vis-strategy .node { fill: #fff; opacity: 0; }
.vis-strategy .node.ghost { fill: rgba(255, 255, 255, 0.35); }

.vis-design .row { display: flex; gap: 9px; margin-bottom: 11px; }
.vis-design .el { border-radius: 9px; background: rgba(255, 255, 255, 0.22); transform: scaleX(0); transform-origin: left; }
.vis-design .nav-el { height: 11px; width: 100%; }
.vis-design .heroL { height: 48px; width: 62%; background: rgba(255, 255, 255, 0.3); }
.vis-design .heroR { height: 48px; width: 34%; background: rgba(255, 255, 255, 0.14); }
.vis-design .c { height: 36px; width: 31%; background: rgba(255, 255, 255, 0.16); }
.vis-design .btnW { height: 15px; width: 32%; border-radius: 99px; background: #fff; opacity: 0.85; }

.vis-build .codeline {
  height: 7px; border-radius: 99px; margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.25);
  transform: scaleX(0); transform-origin: left;
}
.vis-build .cl1 { width: 48%; }
.vis-build .cl2 { width: 72%; background: rgba(255, 255, 255, 0.16); }
.vis-build .cl3 { width: 36%; background: rgba(255, 255, 255, 0.32); }
.vis-build .cl4 { width: 60%; background: rgba(255, 255, 255, 0.13); }
.vis-build .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 14px; }
.vis-build .cube {
  aspect-ratio: 1; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  opacity: 0; transform: scale(0.6);
}

.panel.pNext {
  left: 40%; top: 43%; z-index: 9; opacity: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8));
  border-color: #fff;
}
.panel.pNext .inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 22px;
}
.panel.pNext .nx-eyebrow {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--green-dark); font-weight: 600;
}
.panel.pNext .nx-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--green-deep);
  line-height: 1.25;
}

.caption { position: absolute; left: 5%; bottom: -10px; max-width: 360px; z-index: 7; }
.caption .cap-line {
  width: 46px; height: 1px; background: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px; transform: scaleX(0); transform-origin: left;
}
.caption .cap-step {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5); margin-bottom: 6px;
}
.caption .cap-title {
  font-family: var(--font-display);
  font-weight: 300; font-size: 24px; color: #fff;
  margin-bottom: 6px; min-height: 30px;
}
.caption .cap-desc {
  font-size: 13.5px; font-weight: 300; line-height: 1.7;
  color: rgba(255, 255, 255, 0.7); min-height: 44px;
}

.hero__logos {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 36, 20, 0.18);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.hero__logos-track {
  display: flex;
  width: max-content;
  animation: logoPan 36s linear infinite;
}
.hero__logos:hover .hero__logos-track { animation-play-state: paused; }
.hero__logos-set {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5.5vw, 84px);
  padding-right: clamp(44px, 5.5vw, 84px);
}
.hero__logos img {
  height: 40px;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}
@keyframes logoPan {
  to { transform: translateX(-50%); }
}

.hero__inner {
  position: relative;
  max-width: 880px;
}
.hero__kicker {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.12;
  color: #fff;
  letter-spacing: 0.005em;
}
.hero__sub {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 30px;
  font-size: 1.02rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}
.hero__scroll {
  position: absolute;
  bottom: 86px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 6px); } }

/* ============ Newton's cradle accent ============ */
.cradle {
  position: absolute;
  top: 0;
  right: clamp(20px, 10vw, 160px);
  display: flex;
  gap: 18px;
  pointer-events: none;
}
.cradle__arm {
  position: relative;
  width: 3px;
  height: clamp(90px, 12vw, 170px);
  background: linear-gradient(to bottom, rgba(23, 184, 92, 0.15), rgba(23, 184, 92, 0.55));
  border-radius: 2px;
  transform-origin: top center;
}
.cradle__arm i {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #6edc7e, var(--green) 55%, var(--green-dark));
  box-shadow: 0 12px 22px -8px rgba(23, 184, 92, 0.55);
}
.cradle__arm--swing { animation: cradleSwing 2.6s cubic-bezier(0.45, 0, 0.55, 1) infinite; }
@keyframes cradleSwing {
  0%, 100% { transform: rotate(0deg); }
  30% { transform: rotate(-26deg); }
  55% { transform: rotate(0deg); }
}
.section--tint { position: relative; overflow: hidden; }

/* ============ Sections ============ */
.section {
  padding: clamp(64px, 9vw, 130px) var(--pad);
}
.section--tint { background: var(--bg-tint); }
.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: clamp(34px, 4.5vw, 60px);
}
.section__sub {
  max-width: 520px;
  margin-top: -14px;
  margin-bottom: 40px;
}
.section__note {
  color: var(--green);
  font-weight: 500;
}
.section__split {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.section__split .section__title { margin-bottom: 24px; }

/* ============ Cards ============ */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(26px, 3vw, 38px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.card__title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.4;
}
.card__title--dark {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.45;
}
.card__title--dark span { color: var(--green); font-weight: 600; margin-right: 4px; }
.card__icon {
  display: inline-flex;
  width: 52px; height: 52px;
  color: var(--green);
  margin-bottom: 18px;
}
.card__icon svg { width: 100%; height: 100%; }
.card p { font-size: 0.93rem; }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.cards-3--narrow { max-width: 1080px; }
.card--mini { padding: 26px 28px; }
.card--wide { margin-top: clamp(24px, 3vw, 40px); }

/* ============ B2B / B2C split ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 34px);
}
.split__panel {
  border-radius: var(--radius);
  padding: clamp(30px, 3.6vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.split__panel:hover { transform: translateY(-4px); }
.split__panel--b2b {
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.split__panel--b2c {
  background: var(--grad-band);
  box-shadow: 0 26px 50px -22px rgba(14, 61, 35, 0.5);
  color: rgba(255, 255, 255, 0.92);
}
.split__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--green);
  margin-bottom: 10px;
}
.split__panel--b2c .split__label { color: var(--mint); }
.split__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 14px;
}
.split__panel--b2c .split__title { color: #fff; }
.split__body { max-width: 460px; }
/* logo chip wall: each client in its own soft tile, uneven rows center */
.split__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 30px 0 34px;
}
.split__logos img {
  flex: 0 1 calc(33.333% - 7px);
  height: 78px;
  object-fit: contain;
  /* pure white so the logos' baked white backgrounds blend invisibly */
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.split__logos img:hover {
  border-color: rgba(23, 184, 92, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(16, 64, 36, 0.28);
}
/* portrait and square marks are height-limited in wide chips; give them
   less padding so they sit at the same optical scale as the wordmarks */
.split__logos img[src*="hayya"],
.split__logos img[src*="dubai-frame"] { padding: 11px 18px; }
.split__logos img[src*="hamad"],
.split__logos img[src*="lb-ministry"] { padding: 13px 18px; }
.split__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin: 30px 0 34px;
}
.split__thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 22px -10px rgba(5, 30, 16, 0.45);
}
.split__panel .btn { margin-top: auto; }

/* ============ Services (What We Do) ============ */
#services { position: relative; overflow: hidden; }

.services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.service { position: relative; padding-top: 8px; }
.service__num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px -8px rgba(23, 184, 92, 0.5);
}
.service:nth-child(even) .service__num { background: var(--leaf); color: var(--green-deep); }
.service h3 { margin-bottom: 8px; }
.service p { font-size: 0.9rem; }

/* ============ Applied ============ */
.applied {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 26px);
}
.applied__item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 26px 28px;
  border-left: 4px solid var(--green);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.applied__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.applied__item p { font-size: 0.9rem; margin-top: 8px; }

/* ============ Process ============ */
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 50px;
  counter-reset: step;
}
.process::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%; right: 6%;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--leaf), var(--green) 50%, var(--green-deep));
  opacity: 0.85;
}
.process li {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.process__dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #fff;
  color: var(--green);
  font-weight: 700;
  box-shadow: var(--shadow-card);
}
.process h3 {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.engagements { margin-top: clamp(44px, 6vw, 70px); }
.engagements__label {
  color: var(--green);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============ Clients ============ */
.client-tile {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 0.78;
  display: grid;
  place-items: center;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.client-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
/* fixed image box: every tile stays the same height regardless of the
   logo's intrinsic size, and the logo scales to fit inside it */
.client-tile img {
  width: 84%;
  height: 104px;
  object-fit: contain;
}
/* portrait and square marks fill the box height and read oversized
   next to wide wordmarks; pull them back to a unified optical scale */
.client-tile img[src*="hayya"],
.client-tile img[src*="dubai-frame"] { height: 76px; }
.client-tile img[src*="hamad"],
.client-tile img[src*="eand"],
.client-tile img[src*="lb-ministry"] { height: 90px; }

/* ============ Green bands (slim section headers) ============ */
.band {
  position: relative;
  background: var(--grad-band);
  padding: clamp(34px, 4.5vw, 56px) var(--pad);
  overflow: hidden;
}
.band__layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.band__layers span {
  position: absolute;
  right: -10%;
  width: 34vw;
  height: 26vw;
  border-radius: 7vw;
  transform: rotate(-24deg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.02) 60%);
}
.band__layers span:nth-child(1) { top: -16vw; }
.band__layers span:nth-child(2) { top: -8vw; opacity: 0.7; }
.band__layers span:nth-child(3) { top: 0; opacity: 0.45; }
.band__inner { position: relative; }
.band__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
}

/* ============ Case studies ============ */
.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}
.case { display: flex; flex-direction: column; gap: 12px; }
.case__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--ink);
  text-align: center;
}
.case__meta {
  text-align: center;
  font-size: 0.88rem;
  color: var(--body-c);
}
.case__meta b { color: var(--ink); }
.case__media {
  border-radius: 14px;
  overflow: hidden;
  margin: 6px 0 10px;
}
.case__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case:hover .case__media img { transform: scale(1.04); }
.case p { font-size: 0.92rem; }
.case p b { color: var(--ink); }
.pill {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
}

/* ============ B2B spotlight ============ */
.section--spotlight { padding-bottom: 0; }
.spotlight {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.spotlight__body {
  padding: clamp(30px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.spotlight__eyebrow {
  color: var(--green);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.spotlight__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  line-height: 1.1;
}
.spotlight__client { font-size: 0.92rem; }
.spotlight__client b { color: var(--ink); }
/* award facts: editorial stat row, same language as the Legacy section */
.spotlight__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  width: 100%;
  margin: 8px 0 4px;
}
.spotlight__facts > div {
  border-left: 2px solid var(--green);
  padding-left: 16px;
}
.spotlight__facts dt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--ink);
}
.spotlight__facts dd {
  margin: 3px 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.spotlight__body p { font-size: 0.95rem; }
.spotlight__body .btn { margin-top: 10px; }
.spotlight__media { min-height: 340px; }
.spotlight__media img,
.spotlight__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ Inline text links (trailers, videos) ============ */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 10px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.text-link:hover { color: var(--green-dark); text-decoration: underline; }
.game__body .text-link { margin-top: 12px; margin-right: 16px; }

/* store availability badges */
.game__stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 14px;
}
.game__stores .text-link { margin: 0; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 9px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.store-badge:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

/* ============ Legacy ============ */
.legacy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.legacy__cell {
  position: relative;
  padding: clamp(30px, 3.4vw, 48px) 26px;
  text-align: center;
}
.legacy__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--green);
  line-height: 1.1;
}
.legacy__label {
  display: block;
  margin-top: 10px;
  color: var(--body-c);
  font-size: 0.92rem;
}
/* green photo-corner brackets, as in the brochure */
.corners::before,
.corners::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 3px solid var(--green);
}
.corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.corners::after { bottom: 0; right: 0; border-left: none; border-top: none; }

/* ============ Games ============ */
.games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.game { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.game__media { overflow: hidden; }
.game__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game:hover .game__media img { transform: scale(1.05); }
.game__body { padding: 22px 24px 26px; }
.game__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.game__meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.game__tag {
  color: var(--green);
  font-style: italic;
  font-size: 0.9rem;
}
.game--more {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(150deg, #ffffff, #e9f6ec);
}
.game--more h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 10px;
}
.game--more .game__meta { font-size: 0.9rem; color: var(--body-c); }

/* ============ Awards & media ============ */
.awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.award {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 16px 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.award:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.award img {
  height: 56px;
  margin: 0 auto 12px;
  object-fit: contain;
}
.award figcaption {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.media { margin-top: clamp(50px, 7vw, 80px); }
.media__label {
  color: var(--green);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.media__wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}
.client-tile--press {
  aspect-ratio: auto;
  height: 84px;
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 8px 20px -12px rgba(16, 64, 36, 0.14), 0 2px 8px rgba(16, 64, 36, 0.04);
}
.client-tile--press img {
  max-height: 34px;
  max-width: 80%;
}

/* ============ Team ============ */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.member { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.member__photo {
  background: linear-gradient(165deg, #eaf4ec, #d7e9dc);
  overflow: hidden;
}
/* all four avatars share the same 750x843 ratio, so cards stay even
   while showing the complete image */
.member__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.member__body { padding: 22px 24px 26px; }
.member__body .card__title { margin-bottom: 2px; }
.member__role {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.member__body p:last-child { font-size: 0.86rem; }
.delivery {
  list-style: none;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}
.delivery li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
}
.delivery li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--green);
}

/* ============ Contact ============ */
.contact {
  position: relative;
  background: var(--grad-hero);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  overflow: hidden;
}
.contact__circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact__circles span {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 70%);
}
.contact__circles span:nth-child(1) { width: 56vw; height: 56vw; right: -16vw; bottom: -28vw; }
.contact__circles span:nth-child(2) { width: 42vw; height: 42vw; right: -9vw; bottom: -22vw; }
.contact__circles span:nth-child(3) { width: 28vw; height: 28vw; right: -2vw; bottom: -16vw; }

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.12;
  color: #fff;
}
.contact__sub {
  color: rgba(255, 255, 255, 0.9);
  max-width: 460px;
  margin-top: 24px;
}
.contact__details {
  list-style: none;
  margin-top: 38px;
  display: grid;
  gap: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}
.contact__details > li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: baseline;
}
.contact__details span:first-child {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact__details a { transition: opacity 0.2s; }
.contact__details a:hover { opacity: 0.75; }
.contact__socials { display: flex; gap: 18px; }

.contact__form {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -25px rgba(5, 30, 16, 0.5);
  padding: clamp(26px, 3vw, 40px);
  display: grid;
  gap: 18px;
}
.contact__form label { display: grid; gap: 7px; }
.contact__form label span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.contact__form select {
  appearance: none;
  padding-right: 40px;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2317b85c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.contact__form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--muted);
}

/* ============ Footer ============ */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 34px var(--pad);
  background: var(--bg);
}
.footer .brand { margin-right: auto; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--body-c);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--green); }
.footer__legal {
  width: 100%;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .services { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(5, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .awards { grid-template-columns: repeat(3, 1fr); }
  .section__split { grid-template-columns: 1fr; }
}

@media (max-width: 1020px) {
  .hero__grid { grid-template-columns: 1fr; }
  .story { display: none; }
}

@media (max-width: 900px) {
  .cradle { display: none; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .cards-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__media { min-height: 240px; order: -1; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .applied { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .process::before { display: none; }
  .process li { display: flex; align-items: center; gap: 16px; text-align: left; }
  .process__dot { margin: 0; flex-shrink: 0; }
  .cases { grid-template-columns: 1fr; }
  .games { grid-template-columns: repeat(2, 1fr); }
  .legacy { grid-template-columns: repeat(2, 1fr); }
  .media__wall { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .delivery { grid-template-columns: 1fr; }
}

/* ============ Mobile (designed, not just scaled) ============ */
@media (max-width: 700px) {

  /* hero: calmer composition, plates become a corner accent */
  .hero {
    padding-top: 120px;
    padding-bottom: 130px;
    justify-content: flex-start;
  }
  .hero__kicker { font-size: 0.72rem; letter-spacing: 0.18em; }
  .hero__sub { font-size: 0.97rem; margin-top: 24px; }

  /* big, thumb-friendly stacked CTAs */
  .hero__cta { flex-direction: column; width: 100%; margin-top: 34px; }
  .hero__cta .btn { width: 100%; padding: 17px 30px; }

  /* marquee: smaller logos, same panning */
  .hero__logos { padding: 14px 0; }
  .hero__logos-set { gap: 34px; padding-right: 34px; }
  .hero__logos img { height: 26px; max-width: 110px; }
  .hero__scroll { display: none; }
}

@media (max-width: 560px) {
  .section { padding-left: 20px; padding-right: 20px; }

  /* split panels: tighter, full-width CTAs */
  .split__panel { padding: 26px 22px; }
  .split__panel .btn { width: 100%; }
  .split__logos { gap: 8px; margin: 24px 0 28px; }
  .split__logos img { flex-basis: calc(50% - 4px); height: 68px; padding: 14px 16px; }
  .split__thumbs { gap: 8px; margin: 24px 0 28px; }

  .services { grid-template-columns: 1fr; }
  .games { grid-template-columns: 1fr; }
  .legacy { grid-template-columns: 1fr; gap: 14px; }
  .legacy__cell { padding: 26px 20px; }
  .client-tile { padding: 16px; }
  .awards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .award { padding: 18px 12px 14px; }
  .award img { height: 44px; }
  .media__wall { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .client-tile--press { height: 68px; padding: 12px 16px; }
  .client-tile--press img { max-height: 26px; }

  .team { grid-template-columns: 1fr; }
  .member__body { padding: 20px 22px 24px; }

  .cases .card { padding: 22px 18px; }
  .case__title { font-size: 1.45rem; }

  .contact { padding-left: 20px; padding-right: 20px; }
  .contact__details > li { grid-template-columns: 1fr; gap: 4px; }
  .contact__form { padding: 24px 20px; }

  .footer { justify-content: center; text-align: center; }
  .footer .brand { margin-right: 0; width: 100%; justify-content: center; }
  .footer__links { width: 100%; justify-content: center; gap: 16px 20px; }
  .footer__links a { padding: 6px 2px; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

/* disclosure controls exist only on mobile */
.case__more, .games-toggle { display: none; }

/* ============================================================
   Mobile experience (max-width 700px)
   Desktop untouched. Everything scrolls vertically; dense list
   layouts compress the long collections and the games grid and
   case stories use progressive disclosure instead of carousels.
   ============================================================ */
@media (max-width: 700px) {

  .section { padding-top: 48px; padding-bottom: 48px; }
  .section__title { margin-bottom: 26px; }

  /* ---- games: scannable list rows, five visible, expand for all ---- */
  .games { display: flex; flex-direction: column; gap: 12px; }
  .games .game { flex-direction: row; align-items: flex-start; border-radius: 16px; }
  /* fixed square thumbnail: key art keeps a sane center crop instead of
     stretching into a sliver when the text column grows */
  .games .game__media {
    flex: 0 0 104px;
    margin: 14px 0 14px 14px;
    border-radius: 12px;
    overflow: hidden;
  }
  .games .game__media img {
    width: 104px;
    height: 104px;
    aspect-ratio: 1;
    object-fit: cover;
  }
  .games .game__body { padding: 14px 15px; min-width: 0; }
  .games .game__body h3 { font-size: 0.98rem; }
  .games .game__meta { font-size: 0.7rem; margin-bottom: 4px; }
  .games .game__tag { font-size: 0.8rem; }
  /* one tidy row for badges and links, soft badge instead of the heavy block */
  .games .game__stores { margin-top: 10px; gap: 8px 14px; }
  .games .store-badge {
    background: #eef5ef;
    color: var(--green-deep);
    border: 1px solid #d9e6db;
    padding: 6px 11px;
    font-size: 0.7rem;
    border-radius: 8px;
  }
  .games .store-badge:hover { background: #e2efe4; transform: none; }
  .games .game__body .text-link { font-size: 0.8rem; margin-top: 10px; margin-right: 14px; }
  .games .game__stores .text-link { margin: 0; }

  .games .game:nth-child(n + 6) { display: none; }
  .games.expanded .game { display: flex; }
  .games .game--more,
  .games.expanded .game--more { display: none; }
  .games-toggle { display: inline-flex; width: 100%; margin-top: 16px; }

  /* ---- cases: stacked; the story opens on demand ---- */
  .case > p { display: none; }
  .case > p.case__meta { display: block; }
  .case.open > p { display: block; font-size: 0.88rem; }
  .case__more {
    display: inline-flex;
    align-self: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    color: var(--green);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 6px 0;
  }
  .case__title { font-size: 1.3rem; }

  /* ---- team: two-by-two grid ---- */
  .team { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .member { flex-direction: column; }
  .member__body { padding: 12px 14px 16px; }
  .member__body .card__title { font-size: 0.9rem; margin-bottom: 1px; }
  .member__role { font-size: 0.74rem; margin-bottom: 6px; }
  .member__body p:last-child { font-size: 0.72rem; line-height: 1.55; }

  /* ---- awards and press: compact vertical grids ---- */
  .awards { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .award { padding: 14px 8px 10px; }
  .award img { height: 34px; margin-bottom: 8px; }
  .award figcaption { font-size: 0.58rem; }
  .media__wall { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .client-tile--press { height: 60px; padding: 12px 16px; }
  .client-tile--press img { max-height: 24px; }

  /* ---- legacy: two compact columns ---- */
  .legacy { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .legacy__cell { padding: 20px 12px; }
  .legacy__num { font-size: 1.45rem; }
  .legacy__label { font-size: 0.74rem; margin-top: 6px; }
  .corners::before, .corners::after { width: 14px; height: 14px; border-width: 2px; }

  /* ---- services: number beside title ---- */
  .services { grid-template-columns: 1fr; gap: 18px; }
  .service { display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; padding-top: 0; }
  .service__num { width: 40px; height: 40px; font-size: 0.78rem; margin-bottom: 0; grid-row: 1 / span 2; }
  .service h3 { align-self: center; margin-bottom: 0; }
  .service p { grid-column: 2; font-size: 0.86rem; margin-top: 4px; }

  /* ---- B2B logo chips: three per row ---- */
  .split__logos { gap: 8px; }
  .split__logos img { flex-basis: calc(33.333% - 6px); height: 54px; padding: 10px; border-radius: 10px; }
  .split__logos img[src*="hayya"],
  .split__logos img[src*="dubai-frame"] { padding: 7px 10px; }
  .split__logos img[src*="hamad"],
  .split__logos img[src*="lb-ministry"] { padding: 8px 10px; }

  /* ---- spotlight + contact rhythm ---- */
  .spotlight__body { gap: 12px; }
  .spotlight__facts { gap: 14px 18px; }
  .spotlight__facts dt { font-size: 1.15rem; }
  .spotlight__body p { font-size: 0.9rem; }
  .contact { padding-top: 56px; padding-bottom: 56px; }
  .contact__sub { margin-top: 18px; }
  .contact__details { margin-top: 28px; gap: 14px; }
}
