/* ==========================================================================
   Zain Consulting — Page & section components
   Home sections, About, Team, Services, Projects, Blog, Contact, legal.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Home — Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(86vh, 700px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(7,26,49,.96) 0%,
    rgba(7,26,49,.90) 26%,
    rgba(9,32,58,.62) 52%,
    rgba(12,35,64,.20) 78%,
    rgba(12,35,64,.10) 100%);
}
[dir="rtl"] .hero__bg::after {
  background: linear-gradient(270deg,
    rgba(7,26,49,.96) 0%,
    rgba(7,26,49,.90) 26%,
    rgba(9,32,58,.62) 52%,
    rgba(12,35,64,.20) 78%,
    rgba(12,35,64,.10) 100%);
}
/* Home hero: the brand's global-reach map instead of a photograph.
   The artwork's own field is near-black, so its edges are dissolved with a radial
   mask rather than colour-matched — that keeps the brand navy behind it. */
.hero--map { background: linear-gradient(118deg, var(--navy-900) 0%, var(--navy-800) 58%, var(--navy-700) 100%); }
.hero--map .hero__bg img {
  object-fit: contain;
  object-position: right center;
  opacity: .92;
  -webkit-mask-image: radial-gradient(115% 125% at 78% 50%, #000 40%, transparent 86%);
  mask-image: radial-gradient(115% 125% at 78% 50%, #000 40%, transparent 86%);
}
.hero--map .hero__bg::after {
  background: linear-gradient(90deg,
    rgba(7,26,49,.95) 0%,
    rgba(7,26,49,.80) 30%,
    rgba(7,26,49,.34) 55%,
    rgba(7,26,49,0) 78%);
}
[dir="rtl"] .hero--map .hero__bg img {
  object-position: left center;
  -webkit-mask-image: radial-gradient(115% 125% at 22% 50%, #000 40%, transparent 86%);
  mask-image: radial-gradient(115% 125% at 22% 50%, #000 40%, transparent 86%);
}
[dir="rtl"] .hero--map .hero__bg::after {
  background: linear-gradient(270deg,
    rgba(7,26,49,.95) 0%,
    rgba(7,26,49,.80) 30%,
    rgba(7,26,49,.34) 55%,
    rgba(7,26,49,0) 78%);
}

.hero__content { max-width: 640px; padding-block: 96px; position: relative; }
.hero h1 { color: #fff; margin-bottom: .5em; letter-spacing: -.025em; }
.hero__lead {
  font-size: 1.04rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero__scroll {
  position: absolute;
  bottom: 26px;
  inset-inline-start: 50%;
  margin-inline-start: -11px;   /* half the icon, instead of translateX(-50%) */
  width: 22px; height: 22px;
  color: rgba(255,255,255,.6);
  display: grid; place-items: center;
  animation: heroBob 2.4s var(--ease) infinite;
}
@keyframes heroBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* --------------------------------------------------------------------------
   1b. Home — Hero subtitle
   -------------------------------------------------------------------------- */
.hero-sub { background: #fff; padding-block: 40px 36px; text-align: center; }
.hero-sub p {
  max-width: 940px; margin: 0 auto;
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 400; line-height: 1.65;
  color: var(--navy-700);
}
.hero-sub::before {
  content: '';
  display: block;
  width: 62px; height: 3px; border-radius: 2px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-200));
}

/* --------------------------------------------------------------------------
   2. Home — Trust bar
   -------------------------------------------------------------------------- */
.trust { padding-block: 34px; background: #fff; border-bottom: 1px solid var(--line-soft); }
.trust__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.stats-box {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-xs);
}
.stat {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 30px;
  border-inline-end: 1px solid var(--line);
}
.stat:last-child { border-inline-end: 0; }
.stat__icon { color: var(--gold-500); display: grid; place-items: center; }
.stat__icon .icon { width: 30px; height: 30px; stroke-width: 1.5; }
.stat__num {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--navy-800); line-height: 1.1; display: block;
}
.stat__label { font-size: .74rem; color: var(--muted); letter-spacing: .03em; }

.client-logos { display: flex; align-items: center; gap: 42px; flex-wrap: wrap; }
.client-logo {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  letter-spacing: .03em; color: #A7B4C4;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.client-logo .icon { width: 20px; height: 20px; }
.client-logo:hover { color: var(--navy-600); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   3. Home — Philosophy split
   -------------------------------------------------------------------------- */
/* Empowerment panel and Why Choose Us share one band, per the brand guide. */
.philosophy-band { padding-block: var(--section-y); }
.pband {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.pband__left {
  background: var(--navy-800);
  color: rgba(255,255,255,.76);
  padding: 46px 42px 42px;
  position: relative;
  overflow: hidden;
}
.pband__left::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(520px 260px at 12% 0%, rgba(201,155,63,.20), transparent 62%);
  pointer-events: none;
}
.pband__left > * { position: relative; }
.pband__emblem {
  width: 72px; height: 72px; margin-bottom: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  color: var(--gold-400);
}
.pband__emblem .icon { width: 32px; height: 32px; }
.pband__left h2 {
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .6em;
}
[dir="rtl"] .pband__left h2 { letter-spacing: 0; }
.pband__left p { font-size: .93rem; margin: 0; }

.chain {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: flex; align-items: flex-start; gap: 4px;
}
.chain li {
  flex: 1; margin: 0; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center;
}
.chain__ico { color: var(--gold-400); }
.chain__ico .icon { width: 30px; height: 30px; stroke-width: 1.5; }
.chain__label {
  font-family: var(--font-head); font-size: .58rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.82);
}
[dir="rtl"] .chain__label { letter-spacing: .02em; font-size: .66rem; }
.chain li:not(:last-child)::after {
  content: '';
  position: absolute; top: 10px; inset-inline-end: -5px;
  width: 9px; height: 9px;
  border-top: 2px solid var(--gold-500);
  border-inline-end: 2px solid var(--gold-500);
  transform: rotate(45deg);
}
[dir="rtl"] .chain li:not(:last-child)::after { transform: rotate(-135deg); }

.pband__right { background: var(--cream-soft); padding: 46px 42px 42px; }
.pband__right h2 {
  text-align: center;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 32px;
}
[dir="rtl"] .pband__right h2 { letter-spacing: 0; }
.whygrid { display: grid; grid-template-columns: 1fr 1fr; }
.whyitem { display: flex; gap: 14px; align-items: flex-start; padding: 22px 22px; }
.whyitem:nth-child(odd) { border-inline-end: 1px solid var(--line); }
.whyitem:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.whyitem__ico {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--gold-100); color: var(--gold-600);
  border: 1px solid var(--gold-200);
  transition: background var(--t), color var(--t);
}
.whyitem__ico .icon { width: 22px; height: 22px; }
.whyitem:hover .whyitem__ico { background: var(--gold-500); color: #fff; border-color: transparent; }
.whyitem h3 { font-size: .98rem; margin-bottom: .3em; }
.whyitem p { font-size: .86rem; margin: 0; }

/* --------------------------------------------------------------------------
   5. Home — Case study spotlight
   -------------------------------------------------------------------------- */
.spotlight {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.spotlight__bg { position: absolute; inset: 0; z-index: -2; }
.spotlight__bg img { width: 100%; height: 100%; object-fit: cover; }
.spotlight__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,26,49,.97) 0%, rgba(7,26,49,.88) 38%, rgba(12,35,64,.72) 70%, rgba(12,35,64,.66) 100%);
}
.spotlight__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  padding: 52px 48px;
  align-items: center;
}
.spotlight h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.spotlight p { color: rgba(255,255,255,.78); font-size: .95rem; }

.spot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.spot-list li { margin: 0; display: flex; gap: 14px; align-items: flex-start; }
.spot-list .spot-ico {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: rgba(201,155,63,.16);
  color: var(--gold-400);
}
.spot-list .spot-ico .icon { width: 18px; height: 18px; }
.spot-list h4 {
  color: var(--gold-400); font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 5px;
}
.spot-list p { font-size: .87rem; color: rgba(255,255,255,.76); margin: 0; }

/* --------------------------------------------------------------------------
   6. Blog cards / post meta
   -------------------------------------------------------------------------- */
.post-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 16px;
  font-size: .77rem; color: var(--muted); margin-bottom: 12px;
}
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta .icon { width: 14px; height: 14px; }

.card__media .tag { position: absolute; top: 14px; inset-inline-start: 14px; background: rgba(255,255,255,.94); }

/* --------------------------------------------------------------------------
   7. About page
   -------------------------------------------------------------------------- */
.story { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.story__media { position: relative; }
.story__media img { border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.story__media::before {
  content: '';
  position: absolute;
  inset-inline-start: -18px; top: -18px;
  width: 130px; height: 130px;
  border: 2px solid var(--gold-200);
  border-radius: var(--r-lg);
  z-index: -1;
}
.story__stat {
  position: absolute;
  inset-inline-end: -22px; bottom: -26px;
  background: var(--navy-800); color: #fff;
  border-radius: var(--r-md);
  padding: 20px 26px;
  box-shadow: var(--sh-lg);
  text-align: center;
  min-width: 160px;
}
.story__stat strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--gold-400); line-height: 1.1; }
.story__stat span { font-size: .76rem; color: rgba(255,255,255,.7); letter-spacing: .05em; }

.vm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.vm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.vm-card::after {
  content: '';
  position: absolute; top: 0; inset-inline-start: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-200));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.vm-card:hover::after { transform: scaleX(1); }
.vm-card__icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--navy-800); color: var(--gold-400);
  margin-bottom: 22px;
}
.vm-card__icon .icon { width: 28px; height: 28px; }
.vm-card ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.vm-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; margin: 0; }
.vm-card ul .icon { width: 17px; height: 17px; color: var(--gold-600); margin-top: 5px; flex: none; }

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.value-card__icon {
  width: 62px; height: 62px; margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-100); color: var(--gold-600);
  border: 1px solid var(--gold-200);
  transition: background var(--t), color var(--t);
}
.value-card__icon .icon { width: 26px; height: 26px; }
.value-card:hover .value-card__icon { background: var(--gold-500); color: #fff; border-color: transparent; }
.value-card h3 { font-size: 1.05rem; margin-bottom: .4em; }
.value-card p { font-size: .88rem; margin: 0; }

/* --------------------------------------------------------------------------
   8. Team page
   -------------------------------------------------------------------------- */
/* Two columns of horizontal profile cards — each carries a brief, core expertise
   and key credentials, which is far more text than a portrait tile can hold. */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
}
.member:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.member__photo {
  position: relative;
  min-height: 100%;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center;
  overflow: hidden;
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__initials {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 600;
  color: var(--gold-400); letter-spacing: .04em;
}
.member__photo::after {
  content: '';
  position: absolute; inset-block: 0; inset-inline-end: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold-500), transparent);
}
.member__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.member__name { font-size: 1.08rem; margin-bottom: .2em; }
.member__role {
  font-family: var(--font-head); font-size: .8rem; font-weight: 500;
  color: var(--gold-600); letter-spacing: .04em; margin-bottom: 14px;
}
.member__bio { font-size: .87rem; margin-bottom: 16px; }

.member__facts { margin: 0 0 18px; font-size: .84rem; }
.member__facts dt {
  font-family: var(--font-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-700); margin-bottom: 3px;
}
[dir="rtl"] .member__facts dt { letter-spacing: .03em; }
.member__facts dt::before {
  content: ''; display: inline-block;
  width: 14px; height: 2px; border-radius: 2px;
  background: var(--gold-500);
  margin-inline-end: 8px; vertical-align: middle;
}
.member__facts dd { margin: 0 0 12px; color: var(--body); }
.member__facts dd:last-child { margin-bottom: 0; }
.member__foot { margin-top: auto; display: flex; align-items: center; gap: 10px; }
.member__social {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-alt); color: var(--navy-700);
  border: 1px solid var(--line);
  transition: background var(--t-fast), color var(--t-fast);
}
.member__social:hover { background: var(--navy-800); color: #fff; border-color: transparent; }
.member__social .icon { width: 16px; height: 16px; }

.team-join {
  background: var(--bg-alt);
  border: 1px dashed var(--gold-200);
  border-radius: var(--r-lg);
  padding: 44px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   9. Services page
   -------------------------------------------------------------------------- */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.svc-block + .svc-block { margin-top: 96px; }
.svc-block--reverse .svc-block__media { order: 2; }
.svc-block__media { position: relative; }
.svc-block__media img { border-radius: var(--r-lg); box-shadow: var(--sh-md); width: 100%; }
.svc-block__num {
  position: absolute;
  top: -20px; inset-inline-start: -20px;
  width: 74px; height: 74px;
  display: grid; place-items: center;
  background: var(--navy-800); color: var(--gold-400);
  border-radius: var(--r-md);
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  box-shadow: var(--sh-md);
  border: 4px solid #fff;
}
.svc-block__title { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.svc-block__title .svc-ico {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: var(--gold-100); color: var(--gold-600);
  border-radius: var(--r-sm);
}
.svc-block__title .svc-ico .icon { width: 22px; height: 22px; }
.svc-block__title h2 { margin: 0; font-size: clamp(1.35rem, 2.1vw, 1.75rem); }

.check-list { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; margin: 0; }
.check-list .icon {
  width: 20px; height: 20px; flex: none; color: var(--gold-600); margin-top: 4px;
}
.check-list strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: .95rem; }
.check-list--2col { grid-template-columns: repeat(2, 1fr); }

.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.steps::before {
  content: '';
  position: absolute;
  top: 27px; inset-inline: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-200) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff; border: 2px solid var(--gold-200);
  color: var(--gold-600);
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.step:hover .step__num { background: var(--gold-500); color: #fff; border-color: var(--gold-500); }
.step h4 { font-size: 1rem; margin-bottom: .4em; }
.step p { font-size: .86rem; margin: 0; }

/* Technical sub-services — four specialist groups, each led by a named engineer */
.techgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.techcard {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--r-lg);
  padding: 32px 30px 28px;
  transition: transform var(--t), box-shadow var(--t);
}
.techcard:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.techcard__icon {
  width: 54px; height: 54px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: var(--navy-800); color: var(--gold-400);
  border-radius: var(--r-md);
}
.techcard__icon .icon { width: 25px; height: 25px; }
.techcard h3 { font-size: 1.1rem; margin-bottom: .3em; }
.techcard__lead {
  font-family: var(--font-head); font-size: .8rem; font-weight: 500;
  color: var(--gold-600); margin-bottom: 18px;
}
.techcard ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.techcard li {
  position: relative; margin: 0;
  padding-inline-start: 22px;
  font-size: .89rem;
}
.techcard li::before {
  content: '';
  position: absolute; inset-inline-start: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500);
}
.techcard li strong { color: var(--ink); }

.svc-anchor-nav {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 8px;
}
.svc-anchor-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .85rem;
  padding: 10px 18px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); color: var(--navy-800);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.svc-anchor-nav a:hover { background: var(--navy-800); color: #fff; border-color: transparent; transform: translateY(-2px); }
.svc-anchor-nav .icon { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   10. Projects / case studies
   -------------------------------------------------------------------------- */
.case-card { position: relative; }
.case-card .metrics {
  display: flex; gap: 26px; flex-wrap: wrap;
  padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--line-soft);
}
.metric__val {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
  color: var(--navy-800); line-height: 1.2; display: block;
}
.metric__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); }

.case-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.case-detail__head { display: grid; grid-template-columns: 1fr 1fr; }
.case-detail__media { min-height: 320px; position: relative; }
.case-detail__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-detail__intro { padding: 44px 40px; }
.case-detail__body { padding: 0 40px 44px; }
.csr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.csr {
  background: var(--bg-alt);
  border-radius: var(--r-md);
  padding: 26px 24px;
  border-top: 3px solid var(--gold-500);
}
.csr h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: 12px;
}
.csr h4 .icon { width: 18px; height: 18px; }
.csr p, .csr li { font-size: .88rem; margin: 0; }
.csr ul { padding-inline-start: 1.1em; margin: 0; }

/* --------------------------------------------------------------------------
   11. Blog listing & article
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 46px; }
.filter-pill {
  font-family: var(--font-head); font-size: .85rem; font-weight: 500;
  padding: 10px 20px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); color: var(--body);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.filter-pill:hover { color: var(--navy-800); border-color: var(--gold-200); transform: translateY(-2px); }
.filter-pill.is-active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.post-item.is-hidden { display: none; }
.empty-state { text-align: center; padding: 40px 0; color: var(--muted); display: none; }
.empty-state.is-visible { display: block; }

.featured-post {
  display: grid; grid-template-columns: 1.05fr .95fr;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 56px;
}
.featured-post__media { position: relative; min-height: 320px; }
.featured-post__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-post__body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-post__body h2 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }

.newsletter {
  background: var(--navy-800);
  border-radius: var(--r-lg);
  padding: 46px 44px;
  color: rgba(255,255,255,.76);
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 260px at 100% 0%, rgba(201,155,63,.22), transparent 60%);
}
.newsletter > * { position: relative; }
.newsletter h3 { color: #fff; margin-bottom: .3em; }
.newsletter p { font-size: .9rem; margin: 0; }
.newsletter form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter input {
  min-width: 280px; padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff; border-radius: var(--r-sm);
}
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline: none; border-color: var(--gold-400); background: rgba(255,255,255,.14); }

.article { max-width: 800px; margin-inline: auto; }
.article__figure { margin: 0 0 36px; }
.article__figure img { border-radius: var(--r-lg); width: 100%; }
.article__figure figcaption { font-size: .8rem; color: var(--muted); margin-top: 10px; text-align: center; }

.prose { font-size: 1.02rem; }
.prose h2 { margin-top: 1.8em; font-size: clamp(1.35rem, 2.1vw, 1.7rem); }
.prose h3 { margin-top: 1.6em; }
.prose > *:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-inline-start: 1.3em; }
.prose li { margin-bottom: .6em; }
.prose blockquote {
  margin: 32px 0;
  padding: 22px 28px;
  border-inline-start: 3px solid var(--gold-500);
  background: var(--bg-alt);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 1.04rem; color: var(--navy-700); font-style: italic;
}
[dir="rtl"] .prose blockquote { border-radius: var(--r-md) 0 0 var(--r-md); }
.prose .lead { font-size: 1.12rem; color: var(--navy-700); }
.callout {
  display: flex; gap: 16px;
  background: var(--gold-100);
  border: 1px solid var(--gold-200);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin: 32px 0;
  font-size: .95rem;
}
.callout .icon { width: 24px; height: 24px; color: var(--gold-600); flex: none; margin-top: 3px; }

.share-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-top: 28px; margin-top: 36px; border-top: 1px solid var(--line);
}
.share-row span { font-family: var(--font-head); font-size: .85rem; color: var(--ink); }

/* --------------------------------------------------------------------------
   12. Contact page
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 38px;
  box-shadow: var(--sh-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-head); font-size: .82rem; font-weight: 500;
  color: var(--navy-800); margin-bottom: 8px;
}
.field label .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: .94rem;
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: #A9B6C6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(201,155,63,.14);
}
.field select { appearance: none; background-image: none; cursor: pointer; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #D9534F; }
.field__error { display: none; font-size: .78rem; color: #C9302C; margin-top: 6px; }
.field.has-error .field__error { display: block; }
.field__hint { font-size: .78rem; color: var(--muted); margin-top: 6px; }

.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; margin-bottom: 22px; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold-600); flex: none; }

.form-success {
  display: none;
  gap: 12px;
  align-items: flex-start;
  background: #EAF7EF;
  border: 1px solid #BFE3CC;
  color: #1D6B3C;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  margin-bottom: 22px;
  font-size: .9rem;
}
.form-success.is-visible { display: flex; }
.form-success .icon { width: 20px; height: 20px; flex: none; margin-top: 3px; }

.contact-aside { display: grid; gap: 24px; }
.info-card {
  background: var(--navy-800);
  color: rgba(255,255,255,.74);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(520px 240px at 100% 0%, rgba(201,155,63,.2), transparent 62%);
}
.info-card > * { position: relative; }
.info-card h3 { color: #fff; font-size: 1.15rem; }
.info-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 22px; }
.info-list li { display: flex; gap: 14px; margin: 0; }
.info-list .info-ico {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  background: rgba(201,155,63,.16); color: var(--gold-400);
  border-radius: var(--r-sm);
}
.info-list .info-ico .icon { width: 19px; height: 19px; }
.info-list strong { display: block; color: #fff; font-family: var(--font-head); font-size: .88rem; font-weight: 500; margin-bottom: 3px; }
.info-list a, .info-list span { color: rgba(255,255,255,.72); font-size: .88rem; }
.info-list a:hover { color: var(--gold-400); }

.hours-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px;
}
.hours-list { list-style: none; margin: 16px 0 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: .88rem; padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list strong { color: var(--navy-800); font-weight: 500; }

.map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 420px;
  background: var(--bg-alt);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.25); }

/* Accordion / FAQ */
.accordion { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.acc-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.acc-item.is-open { border-color: var(--gold-200); box-shadow: var(--sh-sm); }
.acc-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: 0; cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head); font-size: .98rem; font-weight: 500;
  color: var(--navy-800); text-align: start;
}
.acc-btn .icon { width: 20px; height: 20px; color: var(--gold-600); transition: transform var(--t); flex: none; }
.acc-item.is-open .acc-btn .icon { transform: rotate(45deg); }
.acc-panel {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t);
}
.acc-panel > div { padding: 0 24px 22px; font-size: .92rem; }

/* --------------------------------------------------------------------------
   13. Misc pages
   -------------------------------------------------------------------------- */
.legal-toc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.legal-toc ol { margin: 12px 0 0; padding-inline-start: 1.2em; }
.legal-toc li { margin-bottom: .4em; font-size: .92rem; }

.error-page { text-align: center; padding-block: 120px; }
.error-page__code {
  font-family: var(--font-head); font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 700; line-height: 1; color: var(--navy-800);
  letter-spacing: -.04em;
}
.error-page__code span { color: var(--gold-500); }

/* --------------------------------------------------------------------------
   13b. Hero kicker & sub-headline
   -------------------------------------------------------------------------- */
.hero__kicker {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
[dir="rtl"] .hero__kicker { letter-spacing: .06em; }
.hero__sub {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   13c. Trust strip (replaces the deleted metrics)
   -------------------------------------------------------------------------- */
.trust-bar { background: var(--navy-800); position: relative; }
.trust-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(760px 200px at 50% 0%, rgba(201,155,63,.16), transparent 70%);
  pointer-events: none;
}
.trust-bar__inner {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: 26px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding-inline: 26px;
  border-inline-end: 1px solid rgba(255,255,255,.12);
}
.trust-item:last-child { border-inline-end: 0; }
.trust-item > .icon { width: 32px; height: 32px; color: var(--gold-500); stroke-width: 1.5; }
.trust-item strong {
  display: block; color: #fff; font-family: var(--font-head);
  font-size: .92rem; font-weight: 600; line-height: 1.3;
}
.trust-item span span { font-size: .82rem; color: rgba(255,255,255,.62); }

/* --------------------------------------------------------------------------
   13d. Your Journey to the Market
   -------------------------------------------------------------------------- */
.journey { background: var(--cream); padding-bottom: calc(var(--section-y) * .66 + 26px); }
.journey__steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  position: relative;
}
/* thin rail under the row, with a dot beneath each step */
.journey__steps::after {
  content: '';
  position: absolute; inset-inline: 9%; bottom: -22px;
  height: 1px; background: var(--gold-200);
}
.jstep { position: relative; z-index: 1; text-align: center; margin: 0; }
.jstep::before {
  content: '';
  position: absolute; bottom: -26px; inset-inline: 0;
  width: 9px; height: 9px; margin-inline: auto;
  border-radius: 50%; background: var(--gold-500);
}
.jstep__ring {
  position: relative;
  width: 94px; height: 94px; margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  border: 2px solid var(--gold-500);
  /* cream gap, then an outer gold ring — the double ring from the brand guide */
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 6px var(--gold-400);
  transition: transform var(--t), box-shadow var(--t);
}
.jstep:hover .jstep__ring {
  transform: translateY(-4px);
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 7px var(--gold-500);
}
.jstep__ring .icon { width: 36px; height: 36px; color: var(--gold-400); stroke-width: 1.6; }
/* Brand artwork icons — rendered on the navy disc they were designed against. */
.jstep__icon { width: 60px; height: 60px; object-fit: contain; display: block; }
/* Centred with auto margins rather than translateX(%), which does not mirror in RTL. */
.jstep__num {
  position: absolute; top: -11px;
  inset-inline: 0;
  width: fit-content;
  margin-inline: auto;
  background: var(--gold-500); color: var(--navy-900);
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  padding: 3px 11px; border-radius: var(--r-pill);
  border: 2px solid var(--cream);
}
.jstep::after {
  content: '';
  position: absolute; top: 38px; inset-inline-end: -8px;
  width: 15px; height: 15px;
  border-top: 4px solid var(--gold-500);
  border-inline-end: 4px solid var(--gold-500);
  transform: rotate(45deg);
}
[dir="rtl"] .jstep::after { transform: rotate(-135deg); }
.jstep:last-child::after { display: none; }
.jstep h3 {
  font-size: 1.02rem; text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: .3em; color: var(--navy-800);
}
[dir="rtl"] .jstep h3 { letter-spacing: 0; }
.jstep p { font-size: .84rem; margin: 0; }

/* --------------------------------------------------------------------------
   13e. Network banner (Team page)
   -------------------------------------------------------------------------- */
.network-banner {
  background: var(--navy-800);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.network-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(700px 280px at 50% 0%, rgba(201,155,63,.2), transparent 65%);
}
.network-banner > * { position: relative; }
.network-banner h2 { color: #fff; font-size: clamp(1.25rem, 2.4vw, 1.9rem); margin-bottom: .5em; }
.network-banner h2 .accent { color: var(--gold-400); }
.sector-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  list-style: none; margin: 26px 0 0; padding: 0;
}
.sector-chips li {
  margin: 0;
  font-family: var(--font-head); font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,155,63,.4);
  padding: 9px 16px; border-radius: var(--r-pill);
}
[dir="rtl"] .sector-chips li { letter-spacing: 0; }

/* --------------------------------------------------------------------------
   13f. How We Work (Services page)
   -------------------------------------------------------------------------- */
.howwework {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  list-style: none; margin: 0; padding: 0;
}
.howwework::before {
  content: '';
  position: absolute; top: 38px; inset-inline: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400) 12%, var(--gold-500) 50%, var(--gold-400) 88%, transparent);
  z-index: 0;
}
.hww { position: relative; z-index: 1; text-align: center; margin: 0; }
.hww__tile {
  width: 76px; height: 76px; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: var(--navy-800); color: var(--gold-400);
  border-radius: var(--r-md);
  box-shadow: 0 0 0 8px var(--bg);
  transition: transform var(--t), background var(--t), color var(--t);
}
.section--alt .hww__tile { box-shadow: 0 0 0 8px var(--bg-alt); }
.hww:hover .hww__tile { transform: translateY(-5px); background: var(--gold-500); color: var(--navy-900); }
.hww__tile .icon { width: 32px; height: 32px; stroke-width: 1.6; }
.hww__step {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; margin-bottom: 12px;
  border-radius: 50%;
  background: var(--gold-100); color: var(--gold-700);
  border: 1.5px solid var(--gold-200);
  font-family: var(--font-head); font-size: .82rem; font-weight: 700;
}
.hww h4 { font-size: 1rem; margin-bottom: .35em; }
.hww p { font-size: .84rem; margin: 0; }

/* --------------------------------------------------------------------------
   13g. Contact branches
   -------------------------------------------------------------------------- */
.branch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.branch {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  padding: 20px 20px 18px;
}
.branch__name {
  display: flex; align-items: center; gap: 9px;
  color: #fff; font-family: var(--font-head);
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 14px;
}
[dir="rtl"] .branch__name { letter-spacing: .03em; }
.branch__name .icon { width: 17px; height: 17px; color: var(--gold-400); }
.branch dl { margin: 0; display: grid; gap: 10px; }
.branch dt {
  font-size: .72rem; color: rgba(255,255,255,.55);
  letter-spacing: .05em; margin-bottom: 2px;
}
.branch dd { margin: 0; font-size: .9rem; }
.branch dd a { color: rgba(255,255,255,.86); }
.branch dd a:hover { color: var(--gold-400); }

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
  .techgrid { grid-template-columns: 1fr; }
  .pband { grid-template-columns: 1fr; }
  .spotlight__inner { grid-template-columns: 1fr; gap: 34px; padding: 42px 34px; }
  .story { grid-template-columns: 1fr; gap: 52px; }
  .story__stat { inset-inline-end: 20px; }
  .svc-block { grid-template-columns: 1fr; gap: 36px; }
  .svc-block--reverse .svc-block__media { order: 0; }
  .svc-block + .svc-block { margin-top: 72px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post__media { min-height: 260px; }
  .case-detail__head { grid-template-columns: 1fr; }
  .csr-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }

  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .trust-item:nth-child(2n) { border-inline-end: 0; }
  .journey__steps { grid-template-columns: repeat(3, 1fr); gap: 46px 18px; }
  .journey__steps::after { display: none; }
  .jstep::before { display: none; }
  .jstep:nth-child(3n)::after, .jstep:last-child::after { display: none; }
  .journey { padding-bottom: calc(var(--section-y) * .66); }
  .howwework { grid-template-columns: repeat(3, 1fr); gap: 34px 20px; }
  .howwework::before { display: none; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__content { padding-block: 76px; }
  .hero__bg img { object-position: 68% center; }
  .hero__bg::after,
  [dir="rtl"] .hero__bg::after {
    background: linear-gradient(180deg, rgba(7,26,49,.86) 0%, rgba(7,26,49,.92) 60%, rgba(7,26,49,.96) 100%);
  }
  /* Narrow screens: the map sits behind the text, so damp it right down. */
  .hero--map .hero__bg::after,
  [dir="rtl"] .hero--map .hero__bg::after {
    background: linear-gradient(180deg, rgba(7,26,49,.82) 0%, rgba(7,26,49,.90) 55%, rgba(7,26,49,.96) 100%);
  }
  .hero--map .hero__bg img,
  [dir="rtl"] .hero--map .hero__bg img {
    object-fit: cover;
    object-position: center 35%;
    opacity: .5;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero__scroll { display: none; }
  .trust__inner { justify-content: center; gap: 28px; }
  .stats-box { width: 100%; }
  .stat { flex: 1 1 auto; justify-content: center; }
  .client-logos { justify-content: center; gap: 30px; }
  .vm-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
  .case-detail__intro, .case-detail__body { padding-inline: 26px; }
}

@media (max-width: 620px) {
  .member { grid-template-columns: 1fr; }
  .member__photo { aspect-ratio: 16 / 9; min-height: 0; }
  .member__photo::after { inset-block: auto 0; inset-inline: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold-500), transparent); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .check-list--2col { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat { padding: 14px 16px; }
  .stats-box { flex-direction: column; }
  .stat { border-inline-end: 0; border-bottom: 1px solid var(--line); width: 100%; justify-content: flex-start; }
  .stat:last-child { border-bottom: 0; }
  .spotlight__inner { padding: 32px 22px; }
  .story__stat { position: static; margin-top: 18px; display: inline-block; }
  .svc-block__num { width: 58px; height: 58px; font-size: 1.25rem; top: -14px; inset-inline-start: -10px; }
  .trust-bar__inner { grid-template-columns: 1fr; gap: 18px; }
  .trust-item { border-inline-end: 0; padding-inline: 0; }
  .journey__steps { grid-template-columns: 1fr; gap: 30px; }
  .jstep::after { display: none; }
  .pband__left, .pband__right { padding: 32px 24px; }
  .whygrid { grid-template-columns: 1fr; }
  .whyitem { padding: 18px 0; border-inline-end: 0 !important; }
  .whyitem:not(:last-child) { border-bottom: 1px solid var(--line); }
  .whyitem:last-child { border-bottom: 0; }
  .chain { flex-wrap: wrap; gap: 18px 4px; }
  .chain li { flex: 0 0 30%; }
  .chain li:not(:last-child)::after { display: none; }
  .howwework { grid-template-columns: 1fr; gap: 30px; }
  .branch-grid { grid-template-columns: 1fr; }
  .network-banner { padding: 32px 22px; }
  .newsletter { padding: 32px 24px; }
  .newsletter input { min-width: 100%; }
  .newsletter form { width: 100%; }
  .article__figure img { border-radius: var(--r-md); }
}
